diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-09-04 07:02:35 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-09-04 07:02:35 -0400 |
| commit | 42390cdec5f6e6e2ee54f308474a6ef7dd16aa5c (patch) | |
| tree | e9684c84f53272319a5acd4b9c86503f30274a51 /arch/arm | |
| parent | 11c231a962c740b3216eb6565149ae5a7944cba7 (diff) | |
| parent | d210baf53b699fc61aa891c177b71d7082d3b957 (diff) | |
Merge branch 'linus' into x86/x2apic
Conflicts:
arch/x86/kernel/cpu/cyrix.c
include/asm-x86/cpufeature.h
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/arm')
119 files changed, 18587 insertions, 530 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4b8acd2851f4..70dba1668907 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -810,6 +810,11 @@ config OABI_COMPAT | |||
| 810 | UNPREDICTABLE (in fact it can be predicted that it won't work | 810 | UNPREDICTABLE (in fact it can be predicted that it won't work |
| 811 | at all). If in doubt say Y. | 811 | at all). If in doubt say Y. |
| 812 | 812 | ||
| 813 | config ARCH_FLATMEM_HAS_HOLES | ||
| 814 | bool | ||
| 815 | default y | ||
| 816 | depends on FLATMEM | ||
| 817 | |||
| 813 | config ARCH_DISCONTIGMEM_ENABLE | 818 | config ARCH_DISCONTIGMEM_ENABLE |
| 814 | bool | 819 | bool |
| 815 | default (ARCH_LH7A40X && !LH7A40X_CONTIGMEM) | 820 | default (ARCH_LH7A40X && !LH7A40X_CONTIGMEM) |
diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore index b15f927a5926..ab204db594d3 100644 --- a/arch/arm/boot/compressed/.gitignore +++ b/arch/arm/boot/compressed/.gitignore | |||
| @@ -1,2 +1,3 @@ | |||
| 1 | piggy.gz | ||
| 2 | font.c | 1 | font.c |
| 2 | piggy.gz | ||
| 3 | vmlinux.lds | ||
diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c index 69130f365904..aecc6c3f908f 100644 --- a/arch/arm/common/dmabounce.c +++ b/arch/arm/common/dmabounce.c | |||
| @@ -246,9 +246,9 @@ map_single(struct device *dev, void *ptr, size_t size, | |||
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | dev_dbg(dev, | 248 | dev_dbg(dev, |
| 249 | "%s: unsafe buffer %p (phy=%p) mapped to %p (phy=%p)\n", | 249 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 250 | __func__, buf->ptr, (void *) virt_to_dma(dev, buf->ptr), | 250 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 251 | buf->safe, (void *) buf->safe_dma_addr); | 251 | buf->safe, buf->safe_dma_addr); |
| 252 | 252 | ||
| 253 | if ((dir == DMA_TO_DEVICE) || | 253 | if ((dir == DMA_TO_DEVICE) || |
| 254 | (dir == DMA_BIDIRECTIONAL)) { | 254 | (dir == DMA_BIDIRECTIONAL)) { |
| @@ -292,9 +292,9 @@ unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, | |||
| 292 | BUG_ON(buf->size != size); | 292 | BUG_ON(buf->size != size); |
| 293 | 293 | ||
| 294 | dev_dbg(dev, | 294 | dev_dbg(dev, |
| 295 | "%s: unsafe buffer %p (phy=%p) mapped to %p (phy=%p)\n", | 295 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 296 | __func__, buf->ptr, (void *) virt_to_dma(dev, buf->ptr), | 296 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 297 | buf->safe, (void *) buf->safe_dma_addr); | 297 | buf->safe, buf->safe_dma_addr); |
| 298 | 298 | ||
| 299 | DO_STATS ( device_info->bounce_count++ ); | 299 | DO_STATS ( device_info->bounce_count++ ); |
| 300 | 300 | ||
| @@ -321,9 +321,8 @@ unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, | |||
| 321 | } | 321 | } |
| 322 | } | 322 | } |
| 323 | 323 | ||
| 324 | static inline void | 324 | static int sync_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
| 325 | sync_single(struct device *dev, dma_addr_t dma_addr, size_t size, | 325 | enum dma_data_direction dir) |
| 326 | enum dma_data_direction dir) | ||
| 327 | { | 326 | { |
| 328 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; | 327 | struct dmabounce_device_info *device_info = dev->archdata.dmabounce; |
| 329 | struct safe_buffer *buf = NULL; | 328 | struct safe_buffer *buf = NULL; |
| @@ -355,9 +354,9 @@ sync_single(struct device *dev, dma_addr_t dma_addr, size_t size, | |||
| 355 | */ | 354 | */ |
| 356 | 355 | ||
| 357 | dev_dbg(dev, | 356 | dev_dbg(dev, |
| 358 | "%s: unsafe buffer %p (phy=%p) mapped to %p (phy=%p)\n", | 357 | "%s: unsafe buffer %p (dma=%#x) mapped to %p (dma=%#x)\n", |
| 359 | __func__, buf->ptr, (void *) virt_to_dma(dev, buf->ptr), | 358 | __func__, buf->ptr, virt_to_dma(dev, buf->ptr), |
| 360 | buf->safe, (void *) buf->safe_dma_addr); | 359 | buf->safe, buf->safe_dma_addr); |
| 361 | 360 | ||
| 362 | DO_STATS ( device_info->bounce_count++ ); | 361 | DO_STATS ( device_info->bounce_count++ ); |
| 363 | 362 | ||
| @@ -383,8 +382,9 @@ sync_single(struct device *dev, dma_addr_t dma_addr, size_t size, | |||
| 383 | * No need to sync the safe buffer - it was allocated | 382 | * No need to sync the safe buffer - it was allocated |
| 384 | * via the coherent allocators. | 383 | * via the coherent allocators. |
| 385 | */ | 384 | */ |
| 385 | return 0; | ||
| 386 | } else { | 386 | } else { |
| 387 | dma_cache_maint(dma_to_virt(dev, dma_addr), size, dir); | 387 | return 1; |
| 388 | } | 388 | } |
| 389 | } | 389 | } |
| 390 | 390 | ||
| @@ -474,25 +474,29 @@ dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, | |||
| 474 | } | 474 | } |
| 475 | } | 475 | } |
| 476 | 476 | ||
| 477 | void | 477 | void dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_addr, |
| 478 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_addr, size_t size, | 478 | unsigned long offset, size_t size, |
| 479 | enum dma_data_direction dir) | 479 | enum dma_data_direction dir) |
| 480 | { | 480 | { |
| 481 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", | 481 | dev_dbg(dev, "%s(dma=%#x,off=%#lx,size=%zx,dir=%x)\n", |
| 482 | __func__, (void *) dma_addr, size, dir); | 482 | __func__, dma_addr, offset, size, dir); |
| 483 | 483 | ||
| 484 | sync_single(dev, dma_addr, size, dir); | 484 | if (sync_single(dev, dma_addr, offset + size, dir)) |
| 485 | dma_cache_maint(dma_to_virt(dev, dma_addr) + offset, size, dir); | ||
| 485 | } | 486 | } |
| 487 | EXPORT_SYMBOL(dma_sync_single_range_for_cpu); | ||
| 486 | 488 | ||
| 487 | void | 489 | void dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_addr, |
| 488 | dma_sync_single_for_device(struct device *dev, dma_addr_t dma_addr, size_t size, | 490 | unsigned long offset, size_t size, |
| 489 | enum dma_data_direction dir) | 491 | enum dma_data_direction dir) |
| 490 | { | 492 | { |
| 491 | dev_dbg(dev, "%s(ptr=%p,size=%d,dir=%x)\n", | 493 | dev_dbg(dev, "%s(dma=%#x,off=%#lx,size=%zx,dir=%x)\n", |
| 492 | __func__, (void *) dma_addr, size, dir); | 494 | __func__, dma_addr, offset, size, dir); |
| 493 | 495 | ||
| 494 | sync_single(dev, dma_addr, size, dir); | 496 | if (sync_single(dev, dma_addr, offset + size, dir)) |
| 497 | dma_cache_maint(dma_to_virt(dev, dma_addr) + offset, size, dir); | ||
| 495 | } | 498 | } |
| 499 | EXPORT_SYMBOL(dma_sync_single_range_for_device); | ||
| 496 | 500 | ||
| 497 | void | 501 | void |
| 498 | dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nents, | 502 | dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nents, |
| @@ -644,8 +648,6 @@ EXPORT_SYMBOL(dma_map_single); | |||
| 644 | EXPORT_SYMBOL(dma_unmap_single); | 648 | EXPORT_SYMBOL(dma_unmap_single); |
| 645 | EXPORT_SYMBOL(dma_map_sg); | 649 | EXPORT_SYMBOL(dma_map_sg); |
| 646 | EXPORT_SYMBOL(dma_unmap_sg); | 650 | EXPORT_SYMBOL(dma_unmap_sg); |
| 647 | EXPORT_SYMBOL(dma_sync_single_for_cpu); | ||
| 648 | EXPORT_SYMBOL(dma_sync_single_for_device); | ||
| 649 | EXPORT_SYMBOL(dma_sync_sg_for_cpu); | 651 | EXPORT_SYMBOL(dma_sync_sg_for_cpu); |
| 650 | EXPORT_SYMBOL(dma_sync_sg_for_device); | 652 | EXPORT_SYMBOL(dma_sync_sg_for_device); |
| 651 | EXPORT_SYMBOL(dmabounce_register_dev); | 653 | EXPORT_SYMBOL(dmabounce_register_dev); |
diff --git a/arch/arm/configs/ams_delta_defconfig b/arch/arm/configs/ams_delta_defconfig new file mode 100644 index 000000000000..2c4aa11f0b0d --- /dev/null +++ b/arch/arm/configs/ams_delta_defconfig | |||
| @@ -0,0 +1,1314 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.22-rc1-omap1 | ||
| 4 | # Thu Jun 7 04:28:32 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # Code maturity level options | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | |||
| 36 | # | ||
| 37 | # General setup | ||
| 38 | # | ||
| 39 | CONFIG_LOCALVERSION="" | ||
| 40 | CONFIG_LOCALVERSION_AUTO=y | ||
| 41 | # CONFIG_SWAP is not set | ||
| 42 | CONFIG_SYSVIPC=y | ||
| 43 | # CONFIG_IPC_NS is not set | ||
| 44 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 45 | # CONFIG_POSIX_MQUEUE is not set | ||
| 46 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 47 | # CONFIG_TASKSTATS is not set | ||
| 48 | # CONFIG_UTS_NS is not set | ||
| 49 | # CONFIG_AUDIT is not set | ||
| 50 | # CONFIG_IKCONFIG is not set | ||
| 51 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | ||
| 53 | # CONFIG_RELAY is not set | ||
| 54 | CONFIG_BLK_DEV_INITRD=y | ||
| 55 | CONFIG_INITRAMFS_SOURCE="" | ||
| 56 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 57 | CONFIG_SYSCTL=y | ||
| 58 | # CONFIG_EMBEDDED is not set | ||
| 59 | CONFIG_UID16=y | ||
| 60 | CONFIG_SYSCTL_SYSCALL=y | ||
| 61 | CONFIG_KALLSYMS=y | ||
| 62 | # CONFIG_KALLSYMS_ALL is not set | ||
| 63 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 64 | CONFIG_HOTPLUG=y | ||
| 65 | CONFIG_PRINTK=y | ||
| 66 | CONFIG_BUG=y | ||
| 67 | CONFIG_ELF_CORE=y | ||
| 68 | CONFIG_BASE_FULL=y | ||
| 69 | CONFIG_FUTEX=y | ||
| 70 | CONFIG_ANON_INODES=y | ||
| 71 | CONFIG_EPOLL=y | ||
| 72 | CONFIG_SIGNALFD=y | ||
| 73 | CONFIG_TIMERFD=y | ||
| 74 | CONFIG_EVENTFD=y | ||
| 75 | CONFIG_SHMEM=y | ||
| 76 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 77 | CONFIG_SLAB=y | ||
| 78 | # CONFIG_SLUB is not set | ||
| 79 | # CONFIG_SLOB is not set | ||
| 80 | CONFIG_RT_MUTEXES=y | ||
| 81 | # CONFIG_TINY_SHMEM is not set | ||
| 82 | CONFIG_BASE_SMALL=0 | ||
| 83 | |||
| 84 | # | ||
| 85 | # Loadable module support | ||
| 86 | # | ||
| 87 | CONFIG_MODULES=y | ||
| 88 | CONFIG_MODULE_UNLOAD=y | ||
| 89 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
| 90 | # CONFIG_MODVERSIONS is not set | ||
| 91 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 92 | CONFIG_KMOD=y | ||
| 93 | |||
| 94 | # | ||
| 95 | # Block layer | ||
| 96 | # | ||
| 97 | CONFIG_BLOCK=y | ||
| 98 | # CONFIG_LBD is not set | ||
| 99 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 100 | # CONFIG_LSF is not set | ||
| 101 | |||
| 102 | # | ||
| 103 | # IO Schedulers | ||
| 104 | # | ||
| 105 | CONFIG_IOSCHED_NOOP=y | ||
| 106 | CONFIG_IOSCHED_AS=y | ||
| 107 | CONFIG_IOSCHED_DEADLINE=y | ||
| 108 | CONFIG_IOSCHED_CFQ=y | ||
| 109 | CONFIG_DEFAULT_AS=y | ||
| 110 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 111 | # CONFIG_DEFAULT_CFQ is not set | ||
| 112 | # CONFIG_DEFAULT_NOOP is not set | ||
| 113 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 114 | |||
| 115 | # | ||
| 116 | # System Type | ||
| 117 | # | ||
| 118 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 119 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 120 | # CONFIG_ARCH_REALVIEW is not set | ||
| 121 | # CONFIG_ARCH_VERSATILE is not set | ||
| 122 | # CONFIG_ARCH_AT91 is not set | ||
| 123 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 124 | # CONFIG_ARCH_CLPS711X is not set | ||
| 125 | # CONFIG_ARCH_CO285 is not set | ||
| 126 | # CONFIG_ARCH_EBSA110 is not set | ||
| 127 | # CONFIG_ARCH_EP93XX is not set | ||
| 128 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 129 | # CONFIG_ARCH_NETX is not set | ||
| 130 | # CONFIG_ARCH_H720X is not set | ||
| 131 | # CONFIG_ARCH_IMX is not set | ||
| 132 | # CONFIG_ARCH_IOP13XX is not set | ||
| 133 | # CONFIG_ARCH_IOP32X is not set | ||
| 134 | # CONFIG_ARCH_IOP33X is not set | ||
| 135 | # CONFIG_ARCH_IXP23XX is not set | ||
| 136 | # CONFIG_ARCH_IXP2000 is not set | ||
| 137 | # CONFIG_ARCH_IXP4XX is not set | ||
| 138 | # CONFIG_ARCH_L7200 is not set | ||
| 139 | # CONFIG_ARCH_KS8695 is not set | ||
| 140 | # CONFIG_ARCH_NS9XXX is not set | ||
| 141 | # CONFIG_ARCH_PNX4008 is not set | ||
| 142 | # CONFIG_ARCH_PXA is not set | ||
| 143 | # CONFIG_ARCH_RPC is not set | ||
| 144 | # CONFIG_ARCH_SA1100 is not set | ||
| 145 | # CONFIG_ARCH_S3C2410 is not set | ||
| 146 | # CONFIG_ARCH_SHARK is not set | ||
| 147 | # CONFIG_ARCH_LH7A40X is not set | ||
| 148 | # CONFIG_ARCH_DAVINCI is not set | ||
| 149 | CONFIG_ARCH_OMAP=y | ||
| 150 | |||
| 151 | # | ||
| 152 | # TI OMAP Implementations | ||
| 153 | # | ||
| 154 | CONFIG_ARCH_OMAP1=y | ||
| 155 | # CONFIG_ARCH_OMAP2 is not set | ||
| 156 | |||
| 157 | # | ||
| 158 | # OMAP Feature Selections | ||
| 159 | # | ||
| 160 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 161 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 162 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 163 | CONFIG_OMAP_MUX=y | ||
| 164 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 165 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 166 | CONFIG_OMAP_MCBSP=y | ||
| 167 | CONFIG_OMAP_MMU_FWK=y | ||
| 168 | CONFIG_OMAP_MBOX_FWK=m | ||
| 169 | CONFIG_OMAP_MPU_TIMER=y | ||
| 170 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 171 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 172 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 173 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 174 | # CONFIG_OMAP_LL_DEBUG_LCD is not set | ||
| 175 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 176 | CONFIG_OMAP_DSP=m | ||
| 177 | # CONFIG_OMAP_DSP_MBCMD_VERBOSE is not set | ||
| 178 | # CONFIG_OMAP_DSP_TASK_MULTIOPEN is not set | ||
| 179 | # CONFIG_OMAP_DSP_FBEXPORT is not set | ||
| 180 | |||
| 181 | # | ||
| 182 | # OMAP Core Type | ||
| 183 | # | ||
| 184 | # CONFIG_ARCH_OMAP730 is not set | ||
| 185 | CONFIG_ARCH_OMAP15XX=y | ||
| 186 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 187 | |||
| 188 | # | ||
| 189 | # OMAP Board Type | ||
| 190 | # | ||
| 191 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 192 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 193 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 194 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 195 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 196 | # CONFIG_MACH_SX1 is not set | ||
| 197 | CONFIG_MACH_AMS_DELTA=y | ||
| 198 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 199 | |||
| 200 | # | ||
| 201 | # OMAP CPU Speed | ||
| 202 | # | ||
| 203 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 204 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 205 | CONFIG_OMAP_ARM_150MHZ=y | ||
| 206 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 207 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 208 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 209 | |||
| 210 | # | ||
| 211 | # Processor Type | ||
| 212 | # | ||
| 213 | CONFIG_CPU_32=y | ||
| 214 | CONFIG_CPU_ARM925T=y | ||
| 215 | CONFIG_CPU_32v4T=y | ||
| 216 | CONFIG_CPU_ABRT_EV4T=y | ||
| 217 | CONFIG_CPU_CACHE_V4WT=y | ||
| 218 | CONFIG_CPU_CACHE_VIVT=y | ||
| 219 | CONFIG_CPU_COPY_V4WB=y | ||
| 220 | CONFIG_CPU_TLB_V4WBI=y | ||
| 221 | CONFIG_CPU_CP15=y | ||
| 222 | CONFIG_CPU_CP15_MMU=y | ||
| 223 | |||
| 224 | # | ||
| 225 | # Processor Features | ||
| 226 | # | ||
| 227 | # CONFIG_ARM_THUMB is not set | ||
| 228 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 229 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 230 | CONFIG_CPU_DCACHE_WRITETHROUGH=y | ||
| 231 | # CONFIG_OUTER_CACHE is not set | ||
| 232 | |||
| 233 | # | ||
| 234 | # Bus support | ||
| 235 | # | ||
| 236 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 237 | |||
| 238 | # | ||
| 239 | # PCCARD (PCMCIA/CardBus) support | ||
| 240 | # | ||
| 241 | # CONFIG_PCCARD is not set | ||
| 242 | |||
| 243 | # | ||
| 244 | # Kernel Features | ||
| 245 | # | ||
| 246 | # CONFIG_TICK_ONESHOT is not set | ||
| 247 | # CONFIG_NO_HZ is not set | ||
| 248 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 249 | CONFIG_PREEMPT=y | ||
| 250 | CONFIG_HZ=100 | ||
| 251 | # CONFIG_AEABI is not set | ||
| 252 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 253 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 254 | CONFIG_FLATMEM_MANUAL=y | ||
| 255 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 256 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 257 | CONFIG_FLATMEM=y | ||
| 258 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 259 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 260 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 261 | # CONFIG_RESOURCES_64BIT is not set | ||
| 262 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 263 | # CONFIG_LEDS is not set | ||
| 264 | CONFIG_ALIGNMENT_TRAP=y | ||
| 265 | |||
| 266 | # | ||
| 267 | # Boot options | ||
| 268 | # | ||
| 269 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 270 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 271 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200n8 root=/dev/ram0 initrd=0x11c00000,4M" | ||
| 272 | # CONFIG_XIP_KERNEL is not set | ||
| 273 | # CONFIG_KEXEC is not set | ||
| 274 | |||
| 275 | # | ||
| 276 | # CPU Frequency scaling | ||
| 277 | # | ||
| 278 | # CONFIG_CPU_FREQ is not set | ||
| 279 | |||
| 280 | # | ||
| 281 | # Floating point emulation | ||
| 282 | # | ||
| 283 | |||
| 284 | # | ||
| 285 | # At least one emulation must be selected | ||
| 286 | # | ||
| 287 | CONFIG_FPE_NWFPE=y | ||
| 288 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 289 | # CONFIG_FPE_FASTFPE is not set | ||
| 290 | |||
| 291 | # | ||
| 292 | # Userspace binary formats | ||
| 293 | # | ||
| 294 | CONFIG_BINFMT_ELF=y | ||
| 295 | # CONFIG_BINFMT_AOUT is not set | ||
| 296 | # CONFIG_BINFMT_MISC is not set | ||
| 297 | # CONFIG_ARTHUR is not set | ||
| 298 | |||
| 299 | # | ||
| 300 | # Power management options | ||
| 301 | # | ||
| 302 | # CONFIG_PM is not set | ||
| 303 | |||
| 304 | # | ||
| 305 | # Networking | ||
| 306 | # | ||
| 307 | CONFIG_NET=y | ||
| 308 | |||
| 309 | # | ||
| 310 | # Networking options | ||
| 311 | # | ||
| 312 | CONFIG_PACKET=y | ||
| 313 | # CONFIG_PACKET_MMAP is not set | ||
| 314 | CONFIG_UNIX=y | ||
| 315 | CONFIG_XFRM=y | ||
| 316 | # CONFIG_XFRM_USER is not set | ||
| 317 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 318 | # CONFIG_XFRM_MIGRATE is not set | ||
| 319 | # CONFIG_NET_KEY is not set | ||
| 320 | CONFIG_INET=y | ||
| 321 | CONFIG_IP_MULTICAST=y | ||
| 322 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 323 | CONFIG_IP_FIB_HASH=y | ||
| 324 | # CONFIG_IP_PNP is not set | ||
| 325 | # CONFIG_NET_IPIP is not set | ||
| 326 | # CONFIG_NET_IPGRE is not set | ||
| 327 | # CONFIG_IP_MROUTE is not set | ||
| 328 | # CONFIG_ARPD is not set | ||
| 329 | # CONFIG_SYN_COOKIES is not set | ||
| 330 | # CONFIG_INET_AH is not set | ||
| 331 | # CONFIG_INET_ESP is not set | ||
| 332 | # CONFIG_INET_IPCOMP is not set | ||
| 333 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 334 | CONFIG_INET_TUNNEL=y | ||
| 335 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 336 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 337 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 338 | CONFIG_INET_DIAG=y | ||
| 339 | CONFIG_INET_TCP_DIAG=y | ||
| 340 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 341 | CONFIG_TCP_CONG_CUBIC=y | ||
| 342 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 343 | # CONFIG_TCP_MD5SIG is not set | ||
| 344 | CONFIG_IPV6=y | ||
| 345 | # CONFIG_IPV6_PRIVACY is not set | ||
| 346 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
| 347 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | ||
| 348 | # CONFIG_INET6_AH is not set | ||
| 349 | # CONFIG_INET6_ESP is not set | ||
| 350 | # CONFIG_INET6_IPCOMP is not set | ||
| 351 | # CONFIG_IPV6_MIP6 is not set | ||
| 352 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 353 | # CONFIG_INET6_TUNNEL is not set | ||
| 354 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
| 355 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
| 356 | CONFIG_INET6_XFRM_MODE_BEET=y | ||
| 357 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | ||
| 358 | CONFIG_IPV6_SIT=y | ||
| 359 | # CONFIG_IPV6_TUNNEL is not set | ||
| 360 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | ||
| 361 | # CONFIG_NETWORK_SECMARK is not set | ||
| 362 | # CONFIG_NETFILTER is not set | ||
| 363 | |||
| 364 | # | ||
| 365 | # DCCP Configuration (EXPERIMENTAL) | ||
| 366 | # | ||
| 367 | # CONFIG_IP_DCCP is not set | ||
| 368 | |||
| 369 | # | ||
| 370 | # SCTP Configuration (EXPERIMENTAL) | ||
| 371 | # | ||
| 372 | # CONFIG_IP_SCTP is not set | ||
| 373 | |||
| 374 | # | ||
| 375 | # TIPC Configuration (EXPERIMENTAL) | ||
| 376 | # | ||
| 377 | # CONFIG_TIPC is not set | ||
| 378 | # CONFIG_ATM is not set | ||
| 379 | # CONFIG_BRIDGE is not set | ||
| 380 | # CONFIG_VLAN_8021Q is not set | ||
| 381 | # CONFIG_DECNET is not set | ||
| 382 | # CONFIG_LLC2 is not set | ||
| 383 | # CONFIG_IPX is not set | ||
| 384 | # CONFIG_ATALK is not set | ||
| 385 | # CONFIG_X25 is not set | ||
| 386 | # CONFIG_LAPB is not set | ||
| 387 | # CONFIG_ECONET is not set | ||
| 388 | # CONFIG_WAN_ROUTER is not set | ||
| 389 | |||
| 390 | # | ||
| 391 | # QoS and/or fair queueing | ||
| 392 | # | ||
| 393 | # CONFIG_NET_SCHED is not set | ||
| 394 | |||
| 395 | # | ||
| 396 | # Network testing | ||
| 397 | # | ||
| 398 | # CONFIG_NET_PKTGEN is not set | ||
| 399 | # CONFIG_HAMRADIO is not set | ||
| 400 | # CONFIG_IRDA is not set | ||
| 401 | # CONFIG_BT is not set | ||
| 402 | # CONFIG_AF_RXRPC is not set | ||
| 403 | |||
| 404 | # | ||
| 405 | # Wireless | ||
| 406 | # | ||
| 407 | # CONFIG_CFG80211 is not set | ||
| 408 | # CONFIG_WIRELESS_EXT is not set | ||
| 409 | # CONFIG_MAC80211 is not set | ||
| 410 | # CONFIG_IEEE80211 is not set | ||
| 411 | # CONFIG_RFKILL is not set | ||
| 412 | |||
| 413 | # | ||
| 414 | # Device Drivers | ||
| 415 | # | ||
| 416 | |||
| 417 | # | ||
| 418 | # Generic Driver Options | ||
| 419 | # | ||
| 420 | CONFIG_STANDALONE=y | ||
| 421 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 422 | # CONFIG_FW_LOADER is not set | ||
| 423 | # CONFIG_DEBUG_DRIVER is not set | ||
| 424 | # CONFIG_DEBUG_DEVRES is not set | ||
| 425 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 426 | |||
| 427 | # | ||
| 428 | # Connector - unified userspace <-> kernelspace linker | ||
| 429 | # | ||
| 430 | # CONFIG_CONNECTOR is not set | ||
| 431 | CONFIG_MTD=y | ||
| 432 | # CONFIG_MTD_DEBUG is not set | ||
| 433 | # CONFIG_MTD_CONCAT is not set | ||
| 434 | CONFIG_MTD_PARTITIONS=y | ||
| 435 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 436 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
| 437 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 438 | |||
| 439 | # | ||
| 440 | # User Modules And Translation Layers | ||
| 441 | # | ||
| 442 | CONFIG_MTD_CHAR=y | ||
| 443 | CONFIG_MTD_BLKDEVS=y | ||
| 444 | CONFIG_MTD_BLOCK=y | ||
| 445 | # CONFIG_FTL is not set | ||
| 446 | # CONFIG_NFTL is not set | ||
| 447 | # CONFIG_INFTL is not set | ||
| 448 | # CONFIG_RFD_FTL is not set | ||
| 449 | # CONFIG_SSFDC is not set | ||
| 450 | |||
| 451 | # | ||
| 452 | # RAM/ROM/Flash chip drivers | ||
| 453 | # | ||
| 454 | # CONFIG_MTD_CFI is not set | ||
| 455 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 456 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 457 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 458 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 459 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 460 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 461 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 462 | CONFIG_MTD_CFI_I1=y | ||
| 463 | CONFIG_MTD_CFI_I2=y | ||
| 464 | # CONFIG_MTD_CFI_I4 is not set | ||
| 465 | # CONFIG_MTD_CFI_I8 is not set | ||
| 466 | # CONFIG_MTD_RAM is not set | ||
| 467 | # CONFIG_MTD_ROM is not set | ||
| 468 | # CONFIG_MTD_ABSENT is not set | ||
| 469 | |||
| 470 | # | ||
| 471 | # Mapping drivers for chip access | ||
| 472 | # | ||
| 473 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 474 | # CONFIG_MTD_PLATRAM is not set | ||
| 475 | |||
| 476 | # | ||
| 477 | # Self-contained MTD device drivers | ||
| 478 | # | ||
| 479 | # CONFIG_MTD_SLRAM is not set | ||
| 480 | # CONFIG_MTD_PHRAM is not set | ||
| 481 | # CONFIG_MTD_MTDRAM is not set | ||
| 482 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 483 | |||
| 484 | # | ||
| 485 | # Disk-On-Chip Device Drivers | ||
| 486 | # | ||
| 487 | # CONFIG_MTD_DOC2000 is not set | ||
| 488 | # CONFIG_MTD_DOC2001 is not set | ||
| 489 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 490 | CONFIG_MTD_NAND=y | ||
| 491 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
| 492 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
| 493 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
| 494 | CONFIG_MTD_NAND_AMS_DELTA=y | ||
| 495 | CONFIG_MTD_NAND_IDS=y | ||
| 496 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
| 497 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
| 498 | # CONFIG_MTD_NAND_PLATFORM is not set | ||
| 499 | # CONFIG_MTD_ONENAND is not set | ||
| 500 | |||
| 501 | # | ||
| 502 | # UBI - Unsorted block images | ||
| 503 | # | ||
| 504 | # CONFIG_MTD_UBI is not set | ||
| 505 | |||
| 506 | # | ||
| 507 | # Parallel port support | ||
| 508 | # | ||
| 509 | # CONFIG_PARPORT is not set | ||
| 510 | |||
| 511 | # | ||
| 512 | # Plug and Play support | ||
| 513 | # | ||
| 514 | # CONFIG_PNPACPI is not set | ||
| 515 | |||
| 516 | # | ||
| 517 | # Block devices | ||
| 518 | # | ||
| 519 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 520 | CONFIG_BLK_DEV_LOOP=y | ||
| 521 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 522 | # CONFIG_BLK_DEV_NBD is not set | ||
| 523 | # CONFIG_BLK_DEV_UB is not set | ||
| 524 | CONFIG_BLK_DEV_RAM=y | ||
| 525 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 526 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 527 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 528 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 529 | # CONFIG_ATA_OVER_ETH is not set | ||
| 530 | |||
| 531 | # | ||
| 532 | # SCSI device support | ||
| 533 | # | ||
| 534 | # CONFIG_RAID_ATTRS is not set | ||
| 535 | CONFIG_SCSI=y | ||
| 536 | # CONFIG_SCSI_TGT is not set | ||
| 537 | # CONFIG_SCSI_NETLINK is not set | ||
| 538 | CONFIG_SCSI_PROC_FS=y | ||
| 539 | |||
| 540 | # | ||
| 541 | # SCSI support type (disk, tape, CD-ROM) | ||
| 542 | # | ||
| 543 | CONFIG_BLK_DEV_SD=y | ||
| 544 | # CONFIG_CHR_DEV_ST is not set | ||
| 545 | # CONFIG_CHR_DEV_OSST is not set | ||
| 546 | # CONFIG_BLK_DEV_SR is not set | ||
| 547 | # CONFIG_CHR_DEV_SG is not set | ||
| 548 | # CONFIG_CHR_DEV_SCH is not set | ||
| 549 | |||
| 550 | # | ||
| 551 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 552 | # | ||
| 553 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 554 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 555 | # CONFIG_SCSI_LOGGING is not set | ||
| 556 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 557 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 558 | |||
| 559 | # | ||
| 560 | # SCSI Transports | ||
| 561 | # | ||
| 562 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 563 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 564 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 565 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
| 566 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 567 | |||
| 568 | # | ||
| 569 | # SCSI low-level drivers | ||
| 570 | # | ||
| 571 | # CONFIG_ISCSI_TCP is not set | ||
| 572 | # CONFIG_SCSI_DEBUG is not set | ||
| 573 | # CONFIG_SCSI_ESP_CORE is not set | ||
| 574 | # CONFIG_ATA is not set | ||
| 575 | |||
| 576 | # | ||
| 577 | # Multi-device support (RAID and LVM) | ||
| 578 | # | ||
| 579 | # CONFIG_MD is not set | ||
| 580 | |||
| 581 | # | ||
| 582 | # Network device support | ||
| 583 | # | ||
| 584 | CONFIG_NETDEVICES=y | ||
| 585 | # CONFIG_DUMMY is not set | ||
| 586 | # CONFIG_BONDING is not set | ||
| 587 | # CONFIG_EQUALIZER is not set | ||
| 588 | # CONFIG_TUN is not set | ||
| 589 | # CONFIG_PHYLIB is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # Ethernet (10 or 100Mbit) | ||
| 593 | # | ||
| 594 | CONFIG_NET_ETHERNET=y | ||
| 595 | CONFIG_MII=y | ||
| 596 | # CONFIG_SMC91X is not set | ||
| 597 | # CONFIG_DM9000 is not set | ||
| 598 | CONFIG_NETDEV_1000=y | ||
| 599 | CONFIG_NETDEV_10000=y | ||
| 600 | |||
| 601 | # | ||
| 602 | # Token Ring devices | ||
| 603 | # | ||
| 604 | |||
| 605 | # | ||
| 606 | # Wireless LAN | ||
| 607 | # | ||
| 608 | # CONFIG_WLAN_PRE80211 is not set | ||
| 609 | # CONFIG_WLAN_80211 is not set | ||
| 610 | |||
| 611 | # | ||
| 612 | # USB Network Adapters | ||
| 613 | # | ||
| 614 | CONFIG_USB_CATC=y | ||
| 615 | CONFIG_USB_KAWETH=y | ||
| 616 | CONFIG_USB_PEGASUS=y | ||
| 617 | CONFIG_USB_RTL8150=y | ||
| 618 | CONFIG_USB_USBNET_MII=y | ||
| 619 | CONFIG_USB_USBNET=y | ||
| 620 | CONFIG_USB_NET_AX8817X=y | ||
| 621 | CONFIG_USB_NET_CDCETHER=y | ||
| 622 | # CONFIG_USB_NET_DM9601 is not set | ||
| 623 | # CONFIG_USB_NET_GL620A is not set | ||
| 624 | CONFIG_USB_NET_NET1080=y | ||
| 625 | # CONFIG_USB_NET_PLUSB is not set | ||
| 626 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 627 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 628 | CONFIG_USB_NET_CDC_SUBSET=y | ||
| 629 | # CONFIG_USB_ALI_M5632 is not set | ||
| 630 | # CONFIG_USB_AN2720 is not set | ||
| 631 | CONFIG_USB_BELKIN=y | ||
| 632 | CONFIG_USB_ARMLINUX=y | ||
| 633 | # CONFIG_USB_EPSON2888 is not set | ||
| 634 | # CONFIG_USB_KC2190 is not set | ||
| 635 | CONFIG_USB_NET_ZAURUS=y | ||
| 636 | # CONFIG_WAN is not set | ||
| 637 | CONFIG_PPP=y | ||
| 638 | CONFIG_PPP_MULTILINK=y | ||
| 639 | # CONFIG_PPP_FILTER is not set | ||
| 640 | # CONFIG_PPP_ASYNC is not set | ||
| 641 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 642 | # CONFIG_PPP_DEFLATE is not set | ||
| 643 | # CONFIG_PPP_BSDCOMP is not set | ||
| 644 | # CONFIG_PPP_MPPE is not set | ||
| 645 | # CONFIG_PPPOE is not set | ||
| 646 | # CONFIG_SLIP is not set | ||
| 647 | CONFIG_SLHC=y | ||
| 648 | # CONFIG_SHAPER is not set | ||
| 649 | # CONFIG_NETCONSOLE is not set | ||
| 650 | # CONFIG_NETPOLL is not set | ||
| 651 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 652 | |||
| 653 | # | ||
| 654 | # ISDN subsystem | ||
| 655 | # | ||
| 656 | # CONFIG_ISDN is not set | ||
| 657 | |||
| 658 | # | ||
| 659 | # Input device support | ||
| 660 | # | ||
| 661 | CONFIG_INPUT=y | ||
| 662 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 663 | |||
| 664 | # | ||
| 665 | # Userland interfaces | ||
| 666 | # | ||
| 667 | CONFIG_INPUT_MOUSEDEV=y | ||
| 668 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 669 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 670 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 671 | # CONFIG_INPUT_JOYDEV is not set | ||
| 672 | # CONFIG_INPUT_TSDEV is not set | ||
| 673 | # CONFIG_INPUT_EVDEV is not set | ||
| 674 | # CONFIG_INPUT_EVBUG is not set | ||
| 675 | |||
| 676 | # | ||
| 677 | # Input Device Drivers | ||
| 678 | # | ||
| 679 | CONFIG_INPUT_KEYBOARD=y | ||
| 680 | CONFIG_KEYBOARD_ATKBD=y | ||
| 681 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 682 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 683 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 684 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 685 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 686 | CONFIG_KEYBOARD_OMAP=y | ||
| 687 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 688 | # CONFIG_INPUT_MOUSE is not set | ||
| 689 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 690 | # CONFIG_INPUT_TABLET is not set | ||
| 691 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 692 | # CONFIG_INPUT_MISC is not set | ||
| 693 | |||
| 694 | # | ||
| 695 | # Hardware I/O ports | ||
| 696 | # | ||
| 697 | CONFIG_SERIO=y | ||
| 698 | CONFIG_SERIO_SERPORT=y | ||
| 699 | CONFIG_SERIO_LIBPS2=y | ||
| 700 | # CONFIG_SERIO_RAW is not set | ||
| 701 | # CONFIG_GAMEPORT is not set | ||
| 702 | |||
| 703 | # | ||
| 704 | # Character devices | ||
| 705 | # | ||
| 706 | CONFIG_VT=y | ||
| 707 | CONFIG_VT_CONSOLE=y | ||
| 708 | CONFIG_HW_CONSOLE=y | ||
| 709 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 710 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 711 | |||
| 712 | # | ||
| 713 | # Serial drivers | ||
| 714 | # | ||
| 715 | CONFIG_SERIAL_8250=y | ||
| 716 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 717 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 718 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 719 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 720 | |||
| 721 | # | ||
| 722 | # Non-8250 serial port support | ||
| 723 | # | ||
| 724 | CONFIG_SERIAL_CORE=y | ||
| 725 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 726 | CONFIG_UNIX98_PTYS=y | ||
| 727 | # CONFIG_LEGACY_PTYS is not set | ||
| 728 | |||
| 729 | # | ||
| 730 | # IPMI | ||
| 731 | # | ||
| 732 | # CONFIG_IPMI_HANDLER is not set | ||
| 733 | # CONFIG_WATCHDOG is not set | ||
| 734 | CONFIG_HW_RANDOM=y | ||
| 735 | # CONFIG_NVRAM is not set | ||
| 736 | # CONFIG_R3964 is not set | ||
| 737 | # CONFIG_RAW_DRIVER is not set | ||
| 738 | |||
| 739 | # | ||
| 740 | # TPM devices | ||
| 741 | # | ||
| 742 | # CONFIG_TCG_TPM is not set | ||
| 743 | CONFIG_I2C=y | ||
| 744 | CONFIG_I2C_BOARDINFO=y | ||
| 745 | CONFIG_I2C_CHARDEV=y | ||
| 746 | |||
| 747 | # | ||
| 748 | # I2C Algorithms | ||
| 749 | # | ||
| 750 | CONFIG_I2C_ALGOBIT=y | ||
| 751 | # CONFIG_I2C_ALGOPCF is not set | ||
| 752 | # CONFIG_I2C_ALGOPCA is not set | ||
| 753 | |||
| 754 | # | ||
| 755 | # I2C Hardware Bus support | ||
| 756 | # | ||
| 757 | # CONFIG_I2C_GPIO is not set | ||
| 758 | # CONFIG_I2C_OCORES is not set | ||
| 759 | CONFIG_I2C_OMAP=y | ||
| 760 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 761 | # CONFIG_I2C_SIMTEC is not set | ||
| 762 | # CONFIG_I2C_STUB is not set | ||
| 763 | # CONFIG_I2C_TINY_USB is not set | ||
| 764 | |||
| 765 | # | ||
| 766 | # Miscellaneous I2C Chip support | ||
| 767 | # | ||
| 768 | # CONFIG_SENSORS_DS1337 is not set | ||
| 769 | # CONFIG_SENSORS_DS1374 is not set | ||
| 770 | # CONFIG_SENSORS_EEPROM is not set | ||
| 771 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 772 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 773 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 774 | # CONFIG_TPS65010 is not set | ||
| 775 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 776 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 777 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 778 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 779 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 780 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 781 | |||
| 782 | # | ||
| 783 | # SPI support | ||
| 784 | # | ||
| 785 | # CONFIG_SPI is not set | ||
| 786 | # CONFIG_SPI_MASTER is not set | ||
| 787 | |||
| 788 | # | ||
| 789 | # Dallas's 1-wire bus | ||
| 790 | # | ||
| 791 | # CONFIG_W1 is not set | ||
| 792 | # CONFIG_HWMON is not set | ||
| 793 | |||
| 794 | # | ||
| 795 | # Misc devices | ||
| 796 | # | ||
| 797 | # CONFIG_BLINK is not set | ||
| 798 | |||
| 799 | # | ||
| 800 | # Multifunction device drivers | ||
| 801 | # | ||
| 802 | # CONFIG_MFD_SM501 is not set | ||
| 803 | |||
| 804 | # | ||
| 805 | # LED devices | ||
| 806 | # | ||
| 807 | CONFIG_NEW_LEDS=y | ||
| 808 | CONFIG_LEDS_CLASS=y | ||
| 809 | |||
| 810 | # | ||
| 811 | # LED drivers | ||
| 812 | # | ||
| 813 | CONFIG_LEDS_AMS_DELTA=y | ||
| 814 | # CONFIG_LEDS_OMAP_DEBUG is not set | ||
| 815 | # CONFIG_LEDS_OMAP is not set | ||
| 816 | |||
| 817 | # | ||
| 818 | # LED Triggers | ||
| 819 | # | ||
| 820 | CONFIG_LEDS_TRIGGERS=y | ||
| 821 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
| 822 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
| 823 | |||
| 824 | # | ||
| 825 | # Multimedia devices | ||
| 826 | # | ||
| 827 | # CONFIG_VIDEO_DEV is not set | ||
| 828 | # CONFIG_DVB_CORE is not set | ||
| 829 | CONFIG_DAB=y | ||
| 830 | # CONFIG_USB_DABUSB is not set | ||
| 831 | |||
| 832 | # | ||
| 833 | # Graphics support | ||
| 834 | # | ||
| 835 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 836 | |||
| 837 | # | ||
| 838 | # Display device support | ||
| 839 | # | ||
| 840 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 841 | # CONFIG_VGASTATE is not set | ||
| 842 | CONFIG_FB=y | ||
| 843 | CONFIG_FIRMWARE_EDID=y | ||
| 844 | # CONFIG_FB_DDC is not set | ||
| 845 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 846 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 847 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 848 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 849 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 850 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 851 | # CONFIG_FB_SYS_FOPS is not set | ||
| 852 | CONFIG_FB_DEFERRED_IO=y | ||
| 853 | # CONFIG_FB_SVGALIB is not set | ||
| 854 | # CONFIG_FB_MACMODES is not set | ||
| 855 | # CONFIG_FB_BACKLIGHT is not set | ||
| 856 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 857 | # CONFIG_FB_TILEBLITTING is not set | ||
| 858 | |||
| 859 | # | ||
| 860 | # Frame buffer hardware drivers | ||
| 861 | # | ||
| 862 | # CONFIG_FB_S1D13XXX is not set | ||
| 863 | CONFIG_FB_OMAP=y | ||
| 864 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 865 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 866 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 867 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 868 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 869 | # CONFIG_FB_VIRTUAL is not set | ||
| 870 | |||
| 871 | # | ||
| 872 | # Console display driver support | ||
| 873 | # | ||
| 874 | # CONFIG_VGA_CONSOLE is not set | ||
| 875 | CONFIG_DUMMY_CONSOLE=y | ||
| 876 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 877 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 878 | CONFIG_FONTS=y | ||
| 879 | # CONFIG_FONT_8x8 is not set | ||
| 880 | # CONFIG_FONT_8x16 is not set | ||
| 881 | CONFIG_FONT_6x11=y | ||
| 882 | # CONFIG_FONT_7x14 is not set | ||
| 883 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 884 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 885 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 886 | # CONFIG_FONT_CLEAN_4x6 is not set | ||
| 887 | # CONFIG_FONT_CLEAN_5x8 is not set | ||
| 888 | # CONFIG_FONT_SUN8x16 is not set | ||
| 889 | # CONFIG_FONT_SUN12x22 is not set | ||
| 890 | # CONFIG_FONT_10x18 is not set | ||
| 891 | CONFIG_LOGO=y | ||
| 892 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 893 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 894 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 895 | |||
| 896 | # | ||
| 897 | # Sound | ||
| 898 | # | ||
| 899 | # CONFIG_SOUND is not set | ||
| 900 | |||
| 901 | # | ||
| 902 | # HID Devices | ||
| 903 | # | ||
| 904 | CONFIG_HID=y | ||
| 905 | # CONFIG_HID_DEBUG is not set | ||
| 906 | |||
| 907 | # | ||
| 908 | # USB Input Devices | ||
| 909 | # | ||
| 910 | CONFIG_USB_HID=y | ||
| 911 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 912 | # CONFIG_HID_FF is not set | ||
| 913 | # CONFIG_USB_HIDDEV is not set | ||
| 914 | |||
| 915 | # | ||
| 916 | # USB support | ||
| 917 | # | ||
| 918 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 919 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 920 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 921 | CONFIG_USB=y | ||
| 922 | # CONFIG_USB_DEBUG is not set | ||
| 923 | |||
| 924 | # | ||
| 925 | # Miscellaneous USB options | ||
| 926 | # | ||
| 927 | CONFIG_USB_DEVICEFS=y | ||
| 928 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 929 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 930 | # CONFIG_USB_OTG is not set | ||
| 931 | |||
| 932 | # | ||
| 933 | # USB Host Controller Drivers | ||
| 934 | # | ||
| 935 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 936 | CONFIG_USB_OHCI_HCD=y | ||
| 937 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 938 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 939 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 940 | # CONFIG_USB_SL811_HCD is not set | ||
| 941 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 942 | |||
| 943 | # | ||
| 944 | # USB Device Class drivers | ||
| 945 | # | ||
| 946 | # CONFIG_USB_ACM is not set | ||
| 947 | # CONFIG_USB_PRINTER is not set | ||
| 948 | |||
| 949 | # | ||
| 950 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 951 | # | ||
| 952 | |||
| 953 | # | ||
| 954 | # may also be needed; see USB_STORAGE Help for more information | ||
| 955 | # | ||
| 956 | CONFIG_USB_STORAGE=y | ||
| 957 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 958 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 959 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 960 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 961 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 962 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 963 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 964 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 965 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 966 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 967 | # CONFIG_USB_LIBUSUAL is not set | ||
| 968 | |||
| 969 | # | ||
| 970 | # USB Imaging devices | ||
| 971 | # | ||
| 972 | # CONFIG_USB_MDC800 is not set | ||
| 973 | # CONFIG_USB_MICROTEK is not set | ||
| 974 | CONFIG_USB_MON=y | ||
| 975 | |||
| 976 | # | ||
| 977 | # USB port drivers | ||
| 978 | # | ||
| 979 | |||
| 980 | # | ||
| 981 | # USB Serial Converter support | ||
| 982 | # | ||
| 983 | # CONFIG_USB_SERIAL is not set | ||
| 984 | |||
| 985 | # | ||
| 986 | # USB Miscellaneous drivers | ||
| 987 | # | ||
| 988 | # CONFIG_USB_EMI62 is not set | ||
| 989 | # CONFIG_USB_EMI26 is not set | ||
| 990 | # CONFIG_USB_ADUTUX is not set | ||
| 991 | # CONFIG_USB_AUERSWALD is not set | ||
| 992 | # CONFIG_USB_RIO500 is not set | ||
| 993 | # CONFIG_USB_LEGOTOWER is not set | ||
| 994 | # CONFIG_USB_LCD is not set | ||
| 995 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 996 | # CONFIG_USB_LED is not set | ||
| 997 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 998 | # CONFIG_USB_CYTHERM is not set | ||
| 999 | # CONFIG_USB_PHIDGET is not set | ||
| 1000 | # CONFIG_USB_IDMOUSE is not set | ||
| 1001 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 1002 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 1003 | # CONFIG_USB_LD is not set | ||
| 1004 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 1005 | # CONFIG_USB_IOWARRIOR is not set | ||
| 1006 | # CONFIG_USB_TEST is not set | ||
| 1007 | |||
| 1008 | # | ||
| 1009 | # USB DSL modem support | ||
| 1010 | # | ||
| 1011 | |||
| 1012 | # | ||
| 1013 | # USB Gadget Support | ||
| 1014 | # | ||
| 1015 | # CONFIG_USB_GADGET is not set | ||
| 1016 | # CONFIG_MMC is not set | ||
| 1017 | |||
| 1018 | # | ||
| 1019 | # Real Time Clock | ||
| 1020 | # | ||
| 1021 | CONFIG_RTC_LIB=y | ||
| 1022 | CONFIG_RTC_CLASS=y | ||
| 1023 | CONFIG_RTC_HCTOSYS=y | ||
| 1024 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 1025 | # CONFIG_RTC_DEBUG is not set | ||
| 1026 | |||
| 1027 | # | ||
| 1028 | # RTC interfaces | ||
| 1029 | # | ||
| 1030 | CONFIG_RTC_INTF_SYSFS=y | ||
| 1031 | CONFIG_RTC_INTF_PROC=y | ||
| 1032 | CONFIG_RTC_INTF_DEV=y | ||
| 1033 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 1034 | # CONFIG_RTC_DRV_TEST is not set | ||
| 1035 | |||
| 1036 | # | ||
| 1037 | # I2C RTC drivers | ||
| 1038 | # | ||
| 1039 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 1040 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 1041 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 1042 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 1043 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 1044 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 1045 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 1046 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 1047 | |||
| 1048 | # | ||
| 1049 | # SPI RTC drivers | ||
| 1050 | # | ||
| 1051 | |||
| 1052 | # | ||
| 1053 | # Platform RTC drivers | ||
| 1054 | # | ||
| 1055 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 1056 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 1057 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 1058 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 1059 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 1060 | |||
| 1061 | # | ||
| 1062 | # on-CPU RTC drivers | ||
| 1063 | # | ||
| 1064 | CONFIG_RTC_DRV_OMAP=y | ||
| 1065 | |||
| 1066 | # | ||
| 1067 | # CBUS support | ||
| 1068 | # | ||
| 1069 | # CONFIG_CBUS is not set | ||
| 1070 | |||
| 1071 | # | ||
| 1072 | # File systems | ||
| 1073 | # | ||
| 1074 | CONFIG_EXT2_FS=y | ||
| 1075 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 1076 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1077 | CONFIG_EXT3_FS=y | ||
| 1078 | CONFIG_EXT3_FS_XATTR=y | ||
| 1079 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 1080 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 1081 | # CONFIG_EXT4DEV_FS is not set | ||
| 1082 | CONFIG_JBD=y | ||
| 1083 | # CONFIG_JBD_DEBUG is not set | ||
| 1084 | CONFIG_FS_MBCACHE=y | ||
| 1085 | # CONFIG_REISERFS_FS is not set | ||
| 1086 | # CONFIG_JFS_FS is not set | ||
| 1087 | # CONFIG_FS_POSIX_ACL is not set | ||
| 1088 | # CONFIG_XFS_FS is not set | ||
| 1089 | # CONFIG_GFS2_FS is not set | ||
| 1090 | # CONFIG_OCFS2_FS is not set | ||
| 1091 | # CONFIG_MINIX_FS is not set | ||
| 1092 | # CONFIG_ROMFS_FS is not set | ||
| 1093 | CONFIG_INOTIFY=y | ||
| 1094 | CONFIG_INOTIFY_USER=y | ||
| 1095 | # CONFIG_QUOTA is not set | ||
| 1096 | CONFIG_DNOTIFY=y | ||
| 1097 | CONFIG_AUTOFS_FS=y | ||
| 1098 | CONFIG_AUTOFS4_FS=y | ||
| 1099 | # CONFIG_FUSE_FS is not set | ||
| 1100 | |||
| 1101 | # | ||
| 1102 | # CD-ROM/DVD Filesystems | ||
| 1103 | # | ||
| 1104 | # CONFIG_ISO9660_FS is not set | ||
| 1105 | # CONFIG_UDF_FS is not set | ||
| 1106 | |||
| 1107 | # | ||
| 1108 | # DOS/FAT/NT Filesystems | ||
| 1109 | # | ||
| 1110 | CONFIG_FAT_FS=y | ||
| 1111 | CONFIG_MSDOS_FS=y | ||
| 1112 | CONFIG_VFAT_FS=y | ||
| 1113 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1114 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1115 | # CONFIG_NTFS_FS is not set | ||
| 1116 | |||
| 1117 | # | ||
| 1118 | # Pseudo filesystems | ||
| 1119 | # | ||
| 1120 | CONFIG_PROC_FS=y | ||
| 1121 | CONFIG_PROC_SYSCTL=y | ||
| 1122 | CONFIG_SYSFS=y | ||
| 1123 | CONFIG_TMPFS=y | ||
| 1124 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 1125 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1126 | CONFIG_RAMFS=y | ||
| 1127 | # CONFIG_CONFIGFS_FS is not set | ||
| 1128 | |||
| 1129 | # | ||
| 1130 | # Miscellaneous filesystems | ||
| 1131 | # | ||
| 1132 | # CONFIG_ADFS_FS is not set | ||
| 1133 | # CONFIG_AFFS_FS is not set | ||
| 1134 | # CONFIG_HFS_FS is not set | ||
| 1135 | # CONFIG_HFSPLUS_FS is not set | ||
| 1136 | # CONFIG_BEFS_FS is not set | ||
| 1137 | # CONFIG_BFS_FS is not set | ||
| 1138 | # CONFIG_EFS_FS is not set | ||
| 1139 | CONFIG_JFFS2_FS=y | ||
| 1140 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1141 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1142 | CONFIG_JFFS2_SUMMARY=y | ||
| 1143 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 1144 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 1145 | CONFIG_JFFS2_ZLIB=y | ||
| 1146 | CONFIG_JFFS2_RTIME=y | ||
| 1147 | # CONFIG_JFFS2_RUBIN is not set | ||
| 1148 | # CONFIG_CRAMFS is not set | ||
| 1149 | # CONFIG_VXFS_FS is not set | ||
| 1150 | # CONFIG_HPFS_FS is not set | ||
| 1151 | # CONFIG_QNX4FS_FS is not set | ||
| 1152 | # CONFIG_SYSV_FS is not set | ||
| 1153 | # CONFIG_UFS_FS is not set | ||
| 1154 | |||
| 1155 | # | ||
| 1156 | # Network File Systems | ||
| 1157 | # | ||
| 1158 | CONFIG_NFS_FS=y | ||
| 1159 | # CONFIG_NFS_V3 is not set | ||
| 1160 | # CONFIG_NFS_V4 is not set | ||
| 1161 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1162 | # CONFIG_NFSD is not set | ||
| 1163 | CONFIG_LOCKD=y | ||
| 1164 | CONFIG_NFS_COMMON=y | ||
| 1165 | CONFIG_SUNRPC=y | ||
| 1166 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1167 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1168 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1169 | # CONFIG_SMB_FS is not set | ||
| 1170 | # CONFIG_CIFS is not set | ||
| 1171 | # CONFIG_NCP_FS is not set | ||
| 1172 | # CONFIG_CODA_FS is not set | ||
| 1173 | # CONFIG_AFS_FS is not set | ||
| 1174 | # CONFIG_9P_FS is not set | ||
| 1175 | |||
| 1176 | # | ||
| 1177 | # Partition Types | ||
| 1178 | # | ||
| 1179 | CONFIG_PARTITION_ADVANCED=y | ||
| 1180 | # CONFIG_ACORN_PARTITION is not set | ||
| 1181 | # CONFIG_OSF_PARTITION is not set | ||
| 1182 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1183 | # CONFIG_ATARI_PARTITION is not set | ||
| 1184 | # CONFIG_MAC_PARTITION is not set | ||
| 1185 | CONFIG_MSDOS_PARTITION=y | ||
| 1186 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1187 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1188 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1189 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1190 | # CONFIG_LDM_PARTITION is not set | ||
| 1191 | # CONFIG_SGI_PARTITION is not set | ||
| 1192 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1193 | # CONFIG_SUN_PARTITION is not set | ||
| 1194 | # CONFIG_KARMA_PARTITION is not set | ||
| 1195 | # CONFIG_EFI_PARTITION is not set | ||
| 1196 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1197 | |||
| 1198 | # | ||
| 1199 | # Native Language Support | ||
| 1200 | # | ||
| 1201 | CONFIG_NLS=y | ||
| 1202 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1203 | CONFIG_NLS_CODEPAGE_437=y | ||
| 1204 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1205 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1206 | CONFIG_NLS_CODEPAGE_850=y | ||
| 1207 | CONFIG_NLS_CODEPAGE_852=y | ||
| 1208 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1209 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1210 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1211 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1212 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1213 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1214 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1215 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1216 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1217 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1218 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1219 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1220 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1221 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1222 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1223 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1224 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1225 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1226 | # CONFIG_NLS_ASCII is not set | ||
| 1227 | CONFIG_NLS_ISO8859_1=y | ||
| 1228 | CONFIG_NLS_ISO8859_2=y | ||
| 1229 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1230 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1231 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1232 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1233 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1234 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1235 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1236 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1237 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1238 | # CONFIG_NLS_KOI8_R is not set | ||
| 1239 | # CONFIG_NLS_KOI8_U is not set | ||
| 1240 | # CONFIG_NLS_UTF8 is not set | ||
| 1241 | |||
| 1242 | # | ||
| 1243 | # Distributed Lock Manager | ||
| 1244 | # | ||
| 1245 | # CONFIG_DLM is not set | ||
| 1246 | |||
| 1247 | # | ||
| 1248 | # Profiling support | ||
| 1249 | # | ||
| 1250 | # CONFIG_PROFILING is not set | ||
| 1251 | |||
| 1252 | # | ||
| 1253 | # Kernel hacking | ||
| 1254 | # | ||
| 1255 | # CONFIG_PRINTK_TIME is not set | ||
| 1256 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1257 | CONFIG_MAGIC_SYSRQ=y | ||
| 1258 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1259 | # CONFIG_DEBUG_FS is not set | ||
| 1260 | # CONFIG_HEADERS_CHECK is not set | ||
| 1261 | CONFIG_DEBUG_KERNEL=y | ||
| 1262 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1263 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1264 | # CONFIG_SCHEDSTATS is not set | ||
| 1265 | # CONFIG_TIMER_STATS is not set | ||
| 1266 | # CONFIG_DEBUG_SLAB is not set | ||
| 1267 | CONFIG_DEBUG_PREEMPT=y | ||
| 1268 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1269 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1270 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1271 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1272 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1273 | # CONFIG_PROVE_LOCKING is not set | ||
| 1274 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1275 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1276 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1277 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1278 | # CONFIG_DEBUG_INFO is not set | ||
| 1279 | # CONFIG_DEBUG_VM is not set | ||
| 1280 | # CONFIG_DEBUG_LIST is not set | ||
| 1281 | CONFIG_FRAME_POINTER=y | ||
| 1282 | CONFIG_FORCED_INLINING=y | ||
| 1283 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1284 | # CONFIG_FAULT_INJECTION is not set | ||
| 1285 | # CONFIG_DEBUG_USER is not set | ||
| 1286 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1287 | # CONFIG_DEBUG_LL is not set | ||
| 1288 | |||
| 1289 | # | ||
| 1290 | # Security options | ||
| 1291 | # | ||
| 1292 | # CONFIG_KEYS is not set | ||
| 1293 | # CONFIG_SECURITY is not set | ||
| 1294 | |||
| 1295 | # | ||
| 1296 | # Cryptographic options | ||
| 1297 | # | ||
| 1298 | # CONFIG_CRYPTO is not set | ||
| 1299 | |||
| 1300 | # | ||
| 1301 | # Library routines | ||
| 1302 | # | ||
| 1303 | CONFIG_BITREVERSE=y | ||
| 1304 | # CONFIG_CRC_CCITT is not set | ||
| 1305 | # CONFIG_CRC16 is not set | ||
| 1306 | # CONFIG_CRC_ITU_T is not set | ||
| 1307 | CONFIG_CRC32=y | ||
| 1308 | # CONFIG_LIBCRC32C is not set | ||
| 1309 | CONFIG_ZLIB_INFLATE=y | ||
| 1310 | CONFIG_ZLIB_DEFLATE=y | ||
| 1311 | CONFIG_PLIST=y | ||
| 1312 | CONFIG_HAS_IOMEM=y | ||
| 1313 | CONFIG_HAS_IOPORT=y | ||
| 1314 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/n770_defconfig b/arch/arm/configs/n770_defconfig new file mode 100644 index 000000000000..568ef1770d5f --- /dev/null +++ b/arch/arm/configs/n770_defconfig | |||
| @@ -0,0 +1,1421 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.24-rc8-omap1 | ||
| 4 | # Fri Jan 18 10:21:06 2008 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | CONFIG_LOCALVERSION="" | ||
| 35 | CONFIG_LOCALVERSION_AUTO=y | ||
| 36 | CONFIG_SWAP=y | ||
| 37 | CONFIG_SYSVIPC=y | ||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 39 | CONFIG_POSIX_MQUEUE=y | ||
| 40 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 41 | # CONFIG_TASKSTATS is not set | ||
| 42 | # CONFIG_USER_NS is not set | ||
| 43 | # CONFIG_PID_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 49 | CONFIG_FAIR_USER_SCHED=y | ||
| 50 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
| 51 | CONFIG_SYSFS_DEPRECATED=y | ||
| 52 | # CONFIG_RELAY is not set | ||
| 53 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 54 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 55 | CONFIG_SYSCTL=y | ||
| 56 | # CONFIG_EMBEDDED is not set | ||
| 57 | CONFIG_UID16=y | ||
| 58 | CONFIG_SYSCTL_SYSCALL=y | ||
| 59 | CONFIG_KALLSYMS=y | ||
| 60 | # CONFIG_KALLSYMS_ALL is not set | ||
| 61 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 62 | CONFIG_HOTPLUG=y | ||
| 63 | CONFIG_PRINTK=y | ||
| 64 | CONFIG_BUG=y | ||
| 65 | CONFIG_ELF_CORE=y | ||
| 66 | CONFIG_BASE_FULL=y | ||
| 67 | CONFIG_FUTEX=y | ||
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | ||
| 70 | CONFIG_SIGNALFD=y | ||
| 71 | CONFIG_EVENTFD=y | ||
| 72 | CONFIG_SHMEM=y | ||
| 73 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 74 | CONFIG_SLAB=y | ||
| 75 | # CONFIG_SLUB is not set | ||
| 76 | # CONFIG_SLOB is not set | ||
| 77 | CONFIG_SLABINFO=y | ||
| 78 | CONFIG_RT_MUTEXES=y | ||
| 79 | # CONFIG_TINY_SHMEM is not set | ||
| 80 | CONFIG_BASE_SMALL=0 | ||
| 81 | CONFIG_MODULES=y | ||
| 82 | CONFIG_MODULE_UNLOAD=y | ||
| 83 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 84 | # CONFIG_MODVERSIONS is not set | ||
| 85 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 86 | # CONFIG_KMOD is not set | ||
| 87 | CONFIG_BLOCK=y | ||
| 88 | # CONFIG_LBD is not set | ||
| 89 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 90 | # CONFIG_LSF is not set | ||
| 91 | # CONFIG_BLK_DEV_BSG is not set | ||
| 92 | |||
| 93 | # | ||
| 94 | # IO Schedulers | ||
| 95 | # | ||
| 96 | CONFIG_IOSCHED_NOOP=y | ||
| 97 | # CONFIG_IOSCHED_AS is not set | ||
| 98 | # CONFIG_IOSCHED_DEADLINE is not set | ||
| 99 | CONFIG_IOSCHED_CFQ=y | ||
| 100 | # CONFIG_DEFAULT_AS is not set | ||
| 101 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 102 | CONFIG_DEFAULT_CFQ=y | ||
| 103 | # CONFIG_DEFAULT_NOOP is not set | ||
| 104 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 105 | |||
| 106 | # | ||
| 107 | # System Type | ||
| 108 | # | ||
| 109 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 110 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 111 | # CONFIG_ARCH_REALVIEW is not set | ||
| 112 | # CONFIG_ARCH_VERSATILE is not set | ||
| 113 | # CONFIG_ARCH_AT91 is not set | ||
| 114 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 115 | # CONFIG_ARCH_CLPS711X is not set | ||
| 116 | # CONFIG_ARCH_CO285 is not set | ||
| 117 | # CONFIG_ARCH_EBSA110 is not set | ||
| 118 | # CONFIG_ARCH_EP93XX is not set | ||
| 119 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 120 | # CONFIG_ARCH_NETX is not set | ||
| 121 | # CONFIG_ARCH_H720X is not set | ||
| 122 | # CONFIG_ARCH_IMX is not set | ||
| 123 | # CONFIG_ARCH_IOP13XX is not set | ||
| 124 | # CONFIG_ARCH_IOP32X is not set | ||
| 125 | # CONFIG_ARCH_IOP33X is not set | ||
| 126 | # CONFIG_ARCH_IXP23XX is not set | ||
| 127 | # CONFIG_ARCH_IXP2000 is not set | ||
| 128 | # CONFIG_ARCH_IXP4XX is not set | ||
| 129 | # CONFIG_ARCH_L7200 is not set | ||
| 130 | # CONFIG_ARCH_KS8695 is not set | ||
| 131 | # CONFIG_ARCH_NS9XXX is not set | ||
| 132 | # CONFIG_ARCH_MXC is not set | ||
| 133 | # CONFIG_ARCH_PNX4008 is not set | ||
| 134 | # CONFIG_ARCH_PXA is not set | ||
| 135 | # CONFIG_ARCH_RPC is not set | ||
| 136 | # CONFIG_ARCH_SA1100 is not set | ||
| 137 | # CONFIG_ARCH_S3C2410 is not set | ||
| 138 | # CONFIG_ARCH_SHARK is not set | ||
| 139 | # CONFIG_ARCH_LH7A40X is not set | ||
| 140 | # CONFIG_ARCH_DAVINCI is not set | ||
| 141 | CONFIG_ARCH_OMAP=y | ||
| 142 | |||
| 143 | # | ||
| 144 | # TI OMAP Implementations | ||
| 145 | # | ||
| 146 | CONFIG_ARCH_OMAP_OTG=y | ||
| 147 | CONFIG_ARCH_OMAP1=y | ||
| 148 | # CONFIG_ARCH_OMAP2 is not set | ||
| 149 | # CONFIG_ARCH_OMAP3 is not set | ||
| 150 | |||
| 151 | # | ||
| 152 | # OMAP Feature Selections | ||
| 153 | # | ||
| 154 | CONFIG_OMAP_DEBUG_SRAM_PATCH=y | ||
| 155 | CONFIG_OMAP_RESET_CLOCKS=y | ||
| 156 | CONFIG_OMAP_BOOT_TAG=y | ||
| 157 | CONFIG_OMAP_BOOT_REASON=y | ||
| 158 | CONFIG_OMAP_COMPONENT_VERSION=y | ||
| 159 | CONFIG_OMAP_GPIO_SWITCH=y | ||
| 160 | # CONFIG_OMAP_MUX is not set | ||
| 161 | CONFIG_OMAP_STI=y | ||
| 162 | CONFIG_OMAP_STI_CONSOLE=y | ||
| 163 | CONFIG_OMAP_MCBSP=y | ||
| 164 | CONFIG_OMAP_MMU_FWK=y | ||
| 165 | CONFIG_OMAP_MBOX_FWK=y | ||
| 166 | # CONFIG_OMAP_MPU_TIMER is not set | ||
| 167 | CONFIG_OMAP_32K_TIMER=y | ||
| 168 | CONFIG_OMAP_32K_TIMER_HZ=128 | ||
| 169 | CONFIG_OMAP_DM_TIMER=y | ||
| 170 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 171 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 172 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Core Type | ||
| 176 | # | ||
| 177 | # CONFIG_ARCH_OMAP730 is not set | ||
| 178 | # CONFIG_ARCH_OMAP15XX is not set | ||
| 179 | CONFIG_ARCH_OMAP16XX=y | ||
| 180 | |||
| 181 | # | ||
| 182 | # OMAP Board Type | ||
| 183 | # | ||
| 184 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 185 | # CONFIG_MACH_OMAP_H2 is not set | ||
| 186 | # CONFIG_MACH_OMAP_H3 is not set | ||
| 187 | # CONFIG_MACH_OMAP_OSK is not set | ||
| 188 | CONFIG_MACH_NOKIA770=y | ||
| 189 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 190 | |||
| 191 | # | ||
| 192 | # OMAP CPU Speed | ||
| 193 | # | ||
| 194 | CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | ||
| 195 | CONFIG_OMAP_ARM_216MHZ=y | ||
| 196 | # CONFIG_OMAP_ARM_192MHZ is not set | ||
| 197 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 198 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 199 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 200 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 201 | |||
| 202 | # | ||
| 203 | # Boot options | ||
| 204 | # | ||
| 205 | |||
| 206 | # | ||
| 207 | # Power management | ||
| 208 | # | ||
| 209 | |||
| 210 | # | ||
| 211 | # Processor Type | ||
| 212 | # | ||
| 213 | CONFIG_CPU_32=y | ||
| 214 | CONFIG_CPU_ARM926T=y | ||
| 215 | CONFIG_CPU_32v5=y | ||
| 216 | CONFIG_CPU_ABRT_EV5TJ=y | ||
| 217 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 218 | CONFIG_CPU_CACHE_VIVT=y | ||
| 219 | CONFIG_CPU_COPY_V4WB=y | ||
| 220 | CONFIG_CPU_TLB_V4WBI=y | ||
| 221 | CONFIG_CPU_CP15=y | ||
| 222 | CONFIG_CPU_CP15_MMU=y | ||
| 223 | |||
| 224 | # | ||
| 225 | # Processor Features | ||
| 226 | # | ||
| 227 | CONFIG_ARM_THUMB=y | ||
| 228 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 229 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 230 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 231 | # CONFIG_CPU_CACHE_ROUND_ROBIN is not set | ||
| 232 | # CONFIG_OUTER_CACHE is not set | ||
| 233 | |||
| 234 | # | ||
| 235 | # Bus support | ||
| 236 | # | ||
| 237 | # CONFIG_PCI_SYSCALL is not set | ||
| 238 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 239 | # CONFIG_PCCARD is not set | ||
| 240 | |||
| 241 | # | ||
| 242 | # Kernel Features | ||
| 243 | # | ||
| 244 | # CONFIG_TICK_ONESHOT is not set | ||
| 245 | # CONFIG_NO_HZ is not set | ||
| 246 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 247 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 248 | # CONFIG_PREEMPT is not set | ||
| 249 | CONFIG_HZ=128 | ||
| 250 | # CONFIG_AEABI is not set | ||
| 251 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 252 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 253 | CONFIG_FLATMEM_MANUAL=y | ||
| 254 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 255 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 256 | CONFIG_FLATMEM=y | ||
| 257 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 258 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 259 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 260 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 261 | # CONFIG_RESOURCES_64BIT is not set | ||
| 262 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 263 | CONFIG_BOUNCE=y | ||
| 264 | CONFIG_VIRT_TO_BUS=y | ||
| 265 | # CONFIG_LEDS is not set | ||
| 266 | CONFIG_ALIGNMENT_TRAP=y | ||
| 267 | |||
| 268 | # | ||
| 269 | # Boot options | ||
| 270 | # | ||
| 271 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 272 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 273 | CONFIG_CMDLINE="root=1f03 rootfstype=jffs2 time" | ||
| 274 | # CONFIG_XIP_KERNEL is not set | ||
| 275 | # CONFIG_KEXEC is not set | ||
| 276 | |||
| 277 | # | ||
| 278 | # CPU Frequency scaling | ||
| 279 | # | ||
| 280 | # CONFIG_CPU_FREQ is not set | ||
| 281 | |||
| 282 | # | ||
| 283 | # Floating point emulation | ||
| 284 | # | ||
| 285 | |||
| 286 | # | ||
| 287 | # At least one emulation must be selected | ||
| 288 | # | ||
| 289 | CONFIG_FPE_NWFPE=y | ||
| 290 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 291 | # CONFIG_FPE_FASTFPE is not set | ||
| 292 | # CONFIG_VFP is not set | ||
| 293 | |||
| 294 | # | ||
| 295 | # Userspace binary formats | ||
| 296 | # | ||
| 297 | CONFIG_BINFMT_ELF=y | ||
| 298 | # CONFIG_BINFMT_AOUT is not set | ||
| 299 | # CONFIG_BINFMT_MISC is not set | ||
| 300 | # CONFIG_ARTHUR is not set | ||
| 301 | |||
| 302 | # | ||
| 303 | # Power management options | ||
| 304 | # | ||
| 305 | CONFIG_PM=y | ||
| 306 | # CONFIG_PM_LEGACY is not set | ||
| 307 | # CONFIG_PM_DEBUG is not set | ||
| 308 | CONFIG_PM_SLEEP=y | ||
| 309 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 310 | CONFIG_SUSPEND=y | ||
| 311 | # CONFIG_APM_EMULATION is not set | ||
| 312 | |||
| 313 | # | ||
| 314 | # Networking | ||
| 315 | # | ||
| 316 | CONFIG_NET=y | ||
| 317 | |||
| 318 | # | ||
| 319 | # Networking options | ||
| 320 | # | ||
| 321 | CONFIG_PACKET=y | ||
| 322 | # CONFIG_PACKET_MMAP is not set | ||
| 323 | CONFIG_UNIX=y | ||
| 324 | CONFIG_XFRM=y | ||
| 325 | # CONFIG_XFRM_USER is not set | ||
| 326 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 327 | # CONFIG_XFRM_MIGRATE is not set | ||
| 328 | # CONFIG_NET_KEY is not set | ||
| 329 | CONFIG_INET=y | ||
| 330 | CONFIG_IP_MULTICAST=y | ||
| 331 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 332 | CONFIG_IP_FIB_HASH=y | ||
| 333 | CONFIG_IP_PNP=y | ||
| 334 | CONFIG_IP_PNP_DHCP=y | ||
| 335 | CONFIG_IP_PNP_BOOTP=y | ||
| 336 | # CONFIG_IP_PNP_RARP is not set | ||
| 337 | # CONFIG_NET_IPIP is not set | ||
| 338 | # CONFIG_NET_IPGRE is not set | ||
| 339 | # CONFIG_IP_MROUTE is not set | ||
| 340 | # CONFIG_ARPD is not set | ||
| 341 | # CONFIG_SYN_COOKIES is not set | ||
| 342 | # CONFIG_INET_AH is not set | ||
| 343 | # CONFIG_INET_ESP is not set | ||
| 344 | # CONFIG_INET_IPCOMP is not set | ||
| 345 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 346 | # CONFIG_INET_TUNNEL is not set | ||
| 347 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 348 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 349 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 350 | # CONFIG_INET_LRO is not set | ||
| 351 | # CONFIG_INET_DIAG is not set | ||
| 352 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 353 | CONFIG_TCP_CONG_CUBIC=y | ||
| 354 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 355 | # CONFIG_TCP_MD5SIG is not set | ||
| 356 | # CONFIG_IP_VS is not set | ||
| 357 | # CONFIG_IPV6 is not set | ||
| 358 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 359 | # CONFIG_INET6_TUNNEL is not set | ||
| 360 | # CONFIG_NETLABEL is not set | ||
| 361 | # CONFIG_NETWORK_SECMARK is not set | ||
| 362 | CONFIG_NETFILTER=y | ||
| 363 | # CONFIG_NETFILTER_DEBUG is not set | ||
| 364 | |||
| 365 | # | ||
| 366 | # Core Netfilter Configuration | ||
| 367 | # | ||
| 368 | CONFIG_NETFILTER_NETLINK=y | ||
| 369 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | ||
| 370 | # CONFIG_NETFILTER_NETLINK_LOG is not set | ||
| 371 | # CONFIG_NF_CONNTRACK_ENABLED is not set | ||
| 372 | # CONFIG_NF_CONNTRACK is not set | ||
| 373 | # CONFIG_NETFILTER_XTABLES is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # IP: Netfilter Configuration | ||
| 377 | # | ||
| 378 | # CONFIG_IP_NF_QUEUE is not set | ||
| 379 | # CONFIG_IP_NF_IPTABLES is not set | ||
| 380 | # CONFIG_IP_NF_ARPTABLES is not set | ||
| 381 | # CONFIG_IP_DCCP is not set | ||
| 382 | # CONFIG_IP_SCTP is not set | ||
| 383 | # CONFIG_TIPC is not set | ||
| 384 | # CONFIG_ATM is not set | ||
| 385 | # CONFIG_BRIDGE is not set | ||
| 386 | # CONFIG_VLAN_8021Q is not set | ||
| 387 | # CONFIG_DECNET is not set | ||
| 388 | # CONFIG_LLC2 is not set | ||
| 389 | # CONFIG_IPX is not set | ||
| 390 | # CONFIG_ATALK is not set | ||
| 391 | # CONFIG_X25 is not set | ||
| 392 | # CONFIG_LAPB is not set | ||
| 393 | # CONFIG_ECONET is not set | ||
| 394 | # CONFIG_WAN_ROUTER is not set | ||
| 395 | # CONFIG_NET_SCHED is not set | ||
| 396 | |||
| 397 | # | ||
| 398 | # Network testing | ||
| 399 | # | ||
| 400 | # CONFIG_NET_PKTGEN is not set | ||
| 401 | # CONFIG_HAMRADIO is not set | ||
| 402 | # CONFIG_IRDA is not set | ||
| 403 | CONFIG_BT=y | ||
| 404 | CONFIG_BT_L2CAP=y | ||
| 405 | CONFIG_BT_SCO=y | ||
| 406 | CONFIG_BT_RFCOMM=y | ||
| 407 | CONFIG_BT_RFCOMM_TTY=y | ||
| 408 | CONFIG_BT_BNEP=y | ||
| 409 | # CONFIG_BT_BNEP_MC_FILTER is not set | ||
| 410 | # CONFIG_BT_BNEP_PROTO_FILTER is not set | ||
| 411 | CONFIG_BT_HIDP=y | ||
| 412 | |||
| 413 | # | ||
| 414 | # Bluetooth device drivers | ||
| 415 | # | ||
| 416 | # CONFIG_BT_HCIUSB is not set | ||
| 417 | # CONFIG_BT_HCIBTUSB is not set | ||
| 418 | # CONFIG_BT_HCIBTSDIO is not set | ||
| 419 | # CONFIG_BT_HCIUART is not set | ||
| 420 | # CONFIG_BT_HCIBCM203X is not set | ||
| 421 | # CONFIG_BT_HCIBPA10X is not set | ||
| 422 | # CONFIG_BT_HCIBFUSB is not set | ||
| 423 | CONFIG_BT_HCIBRF6150=y | ||
| 424 | # CONFIG_BT_HCIH4P is not set | ||
| 425 | # CONFIG_BT_HCIVHCI is not set | ||
| 426 | # CONFIG_AF_RXRPC is not set | ||
| 427 | |||
| 428 | # | ||
| 429 | # Wireless | ||
| 430 | # | ||
| 431 | # CONFIG_CFG80211 is not set | ||
| 432 | # CONFIG_WIRELESS_EXT is not set | ||
| 433 | # CONFIG_MAC80211 is not set | ||
| 434 | # CONFIG_IEEE80211 is not set | ||
| 435 | # CONFIG_RFKILL is not set | ||
| 436 | # CONFIG_NET_9P is not set | ||
| 437 | |||
| 438 | # | ||
| 439 | # Device Drivers | ||
| 440 | # | ||
| 441 | |||
| 442 | # | ||
| 443 | # Generic Driver Options | ||
| 444 | # | ||
| 445 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 446 | CONFIG_STANDALONE=y | ||
| 447 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 448 | CONFIG_FW_LOADER=y | ||
| 449 | # CONFIG_DEBUG_DRIVER is not set | ||
| 450 | # CONFIG_DEBUG_DEVRES is not set | ||
| 451 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 452 | CONFIG_CONNECTOR=y | ||
| 453 | # CONFIG_PROC_EVENTS is not set | ||
| 454 | CONFIG_MTD=y | ||
| 455 | # CONFIG_MTD_DEBUG is not set | ||
| 456 | # CONFIG_MTD_CONCAT is not set | ||
| 457 | CONFIG_MTD_PARTITIONS=y | ||
| 458 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 459 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 460 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 461 | |||
| 462 | # | ||
| 463 | # User Modules And Translation Layers | ||
| 464 | # | ||
| 465 | CONFIG_MTD_CHAR=y | ||
| 466 | CONFIG_MTD_BLKDEVS=y | ||
| 467 | CONFIG_MTD_BLOCK=y | ||
| 468 | # CONFIG_FTL is not set | ||
| 469 | # CONFIG_NFTL is not set | ||
| 470 | # CONFIG_INFTL is not set | ||
| 471 | # CONFIG_RFD_FTL is not set | ||
| 472 | # CONFIG_SSFDC is not set | ||
| 473 | # CONFIG_MTD_OOPS is not set | ||
| 474 | |||
| 475 | # | ||
| 476 | # RAM/ROM/Flash chip drivers | ||
| 477 | # | ||
| 478 | # CONFIG_MTD_CFI is not set | ||
| 479 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 480 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 481 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 482 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 483 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 484 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 485 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 486 | CONFIG_MTD_CFI_I1=y | ||
| 487 | CONFIG_MTD_CFI_I2=y | ||
| 488 | # CONFIG_MTD_CFI_I4 is not set | ||
| 489 | # CONFIG_MTD_CFI_I8 is not set | ||
| 490 | # CONFIG_MTD_RAM is not set | ||
| 491 | # CONFIG_MTD_ROM is not set | ||
| 492 | # CONFIG_MTD_ABSENT is not set | ||
| 493 | |||
| 494 | # | ||
| 495 | # Mapping drivers for chip access | ||
| 496 | # | ||
| 497 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 498 | # CONFIG_MTD_PLATRAM is not set | ||
| 499 | |||
| 500 | # | ||
| 501 | # Self-contained MTD device drivers | ||
| 502 | # | ||
| 503 | # CONFIG_MTD_DATAFLASH is not set | ||
| 504 | # CONFIG_MTD_M25P80 is not set | ||
| 505 | # CONFIG_MTD_SLRAM is not set | ||
| 506 | # CONFIG_MTD_PHRAM is not set | ||
| 507 | # CONFIG_MTD_MTDRAM is not set | ||
| 508 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 509 | |||
| 510 | # | ||
| 511 | # Disk-On-Chip Device Drivers | ||
| 512 | # | ||
| 513 | # CONFIG_MTD_DOC2000 is not set | ||
| 514 | # CONFIG_MTD_DOC2001 is not set | ||
| 515 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 516 | CONFIG_MTD_NAND=y | ||
| 517 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
| 518 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
| 519 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
| 520 | CONFIG_MTD_NAND_OMAP_HW=y | ||
| 521 | CONFIG_MTD_NAND_IDS=y | ||
| 522 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
| 523 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
| 524 | # CONFIG_MTD_NAND_PLATFORM is not set | ||
| 525 | # CONFIG_MTD_ALAUDA is not set | ||
| 526 | # CONFIG_MTD_ONENAND is not set | ||
| 527 | |||
| 528 | # | ||
| 529 | # UBI - Unsorted block images | ||
| 530 | # | ||
| 531 | # CONFIG_MTD_UBI is not set | ||
| 532 | # CONFIG_PARPORT is not set | ||
| 533 | CONFIG_BLK_DEV=y | ||
| 534 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 535 | CONFIG_BLK_DEV_LOOP=y | ||
| 536 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 537 | # CONFIG_BLK_DEV_NBD is not set | ||
| 538 | # CONFIG_BLK_DEV_UB is not set | ||
| 539 | # CONFIG_BLK_DEV_RAM is not set | ||
| 540 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 541 | # CONFIG_ATA_OVER_ETH is not set | ||
| 542 | CONFIG_MISC_DEVICES=y | ||
| 543 | # CONFIG_EEPROM_93CX6 is not set | ||
| 544 | |||
| 545 | # | ||
| 546 | # SCSI device support | ||
| 547 | # | ||
| 548 | # CONFIG_RAID_ATTRS is not set | ||
| 549 | CONFIG_SCSI=y | ||
| 550 | CONFIG_SCSI_DMA=y | ||
| 551 | # CONFIG_SCSI_TGT is not set | ||
| 552 | # CONFIG_SCSI_NETLINK is not set | ||
| 553 | # CONFIG_SCSI_PROC_FS is not set | ||
| 554 | |||
| 555 | # | ||
| 556 | # SCSI support type (disk, tape, CD-ROM) | ||
| 557 | # | ||
| 558 | CONFIG_BLK_DEV_SD=y | ||
| 559 | # CONFIG_CHR_DEV_ST is not set | ||
| 560 | # CONFIG_CHR_DEV_OSST is not set | ||
| 561 | # CONFIG_BLK_DEV_SR is not set | ||
| 562 | # CONFIG_CHR_DEV_SG is not set | ||
| 563 | # CONFIG_CHR_DEV_SCH is not set | ||
| 564 | |||
| 565 | # | ||
| 566 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 567 | # | ||
| 568 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 569 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 570 | # CONFIG_SCSI_LOGGING is not set | ||
| 571 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 572 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 573 | |||
| 574 | # | ||
| 575 | # SCSI Transports | ||
| 576 | # | ||
| 577 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 578 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 579 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 580 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 581 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 582 | CONFIG_SCSI_LOWLEVEL=y | ||
| 583 | # CONFIG_ISCSI_TCP is not set | ||
| 584 | # CONFIG_SCSI_DEBUG is not set | ||
| 585 | # CONFIG_ATA is not set | ||
| 586 | # CONFIG_MD is not set | ||
| 587 | CONFIG_NETDEVICES=y | ||
| 588 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 589 | # CONFIG_DUMMY is not set | ||
| 590 | # CONFIG_BONDING is not set | ||
| 591 | # CONFIG_MACVLAN is not set | ||
| 592 | # CONFIG_EQUALIZER is not set | ||
| 593 | CONFIG_TUN=y | ||
| 594 | # CONFIG_VETH is not set | ||
| 595 | # CONFIG_PHYLIB is not set | ||
| 596 | CONFIG_NET_ETHERNET=y | ||
| 597 | CONFIG_MII=y | ||
| 598 | # CONFIG_AX88796 is not set | ||
| 599 | # CONFIG_SMC91X is not set | ||
| 600 | # CONFIG_DM9000 is not set | ||
| 601 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 602 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 603 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 604 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 605 | # CONFIG_B44 is not set | ||
| 606 | CONFIG_NETDEV_1000=y | ||
| 607 | CONFIG_NETDEV_10000=y | ||
| 608 | |||
| 609 | # | ||
| 610 | # Wireless LAN | ||
| 611 | # | ||
| 612 | # CONFIG_WLAN_PRE80211 is not set | ||
| 613 | # CONFIG_WLAN_80211 is not set | ||
| 614 | |||
| 615 | # | ||
| 616 | # USB Network Adapters | ||
| 617 | # | ||
| 618 | # CONFIG_USB_CATC is not set | ||
| 619 | # CONFIG_USB_KAWETH is not set | ||
| 620 | # CONFIG_USB_PEGASUS is not set | ||
| 621 | # CONFIG_USB_RTL8150 is not set | ||
| 622 | CONFIG_USB_USBNET=y | ||
| 623 | # CONFIG_USB_NET_AX8817X is not set | ||
| 624 | CONFIG_USB_NET_CDCETHER=y | ||
| 625 | # CONFIG_USB_NET_DM9601 is not set | ||
| 626 | # CONFIG_USB_NET_GL620A is not set | ||
| 627 | CONFIG_USB_NET_NET1080=y | ||
| 628 | # CONFIG_USB_NET_PLUSB is not set | ||
| 629 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 630 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 631 | # CONFIG_USB_NET_CDC_SUBSET is not set | ||
| 632 | CONFIG_USB_NET_ZAURUS=y | ||
| 633 | # CONFIG_WAN is not set | ||
| 634 | CONFIG_PPP=y | ||
| 635 | # CONFIG_PPP_MULTILINK is not set | ||
| 636 | CONFIG_PPP_FILTER=y | ||
| 637 | CONFIG_PPP_ASYNC=y | ||
| 638 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 639 | CONFIG_PPP_DEFLATE=y | ||
| 640 | CONFIG_PPP_BSDCOMP=y | ||
| 641 | # CONFIG_PPP_MPPE is not set | ||
| 642 | # CONFIG_PPPOE is not set | ||
| 643 | # CONFIG_PPPOL2TP is not set | ||
| 644 | # CONFIG_SLIP is not set | ||
| 645 | CONFIG_SLHC=y | ||
| 646 | # CONFIG_SHAPER is not set | ||
| 647 | # CONFIG_NETCONSOLE is not set | ||
| 648 | # CONFIG_NETPOLL is not set | ||
| 649 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 650 | # CONFIG_ISDN is not set | ||
| 651 | |||
| 652 | # | ||
| 653 | # Input device support | ||
| 654 | # | ||
| 655 | CONFIG_INPUT=y | ||
| 656 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 657 | # CONFIG_INPUT_POLLDEV is not set | ||
| 658 | |||
| 659 | # | ||
| 660 | # Userland interfaces | ||
| 661 | # | ||
| 662 | CONFIG_INPUT_MOUSEDEV=y | ||
| 663 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
| 664 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 665 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 666 | # CONFIG_INPUT_JOYDEV is not set | ||
| 667 | CONFIG_INPUT_EVDEV=y | ||
| 668 | # CONFIG_INPUT_EVBUG is not set | ||
| 669 | |||
| 670 | # | ||
| 671 | # Input Device Drivers | ||
| 672 | # | ||
| 673 | CONFIG_INPUT_KEYBOARD=y | ||
| 674 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 675 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 676 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 677 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 678 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 679 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 680 | CONFIG_KEYBOARD_OMAP=y | ||
| 681 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 682 | # CONFIG_INPUT_MOUSE is not set | ||
| 683 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 684 | # CONFIG_INPUT_TABLET is not set | ||
| 685 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 686 | CONFIG_TOUCHSCREEN_ADS7846=y | ||
| 687 | # CONFIG_TOUCHSCREEN_FUJITSU is not set | ||
| 688 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
| 689 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
| 690 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
| 691 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
| 692 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
| 693 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
| 694 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
| 695 | # CONFIG_TOUCHSCREEN_UCB1400 is not set | ||
| 696 | # CONFIG_TOUCHSCREEN_TSC2102 is not set | ||
| 697 | # CONFIG_TOUCHSCREEN_TSC210X is not set | ||
| 698 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set | ||
| 699 | # CONFIG_INPUT_MISC is not set | ||
| 700 | |||
| 701 | # | ||
| 702 | # Hardware I/O ports | ||
| 703 | # | ||
| 704 | CONFIG_SERIO=y | ||
| 705 | CONFIG_SERIO_SERPORT=y | ||
| 706 | # CONFIG_SERIO_RAW is not set | ||
| 707 | # CONFIG_GAMEPORT is not set | ||
| 708 | |||
| 709 | # | ||
| 710 | # Character devices | ||
| 711 | # | ||
| 712 | CONFIG_VT=y | ||
| 713 | CONFIG_VT_CONSOLE=y | ||
| 714 | CONFIG_HW_CONSOLE=y | ||
| 715 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 716 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 717 | |||
| 718 | # | ||
| 719 | # Serial drivers | ||
| 720 | # | ||
| 721 | CONFIG_SERIAL_8250=y | ||
| 722 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 723 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 724 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 725 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 726 | |||
| 727 | # | ||
| 728 | # Non-8250 serial port support | ||
| 729 | # | ||
| 730 | CONFIG_SERIAL_CORE=y | ||
| 731 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 732 | CONFIG_UNIX98_PTYS=y | ||
| 733 | # CONFIG_LEGACY_PTYS is not set | ||
| 734 | # CONFIG_IPMI_HANDLER is not set | ||
| 735 | CONFIG_HW_RANDOM=m | ||
| 736 | CONFIG_HW_RANDOM_OMAP=m | ||
| 737 | # CONFIG_NVRAM is not set | ||
| 738 | # CONFIG_R3964 is not set | ||
| 739 | # CONFIG_RAW_DRIVER is not set | ||
| 740 | # CONFIG_TCG_TPM is not set | ||
| 741 | CONFIG_I2C=y | ||
| 742 | CONFIG_I2C_BOARDINFO=y | ||
| 743 | # CONFIG_I2C_CHARDEV is not set | ||
| 744 | |||
| 745 | # | ||
| 746 | # I2C Algorithms | ||
| 747 | # | ||
| 748 | # CONFIG_I2C_ALGOBIT is not set | ||
| 749 | # CONFIG_I2C_ALGOPCF is not set | ||
| 750 | # CONFIG_I2C_ALGOPCA is not set | ||
| 751 | |||
| 752 | # | ||
| 753 | # I2C Hardware Bus support | ||
| 754 | # | ||
| 755 | # CONFIG_I2C_GPIO is not set | ||
| 756 | # CONFIG_I2C_OCORES is not set | ||
| 757 | CONFIG_I2C_OMAP=y | ||
| 758 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 759 | # CONFIG_I2C_SIMTEC is not set | ||
| 760 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 761 | # CONFIG_I2C_STUB is not set | ||
| 762 | # CONFIG_I2C_TINY_USB is not set | ||
| 763 | |||
| 764 | # | ||
| 765 | # Miscellaneous I2C Chip support | ||
| 766 | # | ||
| 767 | # CONFIG_SENSORS_DS1337 is not set | ||
| 768 | # CONFIG_SENSORS_DS1374 is not set | ||
| 769 | # CONFIG_DS1682 is not set | ||
| 770 | # CONFIG_SENSORS_EEPROM is not set | ||
| 771 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 772 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 773 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 774 | # CONFIG_ISP1301_OMAP is not set | ||
| 775 | # CONFIG_TPS65010 is not set | ||
| 776 | CONFIG_SENSORS_TLV320AIC23=y | ||
| 777 | # CONFIG_GPIOEXPANDER_OMAP is not set | ||
| 778 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 779 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 780 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 781 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 782 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 783 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 784 | |||
| 785 | # | ||
| 786 | # SPI support | ||
| 787 | # | ||
| 788 | CONFIG_SPI=y | ||
| 789 | # CONFIG_SPI_DEBUG is not set | ||
| 790 | CONFIG_SPI_MASTER=y | ||
| 791 | |||
| 792 | # | ||
| 793 | # SPI Master Controller Drivers | ||
| 794 | # | ||
| 795 | CONFIG_SPI_BITBANG=y | ||
| 796 | CONFIG_SPI_OMAP_UWIRE=y | ||
| 797 | |||
| 798 | # | ||
| 799 | # SPI Protocol Masters | ||
| 800 | # | ||
| 801 | # CONFIG_SPI_AT25 is not set | ||
| 802 | # CONFIG_SPI_TSC2101 is not set | ||
| 803 | # CONFIG_SPI_TSC2102 is not set | ||
| 804 | # CONFIG_SPI_TSC210X is not set | ||
| 805 | # CONFIG_SPI_TSC2301 is not set | ||
| 806 | # CONFIG_SPI_SPIDEV is not set | ||
| 807 | # CONFIG_SPI_TLE62X0 is not set | ||
| 808 | # CONFIG_W1 is not set | ||
| 809 | # CONFIG_POWER_SUPPLY is not set | ||
| 810 | # CONFIG_HWMON is not set | ||
| 811 | CONFIG_WATCHDOG=y | ||
| 812 | CONFIG_WATCHDOG_NOWAYOUT=y | ||
| 813 | |||
| 814 | # | ||
| 815 | # Watchdog Device Drivers | ||
| 816 | # | ||
| 817 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 818 | CONFIG_OMAP_WATCHDOG=y | ||
| 819 | |||
| 820 | # | ||
| 821 | # USB-based Watchdog Cards | ||
| 822 | # | ||
| 823 | # CONFIG_USBPCWATCHDOG is not set | ||
| 824 | |||
| 825 | # | ||
| 826 | # Sonics Silicon Backplane | ||
| 827 | # | ||
| 828 | CONFIG_SSB_POSSIBLE=y | ||
| 829 | # CONFIG_SSB is not set | ||
| 830 | |||
| 831 | # | ||
| 832 | # Multifunction device drivers | ||
| 833 | # | ||
| 834 | # CONFIG_MFD_SM501 is not set | ||
| 835 | |||
| 836 | # | ||
| 837 | # Multimedia devices | ||
| 838 | # | ||
| 839 | # CONFIG_VIDEO_DEV is not set | ||
| 840 | # CONFIG_DVB_CORE is not set | ||
| 841 | CONFIG_DAB=y | ||
| 842 | # CONFIG_USB_DABUSB is not set | ||
| 843 | |||
| 844 | # | ||
| 845 | # Graphics support | ||
| 846 | # | ||
| 847 | # CONFIG_VGASTATE is not set | ||
| 848 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 849 | CONFIG_FB=y | ||
| 850 | # CONFIG_FIRMWARE_EDID is not set | ||
| 851 | # CONFIG_FB_DDC is not set | ||
| 852 | CONFIG_FB_CFB_FILLRECT=y | ||
| 853 | CONFIG_FB_CFB_COPYAREA=y | ||
| 854 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
| 855 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
| 856 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 857 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 858 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 859 | # CONFIG_FB_SYS_FOPS is not set | ||
| 860 | CONFIG_FB_DEFERRED_IO=y | ||
| 861 | # CONFIG_FB_SVGALIB is not set | ||
| 862 | # CONFIG_FB_MACMODES is not set | ||
| 863 | # CONFIG_FB_BACKLIGHT is not set | ||
| 864 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 865 | # CONFIG_FB_TILEBLITTING is not set | ||
| 866 | |||
| 867 | # | ||
| 868 | # Frame buffer hardware drivers | ||
| 869 | # | ||
| 870 | # CONFIG_FB_UVESA is not set | ||
| 871 | # CONFIG_FB_S1D13XXX is not set | ||
| 872 | # CONFIG_FB_VIRTUAL is not set | ||
| 873 | CONFIG_FB_OMAP=y | ||
| 874 | CONFIG_FB_OMAP_LCDC_EXTERNAL=y | ||
| 875 | CONFIG_FB_OMAP_LCDC_HWA742=y | ||
| 876 | # CONFIG_FB_OMAP_LCDC_BLIZZARD is not set | ||
| 877 | CONFIG_FB_OMAP_MANUAL_UPDATE=y | ||
| 878 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 879 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 880 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 881 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 882 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 883 | |||
| 884 | # | ||
| 885 | # Display device support | ||
| 886 | # | ||
| 887 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 888 | |||
| 889 | # | ||
| 890 | # Console display driver support | ||
| 891 | # | ||
| 892 | # CONFIG_VGA_CONSOLE is not set | ||
| 893 | CONFIG_DUMMY_CONSOLE=y | ||
| 894 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | ||
| 895 | # CONFIG_LOGO is not set | ||
| 896 | |||
| 897 | # | ||
| 898 | # Sound | ||
| 899 | # | ||
| 900 | CONFIG_SOUND=y | ||
| 901 | |||
| 902 | # | ||
| 903 | # Advanced Linux Sound Architecture | ||
| 904 | # | ||
| 905 | CONFIG_SND=y | ||
| 906 | CONFIG_SND_TIMER=y | ||
| 907 | CONFIG_SND_PCM=y | ||
| 908 | CONFIG_SND_HWDEP=y | ||
| 909 | CONFIG_SND_RAWMIDI=y | ||
| 910 | # CONFIG_SND_SEQUENCER is not set | ||
| 911 | # CONFIG_SND_MIXER_OSS is not set | ||
| 912 | # CONFIG_SND_PCM_OSS is not set | ||
| 913 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 914 | # CONFIG_SND_SUPPORT_OLD_API is not set | ||
| 915 | CONFIG_SND_VERBOSE_PROCFS=y | ||
| 916 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
| 917 | # CONFIG_SND_DEBUG is not set | ||
| 918 | |||
| 919 | # | ||
| 920 | # Generic devices | ||
| 921 | # | ||
| 922 | CONFIG_SND_DUMMY=y | ||
| 923 | # CONFIG_SND_MTPAV is not set | ||
| 924 | # CONFIG_SND_SERIAL_U16550 is not set | ||
| 925 | # CONFIG_SND_MPU401 is not set | ||
| 926 | |||
| 927 | # | ||
| 928 | # ALSA ARM devices | ||
| 929 | # | ||
| 930 | CONFIG_SND_OMAP_AIC23=y | ||
| 931 | # CONFIG_SND_OMAP_TSC2101 is not set | ||
| 932 | # CONFIG_SND_SX1 is not set | ||
| 933 | # CONFIG_SND_OMAP_TSC2102 is not set | ||
| 934 | # CONFIG_SND_OMAP24XX_EAC is not set | ||
| 935 | |||
| 936 | # | ||
| 937 | # SPI devices | ||
| 938 | # | ||
| 939 | |||
| 940 | # | ||
| 941 | # USB devices | ||
| 942 | # | ||
| 943 | CONFIG_SND_USB_AUDIO=y | ||
| 944 | # CONFIG_SND_USB_CAIAQ is not set | ||
| 945 | |||
| 946 | # | ||
| 947 | # System on Chip audio support | ||
| 948 | # | ||
| 949 | # CONFIG_SND_SOC is not set | ||
| 950 | |||
| 951 | # | ||
| 952 | # SoC Audio support for SuperH | ||
| 953 | # | ||
| 954 | |||
| 955 | # | ||
| 956 | # Open Sound System | ||
| 957 | # | ||
| 958 | # CONFIG_SOUND_PRIME is not set | ||
| 959 | CONFIG_HID_SUPPORT=y | ||
| 960 | CONFIG_HID=y | ||
| 961 | CONFIG_HID_DEBUG=y | ||
| 962 | # CONFIG_HIDRAW is not set | ||
| 963 | |||
| 964 | # | ||
| 965 | # USB Input Devices | ||
| 966 | # | ||
| 967 | CONFIG_USB_HID=y | ||
| 968 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 969 | # CONFIG_HID_FF is not set | ||
| 970 | # CONFIG_USB_HIDDEV is not set | ||
| 971 | CONFIG_USB_SUPPORT=y | ||
| 972 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 973 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 974 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 975 | CONFIG_USB=y | ||
| 976 | # CONFIG_USB_DEBUG is not set | ||
| 977 | |||
| 978 | # | ||
| 979 | # Miscellaneous USB options | ||
| 980 | # | ||
| 981 | CONFIG_USB_DEVICEFS=y | ||
| 982 | CONFIG_USB_DEVICE_CLASS=y | ||
| 983 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 984 | CONFIG_USB_SUSPEND=y | ||
| 985 | # CONFIG_USB_PERSIST is not set | ||
| 986 | CONFIG_USB_OTG=y | ||
| 987 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 988 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 989 | |||
| 990 | # | ||
| 991 | # USB Host Controller Drivers | ||
| 992 | # | ||
| 993 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 994 | CONFIG_USB_OHCI_HCD=y | ||
| 995 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 996 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 997 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 998 | # CONFIG_USB_SL811_HCD is not set | ||
| 999 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 1000 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 1001 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 1002 | |||
| 1003 | # | ||
| 1004 | # USB Device Class drivers | ||
| 1005 | # | ||
| 1006 | # CONFIG_USB_ACM is not set | ||
| 1007 | # CONFIG_USB_PRINTER is not set | ||
| 1008 | |||
| 1009 | # | ||
| 1010 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 1011 | # | ||
| 1012 | |||
| 1013 | # | ||
| 1014 | # may also be needed; see USB_STORAGE Help for more information | ||
| 1015 | # | ||
| 1016 | CONFIG_USB_STORAGE=y | ||
| 1017 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 1018 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 1019 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 1020 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 1021 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1022 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 1023 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 1024 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 1025 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 1026 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 1027 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 1028 | # CONFIG_USB_LIBUSUAL is not set | ||
| 1029 | |||
| 1030 | # | ||
| 1031 | # USB Imaging devices | ||
| 1032 | # | ||
| 1033 | # CONFIG_USB_MDC800 is not set | ||
| 1034 | # CONFIG_USB_MICROTEK is not set | ||
| 1035 | # CONFIG_USB_MON is not set | ||
| 1036 | |||
| 1037 | # | ||
| 1038 | # USB port drivers | ||
| 1039 | # | ||
| 1040 | |||
| 1041 | # | ||
| 1042 | # USB Serial Converter support | ||
| 1043 | # | ||
| 1044 | CONFIG_USB_SERIAL=y | ||
| 1045 | CONFIG_USB_SERIAL_CONSOLE=y | ||
| 1046 | # CONFIG_USB_SERIAL_GENERIC is not set | ||
| 1047 | # CONFIG_USB_SERIAL_AIRCABLE is not set | ||
| 1048 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 1049 | # CONFIG_USB_SERIAL_ARK3116 is not set | ||
| 1050 | # CONFIG_USB_SERIAL_BELKIN is not set | ||
| 1051 | # CONFIG_USB_SERIAL_CH341 is not set | ||
| 1052 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | ||
| 1053 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | ||
| 1054 | # CONFIG_USB_SERIAL_CP2101 is not set | ||
| 1055 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | ||
| 1056 | # CONFIG_USB_SERIAL_EMPEG is not set | ||
| 1057 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | ||
| 1058 | # CONFIG_USB_SERIAL_FUNSOFT is not set | ||
| 1059 | # CONFIG_USB_SERIAL_VISOR is not set | ||
| 1060 | # CONFIG_USB_SERIAL_IPAQ is not set | ||
| 1061 | # CONFIG_USB_SERIAL_IR is not set | ||
| 1062 | # CONFIG_USB_SERIAL_EDGEPORT is not set | ||
| 1063 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | ||
| 1064 | # CONFIG_USB_SERIAL_GARMIN is not set | ||
| 1065 | # CONFIG_USB_SERIAL_IPW is not set | ||
| 1066 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | ||
| 1067 | # CONFIG_USB_SERIAL_KEYSPAN is not set | ||
| 1068 | # CONFIG_USB_SERIAL_KLSI is not set | ||
| 1069 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | ||
| 1070 | # CONFIG_USB_SERIAL_MCT_U232 is not set | ||
| 1071 | # CONFIG_USB_SERIAL_MOS7720 is not set | ||
| 1072 | # CONFIG_USB_SERIAL_MOS7840 is not set | ||
| 1073 | # CONFIG_USB_SERIAL_NAVMAN is not set | ||
| 1074 | CONFIG_USB_SERIAL_PL2303=y | ||
| 1075 | # CONFIG_USB_SERIAL_OTI6858 is not set | ||
| 1076 | # CONFIG_USB_SERIAL_HP4X is not set | ||
| 1077 | # CONFIG_USB_SERIAL_SAFE is not set | ||
| 1078 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | ||
| 1079 | # CONFIG_USB_SERIAL_TI is not set | ||
| 1080 | # CONFIG_USB_SERIAL_CYBERJACK is not set | ||
| 1081 | # CONFIG_USB_SERIAL_XIRCOM is not set | ||
| 1082 | # CONFIG_USB_SERIAL_OPTION is not set | ||
| 1083 | # CONFIG_USB_SERIAL_OMNINET is not set | ||
| 1084 | # CONFIG_USB_SERIAL_DEBUG is not set | ||
| 1085 | |||
| 1086 | # | ||
| 1087 | # USB Miscellaneous drivers | ||
| 1088 | # | ||
| 1089 | # CONFIG_USB_EMI62 is not set | ||
| 1090 | # CONFIG_USB_EMI26 is not set | ||
| 1091 | # CONFIG_USB_ADUTUX is not set | ||
| 1092 | # CONFIG_USB_AUERSWALD is not set | ||
| 1093 | # CONFIG_USB_RIO500 is not set | ||
| 1094 | # CONFIG_USB_LEGOTOWER is not set | ||
| 1095 | # CONFIG_USB_LCD is not set | ||
| 1096 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 1097 | # CONFIG_USB_LED is not set | ||
| 1098 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 1099 | # CONFIG_USB_CYTHERM is not set | ||
| 1100 | # CONFIG_USB_PHIDGET is not set | ||
| 1101 | # CONFIG_USB_IDMOUSE is not set | ||
| 1102 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 1103 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 1104 | # CONFIG_USB_LD is not set | ||
| 1105 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 1106 | # CONFIG_USB_IOWARRIOR is not set | ||
| 1107 | # CONFIG_USB_TEST is not set | ||
| 1108 | |||
| 1109 | # | ||
| 1110 | # USB DSL modem support | ||
| 1111 | # | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # USB Gadget Support | ||
| 1115 | # | ||
| 1116 | CONFIG_USB_GADGET=y | ||
| 1117 | # CONFIG_USB_GADGET_DEBUG is not set | ||
| 1118 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 1119 | CONFIG_USB_GADGET_SELECTED=y | ||
| 1120 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
| 1121 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | ||
| 1122 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 1123 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 1124 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 1125 | # CONFIG_USB_GADGET_M66592 is not set | ||
| 1126 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 1127 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 1128 | CONFIG_USB_GADGET_OMAP=y | ||
| 1129 | CONFIG_USB_OMAP=y | ||
| 1130 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
| 1131 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 1132 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 1133 | # CONFIG_USB_GADGET_DUALSPEED is not set | ||
| 1134 | # CONFIG_USB_ZERO is not set | ||
| 1135 | CONFIG_USB_ETH=m | ||
| 1136 | CONFIG_USB_ETH_RNDIS=y | ||
| 1137 | # CONFIG_USB_GADGETFS is not set | ||
| 1138 | CONFIG_USB_FILE_STORAGE=m | ||
| 1139 | CONFIG_USB_FILE_STORAGE_TEST=y | ||
| 1140 | # CONFIG_USB_G_SERIAL is not set | ||
| 1141 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 1142 | CONFIG_MMC=y | ||
| 1143 | # CONFIG_MMC_DEBUG is not set | ||
| 1144 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 1145 | |||
| 1146 | # | ||
| 1147 | # MMC/SD Card Drivers | ||
| 1148 | # | ||
| 1149 | CONFIG_MMC_BLOCK=y | ||
| 1150 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 1151 | # CONFIG_SDIO_UART is not set | ||
| 1152 | |||
| 1153 | # | ||
| 1154 | # MMC/SD Host Controller Drivers | ||
| 1155 | # | ||
| 1156 | CONFIG_MMC_OMAP=y | ||
| 1157 | # CONFIG_MMC_SPI is not set | ||
| 1158 | # CONFIG_NEW_LEDS is not set | ||
| 1159 | CONFIG_RTC_LIB=y | ||
| 1160 | # CONFIG_RTC_CLASS is not set | ||
| 1161 | |||
| 1162 | # | ||
| 1163 | # CBUS support | ||
| 1164 | # | ||
| 1165 | CONFIG_CBUS=y | ||
| 1166 | CONFIG_CBUS_TAHVO=y | ||
| 1167 | CONFIG_CBUS_TAHVO_USER=y | ||
| 1168 | CONFIG_CBUS_TAHVO_USB=y | ||
| 1169 | # CONFIG_CBUS_TAHVO_USB_HOST_BY_DEFAULT is not set | ||
| 1170 | CONFIG_CBUS_RETU=y | ||
| 1171 | CONFIG_CBUS_RETU_USER=y | ||
| 1172 | CONFIG_CBUS_RETU_POWERBUTTON=y | ||
| 1173 | CONFIG_CBUS_RETU_RTC=y | ||
| 1174 | CONFIG_CBUS_RETU_WDT=y | ||
| 1175 | # CONFIG_CBUS_RETU_HEADSET is not set | ||
| 1176 | CONFIG_OMAP_DSP=y | ||
| 1177 | # CONFIG_OMAP_DSP_MBCMD_VERBOSE is not set | ||
| 1178 | CONFIG_OMAP_DSP_FBEXPORT=y | ||
| 1179 | |||
| 1180 | # | ||
| 1181 | # File systems | ||
| 1182 | # | ||
| 1183 | CONFIG_EXT2_FS=y | ||
| 1184 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 1185 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1186 | CONFIG_EXT3_FS=y | ||
| 1187 | CONFIG_EXT3_FS_XATTR=y | ||
| 1188 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 1189 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 1190 | # CONFIG_EXT4DEV_FS is not set | ||
| 1191 | CONFIG_JBD=y | ||
| 1192 | CONFIG_FS_MBCACHE=y | ||
| 1193 | # CONFIG_REISERFS_FS is not set | ||
| 1194 | # CONFIG_JFS_FS is not set | ||
| 1195 | # CONFIG_FS_POSIX_ACL is not set | ||
| 1196 | # CONFIG_XFS_FS is not set | ||
| 1197 | # CONFIG_GFS2_FS is not set | ||
| 1198 | # CONFIG_OCFS2_FS is not set | ||
| 1199 | # CONFIG_MINIX_FS is not set | ||
| 1200 | # CONFIG_ROMFS_FS is not set | ||
| 1201 | # CONFIG_INOTIFY is not set | ||
| 1202 | # CONFIG_QUOTA is not set | ||
| 1203 | CONFIG_DNOTIFY=y | ||
| 1204 | # CONFIG_AUTOFS_FS is not set | ||
| 1205 | # CONFIG_AUTOFS4_FS is not set | ||
| 1206 | # CONFIG_FUSE_FS is not set | ||
| 1207 | |||
| 1208 | # | ||
| 1209 | # CD-ROM/DVD Filesystems | ||
| 1210 | # | ||
| 1211 | # CONFIG_ISO9660_FS is not set | ||
| 1212 | # CONFIG_UDF_FS is not set | ||
| 1213 | |||
| 1214 | # | ||
| 1215 | # DOS/FAT/NT Filesystems | ||
| 1216 | # | ||
| 1217 | CONFIG_FAT_FS=y | ||
| 1218 | CONFIG_MSDOS_FS=y | ||
| 1219 | CONFIG_VFAT_FS=y | ||
| 1220 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1221 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1222 | # CONFIG_NTFS_FS is not set | ||
| 1223 | |||
| 1224 | # | ||
| 1225 | # Pseudo filesystems | ||
| 1226 | # | ||
| 1227 | CONFIG_PROC_FS=y | ||
| 1228 | CONFIG_PROC_SYSCTL=y | ||
| 1229 | CONFIG_SYSFS=y | ||
| 1230 | CONFIG_TMPFS=y | ||
| 1231 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 1232 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1233 | # CONFIG_CONFIGFS_FS is not set | ||
| 1234 | |||
| 1235 | # | ||
| 1236 | # Miscellaneous filesystems | ||
| 1237 | # | ||
| 1238 | # CONFIG_ADFS_FS is not set | ||
| 1239 | # CONFIG_AFFS_FS is not set | ||
| 1240 | # CONFIG_HFS_FS is not set | ||
| 1241 | # CONFIG_HFSPLUS_FS is not set | ||
| 1242 | # CONFIG_BEFS_FS is not set | ||
| 1243 | # CONFIG_BFS_FS is not set | ||
| 1244 | # CONFIG_EFS_FS is not set | ||
| 1245 | CONFIG_JFFS2_FS=y | ||
| 1246 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1247 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1248 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 1249 | CONFIG_JFFS2_SUMMARY=y | ||
| 1250 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 1251 | CONFIG_JFFS2_COMPRESSION_OPTIONS=y | ||
| 1252 | CONFIG_JFFS2_ZLIB=y | ||
| 1253 | # CONFIG_JFFS2_LZO is not set | ||
| 1254 | CONFIG_JFFS2_RTIME=y | ||
| 1255 | # CONFIG_JFFS2_RUBIN is not set | ||
| 1256 | # CONFIG_JFFS2_CMODE_NONE is not set | ||
| 1257 | CONFIG_JFFS2_CMODE_PRIORITY=y | ||
| 1258 | # CONFIG_JFFS2_CMODE_SIZE is not set | ||
| 1259 | # CONFIG_JFFS2_CMODE_FAVOURLZO is not set | ||
| 1260 | # CONFIG_CRAMFS is not set | ||
| 1261 | # CONFIG_VXFS_FS is not set | ||
| 1262 | # CONFIG_HPFS_FS is not set | ||
| 1263 | # CONFIG_QNX4FS_FS is not set | ||
| 1264 | # CONFIG_SYSV_FS is not set | ||
| 1265 | # CONFIG_UFS_FS is not set | ||
| 1266 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 1267 | CONFIG_NFS_FS=y | ||
| 1268 | CONFIG_NFS_V3=y | ||
| 1269 | # CONFIG_NFS_V3_ACL is not set | ||
| 1270 | # CONFIG_NFS_V4 is not set | ||
| 1271 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1272 | # CONFIG_NFSD is not set | ||
| 1273 | # CONFIG_ROOT_NFS is not set | ||
| 1274 | CONFIG_LOCKD=y | ||
| 1275 | CONFIG_LOCKD_V4=y | ||
| 1276 | CONFIG_NFS_COMMON=y | ||
| 1277 | CONFIG_SUNRPC=y | ||
| 1278 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1279 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1280 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1281 | # CONFIG_SMB_FS is not set | ||
| 1282 | # CONFIG_CIFS is not set | ||
| 1283 | # CONFIG_NCP_FS is not set | ||
| 1284 | # CONFIG_CODA_FS is not set | ||
| 1285 | # CONFIG_AFS_FS is not set | ||
| 1286 | |||
| 1287 | # | ||
| 1288 | # Partition Types | ||
| 1289 | # | ||
| 1290 | CONFIG_PARTITION_ADVANCED=y | ||
| 1291 | # CONFIG_ACORN_PARTITION is not set | ||
| 1292 | # CONFIG_OSF_PARTITION is not set | ||
| 1293 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1294 | # CONFIG_ATARI_PARTITION is not set | ||
| 1295 | # CONFIG_MAC_PARTITION is not set | ||
| 1296 | CONFIG_MSDOS_PARTITION=y | ||
| 1297 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1298 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1299 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1300 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1301 | # CONFIG_LDM_PARTITION is not set | ||
| 1302 | # CONFIG_SGI_PARTITION is not set | ||
| 1303 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1304 | # CONFIG_SUN_PARTITION is not set | ||
| 1305 | # CONFIG_KARMA_PARTITION is not set | ||
| 1306 | # CONFIG_EFI_PARTITION is not set | ||
| 1307 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1308 | CONFIG_NLS=y | ||
| 1309 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1310 | CONFIG_NLS_CODEPAGE_437=y | ||
| 1311 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1312 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1313 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1314 | CONFIG_NLS_CODEPAGE_852=y | ||
| 1315 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1316 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1317 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1318 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1319 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1320 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1321 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1322 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1323 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1324 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1325 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1326 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1327 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1328 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1329 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1330 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1331 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1332 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1333 | # CONFIG_NLS_ASCII is not set | ||
| 1334 | CONFIG_NLS_ISO8859_1=y | ||
| 1335 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1336 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1337 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1338 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1339 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1340 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1341 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1342 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1343 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1344 | CONFIG_NLS_ISO8859_15=y | ||
| 1345 | # CONFIG_NLS_KOI8_R is not set | ||
| 1346 | # CONFIG_NLS_KOI8_U is not set | ||
| 1347 | CONFIG_NLS_UTF8=y | ||
| 1348 | # CONFIG_DLM is not set | ||
| 1349 | CONFIG_INSTRUMENTATION=y | ||
| 1350 | # CONFIG_PROFILING is not set | ||
| 1351 | # CONFIG_MARKERS is not set | ||
| 1352 | |||
| 1353 | # | ||
| 1354 | # Kernel hacking | ||
| 1355 | # | ||
| 1356 | # CONFIG_PRINTK_TIME is not set | ||
| 1357 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1358 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1359 | CONFIG_MAGIC_SYSRQ=y | ||
| 1360 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1361 | # CONFIG_DEBUG_FS is not set | ||
| 1362 | # CONFIG_HEADERS_CHECK is not set | ||
| 1363 | CONFIG_DEBUG_KERNEL=y | ||
| 1364 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1365 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1366 | CONFIG_SCHED_DEBUG=y | ||
| 1367 | # CONFIG_SCHEDSTATS is not set | ||
| 1368 | # CONFIG_TIMER_STATS is not set | ||
| 1369 | # CONFIG_DEBUG_SLAB is not set | ||
| 1370 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1371 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1372 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1373 | CONFIG_DEBUG_MUTEXES=y | ||
| 1374 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1375 | # CONFIG_PROVE_LOCKING is not set | ||
| 1376 | # CONFIG_LOCK_STAT is not set | ||
| 1377 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1378 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1379 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1380 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1381 | # CONFIG_DEBUG_INFO is not set | ||
| 1382 | # CONFIG_DEBUG_VM is not set | ||
| 1383 | # CONFIG_DEBUG_LIST is not set | ||
| 1384 | # CONFIG_DEBUG_SG is not set | ||
| 1385 | CONFIG_FRAME_POINTER=y | ||
| 1386 | CONFIG_FORCED_INLINING=y | ||
| 1387 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
| 1388 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1389 | # CONFIG_FAULT_INJECTION is not set | ||
| 1390 | # CONFIG_SAMPLES is not set | ||
| 1391 | # CONFIG_DEBUG_USER is not set | ||
| 1392 | CONFIG_DEBUG_ERRORS=y | ||
| 1393 | # CONFIG_DEBUG_LL is not set | ||
| 1394 | |||
| 1395 | # | ||
| 1396 | # Security options | ||
| 1397 | # | ||
| 1398 | # CONFIG_KEYS is not set | ||
| 1399 | CONFIG_SECURITY=y | ||
| 1400 | # CONFIG_SECURITY_NETWORK is not set | ||
| 1401 | # CONFIG_SECURITY_CAPABILITIES is not set | ||
| 1402 | # CONFIG_SECURITY_ROOTPLUG is not set | ||
| 1403 | # CONFIG_SECURITY_LOWMEM is not set | ||
| 1404 | # CONFIG_CRYPTO is not set | ||
| 1405 | |||
| 1406 | # | ||
| 1407 | # Library routines | ||
| 1408 | # | ||
| 1409 | CONFIG_BITREVERSE=y | ||
| 1410 | CONFIG_CRC_CCITT=y | ||
| 1411 | # CONFIG_CRC16 is not set | ||
| 1412 | # CONFIG_CRC_ITU_T is not set | ||
| 1413 | CONFIG_CRC32=y | ||
| 1414 | # CONFIG_CRC7 is not set | ||
| 1415 | # CONFIG_LIBCRC32C is not set | ||
| 1416 | CONFIG_ZLIB_INFLATE=y | ||
| 1417 | CONFIG_ZLIB_DEFLATE=y | ||
| 1418 | CONFIG_PLIST=y | ||
| 1419 | CONFIG_HAS_IOMEM=y | ||
| 1420 | CONFIG_HAS_IOPORT=y | ||
| 1421 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_2430sdp_defconfig b/arch/arm/configs/omap_2430sdp_defconfig new file mode 100644 index 000000000000..b0617c0da2a1 --- /dev/null +++ b/arch/arm/configs/omap_2430sdp_defconfig | |||
| @@ -0,0 +1,1304 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:47:37 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | CONFIG_LOCALVERSION_AUTO=y | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 43 | # CONFIG_TASKSTATS is not set | ||
| 44 | # CONFIG_USER_NS is not set | ||
| 45 | # CONFIG_AUDIT is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | ||
| 47 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 48 | CONFIG_SYSFS_DEPRECATED=y | ||
| 49 | # CONFIG_RELAY is not set | ||
| 50 | CONFIG_BLK_DEV_INITRD=y | ||
| 51 | CONFIG_INITRAMFS_SOURCE="" | ||
| 52 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 53 | CONFIG_SYSCTL=y | ||
| 54 | CONFIG_EMBEDDED=y | ||
| 55 | CONFIG_UID16=y | ||
| 56 | # CONFIG_SYSCTL_SYSCALL is not set | ||
| 57 | CONFIG_KALLSYMS=y | ||
| 58 | # CONFIG_KALLSYMS_ALL is not set | ||
| 59 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
| 60 | CONFIG_HOTPLUG=y | ||
| 61 | CONFIG_PRINTK=y | ||
| 62 | CONFIG_BUG=y | ||
| 63 | CONFIG_ELF_CORE=y | ||
| 64 | CONFIG_BASE_FULL=y | ||
| 65 | CONFIG_FUTEX=y | ||
| 66 | CONFIG_ANON_INODES=y | ||
| 67 | CONFIG_EPOLL=y | ||
| 68 | CONFIG_SIGNALFD=y | ||
| 69 | CONFIG_TIMERFD=y | ||
| 70 | CONFIG_EVENTFD=y | ||
| 71 | CONFIG_SHMEM=y | ||
| 72 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 73 | CONFIG_SLAB=y | ||
| 74 | # CONFIG_SLUB is not set | ||
| 75 | # CONFIG_SLOB is not set | ||
| 76 | CONFIG_RT_MUTEXES=y | ||
| 77 | # CONFIG_TINY_SHMEM is not set | ||
| 78 | CONFIG_BASE_SMALL=0 | ||
| 79 | CONFIG_MODULES=y | ||
| 80 | CONFIG_MODULE_UNLOAD=y | ||
| 81 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 82 | CONFIG_MODVERSIONS=y | ||
| 83 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
| 84 | CONFIG_KMOD=y | ||
| 85 | CONFIG_BLOCK=y | ||
| 86 | # CONFIG_LBD is not set | ||
| 87 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 88 | # CONFIG_LSF is not set | ||
| 89 | # CONFIG_BLK_DEV_BSG is not set | ||
| 90 | |||
| 91 | # | ||
| 92 | # IO Schedulers | ||
| 93 | # | ||
| 94 | CONFIG_IOSCHED_NOOP=y | ||
| 95 | CONFIG_IOSCHED_AS=y | ||
| 96 | CONFIG_IOSCHED_DEADLINE=y | ||
| 97 | CONFIG_IOSCHED_CFQ=y | ||
| 98 | CONFIG_DEFAULT_AS=y | ||
| 99 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 100 | # CONFIG_DEFAULT_CFQ is not set | ||
| 101 | # CONFIG_DEFAULT_NOOP is not set | ||
| 102 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 103 | |||
| 104 | # | ||
| 105 | # System Type | ||
| 106 | # | ||
| 107 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 108 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 109 | # CONFIG_ARCH_REALVIEW is not set | ||
| 110 | # CONFIG_ARCH_VERSATILE is not set | ||
| 111 | # CONFIG_ARCH_AT91 is not set | ||
| 112 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 113 | # CONFIG_ARCH_CLPS711X is not set | ||
| 114 | # CONFIG_ARCH_CO285 is not set | ||
| 115 | # CONFIG_ARCH_EBSA110 is not set | ||
| 116 | # CONFIG_ARCH_EP93XX is not set | ||
| 117 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 118 | # CONFIG_ARCH_NETX is not set | ||
| 119 | # CONFIG_ARCH_H720X is not set | ||
| 120 | # CONFIG_ARCH_IMX is not set | ||
| 121 | # CONFIG_ARCH_IOP13XX is not set | ||
| 122 | # CONFIG_ARCH_IOP32X is not set | ||
| 123 | # CONFIG_ARCH_IOP33X is not set | ||
| 124 | # CONFIG_ARCH_IXP23XX is not set | ||
| 125 | # CONFIG_ARCH_IXP2000 is not set | ||
| 126 | # CONFIG_ARCH_IXP4XX is not set | ||
| 127 | # CONFIG_ARCH_L7200 is not set | ||
| 128 | # CONFIG_ARCH_KS8695 is not set | ||
| 129 | # CONFIG_ARCH_NS9XXX is not set | ||
| 130 | # CONFIG_ARCH_MXC is not set | ||
| 131 | # CONFIG_ARCH_PNX4008 is not set | ||
| 132 | # CONFIG_ARCH_PXA is not set | ||
| 133 | # CONFIG_ARCH_RPC is not set | ||
| 134 | # CONFIG_ARCH_SA1100 is not set | ||
| 135 | # CONFIG_ARCH_S3C2410 is not set | ||
| 136 | # CONFIG_ARCH_SHARK is not set | ||
| 137 | # CONFIG_ARCH_LH7A40X is not set | ||
| 138 | # CONFIG_ARCH_DAVINCI is not set | ||
| 139 | CONFIG_ARCH_OMAP=y | ||
| 140 | |||
| 141 | # | ||
| 142 | # TI OMAP Implementations | ||
| 143 | # | ||
| 144 | # CONFIG_ARCH_OMAP1 is not set | ||
| 145 | CONFIG_ARCH_OMAP2=y | ||
| 146 | # CONFIG_ARCH_OMAP3 is not set | ||
| 147 | |||
| 148 | # | ||
| 149 | # OMAP Feature Selections | ||
| 150 | # | ||
| 151 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 152 | CONFIG_OMAP_BOOT_TAG=y | ||
| 153 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 154 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 155 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 156 | CONFIG_OMAP_MUX=y | ||
| 157 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 158 | # CONFIG_OMAP_MUX_WARNINGS is not set | ||
| 159 | # CONFIG_OMAP_STI is not set | ||
| 160 | CONFIG_OMAP_MCBSP=y | ||
| 161 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 162 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 163 | CONFIG_OMAP_MPU_TIMER=y | ||
| 164 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 165 | CONFIG_OMAP_DM_TIMER=y | ||
| 166 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 167 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 168 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 169 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 170 | # CONFIG_OMAP_DSP is not set | ||
| 171 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 172 | |||
| 173 | # | ||
| 174 | # OMAP Core Type | ||
| 175 | # | ||
| 176 | CONFIG_ARCH_OMAP24XX=y | ||
| 177 | # CONFIG_ARCH_OMAP2420 is not set | ||
| 178 | CONFIG_ARCH_OMAP2430=y | ||
| 179 | |||
| 180 | # | ||
| 181 | # OMAP Board Type | ||
| 182 | # | ||
| 183 | # CONFIG_MACH_NOKIA_N800 is not set | ||
| 184 | # CONFIG_MACH_OMAP_H4 is not set | ||
| 185 | # CONFIG_MACH_OMAP_APOLLON is not set | ||
| 186 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 187 | CONFIG_MACH_OMAP_2430SDP=y | ||
| 188 | |||
| 189 | # | ||
| 190 | # Boot options | ||
| 191 | # | ||
| 192 | |||
| 193 | # | ||
| 194 | # Power management | ||
| 195 | # | ||
| 196 | |||
| 197 | # | ||
| 198 | # Processor Type | ||
| 199 | # | ||
| 200 | CONFIG_CPU_32=y | ||
| 201 | CONFIG_CPU_V6=y | ||
| 202 | # CONFIG_CPU_32v6K is not set | ||
| 203 | CONFIG_CPU_32v6=y | ||
| 204 | CONFIG_CPU_ABRT_EV6=y | ||
| 205 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 206 | CONFIG_CPU_CACHE_V6=y | ||
| 207 | CONFIG_CPU_CACHE_VIPT=y | ||
| 208 | CONFIG_CPU_COPY_V6=y | ||
| 209 | CONFIG_CPU_TLB_V6=y | ||
| 210 | CONFIG_CPU_HAS_ASID=y | ||
| 211 | CONFIG_CPU_CP15=y | ||
| 212 | CONFIG_CPU_CP15_MMU=y | ||
| 213 | |||
| 214 | # | ||
| 215 | # Processor Features | ||
| 216 | # | ||
| 217 | CONFIG_ARM_THUMB=y | ||
| 218 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 219 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 220 | # CONFIG_CPU_BPREDICT_DISABLE is not set | ||
| 221 | # CONFIG_OUTER_CACHE is not set | ||
| 222 | |||
| 223 | # | ||
| 224 | # Bus support | ||
| 225 | # | ||
| 226 | # CONFIG_PCI_SYSCALL is not set | ||
| 227 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 228 | |||
| 229 | # | ||
| 230 | # PCCARD (PCMCIA/CardBus) support | ||
| 231 | # | ||
| 232 | # CONFIG_PCCARD is not set | ||
| 233 | |||
| 234 | # | ||
| 235 | # Kernel Features | ||
| 236 | # | ||
| 237 | # CONFIG_TICK_ONESHOT is not set | ||
| 238 | # CONFIG_NO_HZ is not set | ||
| 239 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 240 | CONFIG_PREEMPT=y | ||
| 241 | CONFIG_HZ=100 | ||
| 242 | CONFIG_AEABI=y | ||
| 243 | CONFIG_OABI_COMPAT=y | ||
| 244 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 245 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 246 | CONFIG_FLATMEM_MANUAL=y | ||
| 247 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 248 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 249 | CONFIG_FLATMEM=y | ||
| 250 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 251 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 252 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 253 | # CONFIG_RESOURCES_64BIT is not set | ||
| 254 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 255 | CONFIG_BOUNCE=y | ||
| 256 | CONFIG_VIRT_TO_BUS=y | ||
| 257 | # CONFIG_LEDS is not set | ||
| 258 | CONFIG_ALIGNMENT_TRAP=y | ||
| 259 | |||
| 260 | # | ||
| 261 | # Boot options | ||
| 262 | # | ||
| 263 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 264 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 265 | CONFIG_CMDLINE="root=/dev/ram0 rw console=ttyS0,115200n8 initrd=0x80600000,8M ramdisk_size=8192" | ||
| 266 | # CONFIG_XIP_KERNEL is not set | ||
| 267 | # CONFIG_KEXEC is not set | ||
| 268 | |||
| 269 | # | ||
| 270 | # CPU Frequency scaling | ||
| 271 | # | ||
| 272 | # CONFIG_CPU_FREQ is not set | ||
| 273 | |||
| 274 | # | ||
| 275 | # Floating point emulation | ||
| 276 | # | ||
| 277 | |||
| 278 | # | ||
| 279 | # At least one emulation must be selected | ||
| 280 | # | ||
| 281 | CONFIG_FPE_NWFPE=y | ||
| 282 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 283 | # CONFIG_FPE_FASTFPE is not set | ||
| 284 | # CONFIG_VFP is not set | ||
| 285 | |||
| 286 | # | ||
| 287 | # Userspace binary formats | ||
| 288 | # | ||
| 289 | CONFIG_BINFMT_ELF=y | ||
| 290 | # CONFIG_BINFMT_AOUT is not set | ||
| 291 | CONFIG_BINFMT_MISC=y | ||
| 292 | |||
| 293 | # | ||
| 294 | # Power management options | ||
| 295 | # | ||
| 296 | CONFIG_PM=y | ||
| 297 | # CONFIG_PM_LEGACY is not set | ||
| 298 | # CONFIG_PM_DEBUG is not set | ||
| 299 | CONFIG_PM_SLEEP=y | ||
| 300 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 301 | CONFIG_SUSPEND=y | ||
| 302 | # CONFIG_APM_EMULATION is not set | ||
| 303 | |||
| 304 | # | ||
| 305 | # Networking | ||
| 306 | # | ||
| 307 | CONFIG_NET=y | ||
| 308 | |||
| 309 | # | ||
| 310 | # Networking options | ||
| 311 | # | ||
| 312 | CONFIG_PACKET=y | ||
| 313 | # CONFIG_PACKET_MMAP is not set | ||
| 314 | CONFIG_UNIX=y | ||
| 315 | CONFIG_XFRM=y | ||
| 316 | # CONFIG_XFRM_USER is not set | ||
| 317 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 318 | # CONFIG_XFRM_MIGRATE is not set | ||
| 319 | CONFIG_NET_KEY=y | ||
| 320 | # CONFIG_NET_KEY_MIGRATE is not set | ||
| 321 | CONFIG_INET=y | ||
| 322 | # CONFIG_IP_MULTICAST is not set | ||
| 323 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 324 | CONFIG_IP_FIB_HASH=y | ||
| 325 | CONFIG_IP_PNP=y | ||
| 326 | CONFIG_IP_PNP_DHCP=y | ||
| 327 | # CONFIG_IP_PNP_BOOTP is not set | ||
| 328 | # CONFIG_IP_PNP_RARP is not set | ||
| 329 | # CONFIG_NET_IPIP is not set | ||
| 330 | # CONFIG_NET_IPGRE is not set | ||
| 331 | # CONFIG_ARPD is not set | ||
| 332 | # CONFIG_SYN_COOKIES is not set | ||
| 333 | # CONFIG_INET_AH is not set | ||
| 334 | # CONFIG_INET_ESP is not set | ||
| 335 | # CONFIG_INET_IPCOMP is not set | ||
| 336 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 337 | # CONFIG_INET_TUNNEL is not set | ||
| 338 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 339 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 340 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 341 | CONFIG_INET_DIAG=y | ||
| 342 | CONFIG_INET_TCP_DIAG=y | ||
| 343 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 344 | CONFIG_TCP_CONG_CUBIC=y | ||
| 345 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 346 | # CONFIG_TCP_MD5SIG is not set | ||
| 347 | # CONFIG_IPV6 is not set | ||
| 348 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 349 | # CONFIG_INET6_TUNNEL is not set | ||
| 350 | # CONFIG_NETWORK_SECMARK is not set | ||
| 351 | # CONFIG_NETFILTER is not set | ||
| 352 | # CONFIG_IP_DCCP is not set | ||
| 353 | # CONFIG_IP_SCTP is not set | ||
| 354 | # CONFIG_TIPC is not set | ||
| 355 | # CONFIG_ATM is not set | ||
| 356 | # CONFIG_BRIDGE is not set | ||
| 357 | # CONFIG_VLAN_8021Q is not set | ||
| 358 | # CONFIG_DECNET is not set | ||
| 359 | # CONFIG_LLC2 is not set | ||
| 360 | # CONFIG_IPX is not set | ||
| 361 | # CONFIG_ATALK is not set | ||
| 362 | # CONFIG_X25 is not set | ||
| 363 | # CONFIG_LAPB is not set | ||
| 364 | # CONFIG_ECONET is not set | ||
| 365 | # CONFIG_WAN_ROUTER is not set | ||
| 366 | |||
| 367 | # | ||
| 368 | # QoS and/or fair queueing | ||
| 369 | # | ||
| 370 | # CONFIG_NET_SCHED is not set | ||
| 371 | |||
| 372 | # | ||
| 373 | # Network testing | ||
| 374 | # | ||
| 375 | # CONFIG_NET_PKTGEN is not set | ||
| 376 | # CONFIG_HAMRADIO is not set | ||
| 377 | # CONFIG_IRDA is not set | ||
| 378 | # CONFIG_BT is not set | ||
| 379 | # CONFIG_AF_RXRPC is not set | ||
| 380 | |||
| 381 | # | ||
| 382 | # Wireless | ||
| 383 | # | ||
| 384 | # CONFIG_CFG80211 is not set | ||
| 385 | # CONFIG_WIRELESS_EXT is not set | ||
| 386 | # CONFIG_MAC80211 is not set | ||
| 387 | # CONFIG_IEEE80211 is not set | ||
| 388 | # CONFIG_RFKILL is not set | ||
| 389 | # CONFIG_NET_9P is not set | ||
| 390 | |||
| 391 | # | ||
| 392 | # Device Drivers | ||
| 393 | # | ||
| 394 | |||
| 395 | # | ||
| 396 | # Generic Driver Options | ||
| 397 | # | ||
| 398 | CONFIG_STANDALONE=y | ||
| 399 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 400 | # CONFIG_FW_LOADER is not set | ||
| 401 | # CONFIG_DEBUG_DRIVER is not set | ||
| 402 | # CONFIG_DEBUG_DEVRES is not set | ||
| 403 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 404 | # CONFIG_CONNECTOR is not set | ||
| 405 | CONFIG_MTD=y | ||
| 406 | # CONFIG_MTD_DEBUG is not set | ||
| 407 | CONFIG_MTD_CONCAT=y | ||
| 408 | CONFIG_MTD_PARTITIONS=y | ||
| 409 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 410 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 411 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 412 | |||
| 413 | # | ||
| 414 | # User Modules And Translation Layers | ||
| 415 | # | ||
| 416 | CONFIG_MTD_CHAR=y | ||
| 417 | CONFIG_MTD_BLKDEVS=y | ||
| 418 | CONFIG_MTD_BLOCK=y | ||
| 419 | # CONFIG_FTL is not set | ||
| 420 | # CONFIG_NFTL is not set | ||
| 421 | # CONFIG_INFTL is not set | ||
| 422 | # CONFIG_RFD_FTL is not set | ||
| 423 | # CONFIG_SSFDC is not set | ||
| 424 | |||
| 425 | # | ||
| 426 | # RAM/ROM/Flash chip drivers | ||
| 427 | # | ||
| 428 | CONFIG_MTD_CFI=y | ||
| 429 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 430 | CONFIG_MTD_GEN_PROBE=y | ||
| 431 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 432 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 433 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 434 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 435 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 436 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 437 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 438 | CONFIG_MTD_CFI_I1=y | ||
| 439 | CONFIG_MTD_CFI_I2=y | ||
| 440 | # CONFIG_MTD_CFI_I4 is not set | ||
| 441 | # CONFIG_MTD_CFI_I8 is not set | ||
| 442 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 443 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
| 444 | # CONFIG_MTD_CFI_STAA is not set | ||
| 445 | CONFIG_MTD_CFI_UTIL=y | ||
| 446 | # CONFIG_MTD_RAM is not set | ||
| 447 | # CONFIG_MTD_ROM is not set | ||
| 448 | # CONFIG_MTD_ABSENT is not set | ||
| 449 | |||
| 450 | # | ||
| 451 | # Mapping drivers for chip access | ||
| 452 | # | ||
| 453 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 454 | # CONFIG_MTD_PHYSMAP is not set | ||
| 455 | # CONFIG_MTD_ARM_INTEGRATOR is not set | ||
| 456 | CONFIG_MTD_OMAP_NOR=y | ||
| 457 | # CONFIG_MTD_PLATRAM is not set | ||
| 458 | |||
| 459 | # | ||
| 460 | # Self-contained MTD device drivers | ||
| 461 | # | ||
| 462 | # CONFIG_MTD_DATAFLASH is not set | ||
| 463 | # CONFIG_MTD_M25P80 is not set | ||
| 464 | # CONFIG_MTD_SLRAM is not set | ||
| 465 | # CONFIG_MTD_PHRAM is not set | ||
| 466 | # CONFIG_MTD_MTDRAM is not set | ||
| 467 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 468 | |||
| 469 | # | ||
| 470 | # Disk-On-Chip Device Drivers | ||
| 471 | # | ||
| 472 | # CONFIG_MTD_DOC2000 is not set | ||
| 473 | # CONFIG_MTD_DOC2001 is not set | ||
| 474 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 475 | # CONFIG_MTD_NAND is not set | ||
| 476 | CONFIG_MTD_ONENAND=y | ||
| 477 | CONFIG_MTD_ONENAND_VERIFY_WRITE=y | ||
| 478 | # CONFIG_MTD_ONENAND_GENERIC is not set | ||
| 479 | CONFIG_MTD_ONENAND_OMAP2=y | ||
| 480 | # CONFIG_MTD_ONENAND_OTP is not set | ||
| 481 | |||
| 482 | # | ||
| 483 | # UBI - Unsorted block images | ||
| 484 | # | ||
| 485 | # CONFIG_MTD_UBI is not set | ||
| 486 | # CONFIG_PARPORT is not set | ||
| 487 | CONFIG_BLK_DEV=y | ||
| 488 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 489 | CONFIG_BLK_DEV_LOOP=y | ||
| 490 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 491 | # CONFIG_BLK_DEV_NBD is not set | ||
| 492 | # CONFIG_BLK_DEV_UB is not set | ||
| 493 | CONFIG_BLK_DEV_RAM=y | ||
| 494 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 495 | CONFIG_BLK_DEV_RAM_SIZE=16384 | ||
| 496 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 497 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 498 | # CONFIG_ATA_OVER_ETH is not set | ||
| 499 | |||
| 500 | # | ||
| 501 | # SCSI device support | ||
| 502 | # | ||
| 503 | # CONFIG_RAID_ATTRS is not set | ||
| 504 | CONFIG_SCSI=m | ||
| 505 | CONFIG_SCSI_DMA=y | ||
| 506 | # CONFIG_SCSI_TGT is not set | ||
| 507 | # CONFIG_SCSI_NETLINK is not set | ||
| 508 | CONFIG_SCSI_PROC_FS=y | ||
| 509 | |||
| 510 | # | ||
| 511 | # SCSI support type (disk, tape, CD-ROM) | ||
| 512 | # | ||
| 513 | CONFIG_BLK_DEV_SD=m | ||
| 514 | # CONFIG_CHR_DEV_ST is not set | ||
| 515 | # CONFIG_CHR_DEV_OSST is not set | ||
| 516 | # CONFIG_BLK_DEV_SR is not set | ||
| 517 | CONFIG_CHR_DEV_SG=m | ||
| 518 | # CONFIG_CHR_DEV_SCH is not set | ||
| 519 | |||
| 520 | # | ||
| 521 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 522 | # | ||
| 523 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 524 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 525 | # CONFIG_SCSI_LOGGING is not set | ||
| 526 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 527 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 528 | |||
| 529 | # | ||
| 530 | # SCSI Transports | ||
| 531 | # | ||
| 532 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 533 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 534 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 535 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 536 | CONFIG_SCSI_LOWLEVEL=y | ||
| 537 | # CONFIG_ISCSI_TCP is not set | ||
| 538 | # CONFIG_SCSI_DEBUG is not set | ||
| 539 | # CONFIG_ATA is not set | ||
| 540 | # CONFIG_MD is not set | ||
| 541 | CONFIG_NETDEVICES=y | ||
| 542 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 543 | # CONFIG_DUMMY is not set | ||
| 544 | # CONFIG_BONDING is not set | ||
| 545 | # CONFIG_MACVLAN is not set | ||
| 546 | # CONFIG_EQUALIZER is not set | ||
| 547 | # CONFIG_TUN is not set | ||
| 548 | # CONFIG_PHYLIB is not set | ||
| 549 | CONFIG_NET_ETHERNET=y | ||
| 550 | CONFIG_MII=y | ||
| 551 | # CONFIG_AX88796 is not set | ||
| 552 | CONFIG_SMC91X=y | ||
| 553 | # CONFIG_DM9000 is not set | ||
| 554 | CONFIG_NETDEV_1000=y | ||
| 555 | CONFIG_NETDEV_10000=y | ||
| 556 | |||
| 557 | # | ||
| 558 | # Wireless LAN | ||
| 559 | # | ||
| 560 | # CONFIG_WLAN_PRE80211 is not set | ||
| 561 | # CONFIG_WLAN_80211 is not set | ||
| 562 | |||
| 563 | # | ||
| 564 | # USB Network Adapters | ||
| 565 | # | ||
| 566 | # CONFIG_USB_CATC is not set | ||
| 567 | # CONFIG_USB_KAWETH is not set | ||
| 568 | # CONFIG_USB_PEGASUS is not set | ||
| 569 | # CONFIG_USB_RTL8150 is not set | ||
| 570 | # CONFIG_USB_USBNET_MII is not set | ||
| 571 | # CONFIG_USB_USBNET is not set | ||
| 572 | # CONFIG_WAN is not set | ||
| 573 | # CONFIG_PPP is not set | ||
| 574 | # CONFIG_SLIP is not set | ||
| 575 | # CONFIG_SHAPER is not set | ||
| 576 | # CONFIG_NETCONSOLE is not set | ||
| 577 | # CONFIG_NETPOLL is not set | ||
| 578 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 579 | # CONFIG_ISDN is not set | ||
| 580 | |||
| 581 | # | ||
| 582 | # Input device support | ||
| 583 | # | ||
| 584 | CONFIG_INPUT=y | ||
| 585 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 586 | # CONFIG_INPUT_POLLDEV is not set | ||
| 587 | |||
| 588 | # | ||
| 589 | # Userland interfaces | ||
| 590 | # | ||
| 591 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 592 | # CONFIG_INPUT_JOYDEV is not set | ||
| 593 | # CONFIG_INPUT_TSDEV is not set | ||
| 594 | CONFIG_INPUT_EVDEV=y | ||
| 595 | # CONFIG_INPUT_EVBUG is not set | ||
| 596 | |||
| 597 | # | ||
| 598 | # Input Device Drivers | ||
| 599 | # | ||
| 600 | CONFIG_INPUT_KEYBOARD=y | ||
| 601 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 602 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 603 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 604 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 605 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 606 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 607 | # CONFIG_KEYBOARD_OMAP is not set | ||
| 608 | CONFIG_KEYBOARD_TWL4030=y | ||
| 609 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 610 | # CONFIG_INPUT_MOUSE is not set | ||
| 611 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 612 | # CONFIG_INPUT_TABLET is not set | ||
| 613 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 614 | CONFIG_TOUCHSCREEN_ADS7846=y | ||
| 615 | # CONFIG_TOUCHSCREEN_FUJITSU is not set | ||
| 616 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
| 617 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
| 618 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
| 619 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
| 620 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
| 621 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
| 622 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
| 623 | # CONFIG_TOUCHSCREEN_UCB1400 is not set | ||
| 624 | # CONFIG_TOUCHSCREEN_TSC2102 is not set | ||
| 625 | # CONFIG_TOUCHSCREEN_TSC210X is not set | ||
| 626 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set | ||
| 627 | # CONFIG_INPUT_MISC is not set | ||
| 628 | |||
| 629 | # | ||
| 630 | # Hardware I/O ports | ||
| 631 | # | ||
| 632 | # CONFIG_SERIO is not set | ||
| 633 | # CONFIG_GAMEPORT is not set | ||
| 634 | |||
| 635 | # | ||
| 636 | # Character devices | ||
| 637 | # | ||
| 638 | CONFIG_VT=y | ||
| 639 | CONFIG_VT_CONSOLE=y | ||
| 640 | CONFIG_HW_CONSOLE=y | ||
| 641 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 642 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 643 | |||
| 644 | # | ||
| 645 | # Serial drivers | ||
| 646 | # | ||
| 647 | CONFIG_SERIAL_8250=y | ||
| 648 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 649 | CONFIG_SERIAL_8250_NR_UARTS=32 | ||
| 650 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 651 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 652 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
| 653 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 654 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
| 655 | CONFIG_SERIAL_8250_RSA=y | ||
| 656 | |||
| 657 | # | ||
| 658 | # Non-8250 serial port support | ||
| 659 | # | ||
| 660 | CONFIG_SERIAL_CORE=y | ||
| 661 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 662 | CONFIG_UNIX98_PTYS=y | ||
| 663 | # CONFIG_LEGACY_PTYS is not set | ||
| 664 | # CONFIG_IPMI_HANDLER is not set | ||
| 665 | CONFIG_WATCHDOG=y | ||
| 666 | CONFIG_WATCHDOG_NOWAYOUT=y | ||
| 667 | |||
| 668 | # | ||
| 669 | # Watchdog Device Drivers | ||
| 670 | # | ||
| 671 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 672 | CONFIG_OMAP_WATCHDOG=y | ||
| 673 | |||
| 674 | # | ||
| 675 | # USB-based Watchdog Cards | ||
| 676 | # | ||
| 677 | # CONFIG_USBPCWATCHDOG is not set | ||
| 678 | CONFIG_HW_RANDOM=y | ||
| 679 | CONFIG_HW_RANDOM_OMAP=y | ||
| 680 | # CONFIG_NVRAM is not set | ||
| 681 | # CONFIG_R3964 is not set | ||
| 682 | # CONFIG_RAW_DRIVER is not set | ||
| 683 | # CONFIG_TCG_TPM is not set | ||
| 684 | CONFIG_I2C=y | ||
| 685 | CONFIG_I2C_BOARDINFO=y | ||
| 686 | CONFIG_I2C_CHARDEV=y | ||
| 687 | |||
| 688 | # | ||
| 689 | # I2C Algorithms | ||
| 690 | # | ||
| 691 | # CONFIG_I2C_ALGOBIT is not set | ||
| 692 | # CONFIG_I2C_ALGOPCF is not set | ||
| 693 | # CONFIG_I2C_ALGOPCA is not set | ||
| 694 | |||
| 695 | # | ||
| 696 | # I2C Hardware Bus support | ||
| 697 | # | ||
| 698 | # CONFIG_I2C_GPIO is not set | ||
| 699 | # CONFIG_I2C_OCORES is not set | ||
| 700 | CONFIG_I2C_OMAP=y | ||
| 701 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 702 | # CONFIG_I2C_SIMTEC is not set | ||
| 703 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 704 | # CONFIG_I2C_STUB is not set | ||
| 705 | # CONFIG_I2C_TINY_USB is not set | ||
| 706 | |||
| 707 | # | ||
| 708 | # Miscellaneous I2C Chip support | ||
| 709 | # | ||
| 710 | # CONFIG_SENSORS_DS1337 is not set | ||
| 711 | # CONFIG_SENSORS_DS1374 is not set | ||
| 712 | # CONFIG_DS1682 is not set | ||
| 713 | # CONFIG_SENSORS_EEPROM is not set | ||
| 714 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 715 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 716 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 717 | # CONFIG_TPS65010 is not set | ||
| 718 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 719 | # CONFIG_GPIOEXPANDER_OMAP is not set | ||
| 720 | CONFIG_TWL4030_CORE=y | ||
| 721 | CONFIG_TWL4030_GPIO=y | ||
| 722 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 723 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 724 | # CONFIG_MENELAUS is not set | ||
| 725 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 726 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 727 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 728 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 729 | |||
| 730 | # | ||
| 731 | # SPI support | ||
| 732 | # | ||
| 733 | CONFIG_SPI=y | ||
| 734 | # CONFIG_SPI_DEBUG is not set | ||
| 735 | CONFIG_SPI_MASTER=y | ||
| 736 | |||
| 737 | # | ||
| 738 | # SPI Master Controller Drivers | ||
| 739 | # | ||
| 740 | # CONFIG_SPI_BITBANG is not set | ||
| 741 | # CONFIG_SPI_OMAP24XX is not set | ||
| 742 | |||
| 743 | # | ||
| 744 | # SPI Protocol Masters | ||
| 745 | # | ||
| 746 | # CONFIG_SPI_AT25 is not set | ||
| 747 | # CONFIG_SPI_TSC2101 is not set | ||
| 748 | # CONFIG_SPI_TSC2102 is not set | ||
| 749 | # CONFIG_SPI_TSC210X is not set | ||
| 750 | # CONFIG_SPI_TSC2301 is not set | ||
| 751 | # CONFIG_SPI_SPIDEV is not set | ||
| 752 | # CONFIG_SPI_TLE62X0 is not set | ||
| 753 | # CONFIG_W1 is not set | ||
| 754 | # CONFIG_HWMON is not set | ||
| 755 | CONFIG_MISC_DEVICES=y | ||
| 756 | # CONFIG_EEPROM_93CX6 is not set | ||
| 757 | |||
| 758 | # | ||
| 759 | # Multifunction device drivers | ||
| 760 | # | ||
| 761 | # CONFIG_MFD_SM501 is not set | ||
| 762 | # CONFIG_NEW_LEDS is not set | ||
| 763 | |||
| 764 | # | ||
| 765 | # Multimedia devices | ||
| 766 | # | ||
| 767 | # CONFIG_VIDEO_DEV is not set | ||
| 768 | # CONFIG_DVB_CORE is not set | ||
| 769 | CONFIG_DAB=y | ||
| 770 | # CONFIG_USB_DABUSB is not set | ||
| 771 | |||
| 772 | # | ||
| 773 | # Graphics support | ||
| 774 | # | ||
| 775 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 776 | |||
| 777 | # | ||
| 778 | # Display device support | ||
| 779 | # | ||
| 780 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 781 | # CONFIG_VGASTATE is not set | ||
| 782 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 783 | CONFIG_FB=y | ||
| 784 | CONFIG_FIRMWARE_EDID=y | ||
| 785 | # CONFIG_FB_DDC is not set | ||
| 786 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 787 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 788 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 789 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 790 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 791 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 792 | # CONFIG_FB_SYS_FOPS is not set | ||
| 793 | CONFIG_FB_DEFERRED_IO=y | ||
| 794 | # CONFIG_FB_SVGALIB is not set | ||
| 795 | # CONFIG_FB_MACMODES is not set | ||
| 796 | # CONFIG_FB_BACKLIGHT is not set | ||
| 797 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 798 | # CONFIG_FB_TILEBLITTING is not set | ||
| 799 | |||
| 800 | # | ||
| 801 | # Frame buffer hardware drivers | ||
| 802 | # | ||
| 803 | # CONFIG_FB_S1D13XXX is not set | ||
| 804 | CONFIG_FB_OMAP=y | ||
| 805 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 806 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 807 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 808 | # CONFIG_FB_VIRTUAL is not set | ||
| 809 | |||
| 810 | # | ||
| 811 | # Console display driver support | ||
| 812 | # | ||
| 813 | # CONFIG_VGA_CONSOLE is not set | ||
| 814 | CONFIG_DUMMY_CONSOLE=y | ||
| 815 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 816 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 817 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 818 | # CONFIG_FONTS is not set | ||
| 819 | CONFIG_FONT_8x8=y | ||
| 820 | CONFIG_FONT_8x16=y | ||
| 821 | CONFIG_LOGO=y | ||
| 822 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 823 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 824 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 825 | |||
| 826 | # | ||
| 827 | # Sound | ||
| 828 | # | ||
| 829 | # CONFIG_SOUND is not set | ||
| 830 | CONFIG_HID_SUPPORT=y | ||
| 831 | CONFIG_HID=y | ||
| 832 | # CONFIG_HID_DEBUG is not set | ||
| 833 | |||
| 834 | # | ||
| 835 | # USB Input Devices | ||
| 836 | # | ||
| 837 | CONFIG_USB_HID=m | ||
| 838 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 839 | # CONFIG_HID_FF is not set | ||
| 840 | # CONFIG_USB_HIDDEV is not set | ||
| 841 | |||
| 842 | # | ||
| 843 | # USB HID Boot Protocol drivers | ||
| 844 | # | ||
| 845 | # CONFIG_USB_KBD is not set | ||
| 846 | # CONFIG_USB_MOUSE is not set | ||
| 847 | CONFIG_USB_SUPPORT=y | ||
| 848 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 849 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 850 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 851 | CONFIG_USB=m | ||
| 852 | # CONFIG_USB_DEBUG is not set | ||
| 853 | |||
| 854 | # | ||
| 855 | # Miscellaneous USB options | ||
| 856 | # | ||
| 857 | # CONFIG_USB_DEVICEFS is not set | ||
| 858 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 859 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 860 | CONFIG_USB_SUSPEND=y | ||
| 861 | # CONFIG_USB_PERSIST is not set | ||
| 862 | CONFIG_USB_OTG=y | ||
| 863 | CONFIG_USB_OTG_WHITELIST=y | ||
| 864 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 865 | |||
| 866 | # | ||
| 867 | # USB Host Controller Drivers | ||
| 868 | # | ||
| 869 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 870 | # CONFIG_USB_OHCI_HCD is not set | ||
| 871 | # CONFIG_USB_SL811_HCD is not set | ||
| 872 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 873 | CONFIG_USB_MUSB_HDRC=m | ||
| 874 | CONFIG_USB_MUSB_SOC=y | ||
| 875 | |||
| 876 | # | ||
| 877 | # OMAP 243x high speed USB support | ||
| 878 | # | ||
| 879 | # CONFIG_USB_MUSB_HOST is not set | ||
| 880 | # CONFIG_USB_MUSB_PERIPHERAL is not set | ||
| 881 | CONFIG_USB_MUSB_OTG=y | ||
| 882 | CONFIG_USB_GADGET_MUSB_HDRC=y | ||
| 883 | CONFIG_USB_MUSB_HDRC_HCD=y | ||
| 884 | # CONFIG_MUSB_PIO_ONLY is not set | ||
| 885 | CONFIG_USB_INVENTRA_DMA=y | ||
| 886 | # CONFIG_USB_TI_CPPI_DMA is not set | ||
| 887 | CONFIG_USB_MUSB_LOGLEVEL=0 | ||
| 888 | |||
| 889 | # | ||
| 890 | # USB Device Class drivers | ||
| 891 | # | ||
| 892 | # CONFIG_USB_ACM is not set | ||
| 893 | # CONFIG_USB_PRINTER is not set | ||
| 894 | |||
| 895 | # | ||
| 896 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 897 | # | ||
| 898 | |||
| 899 | # | ||
| 900 | # may also be needed; see USB_STORAGE Help for more information | ||
| 901 | # | ||
| 902 | CONFIG_USB_STORAGE=m | ||
| 903 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 904 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 905 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 906 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 907 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 908 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 909 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 910 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 911 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 912 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 913 | # CONFIG_USB_LIBUSUAL is not set | ||
| 914 | |||
| 915 | # | ||
| 916 | # USB Imaging devices | ||
| 917 | # | ||
| 918 | # CONFIG_USB_MDC800 is not set | ||
| 919 | # CONFIG_USB_MICROTEK is not set | ||
| 920 | CONFIG_USB_MON=y | ||
| 921 | |||
| 922 | # | ||
| 923 | # USB port drivers | ||
| 924 | # | ||
| 925 | |||
| 926 | # | ||
| 927 | # USB Serial Converter support | ||
| 928 | # | ||
| 929 | # CONFIG_USB_SERIAL is not set | ||
| 930 | |||
| 931 | # | ||
| 932 | # USB Miscellaneous drivers | ||
| 933 | # | ||
| 934 | # CONFIG_USB_EMI62 is not set | ||
| 935 | # CONFIG_USB_EMI26 is not set | ||
| 936 | # CONFIG_USB_ADUTUX is not set | ||
| 937 | # CONFIG_USB_AUERSWALD is not set | ||
| 938 | # CONFIG_USB_RIO500 is not set | ||
| 939 | # CONFIG_USB_LEGOTOWER is not set | ||
| 940 | # CONFIG_USB_LCD is not set | ||
| 941 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 942 | # CONFIG_USB_LED is not set | ||
| 943 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 944 | # CONFIG_USB_CYTHERM is not set | ||
| 945 | # CONFIG_USB_PHIDGET is not set | ||
| 946 | # CONFIG_USB_IDMOUSE is not set | ||
| 947 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 948 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 949 | # CONFIG_USB_LD is not set | ||
| 950 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 951 | # CONFIG_USB_IOWARRIOR is not set | ||
| 952 | |||
| 953 | # | ||
| 954 | # USB DSL modem support | ||
| 955 | # | ||
| 956 | |||
| 957 | # | ||
| 958 | # USB Gadget Support | ||
| 959 | # | ||
| 960 | CONFIG_USB_GADGET=m | ||
| 961 | # CONFIG_USB_GADGET_DEBUG is not set | ||
| 962 | CONFIG_USB_GADGET_DEBUG_FILES=y | ||
| 963 | CONFIG_USB_GADGET_SELECTED=y | ||
| 964 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
| 965 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 966 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 967 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 968 | # CONFIG_USB_GADGET_M66592 is not set | ||
| 969 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 970 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 971 | # CONFIG_USB_GADGET_OMAP is not set | ||
| 972 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
| 973 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 974 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 975 | CONFIG_USB_GADGET_DUALSPEED=y | ||
| 976 | CONFIG_USB_ZERO=m | ||
| 977 | # CONFIG_USB_ZERO_HNPTEST is not set | ||
| 978 | CONFIG_USB_ETH=m | ||
| 979 | CONFIG_USB_ETH_RNDIS=y | ||
| 980 | CONFIG_USB_GADGETFS=m | ||
| 981 | CONFIG_USB_FILE_STORAGE=m | ||
| 982 | # CONFIG_USB_FILE_STORAGE_TEST is not set | ||
| 983 | CONFIG_USB_G_SERIAL=m | ||
| 984 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 985 | CONFIG_MMC=y | ||
| 986 | # CONFIG_MMC_DEBUG is not set | ||
| 987 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 988 | |||
| 989 | # | ||
| 990 | # MMC/SD Card Drivers | ||
| 991 | # | ||
| 992 | CONFIG_MMC_BLOCK=y | ||
| 993 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 994 | |||
| 995 | # | ||
| 996 | # MMC/SD Host Controller Drivers | ||
| 997 | # | ||
| 998 | CONFIG_MMC_OMAP_HS=y | ||
| 999 | CONFIG_RTC_LIB=y | ||
| 1000 | # CONFIG_RTC_CLASS is not set | ||
| 1001 | |||
| 1002 | # | ||
| 1003 | # DMA Engine support | ||
| 1004 | # | ||
| 1005 | # CONFIG_DMA_ENGINE is not set | ||
| 1006 | |||
| 1007 | # | ||
| 1008 | # DMA Clients | ||
| 1009 | # | ||
| 1010 | |||
| 1011 | # | ||
| 1012 | # DMA Devices | ||
| 1013 | # | ||
| 1014 | |||
| 1015 | # | ||
| 1016 | # CBUS support | ||
| 1017 | # | ||
| 1018 | # CONFIG_CBUS is not set | ||
| 1019 | |||
| 1020 | # | ||
| 1021 | # File systems | ||
| 1022 | # | ||
| 1023 | CONFIG_EXT2_FS=y | ||
| 1024 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 1025 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1026 | CONFIG_EXT3_FS=y | ||
| 1027 | # CONFIG_EXT3_FS_XATTR is not set | ||
| 1028 | # CONFIG_EXT4DEV_FS is not set | ||
| 1029 | CONFIG_JBD=y | ||
| 1030 | # CONFIG_JBD_DEBUG is not set | ||
| 1031 | # CONFIG_REISERFS_FS is not set | ||
| 1032 | # CONFIG_JFS_FS is not set | ||
| 1033 | # CONFIG_FS_POSIX_ACL is not set | ||
| 1034 | # CONFIG_XFS_FS is not set | ||
| 1035 | # CONFIG_GFS2_FS is not set | ||
| 1036 | # CONFIG_OCFS2_FS is not set | ||
| 1037 | # CONFIG_MINIX_FS is not set | ||
| 1038 | # CONFIG_ROMFS_FS is not set | ||
| 1039 | CONFIG_INOTIFY=y | ||
| 1040 | CONFIG_INOTIFY_USER=y | ||
| 1041 | CONFIG_QUOTA=y | ||
| 1042 | # CONFIG_QFMT_V1 is not set | ||
| 1043 | CONFIG_QFMT_V2=y | ||
| 1044 | CONFIG_QUOTACTL=y | ||
| 1045 | CONFIG_DNOTIFY=y | ||
| 1046 | # CONFIG_AUTOFS_FS is not set | ||
| 1047 | # CONFIG_AUTOFS4_FS is not set | ||
| 1048 | # CONFIG_FUSE_FS is not set | ||
| 1049 | |||
| 1050 | # | ||
| 1051 | # CD-ROM/DVD Filesystems | ||
| 1052 | # | ||
| 1053 | # CONFIG_ISO9660_FS is not set | ||
| 1054 | # CONFIG_UDF_FS is not set | ||
| 1055 | |||
| 1056 | # | ||
| 1057 | # DOS/FAT/NT Filesystems | ||
| 1058 | # | ||
| 1059 | CONFIG_FAT_FS=y | ||
| 1060 | CONFIG_MSDOS_FS=y | ||
| 1061 | CONFIG_VFAT_FS=y | ||
| 1062 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1063 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1064 | # CONFIG_NTFS_FS is not set | ||
| 1065 | |||
| 1066 | # | ||
| 1067 | # Pseudo filesystems | ||
| 1068 | # | ||
| 1069 | CONFIG_PROC_FS=y | ||
| 1070 | CONFIG_PROC_SYSCTL=y | ||
| 1071 | CONFIG_SYSFS=y | ||
| 1072 | CONFIG_TMPFS=y | ||
| 1073 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 1074 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1075 | CONFIG_RAMFS=y | ||
| 1076 | # CONFIG_CONFIGFS_FS is not set | ||
| 1077 | |||
| 1078 | # | ||
| 1079 | # Miscellaneous filesystems | ||
| 1080 | # | ||
| 1081 | # CONFIG_ADFS_FS is not set | ||
| 1082 | # CONFIG_AFFS_FS is not set | ||
| 1083 | # CONFIG_HFS_FS is not set | ||
| 1084 | # CONFIG_HFSPLUS_FS is not set | ||
| 1085 | # CONFIG_BEFS_FS is not set | ||
| 1086 | # CONFIG_BFS_FS is not set | ||
| 1087 | # CONFIG_EFS_FS is not set | ||
| 1088 | CONFIG_JFFS2_FS=y | ||
| 1089 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1090 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1091 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 1092 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 1093 | CONFIG_JFFS2_COMPRESSION_OPTIONS=y | ||
| 1094 | CONFIG_JFFS2_ZLIB=y | ||
| 1095 | CONFIG_JFFS2_RTIME=y | ||
| 1096 | # CONFIG_JFFS2_RUBIN is not set | ||
| 1097 | # CONFIG_JFFS2_CMODE_NONE is not set | ||
| 1098 | CONFIG_JFFS2_CMODE_PRIORITY=y | ||
| 1099 | # CONFIG_JFFS2_CMODE_SIZE is not set | ||
| 1100 | # CONFIG_CRAMFS is not set | ||
| 1101 | # CONFIG_VXFS_FS is not set | ||
| 1102 | # CONFIG_HPFS_FS is not set | ||
| 1103 | # CONFIG_QNX4FS_FS is not set | ||
| 1104 | # CONFIG_SYSV_FS is not set | ||
| 1105 | # CONFIG_UFS_FS is not set | ||
| 1106 | |||
| 1107 | # | ||
| 1108 | # Network File Systems | ||
| 1109 | # | ||
| 1110 | CONFIG_NFS_FS=y | ||
| 1111 | CONFIG_NFS_V3=y | ||
| 1112 | # CONFIG_NFS_V3_ACL is not set | ||
| 1113 | # CONFIG_NFS_V4 is not set | ||
| 1114 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1115 | # CONFIG_NFSD is not set | ||
| 1116 | CONFIG_ROOT_NFS=y | ||
| 1117 | CONFIG_LOCKD=y | ||
| 1118 | CONFIG_LOCKD_V4=y | ||
| 1119 | CONFIG_NFS_COMMON=y | ||
| 1120 | CONFIG_SUNRPC=y | ||
| 1121 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1122 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1123 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1124 | # CONFIG_SMB_FS is not set | ||
| 1125 | # CONFIG_CIFS is not set | ||
| 1126 | # CONFIG_NCP_FS is not set | ||
| 1127 | # CONFIG_CODA_FS is not set | ||
| 1128 | # CONFIG_AFS_FS is not set | ||
| 1129 | |||
| 1130 | # | ||
| 1131 | # Partition Types | ||
| 1132 | # | ||
| 1133 | CONFIG_PARTITION_ADVANCED=y | ||
| 1134 | # CONFIG_ACORN_PARTITION is not set | ||
| 1135 | # CONFIG_OSF_PARTITION is not set | ||
| 1136 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1137 | # CONFIG_ATARI_PARTITION is not set | ||
| 1138 | # CONFIG_MAC_PARTITION is not set | ||
| 1139 | CONFIG_MSDOS_PARTITION=y | ||
| 1140 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1141 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1142 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1143 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1144 | # CONFIG_LDM_PARTITION is not set | ||
| 1145 | # CONFIG_SGI_PARTITION is not set | ||
| 1146 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1147 | # CONFIG_SUN_PARTITION is not set | ||
| 1148 | # CONFIG_KARMA_PARTITION is not set | ||
| 1149 | # CONFIG_EFI_PARTITION is not set | ||
| 1150 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1151 | |||
| 1152 | # | ||
| 1153 | # Native Language Support | ||
| 1154 | # | ||
| 1155 | CONFIG_NLS=y | ||
| 1156 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1157 | CONFIG_NLS_CODEPAGE_437=y | ||
| 1158 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1159 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1160 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1161 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 1162 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1163 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1164 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1165 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1166 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1167 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1168 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1169 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1170 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1171 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1172 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1173 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1174 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1175 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1176 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1177 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1178 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1179 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1180 | # CONFIG_NLS_ASCII is not set | ||
| 1181 | # CONFIG_NLS_ISO8859_1 is not set | ||
| 1182 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1183 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1184 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1185 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1186 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1187 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1188 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1189 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1190 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1191 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1192 | # CONFIG_NLS_KOI8_R is not set | ||
| 1193 | # CONFIG_NLS_KOI8_U is not set | ||
| 1194 | # CONFIG_NLS_UTF8 is not set | ||
| 1195 | |||
| 1196 | # | ||
| 1197 | # Distributed Lock Manager | ||
| 1198 | # | ||
| 1199 | # CONFIG_DLM is not set | ||
| 1200 | |||
| 1201 | # | ||
| 1202 | # Profiling support | ||
| 1203 | # | ||
| 1204 | # CONFIG_PROFILING is not set | ||
| 1205 | |||
| 1206 | # | ||
| 1207 | # Kernel hacking | ||
| 1208 | # | ||
| 1209 | # CONFIG_PRINTK_TIME is not set | ||
| 1210 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1211 | CONFIG_MAGIC_SYSRQ=y | ||
| 1212 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1213 | # CONFIG_DEBUG_FS is not set | ||
| 1214 | # CONFIG_HEADERS_CHECK is not set | ||
| 1215 | CONFIG_DEBUG_KERNEL=y | ||
| 1216 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1217 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1218 | CONFIG_SCHED_DEBUG=y | ||
| 1219 | # CONFIG_SCHEDSTATS is not set | ||
| 1220 | CONFIG_TIMER_STATS=y | ||
| 1221 | # CONFIG_DEBUG_SLAB is not set | ||
| 1222 | CONFIG_DEBUG_PREEMPT=y | ||
| 1223 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1224 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1225 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1226 | CONFIG_DEBUG_MUTEXES=y | ||
| 1227 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1228 | # CONFIG_PROVE_LOCKING is not set | ||
| 1229 | # CONFIG_LOCK_STAT is not set | ||
| 1230 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1231 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1232 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1233 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 1234 | # CONFIG_DEBUG_INFO is not set | ||
| 1235 | # CONFIG_DEBUG_VM is not set | ||
| 1236 | # CONFIG_DEBUG_LIST is not set | ||
| 1237 | CONFIG_FRAME_POINTER=y | ||
| 1238 | CONFIG_FORCED_INLINING=y | ||
| 1239 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1240 | # CONFIG_FAULT_INJECTION is not set | ||
| 1241 | # CONFIG_DEBUG_USER is not set | ||
| 1242 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1243 | # CONFIG_DEBUG_LL is not set | ||
| 1244 | |||
| 1245 | # | ||
| 1246 | # Security options | ||
| 1247 | # | ||
| 1248 | # CONFIG_KEYS is not set | ||
| 1249 | # CONFIG_SECURITY is not set | ||
| 1250 | CONFIG_CRYPTO=y | ||
| 1251 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1252 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 1253 | CONFIG_CRYPTO_MANAGER=y | ||
| 1254 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1255 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1256 | # CONFIG_CRYPTO_NULL is not set | ||
| 1257 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1258 | CONFIG_CRYPTO_MD5=y | ||
| 1259 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1260 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1261 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1262 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1263 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1264 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1265 | CONFIG_CRYPTO_ECB=m | ||
| 1266 | CONFIG_CRYPTO_CBC=y | ||
| 1267 | CONFIG_CRYPTO_PCBC=m | ||
| 1268 | # CONFIG_CRYPTO_LRW is not set | ||
| 1269 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1270 | CONFIG_CRYPTO_DES=y | ||
| 1271 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1272 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1273 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1274 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1275 | # CONFIG_CRYPTO_AES is not set | ||
| 1276 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1277 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1278 | # CONFIG_CRYPTO_TEA is not set | ||
| 1279 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1280 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1281 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1282 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1283 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1284 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1285 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1286 | # CONFIG_CRYPTO_TEST is not set | ||
| 1287 | CONFIG_CRYPTO_HW=y | ||
| 1288 | |||
| 1289 | # | ||
| 1290 | # Library routines | ||
| 1291 | # | ||
| 1292 | CONFIG_BITREVERSE=y | ||
| 1293 | CONFIG_CRC_CCITT=y | ||
| 1294 | # CONFIG_CRC16 is not set | ||
| 1295 | # CONFIG_CRC_ITU_T is not set | ||
| 1296 | CONFIG_CRC32=y | ||
| 1297 | # CONFIG_CRC7 is not set | ||
| 1298 | CONFIG_LIBCRC32C=y | ||
| 1299 | CONFIG_ZLIB_INFLATE=y | ||
| 1300 | CONFIG_ZLIB_DEFLATE=y | ||
| 1301 | CONFIG_PLIST=y | ||
| 1302 | CONFIG_HAS_IOMEM=y | ||
| 1303 | CONFIG_HAS_IOPORT=y | ||
| 1304 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_apollon_2420_defconfig b/arch/arm/configs/omap_apollon_2420_defconfig new file mode 100644 index 000000000000..bb39dfc72d69 --- /dev/null +++ b/arch/arm/configs/omap_apollon_2420_defconfig | |||
| @@ -0,0 +1,962 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 12:07:29 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | # CONFIG_LOCALVERSION_AUTO is not set | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 43 | # CONFIG_TASKSTATS is not set | ||
| 44 | # CONFIG_USER_NS is not set | ||
| 45 | # CONFIG_AUDIT is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | ||
| 47 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 48 | CONFIG_SYSFS_DEPRECATED=y | ||
| 49 | # CONFIG_RELAY is not set | ||
| 50 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | # CONFIG_EMBEDDED is not set | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_ALL is not set | ||
| 58 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | CONFIG_MODULES=y | ||
| 79 | CONFIG_MODULE_UNLOAD=y | ||
| 80 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 81 | # CONFIG_MODVERSIONS is not set | ||
| 82 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 83 | CONFIG_KMOD=y | ||
| 84 | CONFIG_BLOCK=y | ||
| 85 | # CONFIG_LBD is not set | ||
| 86 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 87 | # CONFIG_LSF is not set | ||
| 88 | # CONFIG_BLK_DEV_BSG is not set | ||
| 89 | |||
| 90 | # | ||
| 91 | # IO Schedulers | ||
| 92 | # | ||
| 93 | CONFIG_IOSCHED_NOOP=y | ||
| 94 | CONFIG_IOSCHED_AS=y | ||
| 95 | CONFIG_IOSCHED_DEADLINE=y | ||
| 96 | CONFIG_IOSCHED_CFQ=y | ||
| 97 | # CONFIG_DEFAULT_AS is not set | ||
| 98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 99 | CONFIG_DEFAULT_CFQ=y | ||
| 100 | # CONFIG_DEFAULT_NOOP is not set | ||
| 101 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 102 | |||
| 103 | # | ||
| 104 | # System Type | ||
| 105 | # | ||
| 106 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 107 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 108 | # CONFIG_ARCH_REALVIEW is not set | ||
| 109 | # CONFIG_ARCH_VERSATILE is not set | ||
| 110 | # CONFIG_ARCH_AT91 is not set | ||
| 111 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 112 | # CONFIG_ARCH_CLPS711X is not set | ||
| 113 | # CONFIG_ARCH_CO285 is not set | ||
| 114 | # CONFIG_ARCH_EBSA110 is not set | ||
| 115 | # CONFIG_ARCH_EP93XX is not set | ||
| 116 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 117 | # CONFIG_ARCH_NETX is not set | ||
| 118 | # CONFIG_ARCH_H720X is not set | ||
| 119 | # CONFIG_ARCH_IMX is not set | ||
| 120 | # CONFIG_ARCH_IOP13XX is not set | ||
| 121 | # CONFIG_ARCH_IOP32X is not set | ||
| 122 | # CONFIG_ARCH_IOP33X is not set | ||
| 123 | # CONFIG_ARCH_IXP23XX is not set | ||
| 124 | # CONFIG_ARCH_IXP2000 is not set | ||
| 125 | # CONFIG_ARCH_IXP4XX is not set | ||
| 126 | # CONFIG_ARCH_L7200 is not set | ||
| 127 | # CONFIG_ARCH_KS8695 is not set | ||
| 128 | # CONFIG_ARCH_NS9XXX is not set | ||
| 129 | # CONFIG_ARCH_MXC is not set | ||
| 130 | # CONFIG_ARCH_PNX4008 is not set | ||
| 131 | # CONFIG_ARCH_PXA is not set | ||
| 132 | # CONFIG_ARCH_RPC is not set | ||
| 133 | # CONFIG_ARCH_SA1100 is not set | ||
| 134 | # CONFIG_ARCH_S3C2410 is not set | ||
| 135 | # CONFIG_ARCH_SHARK is not set | ||
| 136 | # CONFIG_ARCH_LH7A40X is not set | ||
| 137 | # CONFIG_ARCH_DAVINCI is not set | ||
| 138 | CONFIG_ARCH_OMAP=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # TI OMAP Implementations | ||
| 142 | # | ||
| 143 | CONFIG_ARCH_OMAP_OTG=y | ||
| 144 | # CONFIG_ARCH_OMAP1 is not set | ||
| 145 | CONFIG_ARCH_OMAP2=y | ||
| 146 | # CONFIG_ARCH_OMAP3 is not set | ||
| 147 | |||
| 148 | # | ||
| 149 | # OMAP Feature Selections | ||
| 150 | # | ||
| 151 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 152 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 153 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 154 | CONFIG_OMAP_MUX=y | ||
| 155 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 156 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 157 | # CONFIG_OMAP_STI is not set | ||
| 158 | # CONFIG_OMAP_MCBSP is not set | ||
| 159 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 160 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 161 | # CONFIG_OMAP_MPU_TIMER is not set | ||
| 162 | CONFIG_OMAP_32K_TIMER=y | ||
| 163 | CONFIG_OMAP_32K_TIMER_HZ=128 | ||
| 164 | CONFIG_OMAP_DM_TIMER=y | ||
| 165 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 166 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 167 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 168 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 169 | # CONFIG_OMAP_DSP is not set | ||
| 170 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 171 | |||
| 172 | # | ||
| 173 | # OMAP Core Type | ||
| 174 | # | ||
| 175 | CONFIG_ARCH_OMAP24XX=y | ||
| 176 | CONFIG_ARCH_OMAP2420=y | ||
| 177 | # CONFIG_ARCH_OMAP2430 is not set | ||
| 178 | |||
| 179 | # | ||
| 180 | # OMAP Board Type | ||
| 181 | # | ||
| 182 | # CONFIG_MACH_NOKIA_N800 is not set | ||
| 183 | # CONFIG_MACH_OMAP_H4 is not set | ||
| 184 | CONFIG_MACH_OMAP_APOLLON=y | ||
| 185 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 186 | # CONFIG_MACH_OMAP_2430SDP is not set | ||
| 187 | |||
| 188 | # | ||
| 189 | # Boot options | ||
| 190 | # | ||
| 191 | |||
| 192 | # | ||
| 193 | # Power management | ||
| 194 | # | ||
| 195 | |||
| 196 | # | ||
| 197 | # Processor Type | ||
| 198 | # | ||
| 199 | CONFIG_CPU_32=y | ||
| 200 | CONFIG_CPU_V6=y | ||
| 201 | # CONFIG_CPU_32v6K is not set | ||
| 202 | CONFIG_CPU_32v6=y | ||
| 203 | CONFIG_CPU_ABRT_EV6=y | ||
| 204 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 205 | CONFIG_CPU_CACHE_V6=y | ||
| 206 | CONFIG_CPU_CACHE_VIPT=y | ||
| 207 | CONFIG_CPU_COPY_V6=y | ||
| 208 | CONFIG_CPU_TLB_V6=y | ||
| 209 | CONFIG_CPU_HAS_ASID=y | ||
| 210 | CONFIG_CPU_CP15=y | ||
| 211 | CONFIG_CPU_CP15_MMU=y | ||
| 212 | |||
| 213 | # | ||
| 214 | # Processor Features | ||
| 215 | # | ||
| 216 | # CONFIG_ARM_THUMB is not set | ||
| 217 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 218 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 219 | # CONFIG_CPU_BPREDICT_DISABLE is not set | ||
| 220 | # CONFIG_OUTER_CACHE is not set | ||
| 221 | |||
| 222 | # | ||
| 223 | # Bus support | ||
| 224 | # | ||
| 225 | # CONFIG_PCI_SYSCALL is not set | ||
| 226 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 227 | |||
| 228 | # | ||
| 229 | # PCCARD (PCMCIA/CardBus) support | ||
| 230 | # | ||
| 231 | # CONFIG_PCCARD is not set | ||
| 232 | |||
| 233 | # | ||
| 234 | # Kernel Features | ||
| 235 | # | ||
| 236 | # CONFIG_TICK_ONESHOT is not set | ||
| 237 | # CONFIG_NO_HZ is not set | ||
| 238 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 239 | CONFIG_PREEMPT=y | ||
| 240 | CONFIG_HZ=128 | ||
| 241 | # CONFIG_AEABI is not set | ||
| 242 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 243 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 244 | CONFIG_FLATMEM_MANUAL=y | ||
| 245 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 246 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 247 | CONFIG_FLATMEM=y | ||
| 248 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 249 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 250 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 251 | # CONFIG_RESOURCES_64BIT is not set | ||
| 252 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 253 | CONFIG_BOUNCE=y | ||
| 254 | CONFIG_VIRT_TO_BUS=y | ||
| 255 | # CONFIG_LEDS is not set | ||
| 256 | CONFIG_ALIGNMENT_TRAP=y | ||
| 257 | |||
| 258 | # | ||
| 259 | # Boot options | ||
| 260 | # | ||
| 261 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 262 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 263 | CONFIG_CMDLINE="root=/dev/ram0 rw mem=128M console=ttyS0,115200n8 initrd=0x80600000,8M ramdisk_size=8192" | ||
| 264 | # CONFIG_XIP_KERNEL is not set | ||
| 265 | # CONFIG_KEXEC is not set | ||
| 266 | |||
| 267 | # | ||
| 268 | # CPU Frequency scaling | ||
| 269 | # | ||
| 270 | # CONFIG_CPU_FREQ is not set | ||
| 271 | |||
| 272 | # | ||
| 273 | # Floating point emulation | ||
| 274 | # | ||
| 275 | |||
| 276 | # | ||
| 277 | # At least one emulation must be selected | ||
| 278 | # | ||
| 279 | # CONFIG_FPE_NWFPE is not set | ||
| 280 | # CONFIG_FPE_FASTFPE is not set | ||
| 281 | CONFIG_VFP=y | ||
| 282 | |||
| 283 | # | ||
| 284 | # Userspace binary formats | ||
| 285 | # | ||
| 286 | CONFIG_BINFMT_ELF=y | ||
| 287 | # CONFIG_BINFMT_AOUT is not set | ||
| 288 | # CONFIG_BINFMT_MISC is not set | ||
| 289 | # CONFIG_ARTHUR is not set | ||
| 290 | |||
| 291 | # | ||
| 292 | # Power management options | ||
| 293 | # | ||
| 294 | # CONFIG_PM is not set | ||
| 295 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 296 | |||
| 297 | # | ||
| 298 | # Networking | ||
| 299 | # | ||
| 300 | CONFIG_NET=y | ||
| 301 | |||
| 302 | # | ||
| 303 | # Networking options | ||
| 304 | # | ||
| 305 | CONFIG_PACKET=y | ||
| 306 | # CONFIG_PACKET_MMAP is not set | ||
| 307 | CONFIG_UNIX=y | ||
| 308 | CONFIG_XFRM=y | ||
| 309 | # CONFIG_XFRM_USER is not set | ||
| 310 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 311 | # CONFIG_XFRM_MIGRATE is not set | ||
| 312 | # CONFIG_NET_KEY is not set | ||
| 313 | CONFIG_INET=y | ||
| 314 | # CONFIG_IP_MULTICAST is not set | ||
| 315 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 316 | CONFIG_IP_FIB_HASH=y | ||
| 317 | CONFIG_IP_PNP=y | ||
| 318 | CONFIG_IP_PNP_DHCP=y | ||
| 319 | CONFIG_IP_PNP_BOOTP=y | ||
| 320 | # CONFIG_IP_PNP_RARP is not set | ||
| 321 | # CONFIG_NET_IPIP is not set | ||
| 322 | # CONFIG_NET_IPGRE is not set | ||
| 323 | # CONFIG_ARPD is not set | ||
| 324 | # CONFIG_SYN_COOKIES is not set | ||
| 325 | # CONFIG_INET_AH is not set | ||
| 326 | # CONFIG_INET_ESP is not set | ||
| 327 | # CONFIG_INET_IPCOMP is not set | ||
| 328 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 329 | # CONFIG_INET_TUNNEL is not set | ||
| 330 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 331 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 332 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 333 | CONFIG_INET_DIAG=y | ||
| 334 | CONFIG_INET_TCP_DIAG=y | ||
| 335 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 336 | CONFIG_TCP_CONG_CUBIC=y | ||
| 337 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 338 | # CONFIG_TCP_MD5SIG is not set | ||
| 339 | # CONFIG_IPV6 is not set | ||
| 340 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 341 | # CONFIG_INET6_TUNNEL is not set | ||
| 342 | # CONFIG_NETWORK_SECMARK is not set | ||
| 343 | # CONFIG_NETFILTER is not set | ||
| 344 | # CONFIG_IP_DCCP is not set | ||
| 345 | # CONFIG_IP_SCTP is not set | ||
| 346 | # CONFIG_TIPC is not set | ||
| 347 | # CONFIG_ATM is not set | ||
| 348 | # CONFIG_BRIDGE is not set | ||
| 349 | # CONFIG_VLAN_8021Q is not set | ||
| 350 | # CONFIG_DECNET is not set | ||
| 351 | # CONFIG_LLC2 is not set | ||
| 352 | # CONFIG_IPX is not set | ||
| 353 | # CONFIG_ATALK is not set | ||
| 354 | # CONFIG_X25 is not set | ||
| 355 | # CONFIG_LAPB is not set | ||
| 356 | # CONFIG_ECONET is not set | ||
| 357 | # CONFIG_WAN_ROUTER is not set | ||
| 358 | |||
| 359 | # | ||
| 360 | # QoS and/or fair queueing | ||
| 361 | # | ||
| 362 | # CONFIG_NET_SCHED is not set | ||
| 363 | |||
| 364 | # | ||
| 365 | # Network testing | ||
| 366 | # | ||
| 367 | # CONFIG_NET_PKTGEN is not set | ||
| 368 | # CONFIG_HAMRADIO is not set | ||
| 369 | # CONFIG_IRDA is not set | ||
| 370 | # CONFIG_BT is not set | ||
| 371 | # CONFIG_AF_RXRPC is not set | ||
| 372 | |||
| 373 | # | ||
| 374 | # Wireless | ||
| 375 | # | ||
| 376 | # CONFIG_CFG80211 is not set | ||
| 377 | # CONFIG_WIRELESS_EXT is not set | ||
| 378 | # CONFIG_MAC80211 is not set | ||
| 379 | # CONFIG_IEEE80211 is not set | ||
| 380 | # CONFIG_RFKILL is not set | ||
| 381 | # CONFIG_NET_9P is not set | ||
| 382 | |||
| 383 | # | ||
| 384 | # Device Drivers | ||
| 385 | # | ||
| 386 | |||
| 387 | # | ||
| 388 | # Generic Driver Options | ||
| 389 | # | ||
| 390 | CONFIG_STANDALONE=y | ||
| 391 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 392 | # CONFIG_FW_LOADER is not set | ||
| 393 | # CONFIG_DEBUG_DRIVER is not set | ||
| 394 | # CONFIG_DEBUG_DEVRES is not set | ||
| 395 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 396 | # CONFIG_CONNECTOR is not set | ||
| 397 | CONFIG_MTD=y | ||
| 398 | # CONFIG_MTD_DEBUG is not set | ||
| 399 | CONFIG_MTD_CONCAT=y | ||
| 400 | CONFIG_MTD_PARTITIONS=y | ||
| 401 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 402 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 403 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 404 | |||
| 405 | # | ||
| 406 | # User Modules And Translation Layers | ||
| 407 | # | ||
| 408 | CONFIG_MTD_CHAR=y | ||
| 409 | CONFIG_MTD_BLKDEVS=y | ||
| 410 | CONFIG_MTD_BLOCK=y | ||
| 411 | # CONFIG_FTL is not set | ||
| 412 | # CONFIG_NFTL is not set | ||
| 413 | # CONFIG_INFTL is not set | ||
| 414 | # CONFIG_RFD_FTL is not set | ||
| 415 | # CONFIG_SSFDC is not set | ||
| 416 | |||
| 417 | # | ||
| 418 | # RAM/ROM/Flash chip drivers | ||
| 419 | # | ||
| 420 | # CONFIG_MTD_CFI is not set | ||
| 421 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 422 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 423 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 424 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 425 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 426 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 427 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 428 | CONFIG_MTD_CFI_I1=y | ||
| 429 | CONFIG_MTD_CFI_I2=y | ||
| 430 | # CONFIG_MTD_CFI_I4 is not set | ||
| 431 | # CONFIG_MTD_CFI_I8 is not set | ||
| 432 | # CONFIG_MTD_RAM is not set | ||
| 433 | # CONFIG_MTD_ROM is not set | ||
| 434 | # CONFIG_MTD_ABSENT is not set | ||
| 435 | |||
| 436 | # | ||
| 437 | # Mapping drivers for chip access | ||
| 438 | # | ||
| 439 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 440 | # CONFIG_MTD_PLATRAM is not set | ||
| 441 | |||
| 442 | # | ||
| 443 | # Self-contained MTD device drivers | ||
| 444 | # | ||
| 445 | # CONFIG_MTD_DATAFLASH is not set | ||
| 446 | # CONFIG_MTD_M25P80 is not set | ||
| 447 | # CONFIG_MTD_SLRAM is not set | ||
| 448 | # CONFIG_MTD_PHRAM is not set | ||
| 449 | # CONFIG_MTD_MTDRAM is not set | ||
| 450 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 451 | |||
| 452 | # | ||
| 453 | # Disk-On-Chip Device Drivers | ||
| 454 | # | ||
| 455 | # CONFIG_MTD_DOC2000 is not set | ||
| 456 | # CONFIG_MTD_DOC2001 is not set | ||
| 457 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 458 | # CONFIG_MTD_NAND is not set | ||
| 459 | CONFIG_MTD_ONENAND=y | ||
| 460 | # CONFIG_MTD_ONENAND_VERIFY_WRITE is not set | ||
| 461 | CONFIG_MTD_ONENAND_GENERIC=y | ||
| 462 | # CONFIG_MTD_ONENAND_OMAP2 is not set | ||
| 463 | # CONFIG_MTD_ONENAND_OTP is not set | ||
| 464 | |||
| 465 | # | ||
| 466 | # UBI - Unsorted block images | ||
| 467 | # | ||
| 468 | # CONFIG_MTD_UBI is not set | ||
| 469 | # CONFIG_PARPORT is not set | ||
| 470 | CONFIG_BLK_DEV=y | ||
| 471 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 472 | CONFIG_BLK_DEV_LOOP=y | ||
| 473 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 474 | # CONFIG_BLK_DEV_NBD is not set | ||
| 475 | # CONFIG_BLK_DEV_RAM is not set | ||
| 476 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 477 | # CONFIG_ATA_OVER_ETH is not set | ||
| 478 | |||
| 479 | # | ||
| 480 | # SCSI device support | ||
| 481 | # | ||
| 482 | # CONFIG_RAID_ATTRS is not set | ||
| 483 | # CONFIG_SCSI is not set | ||
| 484 | # CONFIG_SCSI_DMA is not set | ||
| 485 | # CONFIG_SCSI_NETLINK is not set | ||
| 486 | # CONFIG_ATA is not set | ||
| 487 | # CONFIG_MD is not set | ||
| 488 | CONFIG_NETDEVICES=y | ||
| 489 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 490 | # CONFIG_DUMMY is not set | ||
| 491 | # CONFIG_BONDING is not set | ||
| 492 | # CONFIG_MACVLAN is not set | ||
| 493 | # CONFIG_EQUALIZER is not set | ||
| 494 | # CONFIG_TUN is not set | ||
| 495 | # CONFIG_PHYLIB is not set | ||
| 496 | CONFIG_NET_ETHERNET=y | ||
| 497 | CONFIG_MII=y | ||
| 498 | # CONFIG_AX88796 is not set | ||
| 499 | CONFIG_SMC91X=y | ||
| 500 | # CONFIG_DM9000 is not set | ||
| 501 | CONFIG_NETDEV_1000=y | ||
| 502 | CONFIG_NETDEV_10000=y | ||
| 503 | |||
| 504 | # | ||
| 505 | # Wireless LAN | ||
| 506 | # | ||
| 507 | # CONFIG_WLAN_PRE80211 is not set | ||
| 508 | # CONFIG_WLAN_80211 is not set | ||
| 509 | # CONFIG_WAN is not set | ||
| 510 | # CONFIG_PPP is not set | ||
| 511 | # CONFIG_SLIP is not set | ||
| 512 | # CONFIG_SHAPER is not set | ||
| 513 | # CONFIG_NETCONSOLE is not set | ||
| 514 | # CONFIG_NETPOLL is not set | ||
| 515 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 516 | # CONFIG_ISDN is not set | ||
| 517 | |||
| 518 | # | ||
| 519 | # Input device support | ||
| 520 | # | ||
| 521 | CONFIG_INPUT=y | ||
| 522 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 523 | # CONFIG_INPUT_POLLDEV is not set | ||
| 524 | |||
| 525 | # | ||
| 526 | # Userland interfaces | ||
| 527 | # | ||
| 528 | CONFIG_INPUT_MOUSEDEV=y | ||
| 529 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
| 530 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 531 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 532 | # CONFIG_INPUT_JOYDEV is not set | ||
| 533 | # CONFIG_INPUT_TSDEV is not set | ||
| 534 | # CONFIG_INPUT_EVDEV is not set | ||
| 535 | # CONFIG_INPUT_EVBUG is not set | ||
| 536 | |||
| 537 | # | ||
| 538 | # Input Device Drivers | ||
| 539 | # | ||
| 540 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 541 | # CONFIG_INPUT_MOUSE is not set | ||
| 542 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 543 | # CONFIG_INPUT_TABLET is not set | ||
| 544 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 545 | # CONFIG_INPUT_MISC is not set | ||
| 546 | |||
| 547 | # | ||
| 548 | # Hardware I/O ports | ||
| 549 | # | ||
| 550 | # CONFIG_SERIO is not set | ||
| 551 | # CONFIG_GAMEPORT is not set | ||
| 552 | |||
| 553 | # | ||
| 554 | # Character devices | ||
| 555 | # | ||
| 556 | CONFIG_VT=y | ||
| 557 | CONFIG_VT_CONSOLE=y | ||
| 558 | CONFIG_HW_CONSOLE=y | ||
| 559 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 560 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 561 | |||
| 562 | # | ||
| 563 | # Serial drivers | ||
| 564 | # | ||
| 565 | CONFIG_SERIAL_8250=y | ||
| 566 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 567 | CONFIG_SERIAL_8250_NR_UARTS=32 | ||
| 568 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 569 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 570 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
| 571 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 572 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
| 573 | CONFIG_SERIAL_8250_RSA=y | ||
| 574 | |||
| 575 | # | ||
| 576 | # Non-8250 serial port support | ||
| 577 | # | ||
| 578 | CONFIG_SERIAL_CORE=y | ||
| 579 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 580 | CONFIG_UNIX98_PTYS=y | ||
| 581 | # CONFIG_LEGACY_PTYS is not set | ||
| 582 | # CONFIG_IPMI_HANDLER is not set | ||
| 583 | CONFIG_WATCHDOG=y | ||
| 584 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
| 585 | |||
| 586 | # | ||
| 587 | # Watchdog Device Drivers | ||
| 588 | # | ||
| 589 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 590 | CONFIG_OMAP_WATCHDOG=y | ||
| 591 | CONFIG_HW_RANDOM=y | ||
| 592 | CONFIG_HW_RANDOM_OMAP=y | ||
| 593 | # CONFIG_NVRAM is not set | ||
| 594 | # CONFIG_R3964 is not set | ||
| 595 | # CONFIG_RAW_DRIVER is not set | ||
| 596 | # CONFIG_TCG_TPM is not set | ||
| 597 | # CONFIG_I2C is not set | ||
| 598 | |||
| 599 | # | ||
| 600 | # SPI support | ||
| 601 | # | ||
| 602 | CONFIG_SPI=y | ||
| 603 | # CONFIG_SPI_DEBUG is not set | ||
| 604 | CONFIG_SPI_MASTER=y | ||
| 605 | |||
| 606 | # | ||
| 607 | # SPI Master Controller Drivers | ||
| 608 | # | ||
| 609 | # CONFIG_SPI_BITBANG is not set | ||
| 610 | CONFIG_SPI_OMAP24XX=y | ||
| 611 | |||
| 612 | # | ||
| 613 | # SPI Protocol Masters | ||
| 614 | # | ||
| 615 | # CONFIG_SPI_AT25 is not set | ||
| 616 | # CONFIG_SPI_TSC2101 is not set | ||
| 617 | # CONFIG_SPI_TSC2102 is not set | ||
| 618 | # CONFIG_SPI_TSC210X is not set | ||
| 619 | # CONFIG_SPI_TSC2301 is not set | ||
| 620 | # CONFIG_SPI_SPIDEV is not set | ||
| 621 | # CONFIG_SPI_TLE62X0 is not set | ||
| 622 | # CONFIG_W1 is not set | ||
| 623 | # CONFIG_HWMON is not set | ||
| 624 | CONFIG_MISC_DEVICES=y | ||
| 625 | # CONFIG_EEPROM_93CX6 is not set | ||
| 626 | |||
| 627 | # | ||
| 628 | # Multifunction device drivers | ||
| 629 | # | ||
| 630 | # CONFIG_MFD_SM501 is not set | ||
| 631 | # CONFIG_NEW_LEDS is not set | ||
| 632 | |||
| 633 | # | ||
| 634 | # Multimedia devices | ||
| 635 | # | ||
| 636 | # CONFIG_VIDEO_DEV is not set | ||
| 637 | # CONFIG_DVB_CORE is not set | ||
| 638 | CONFIG_DAB=y | ||
| 639 | |||
| 640 | # | ||
| 641 | # Graphics support | ||
| 642 | # | ||
| 643 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 644 | |||
| 645 | # | ||
| 646 | # Display device support | ||
| 647 | # | ||
| 648 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 649 | # CONFIG_VGASTATE is not set | ||
| 650 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 651 | CONFIG_FB=y | ||
| 652 | CONFIG_FIRMWARE_EDID=y | ||
| 653 | # CONFIG_FB_DDC is not set | ||
| 654 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 655 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 656 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 657 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 658 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 659 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 660 | # CONFIG_FB_SYS_FOPS is not set | ||
| 661 | CONFIG_FB_DEFERRED_IO=y | ||
| 662 | # CONFIG_FB_SVGALIB is not set | ||
| 663 | # CONFIG_FB_MACMODES is not set | ||
| 664 | # CONFIG_FB_BACKLIGHT is not set | ||
| 665 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 666 | # CONFIG_FB_TILEBLITTING is not set | ||
| 667 | |||
| 668 | # | ||
| 669 | # Frame buffer hardware drivers | ||
| 670 | # | ||
| 671 | # CONFIG_FB_S1D13XXX is not set | ||
| 672 | CONFIG_FB_OMAP=y | ||
| 673 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 674 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 675 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 676 | # CONFIG_FB_VIRTUAL is not set | ||
| 677 | |||
| 678 | # | ||
| 679 | # Console display driver support | ||
| 680 | # | ||
| 681 | # CONFIG_VGA_CONSOLE is not set | ||
| 682 | CONFIG_DUMMY_CONSOLE=y | ||
| 683 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 684 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 685 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 686 | CONFIG_FONTS=y | ||
| 687 | CONFIG_FONT_8x8=y | ||
| 688 | CONFIG_FONT_8x16=y | ||
| 689 | # CONFIG_FONT_6x11 is not set | ||
| 690 | # CONFIG_FONT_7x14 is not set | ||
| 691 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 692 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 693 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 694 | # CONFIG_FONT_SUN8x16 is not set | ||
| 695 | # CONFIG_FONT_SUN12x22 is not set | ||
| 696 | # CONFIG_FONT_10x18 is not set | ||
| 697 | CONFIG_LOGO=y | ||
| 698 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 699 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 700 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 701 | |||
| 702 | # | ||
| 703 | # Sound | ||
| 704 | # | ||
| 705 | # CONFIG_SOUND is not set | ||
| 706 | CONFIG_HID_SUPPORT=y | ||
| 707 | # CONFIG_HID is not set | ||
| 708 | CONFIG_USB_SUPPORT=y | ||
| 709 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 710 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 711 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 712 | # CONFIG_USB is not set | ||
| 713 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 714 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 715 | |||
| 716 | # | ||
| 717 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 718 | # | ||
| 719 | |||
| 720 | # | ||
| 721 | # USB Gadget Support | ||
| 722 | # | ||
| 723 | CONFIG_USB_GADGET=y | ||
| 724 | # CONFIG_USB_GADGET_DEBUG is not set | ||
| 725 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 726 | CONFIG_USB_GADGET_SELECTED=y | ||
| 727 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
| 728 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 729 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 730 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 731 | # CONFIG_USB_GADGET_M66592 is not set | ||
| 732 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 733 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 734 | CONFIG_USB_GADGET_OMAP=y | ||
| 735 | CONFIG_USB_OMAP=y | ||
| 736 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
| 737 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 738 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 739 | # CONFIG_USB_GADGET_DUALSPEED is not set | ||
| 740 | # CONFIG_USB_ZERO is not set | ||
| 741 | CONFIG_USB_ETH=m | ||
| 742 | CONFIG_USB_ETH_RNDIS=y | ||
| 743 | # CONFIG_USB_GADGETFS is not set | ||
| 744 | CONFIG_USB_FILE_STORAGE=m | ||
| 745 | # CONFIG_USB_FILE_STORAGE_TEST is not set | ||
| 746 | # CONFIG_USB_G_SERIAL is not set | ||
| 747 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 748 | CONFIG_MMC=y | ||
| 749 | # CONFIG_MMC_DEBUG is not set | ||
| 750 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 751 | |||
| 752 | # | ||
| 753 | # MMC/SD Card Drivers | ||
| 754 | # | ||
| 755 | CONFIG_MMC_BLOCK=y | ||
| 756 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 757 | |||
| 758 | # | ||
| 759 | # MMC/SD Host Controller Drivers | ||
| 760 | # | ||
| 761 | CONFIG_MMC_OMAP=y | ||
| 762 | CONFIG_RTC_LIB=y | ||
| 763 | # CONFIG_RTC_CLASS is not set | ||
| 764 | |||
| 765 | # | ||
| 766 | # DMA Engine support | ||
| 767 | # | ||
| 768 | # CONFIG_DMA_ENGINE is not set | ||
| 769 | |||
| 770 | # | ||
| 771 | # DMA Clients | ||
| 772 | # | ||
| 773 | |||
| 774 | # | ||
| 775 | # DMA Devices | ||
| 776 | # | ||
| 777 | |||
| 778 | # | ||
| 779 | # CBUS support | ||
| 780 | # | ||
| 781 | # CONFIG_CBUS is not set | ||
| 782 | |||
| 783 | # | ||
| 784 | # File systems | ||
| 785 | # | ||
| 786 | CONFIG_EXT2_FS=y | ||
| 787 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 788 | # CONFIG_EXT2_FS_XIP is not set | ||
| 789 | # CONFIG_EXT3_FS is not set | ||
| 790 | # CONFIG_EXT4DEV_FS is not set | ||
| 791 | # CONFIG_REISERFS_FS is not set | ||
| 792 | # CONFIG_JFS_FS is not set | ||
| 793 | # CONFIG_FS_POSIX_ACL is not set | ||
| 794 | # CONFIG_XFS_FS is not set | ||
| 795 | # CONFIG_GFS2_FS is not set | ||
| 796 | # CONFIG_OCFS2_FS is not set | ||
| 797 | # CONFIG_MINIX_FS is not set | ||
| 798 | # CONFIG_ROMFS_FS is not set | ||
| 799 | # CONFIG_INOTIFY is not set | ||
| 800 | # CONFIG_QUOTA is not set | ||
| 801 | CONFIG_DNOTIFY=y | ||
| 802 | # CONFIG_AUTOFS_FS is not set | ||
| 803 | CONFIG_AUTOFS4_FS=y | ||
| 804 | # CONFIG_FUSE_FS is not set | ||
| 805 | |||
| 806 | # | ||
| 807 | # CD-ROM/DVD Filesystems | ||
| 808 | # | ||
| 809 | # CONFIG_ISO9660_FS is not set | ||
| 810 | # CONFIG_UDF_FS is not set | ||
| 811 | |||
| 812 | # | ||
| 813 | # DOS/FAT/NT Filesystems | ||
| 814 | # | ||
| 815 | # CONFIG_MSDOS_FS is not set | ||
| 816 | # CONFIG_VFAT_FS is not set | ||
| 817 | # CONFIG_NTFS_FS is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # Pseudo filesystems | ||
| 821 | # | ||
| 822 | CONFIG_PROC_FS=y | ||
| 823 | CONFIG_PROC_SYSCTL=y | ||
| 824 | CONFIG_SYSFS=y | ||
| 825 | CONFIG_TMPFS=y | ||
| 826 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 827 | # CONFIG_HUGETLB_PAGE is not set | ||
| 828 | CONFIG_RAMFS=y | ||
| 829 | # CONFIG_CONFIGFS_FS is not set | ||
| 830 | |||
| 831 | # | ||
| 832 | # Miscellaneous filesystems | ||
| 833 | # | ||
| 834 | # CONFIG_ADFS_FS is not set | ||
| 835 | # CONFIG_AFFS_FS is not set | ||
| 836 | # CONFIG_HFS_FS is not set | ||
| 837 | # CONFIG_HFSPLUS_FS is not set | ||
| 838 | # CONFIG_BEFS_FS is not set | ||
| 839 | # CONFIG_BFS_FS is not set | ||
| 840 | # CONFIG_EFS_FS is not set | ||
| 841 | CONFIG_JFFS2_FS=y | ||
| 842 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 843 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 844 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 845 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 846 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 847 | CONFIG_JFFS2_ZLIB=y | ||
| 848 | CONFIG_JFFS2_RTIME=y | ||
| 849 | # CONFIG_JFFS2_RUBIN is not set | ||
| 850 | CONFIG_CRAMFS=y | ||
| 851 | # CONFIG_VXFS_FS is not set | ||
| 852 | # CONFIG_HPFS_FS is not set | ||
| 853 | # CONFIG_QNX4FS_FS is not set | ||
| 854 | # CONFIG_SYSV_FS is not set | ||
| 855 | # CONFIG_UFS_FS is not set | ||
| 856 | |||
| 857 | # | ||
| 858 | # Network File Systems | ||
| 859 | # | ||
| 860 | CONFIG_NFS_FS=y | ||
| 861 | CONFIG_NFS_V3=y | ||
| 862 | # CONFIG_NFS_V3_ACL is not set | ||
| 863 | # CONFIG_NFS_V4 is not set | ||
| 864 | # CONFIG_NFS_DIRECTIO is not set | ||
| 865 | # CONFIG_NFSD is not set | ||
| 866 | CONFIG_ROOT_NFS=y | ||
| 867 | CONFIG_LOCKD=y | ||
| 868 | CONFIG_LOCKD_V4=y | ||
| 869 | CONFIG_NFS_COMMON=y | ||
| 870 | CONFIG_SUNRPC=y | ||
| 871 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 872 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 874 | # CONFIG_SMB_FS is not set | ||
| 875 | # CONFIG_CIFS is not set | ||
| 876 | # CONFIG_NCP_FS is not set | ||
| 877 | # CONFIG_CODA_FS is not set | ||
| 878 | # CONFIG_AFS_FS is not set | ||
| 879 | |||
| 880 | # | ||
| 881 | # Partition Types | ||
| 882 | # | ||
| 883 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 884 | CONFIG_MSDOS_PARTITION=y | ||
| 885 | |||
| 886 | # | ||
| 887 | # Native Language Support | ||
| 888 | # | ||
| 889 | # CONFIG_NLS is not set | ||
| 890 | |||
| 891 | # | ||
| 892 | # Distributed Lock Manager | ||
| 893 | # | ||
| 894 | # CONFIG_DLM is not set | ||
| 895 | |||
| 896 | # | ||
| 897 | # Profiling support | ||
| 898 | # | ||
| 899 | # CONFIG_PROFILING is not set | ||
| 900 | |||
| 901 | # | ||
| 902 | # Kernel hacking | ||
| 903 | # | ||
| 904 | # CONFIG_PRINTK_TIME is not set | ||
| 905 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 906 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 907 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 908 | # CONFIG_DEBUG_FS is not set | ||
| 909 | # CONFIG_HEADERS_CHECK is not set | ||
| 910 | CONFIG_DEBUG_KERNEL=y | ||
| 911 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 912 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 913 | CONFIG_SCHED_DEBUG=y | ||
| 914 | # CONFIG_SCHEDSTATS is not set | ||
| 915 | # CONFIG_TIMER_STATS is not set | ||
| 916 | # CONFIG_DEBUG_SLAB is not set | ||
| 917 | CONFIG_DEBUG_PREEMPT=y | ||
| 918 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 919 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 920 | CONFIG_DEBUG_SPINLOCK=y | ||
| 921 | CONFIG_DEBUG_MUTEXES=y | ||
| 922 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 923 | # CONFIG_PROVE_LOCKING is not set | ||
| 924 | # CONFIG_LOCK_STAT is not set | ||
| 925 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | ||
| 926 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 927 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 928 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 929 | # CONFIG_DEBUG_INFO is not set | ||
| 930 | # CONFIG_DEBUG_VM is not set | ||
| 931 | # CONFIG_DEBUG_LIST is not set | ||
| 932 | CONFIG_FRAME_POINTER=y | ||
| 933 | CONFIG_FORCED_INLINING=y | ||
| 934 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 935 | # CONFIG_FAULT_INJECTION is not set | ||
| 936 | # CONFIG_DEBUG_USER is not set | ||
| 937 | # CONFIG_DEBUG_ERRORS is not set | ||
| 938 | # CONFIG_DEBUG_LL is not set | ||
| 939 | |||
| 940 | # | ||
| 941 | # Security options | ||
| 942 | # | ||
| 943 | # CONFIG_KEYS is not set | ||
| 944 | # CONFIG_SECURITY is not set | ||
| 945 | # CONFIG_CRYPTO is not set | ||
| 946 | |||
| 947 | # | ||
| 948 | # Library routines | ||
| 949 | # | ||
| 950 | CONFIG_BITREVERSE=y | ||
| 951 | CONFIG_CRC_CCITT=y | ||
| 952 | # CONFIG_CRC16 is not set | ||
| 953 | # CONFIG_CRC_ITU_T is not set | ||
| 954 | CONFIG_CRC32=y | ||
| 955 | # CONFIG_CRC7 is not set | ||
| 956 | CONFIG_LIBCRC32C=y | ||
| 957 | CONFIG_ZLIB_INFLATE=y | ||
| 958 | CONFIG_ZLIB_DEFLATE=y | ||
| 959 | CONFIG_PLIST=y | ||
| 960 | CONFIG_HAS_IOMEM=y | ||
| 961 | CONFIG_HAS_IOPORT=y | ||
| 962 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_generic_1510_defconfig b/arch/arm/configs/omap_generic_1510_defconfig new file mode 100644 index 000000000000..4b1c252f2091 --- /dev/null +++ b/arch/arm/configs/omap_generic_1510_defconfig | |||
| @@ -0,0 +1,1172 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 12:20:19 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | CONFIG_LOCALVERSION_AUTO=y | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 42 | # CONFIG_TASKSTATS is not set | ||
| 43 | # CONFIG_USER_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | ||
| 48 | # CONFIG_RELAY is not set | ||
| 49 | CONFIG_BLK_DEV_INITRD=y | ||
| 50 | CONFIG_INITRAMFS_SOURCE="" | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | # CONFIG_EMBEDDED is not set | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_ALL is not set | ||
| 58 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | CONFIG_MODULES=y | ||
| 79 | CONFIG_MODULE_UNLOAD=y | ||
| 80 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
| 81 | # CONFIG_MODVERSIONS is not set | ||
| 82 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 83 | CONFIG_KMOD=y | ||
| 84 | CONFIG_BLOCK=y | ||
| 85 | # CONFIG_LBD is not set | ||
| 86 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 87 | # CONFIG_LSF is not set | ||
| 88 | # CONFIG_BLK_DEV_BSG is not set | ||
| 89 | |||
| 90 | # | ||
| 91 | # IO Schedulers | ||
| 92 | # | ||
| 93 | CONFIG_IOSCHED_NOOP=y | ||
| 94 | CONFIG_IOSCHED_AS=y | ||
| 95 | CONFIG_IOSCHED_DEADLINE=y | ||
| 96 | CONFIG_IOSCHED_CFQ=y | ||
| 97 | # CONFIG_DEFAULT_AS is not set | ||
| 98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 99 | CONFIG_DEFAULT_CFQ=y | ||
| 100 | # CONFIG_DEFAULT_NOOP is not set | ||
| 101 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 102 | |||
| 103 | # | ||
| 104 | # System Type | ||
| 105 | # | ||
| 106 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 107 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 108 | # CONFIG_ARCH_REALVIEW is not set | ||
| 109 | # CONFIG_ARCH_VERSATILE is not set | ||
| 110 | # CONFIG_ARCH_AT91 is not set | ||
| 111 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 112 | # CONFIG_ARCH_CLPS711X is not set | ||
| 113 | # CONFIG_ARCH_CO285 is not set | ||
| 114 | # CONFIG_ARCH_EBSA110 is not set | ||
| 115 | # CONFIG_ARCH_EP93XX is not set | ||
| 116 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 117 | # CONFIG_ARCH_NETX is not set | ||
| 118 | # CONFIG_ARCH_H720X is not set | ||
| 119 | # CONFIG_ARCH_IMX is not set | ||
| 120 | # CONFIG_ARCH_IOP13XX is not set | ||
| 121 | # CONFIG_ARCH_IOP32X is not set | ||
| 122 | # CONFIG_ARCH_IOP33X is not set | ||
| 123 | # CONFIG_ARCH_IXP23XX is not set | ||
| 124 | # CONFIG_ARCH_IXP2000 is not set | ||
| 125 | # CONFIG_ARCH_IXP4XX is not set | ||
| 126 | # CONFIG_ARCH_L7200 is not set | ||
| 127 | # CONFIG_ARCH_KS8695 is not set | ||
| 128 | # CONFIG_ARCH_NS9XXX is not set | ||
| 129 | # CONFIG_ARCH_MXC is not set | ||
| 130 | # CONFIG_ARCH_PNX4008 is not set | ||
| 131 | # CONFIG_ARCH_PXA is not set | ||
| 132 | # CONFIG_ARCH_RPC is not set | ||
| 133 | # CONFIG_ARCH_SA1100 is not set | ||
| 134 | # CONFIG_ARCH_S3C2410 is not set | ||
| 135 | # CONFIG_ARCH_SHARK is not set | ||
| 136 | # CONFIG_ARCH_LH7A40X is not set | ||
| 137 | # CONFIG_ARCH_DAVINCI is not set | ||
| 138 | CONFIG_ARCH_OMAP=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # TI OMAP Implementations | ||
| 142 | # | ||
| 143 | CONFIG_ARCH_OMAP1=y | ||
| 144 | # CONFIG_ARCH_OMAP2 is not set | ||
| 145 | # CONFIG_ARCH_OMAP3 is not set | ||
| 146 | |||
| 147 | # | ||
| 148 | # OMAP Feature Selections | ||
| 149 | # | ||
| 150 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 151 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 152 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 153 | CONFIG_OMAP_MUX=y | ||
| 154 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 155 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 156 | CONFIG_OMAP_MCBSP=y | ||
| 157 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 158 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 159 | CONFIG_OMAP_MPU_TIMER=y | ||
| 160 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 161 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 162 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 163 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 164 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 165 | # CONFIG_OMAP_DSP is not set | ||
| 166 | |||
| 167 | # | ||
| 168 | # OMAP Core Type | ||
| 169 | # | ||
| 170 | # CONFIG_ARCH_OMAP730 is not set | ||
| 171 | CONFIG_ARCH_OMAP15XX=y | ||
| 172 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Board Type | ||
| 176 | # | ||
| 177 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 178 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 179 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 180 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 181 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 182 | # CONFIG_MACH_SX1 is not set | ||
| 183 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 184 | CONFIG_MACH_OMAP_GENERIC=y | ||
| 185 | |||
| 186 | # | ||
| 187 | # OMAP CPU Speed | ||
| 188 | # | ||
| 189 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 190 | CONFIG_OMAP_ARM_168MHZ=y | ||
| 191 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 192 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 193 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 194 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 195 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 196 | |||
| 197 | # | ||
| 198 | # Boot options | ||
| 199 | # | ||
| 200 | |||
| 201 | # | ||
| 202 | # Power management | ||
| 203 | # | ||
| 204 | |||
| 205 | # | ||
| 206 | # Processor Type | ||
| 207 | # | ||
| 208 | CONFIG_CPU_32=y | ||
| 209 | CONFIG_CPU_ARM925T=y | ||
| 210 | CONFIG_CPU_32v4T=y | ||
| 211 | CONFIG_CPU_ABRT_EV4T=y | ||
| 212 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 213 | CONFIG_CPU_CACHE_V4WT=y | ||
| 214 | CONFIG_CPU_CACHE_VIVT=y | ||
| 215 | CONFIG_CPU_COPY_V4WB=y | ||
| 216 | CONFIG_CPU_TLB_V4WBI=y | ||
| 217 | CONFIG_CPU_CP15=y | ||
| 218 | CONFIG_CPU_CP15_MMU=y | ||
| 219 | |||
| 220 | # | ||
| 221 | # Processor Features | ||
| 222 | # | ||
| 223 | # CONFIG_ARM_THUMB is not set | ||
| 224 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 225 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 226 | CONFIG_CPU_DCACHE_WRITETHROUGH=y | ||
| 227 | # CONFIG_OUTER_CACHE is not set | ||
| 228 | |||
| 229 | # | ||
| 230 | # Bus support | ||
| 231 | # | ||
| 232 | # CONFIG_PCI_SYSCALL is not set | ||
| 233 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 234 | |||
| 235 | # | ||
| 236 | # PCCARD (PCMCIA/CardBus) support | ||
| 237 | # | ||
| 238 | # CONFIG_PCCARD is not set | ||
| 239 | |||
| 240 | # | ||
| 241 | # Kernel Features | ||
| 242 | # | ||
| 243 | # CONFIG_TICK_ONESHOT is not set | ||
| 244 | # CONFIG_NO_HZ is not set | ||
| 245 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 246 | CONFIG_PREEMPT=y | ||
| 247 | CONFIG_HZ=100 | ||
| 248 | # CONFIG_AEABI is not set | ||
| 249 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 250 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 251 | CONFIG_FLATMEM_MANUAL=y | ||
| 252 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 253 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 254 | CONFIG_FLATMEM=y | ||
| 255 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 256 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 257 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 258 | # CONFIG_RESOURCES_64BIT is not set | ||
| 259 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 260 | CONFIG_BOUNCE=y | ||
| 261 | CONFIG_VIRT_TO_BUS=y | ||
| 262 | # CONFIG_LEDS is not set | ||
| 263 | CONFIG_ALIGNMENT_TRAP=y | ||
| 264 | |||
| 265 | # | ||
| 266 | # Boot options | ||
| 267 | # | ||
| 268 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 269 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 270 | CONFIG_CMDLINE="mem=64M console=ttyS2,115200 root=0803 ro init=/bin/sh" | ||
| 271 | # CONFIG_XIP_KERNEL is not set | ||
| 272 | # CONFIG_KEXEC is not set | ||
| 273 | |||
| 274 | # | ||
| 275 | # CPU Frequency scaling | ||
| 276 | # | ||
| 277 | # CONFIG_CPU_FREQ is not set | ||
| 278 | |||
| 279 | # | ||
| 280 | # Floating point emulation | ||
| 281 | # | ||
| 282 | |||
| 283 | # | ||
| 284 | # At least one emulation must be selected | ||
| 285 | # | ||
| 286 | CONFIG_FPE_NWFPE=y | ||
| 287 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 288 | # CONFIG_FPE_FASTFPE is not set | ||
| 289 | |||
| 290 | # | ||
| 291 | # Userspace binary formats | ||
| 292 | # | ||
| 293 | CONFIG_BINFMT_ELF=y | ||
| 294 | # CONFIG_BINFMT_AOUT is not set | ||
| 295 | # CONFIG_BINFMT_MISC is not set | ||
| 296 | # CONFIG_ARTHUR is not set | ||
| 297 | |||
| 298 | # | ||
| 299 | # Power management options | ||
| 300 | # | ||
| 301 | CONFIG_PM=y | ||
| 302 | # CONFIG_PM_LEGACY is not set | ||
| 303 | # CONFIG_PM_DEBUG is not set | ||
| 304 | CONFIG_PM_SLEEP=y | ||
| 305 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 306 | CONFIG_SUSPEND=y | ||
| 307 | # CONFIG_APM_EMULATION is not set | ||
| 308 | |||
| 309 | # | ||
| 310 | # Networking | ||
| 311 | # | ||
| 312 | CONFIG_NET=y | ||
| 313 | |||
| 314 | # | ||
| 315 | # Networking options | ||
| 316 | # | ||
| 317 | CONFIG_PACKET=y | ||
| 318 | # CONFIG_PACKET_MMAP is not set | ||
| 319 | CONFIG_UNIX=y | ||
| 320 | CONFIG_XFRM=y | ||
| 321 | # CONFIG_XFRM_USER is not set | ||
| 322 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 323 | # CONFIG_XFRM_MIGRATE is not set | ||
| 324 | # CONFIG_NET_KEY is not set | ||
| 325 | CONFIG_INET=y | ||
| 326 | CONFIG_IP_MULTICAST=y | ||
| 327 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 328 | CONFIG_IP_FIB_HASH=y | ||
| 329 | CONFIG_IP_PNP=y | ||
| 330 | CONFIG_IP_PNP_DHCP=y | ||
| 331 | CONFIG_IP_PNP_BOOTP=y | ||
| 332 | # CONFIG_IP_PNP_RARP is not set | ||
| 333 | # CONFIG_NET_IPIP is not set | ||
| 334 | # CONFIG_NET_IPGRE is not set | ||
| 335 | # CONFIG_IP_MROUTE is not set | ||
| 336 | # CONFIG_ARPD is not set | ||
| 337 | # CONFIG_SYN_COOKIES is not set | ||
| 338 | # CONFIG_INET_AH is not set | ||
| 339 | # CONFIG_INET_ESP is not set | ||
| 340 | # CONFIG_INET_IPCOMP is not set | ||
| 341 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 342 | # CONFIG_INET_TUNNEL is not set | ||
| 343 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 344 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 345 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 346 | CONFIG_INET_DIAG=y | ||
| 347 | CONFIG_INET_TCP_DIAG=y | ||
| 348 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 349 | CONFIG_TCP_CONG_CUBIC=y | ||
| 350 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 351 | # CONFIG_TCP_MD5SIG is not set | ||
| 352 | # CONFIG_IPV6 is not set | ||
| 353 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 354 | # CONFIG_INET6_TUNNEL is not set | ||
| 355 | # CONFIG_NETWORK_SECMARK is not set | ||
| 356 | # CONFIG_NETFILTER is not set | ||
| 357 | # CONFIG_IP_DCCP is not set | ||
| 358 | # CONFIG_IP_SCTP is not set | ||
| 359 | # CONFIG_TIPC is not set | ||
| 360 | # CONFIG_ATM is not set | ||
| 361 | # CONFIG_BRIDGE is not set | ||
| 362 | # CONFIG_VLAN_8021Q is not set | ||
| 363 | # CONFIG_DECNET is not set | ||
| 364 | # CONFIG_LLC2 is not set | ||
| 365 | # CONFIG_IPX is not set | ||
| 366 | # CONFIG_ATALK is not set | ||
| 367 | # CONFIG_X25 is not set | ||
| 368 | # CONFIG_LAPB is not set | ||
| 369 | # CONFIG_ECONET is not set | ||
| 370 | # CONFIG_WAN_ROUTER is not set | ||
| 371 | |||
| 372 | # | ||
| 373 | # QoS and/or fair queueing | ||
| 374 | # | ||
| 375 | # CONFIG_NET_SCHED is not set | ||
| 376 | |||
| 377 | # | ||
| 378 | # Network testing | ||
| 379 | # | ||
| 380 | # CONFIG_NET_PKTGEN is not set | ||
| 381 | # CONFIG_HAMRADIO is not set | ||
| 382 | # CONFIG_IRDA is not set | ||
| 383 | # CONFIG_BT is not set | ||
| 384 | # CONFIG_AF_RXRPC is not set | ||
| 385 | |||
| 386 | # | ||
| 387 | # Wireless | ||
| 388 | # | ||
| 389 | # CONFIG_CFG80211 is not set | ||
| 390 | # CONFIG_WIRELESS_EXT is not set | ||
| 391 | # CONFIG_MAC80211 is not set | ||
| 392 | # CONFIG_IEEE80211 is not set | ||
| 393 | # CONFIG_RFKILL is not set | ||
| 394 | # CONFIG_NET_9P is not set | ||
| 395 | |||
| 396 | # | ||
| 397 | # Device Drivers | ||
| 398 | # | ||
| 399 | |||
| 400 | # | ||
| 401 | # Generic Driver Options | ||
| 402 | # | ||
| 403 | CONFIG_STANDALONE=y | ||
| 404 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 405 | # CONFIG_FW_LOADER is not set | ||
| 406 | # CONFIG_DEBUG_DRIVER is not set | ||
| 407 | # CONFIG_DEBUG_DEVRES is not set | ||
| 408 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 409 | # CONFIG_CONNECTOR is not set | ||
| 410 | # CONFIG_MTD is not set | ||
| 411 | # CONFIG_PARPORT is not set | ||
| 412 | CONFIG_BLK_DEV=y | ||
| 413 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 414 | CONFIG_BLK_DEV_LOOP=y | ||
| 415 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 416 | # CONFIG_BLK_DEV_NBD is not set | ||
| 417 | # CONFIG_BLK_DEV_UB is not set | ||
| 418 | CONFIG_BLK_DEV_RAM=y | ||
| 419 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 420 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 421 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 422 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 423 | # CONFIG_ATA_OVER_ETH is not set | ||
| 424 | |||
| 425 | # | ||
| 426 | # SCSI device support | ||
| 427 | # | ||
| 428 | # CONFIG_RAID_ATTRS is not set | ||
| 429 | CONFIG_SCSI=y | ||
| 430 | CONFIG_SCSI_DMA=y | ||
| 431 | # CONFIG_SCSI_TGT is not set | ||
| 432 | # CONFIG_SCSI_NETLINK is not set | ||
| 433 | CONFIG_SCSI_PROC_FS=y | ||
| 434 | |||
| 435 | # | ||
| 436 | # SCSI support type (disk, tape, CD-ROM) | ||
| 437 | # | ||
| 438 | CONFIG_BLK_DEV_SD=y | ||
| 439 | # CONFIG_CHR_DEV_ST is not set | ||
| 440 | # CONFIG_CHR_DEV_OSST is not set | ||
| 441 | CONFIG_BLK_DEV_SR=y | ||
| 442 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
| 443 | CONFIG_CHR_DEV_SG=y | ||
| 444 | # CONFIG_CHR_DEV_SCH is not set | ||
| 445 | |||
| 446 | # | ||
| 447 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 448 | # | ||
| 449 | CONFIG_SCSI_MULTI_LUN=y | ||
| 450 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 451 | # CONFIG_SCSI_LOGGING is not set | ||
| 452 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 453 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 454 | |||
| 455 | # | ||
| 456 | # SCSI Transports | ||
| 457 | # | ||
| 458 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 459 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 460 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 461 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 462 | CONFIG_SCSI_LOWLEVEL=y | ||
| 463 | # CONFIG_ISCSI_TCP is not set | ||
| 464 | # CONFIG_SCSI_DEBUG is not set | ||
| 465 | # CONFIG_ATA is not set | ||
| 466 | # CONFIG_MD is not set | ||
| 467 | CONFIG_NETDEVICES=y | ||
| 468 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 469 | # CONFIG_DUMMY is not set | ||
| 470 | # CONFIG_BONDING is not set | ||
| 471 | # CONFIG_MACVLAN is not set | ||
| 472 | # CONFIG_EQUALIZER is not set | ||
| 473 | # CONFIG_TUN is not set | ||
| 474 | # CONFIG_PHYLIB is not set | ||
| 475 | CONFIG_NET_ETHERNET=y | ||
| 476 | CONFIG_MII=y | ||
| 477 | # CONFIG_AX88796 is not set | ||
| 478 | # CONFIG_SMC91X is not set | ||
| 479 | # CONFIG_DM9000 is not set | ||
| 480 | CONFIG_NETDEV_1000=y | ||
| 481 | CONFIG_NETDEV_10000=y | ||
| 482 | |||
| 483 | # | ||
| 484 | # Wireless LAN | ||
| 485 | # | ||
| 486 | # CONFIG_WLAN_PRE80211 is not set | ||
| 487 | # CONFIG_WLAN_80211 is not set | ||
| 488 | |||
| 489 | # | ||
| 490 | # USB Network Adapters | ||
| 491 | # | ||
| 492 | # CONFIG_USB_CATC is not set | ||
| 493 | # CONFIG_USB_KAWETH is not set | ||
| 494 | # CONFIG_USB_PEGASUS is not set | ||
| 495 | CONFIG_USB_RTL8150=y | ||
| 496 | CONFIG_USB_USBNET_MII=y | ||
| 497 | CONFIG_USB_USBNET=y | ||
| 498 | CONFIG_USB_NET_AX8817X=y | ||
| 499 | CONFIG_USB_NET_CDCETHER=y | ||
| 500 | # CONFIG_USB_NET_DM9601 is not set | ||
| 501 | # CONFIG_USB_NET_GL620A is not set | ||
| 502 | CONFIG_USB_NET_NET1080=y | ||
| 503 | # CONFIG_USB_NET_PLUSB is not set | ||
| 504 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 505 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 506 | CONFIG_USB_NET_CDC_SUBSET=y | ||
| 507 | # CONFIG_USB_ALI_M5632 is not set | ||
| 508 | CONFIG_USB_AN2720=y | ||
| 509 | CONFIG_USB_BELKIN=y | ||
| 510 | CONFIG_USB_ARMLINUX=y | ||
| 511 | CONFIG_USB_EPSON2888=y | ||
| 512 | # CONFIG_USB_KC2190 is not set | ||
| 513 | CONFIG_USB_NET_ZAURUS=y | ||
| 514 | # CONFIG_WAN is not set | ||
| 515 | CONFIG_PPP=y | ||
| 516 | CONFIG_PPP_MULTILINK=y | ||
| 517 | # CONFIG_PPP_FILTER is not set | ||
| 518 | # CONFIG_PPP_ASYNC is not set | ||
| 519 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 520 | # CONFIG_PPP_DEFLATE is not set | ||
| 521 | # CONFIG_PPP_BSDCOMP is not set | ||
| 522 | # CONFIG_PPP_MPPE is not set | ||
| 523 | # CONFIG_PPPOE is not set | ||
| 524 | # CONFIG_PPPOL2TP is not set | ||
| 525 | # CONFIG_SLIP is not set | ||
| 526 | CONFIG_SLHC=y | ||
| 527 | # CONFIG_SHAPER is not set | ||
| 528 | # CONFIG_NETCONSOLE is not set | ||
| 529 | # CONFIG_NETPOLL is not set | ||
| 530 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 531 | # CONFIG_ISDN is not set | ||
| 532 | |||
| 533 | # | ||
| 534 | # Input device support | ||
| 535 | # | ||
| 536 | CONFIG_INPUT=y | ||
| 537 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 538 | # CONFIG_INPUT_POLLDEV is not set | ||
| 539 | |||
| 540 | # | ||
| 541 | # Userland interfaces | ||
| 542 | # | ||
| 543 | CONFIG_INPUT_MOUSEDEV=y | ||
| 544 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 545 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 546 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 547 | # CONFIG_INPUT_JOYDEV is not set | ||
| 548 | # CONFIG_INPUT_TSDEV is not set | ||
| 549 | # CONFIG_INPUT_EVDEV is not set | ||
| 550 | # CONFIG_INPUT_EVBUG is not set | ||
| 551 | |||
| 552 | # | ||
| 553 | # Input Device Drivers | ||
| 554 | # | ||
| 555 | CONFIG_INPUT_KEYBOARD=y | ||
| 556 | CONFIG_KEYBOARD_ATKBD=y | ||
| 557 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 558 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 559 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 560 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 561 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 562 | CONFIG_KEYBOARD_OMAP=y | ||
| 563 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 564 | # CONFIG_INPUT_MOUSE is not set | ||
| 565 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 566 | # CONFIG_INPUT_TABLET is not set | ||
| 567 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 568 | # CONFIG_INPUT_MISC is not set | ||
| 569 | |||
| 570 | # | ||
| 571 | # Hardware I/O ports | ||
| 572 | # | ||
| 573 | CONFIG_SERIO=y | ||
| 574 | CONFIG_SERIO_SERPORT=y | ||
| 575 | CONFIG_SERIO_LIBPS2=y | ||
| 576 | # CONFIG_SERIO_RAW is not set | ||
| 577 | # CONFIG_GAMEPORT is not set | ||
| 578 | |||
| 579 | # | ||
| 580 | # Character devices | ||
| 581 | # | ||
| 582 | CONFIG_VT=y | ||
| 583 | CONFIG_VT_CONSOLE=y | ||
| 584 | CONFIG_HW_CONSOLE=y | ||
| 585 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 586 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 587 | |||
| 588 | # | ||
| 589 | # Serial drivers | ||
| 590 | # | ||
| 591 | CONFIG_SERIAL_8250=y | ||
| 592 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 593 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 594 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 595 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 596 | |||
| 597 | # | ||
| 598 | # Non-8250 serial port support | ||
| 599 | # | ||
| 600 | CONFIG_SERIAL_CORE=y | ||
| 601 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 602 | CONFIG_UNIX98_PTYS=y | ||
| 603 | # CONFIG_LEGACY_PTYS is not set | ||
| 604 | # CONFIG_IPMI_HANDLER is not set | ||
| 605 | # CONFIG_WATCHDOG is not set | ||
| 606 | CONFIG_HW_RANDOM=m | ||
| 607 | # CONFIG_NVRAM is not set | ||
| 608 | # CONFIG_R3964 is not set | ||
| 609 | # CONFIG_RAW_DRIVER is not set | ||
| 610 | # CONFIG_TCG_TPM is not set | ||
| 611 | CONFIG_I2C=y | ||
| 612 | CONFIG_I2C_BOARDINFO=y | ||
| 613 | CONFIG_I2C_CHARDEV=y | ||
| 614 | |||
| 615 | # | ||
| 616 | # I2C Algorithms | ||
| 617 | # | ||
| 618 | CONFIG_I2C_ALGOBIT=y | ||
| 619 | # CONFIG_I2C_ALGOPCF is not set | ||
| 620 | # CONFIG_I2C_ALGOPCA is not set | ||
| 621 | |||
| 622 | # | ||
| 623 | # I2C Hardware Bus support | ||
| 624 | # | ||
| 625 | # CONFIG_I2C_GPIO is not set | ||
| 626 | # CONFIG_I2C_OCORES is not set | ||
| 627 | # CONFIG_I2C_OMAP is not set | ||
| 628 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 629 | # CONFIG_I2C_SIMTEC is not set | ||
| 630 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 631 | # CONFIG_I2C_STUB is not set | ||
| 632 | # CONFIG_I2C_TINY_USB is not set | ||
| 633 | |||
| 634 | # | ||
| 635 | # Miscellaneous I2C Chip support | ||
| 636 | # | ||
| 637 | # CONFIG_SENSORS_DS1337 is not set | ||
| 638 | # CONFIG_SENSORS_DS1374 is not set | ||
| 639 | # CONFIG_DS1682 is not set | ||
| 640 | # CONFIG_SENSORS_EEPROM is not set | ||
| 641 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 642 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 643 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 644 | # CONFIG_TPS65010 is not set | ||
| 645 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 646 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 647 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 648 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 649 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 650 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 651 | |||
| 652 | # | ||
| 653 | # SPI support | ||
| 654 | # | ||
| 655 | # CONFIG_SPI is not set | ||
| 656 | # CONFIG_SPI_MASTER is not set | ||
| 657 | # CONFIG_W1 is not set | ||
| 658 | CONFIG_HWMON=y | ||
| 659 | # CONFIG_HWMON_VID is not set | ||
| 660 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 661 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 662 | # CONFIG_SENSORS_AD7418 is not set | ||
| 663 | # CONFIG_SENSORS_ADM1021 is not set | ||
| 664 | # CONFIG_SENSORS_ADM1025 is not set | ||
| 665 | # CONFIG_SENSORS_ADM1026 is not set | ||
| 666 | # CONFIG_SENSORS_ADM1029 is not set | ||
| 667 | # CONFIG_SENSORS_ADM1031 is not set | ||
| 668 | # CONFIG_SENSORS_ADM9240 is not set | ||
| 669 | # CONFIG_SENSORS_ASB100 is not set | ||
| 670 | # CONFIG_SENSORS_ATXP1 is not set | ||
| 671 | # CONFIG_SENSORS_DS1621 is not set | ||
| 672 | # CONFIG_SENSORS_F71805F is not set | ||
| 673 | # CONFIG_SENSORS_FSCHER is not set | ||
| 674 | # CONFIG_SENSORS_FSCPOS is not set | ||
| 675 | # CONFIG_SENSORS_GL518SM is not set | ||
| 676 | # CONFIG_SENSORS_GL520SM is not set | ||
| 677 | # CONFIG_SENSORS_IT87 is not set | ||
| 678 | # CONFIG_SENSORS_LM63 is not set | ||
| 679 | # CONFIG_SENSORS_LM75 is not set | ||
| 680 | # CONFIG_SENSORS_LM77 is not set | ||
| 681 | # CONFIG_SENSORS_LM78 is not set | ||
| 682 | # CONFIG_SENSORS_LM80 is not set | ||
| 683 | # CONFIG_SENSORS_LM83 is not set | ||
| 684 | # CONFIG_SENSORS_LM85 is not set | ||
| 685 | # CONFIG_SENSORS_LM87 is not set | ||
| 686 | # CONFIG_SENSORS_LM90 is not set | ||
| 687 | # CONFIG_SENSORS_LM92 is not set | ||
| 688 | # CONFIG_SENSORS_LM93 is not set | ||
| 689 | # CONFIG_SENSORS_MAX1619 is not set | ||
| 690 | # CONFIG_SENSORS_MAX6650 is not set | ||
| 691 | # CONFIG_SENSORS_PC87360 is not set | ||
| 692 | # CONFIG_SENSORS_PC87427 is not set | ||
| 693 | # CONFIG_SENSORS_DME1737 is not set | ||
| 694 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 695 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
| 696 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 697 | # CONFIG_SENSORS_THMC50 is not set | ||
| 698 | # CONFIG_SENSORS_VT1211 is not set | ||
| 699 | # CONFIG_SENSORS_W83781D is not set | ||
| 700 | # CONFIG_SENSORS_W83791D is not set | ||
| 701 | # CONFIG_SENSORS_W83792D is not set | ||
| 702 | # CONFIG_SENSORS_W83793 is not set | ||
| 703 | # CONFIG_SENSORS_W83L785TS is not set | ||
| 704 | # CONFIG_SENSORS_W83627HF is not set | ||
| 705 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 706 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 707 | CONFIG_MISC_DEVICES=y | ||
| 708 | # CONFIG_EEPROM_93CX6 is not set | ||
| 709 | |||
| 710 | # | ||
| 711 | # Multifunction device drivers | ||
| 712 | # | ||
| 713 | # CONFIG_MFD_SM501 is not set | ||
| 714 | # CONFIG_NEW_LEDS is not set | ||
| 715 | |||
| 716 | # | ||
| 717 | # Multimedia devices | ||
| 718 | # | ||
| 719 | # CONFIG_VIDEO_DEV is not set | ||
| 720 | # CONFIG_DVB_CORE is not set | ||
| 721 | CONFIG_DAB=y | ||
| 722 | # CONFIG_USB_DABUSB is not set | ||
| 723 | |||
| 724 | # | ||
| 725 | # Graphics support | ||
| 726 | # | ||
| 727 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 728 | |||
| 729 | # | ||
| 730 | # Display device support | ||
| 731 | # | ||
| 732 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 733 | # CONFIG_VGASTATE is not set | ||
| 734 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 735 | # CONFIG_FB is not set | ||
| 736 | |||
| 737 | # | ||
| 738 | # Console display driver support | ||
| 739 | # | ||
| 740 | # CONFIG_VGA_CONSOLE is not set | ||
| 741 | CONFIG_DUMMY_CONSOLE=y | ||
| 742 | |||
| 743 | # | ||
| 744 | # Sound | ||
| 745 | # | ||
| 746 | # CONFIG_SOUND is not set | ||
| 747 | CONFIG_HID_SUPPORT=y | ||
| 748 | CONFIG_HID=y | ||
| 749 | # CONFIG_HID_DEBUG is not set | ||
| 750 | |||
| 751 | # | ||
| 752 | # USB Input Devices | ||
| 753 | # | ||
| 754 | CONFIG_USB_HID=y | ||
| 755 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 756 | # CONFIG_HID_FF is not set | ||
| 757 | # CONFIG_USB_HIDDEV is not set | ||
| 758 | CONFIG_USB_SUPPORT=y | ||
| 759 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 760 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 761 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 762 | CONFIG_USB=y | ||
| 763 | CONFIG_USB_DEBUG=y | ||
| 764 | |||
| 765 | # | ||
| 766 | # Miscellaneous USB options | ||
| 767 | # | ||
| 768 | CONFIG_USB_DEVICEFS=y | ||
| 769 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 770 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 771 | # CONFIG_USB_SUSPEND is not set | ||
| 772 | # CONFIG_USB_PERSIST is not set | ||
| 773 | # CONFIG_USB_OTG is not set | ||
| 774 | |||
| 775 | # | ||
| 776 | # USB Host Controller Drivers | ||
| 777 | # | ||
| 778 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 779 | CONFIG_USB_OHCI_HCD=y | ||
| 780 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 781 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 782 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 783 | # CONFIG_USB_SL811_HCD is not set | ||
| 784 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 785 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 786 | |||
| 787 | # | ||
| 788 | # USB Device Class drivers | ||
| 789 | # | ||
| 790 | # CONFIG_USB_ACM is not set | ||
| 791 | # CONFIG_USB_PRINTER is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 795 | # | ||
| 796 | |||
| 797 | # | ||
| 798 | # may also be needed; see USB_STORAGE Help for more information | ||
| 799 | # | ||
| 800 | CONFIG_USB_STORAGE=y | ||
| 801 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 802 | CONFIG_USB_STORAGE_DATAFAB=y | ||
| 803 | CONFIG_USB_STORAGE_FREECOM=y | ||
| 804 | CONFIG_USB_STORAGE_DPCM=y | ||
| 805 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 806 | CONFIG_USB_STORAGE_SDDR09=y | ||
| 807 | CONFIG_USB_STORAGE_SDDR55=y | ||
| 808 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
| 809 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 810 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 811 | # CONFIG_USB_LIBUSUAL is not set | ||
| 812 | |||
| 813 | # | ||
| 814 | # USB Imaging devices | ||
| 815 | # | ||
| 816 | # CONFIG_USB_MDC800 is not set | ||
| 817 | # CONFIG_USB_MICROTEK is not set | ||
| 818 | CONFIG_USB_MON=y | ||
| 819 | |||
| 820 | # | ||
| 821 | # USB port drivers | ||
| 822 | # | ||
| 823 | |||
| 824 | # | ||
| 825 | # USB Serial Converter support | ||
| 826 | # | ||
| 827 | # CONFIG_USB_SERIAL is not set | ||
| 828 | |||
| 829 | # | ||
| 830 | # USB Miscellaneous drivers | ||
| 831 | # | ||
| 832 | # CONFIG_USB_EMI62 is not set | ||
| 833 | # CONFIG_USB_EMI26 is not set | ||
| 834 | # CONFIG_USB_ADUTUX is not set | ||
| 835 | # CONFIG_USB_AUERSWALD is not set | ||
| 836 | # CONFIG_USB_RIO500 is not set | ||
| 837 | # CONFIG_USB_LEGOTOWER is not set | ||
| 838 | # CONFIG_USB_LCD is not set | ||
| 839 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 840 | # CONFIG_USB_LED is not set | ||
| 841 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 842 | # CONFIG_USB_CYTHERM is not set | ||
| 843 | # CONFIG_USB_PHIDGET is not set | ||
| 844 | # CONFIG_USB_IDMOUSE is not set | ||
| 845 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 846 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 847 | # CONFIG_USB_LD is not set | ||
| 848 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 849 | # CONFIG_USB_IOWARRIOR is not set | ||
| 850 | # CONFIG_USB_TEST is not set | ||
| 851 | |||
| 852 | # | ||
| 853 | # USB DSL modem support | ||
| 854 | # | ||
| 855 | |||
| 856 | # | ||
| 857 | # USB Gadget Support | ||
| 858 | # | ||
| 859 | # CONFIG_USB_GADGET is not set | ||
| 860 | CONFIG_MMC=y | ||
| 861 | # CONFIG_MMC_DEBUG is not set | ||
| 862 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 863 | |||
| 864 | # | ||
| 865 | # MMC/SD Card Drivers | ||
| 866 | # | ||
| 867 | CONFIG_MMC_BLOCK=y | ||
| 868 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 869 | |||
| 870 | # | ||
| 871 | # MMC/SD Host Controller Drivers | ||
| 872 | # | ||
| 873 | CONFIG_MMC_OMAP=y | ||
| 874 | CONFIG_RTC_LIB=y | ||
| 875 | CONFIG_RTC_CLASS=y | ||
| 876 | CONFIG_RTC_HCTOSYS=y | ||
| 877 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 878 | # CONFIG_RTC_DEBUG is not set | ||
| 879 | |||
| 880 | # | ||
| 881 | # RTC interfaces | ||
| 882 | # | ||
| 883 | CONFIG_RTC_INTF_SYSFS=y | ||
| 884 | CONFIG_RTC_INTF_PROC=y | ||
| 885 | CONFIG_RTC_INTF_DEV=y | ||
| 886 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 887 | # CONFIG_RTC_DRV_TEST is not set | ||
| 888 | |||
| 889 | # | ||
| 890 | # I2C RTC drivers | ||
| 891 | # | ||
| 892 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 893 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 894 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 895 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 896 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 897 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 898 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 899 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 900 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 901 | |||
| 902 | # | ||
| 903 | # SPI RTC drivers | ||
| 904 | # | ||
| 905 | |||
| 906 | # | ||
| 907 | # Platform RTC drivers | ||
| 908 | # | ||
| 909 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 910 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 911 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 912 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 913 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 914 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 915 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 916 | |||
| 917 | # | ||
| 918 | # on-CPU RTC drivers | ||
| 919 | # | ||
| 920 | CONFIG_RTC_DRV_OMAP=y | ||
| 921 | |||
| 922 | # | ||
| 923 | # DMA Engine support | ||
| 924 | # | ||
| 925 | # CONFIG_DMA_ENGINE is not set | ||
| 926 | |||
| 927 | # | ||
| 928 | # DMA Clients | ||
| 929 | # | ||
| 930 | |||
| 931 | # | ||
| 932 | # DMA Devices | ||
| 933 | # | ||
| 934 | |||
| 935 | # | ||
| 936 | # CBUS support | ||
| 937 | # | ||
| 938 | # CONFIG_CBUS is not set | ||
| 939 | |||
| 940 | # | ||
| 941 | # File systems | ||
| 942 | # | ||
| 943 | CONFIG_EXT2_FS=y | ||
| 944 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 945 | # CONFIG_EXT2_FS_XIP is not set | ||
| 946 | CONFIG_EXT3_FS=y | ||
| 947 | CONFIG_EXT3_FS_XATTR=y | ||
| 948 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 949 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 950 | # CONFIG_EXT4DEV_FS is not set | ||
| 951 | CONFIG_JBD=y | ||
| 952 | # CONFIG_JBD_DEBUG is not set | ||
| 953 | CONFIG_FS_MBCACHE=y | ||
| 954 | # CONFIG_REISERFS_FS is not set | ||
| 955 | # CONFIG_JFS_FS is not set | ||
| 956 | # CONFIG_FS_POSIX_ACL is not set | ||
| 957 | # CONFIG_XFS_FS is not set | ||
| 958 | # CONFIG_GFS2_FS is not set | ||
| 959 | # CONFIG_OCFS2_FS is not set | ||
| 960 | # CONFIG_MINIX_FS is not set | ||
| 961 | # CONFIG_ROMFS_FS is not set | ||
| 962 | CONFIG_INOTIFY=y | ||
| 963 | CONFIG_INOTIFY_USER=y | ||
| 964 | # CONFIG_QUOTA is not set | ||
| 965 | CONFIG_DNOTIFY=y | ||
| 966 | CONFIG_AUTOFS_FS=y | ||
| 967 | CONFIG_AUTOFS4_FS=y | ||
| 968 | # CONFIG_FUSE_FS is not set | ||
| 969 | |||
| 970 | # | ||
| 971 | # CD-ROM/DVD Filesystems | ||
| 972 | # | ||
| 973 | CONFIG_ISO9660_FS=y | ||
| 974 | CONFIG_JOLIET=y | ||
| 975 | # CONFIG_ZISOFS is not set | ||
| 976 | # CONFIG_UDF_FS is not set | ||
| 977 | |||
| 978 | # | ||
| 979 | # DOS/FAT/NT Filesystems | ||
| 980 | # | ||
| 981 | CONFIG_FAT_FS=m | ||
| 982 | CONFIG_MSDOS_FS=m | ||
| 983 | CONFIG_VFAT_FS=m | ||
| 984 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 985 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 986 | # CONFIG_NTFS_FS is not set | ||
| 987 | |||
| 988 | # | ||
| 989 | # Pseudo filesystems | ||
| 990 | # | ||
| 991 | CONFIG_PROC_FS=y | ||
| 992 | CONFIG_PROC_SYSCTL=y | ||
| 993 | CONFIG_SYSFS=y | ||
| 994 | # CONFIG_TMPFS is not set | ||
| 995 | # CONFIG_HUGETLB_PAGE is not set | ||
| 996 | CONFIG_RAMFS=y | ||
| 997 | # CONFIG_CONFIGFS_FS is not set | ||
| 998 | |||
| 999 | # | ||
| 1000 | # Miscellaneous filesystems | ||
| 1001 | # | ||
| 1002 | # CONFIG_ADFS_FS is not set | ||
| 1003 | # CONFIG_AFFS_FS is not set | ||
| 1004 | # CONFIG_HFS_FS is not set | ||
| 1005 | # CONFIG_HFSPLUS_FS is not set | ||
| 1006 | # CONFIG_BEFS_FS is not set | ||
| 1007 | # CONFIG_BFS_FS is not set | ||
| 1008 | # CONFIG_EFS_FS is not set | ||
| 1009 | # CONFIG_CRAMFS is not set | ||
| 1010 | # CONFIG_VXFS_FS is not set | ||
| 1011 | # CONFIG_HPFS_FS is not set | ||
| 1012 | # CONFIG_QNX4FS_FS is not set | ||
| 1013 | # CONFIG_SYSV_FS is not set | ||
| 1014 | # CONFIG_UFS_FS is not set | ||
| 1015 | |||
| 1016 | # | ||
| 1017 | # Network File Systems | ||
| 1018 | # | ||
| 1019 | CONFIG_NFS_FS=y | ||
| 1020 | # CONFIG_NFS_V3 is not set | ||
| 1021 | # CONFIG_NFS_V4 is not set | ||
| 1022 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1023 | # CONFIG_NFSD is not set | ||
| 1024 | # CONFIG_ROOT_NFS is not set | ||
| 1025 | CONFIG_LOCKD=y | ||
| 1026 | CONFIG_NFS_COMMON=y | ||
| 1027 | CONFIG_SUNRPC=y | ||
| 1028 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1029 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1030 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1031 | # CONFIG_SMB_FS is not set | ||
| 1032 | # CONFIG_CIFS is not set | ||
| 1033 | # CONFIG_NCP_FS is not set | ||
| 1034 | # CONFIG_CODA_FS is not set | ||
| 1035 | # CONFIG_AFS_FS is not set | ||
| 1036 | |||
| 1037 | # | ||
| 1038 | # Partition Types | ||
| 1039 | # | ||
| 1040 | CONFIG_PARTITION_ADVANCED=y | ||
| 1041 | # CONFIG_ACORN_PARTITION is not set | ||
| 1042 | # CONFIG_OSF_PARTITION is not set | ||
| 1043 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1044 | # CONFIG_ATARI_PARTITION is not set | ||
| 1045 | # CONFIG_MAC_PARTITION is not set | ||
| 1046 | CONFIG_MSDOS_PARTITION=y | ||
| 1047 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1048 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1049 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1050 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1051 | # CONFIG_LDM_PARTITION is not set | ||
| 1052 | # CONFIG_SGI_PARTITION is not set | ||
| 1053 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1054 | # CONFIG_SUN_PARTITION is not set | ||
| 1055 | # CONFIG_KARMA_PARTITION is not set | ||
| 1056 | # CONFIG_EFI_PARTITION is not set | ||
| 1057 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1058 | |||
| 1059 | # | ||
| 1060 | # Native Language Support | ||
| 1061 | # | ||
| 1062 | CONFIG_NLS=y | ||
| 1063 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1064 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
| 1065 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1066 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1067 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1068 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 1069 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1070 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1071 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1072 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1073 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1074 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1075 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1076 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1077 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1078 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1079 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1080 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1081 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1082 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1083 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1084 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1085 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1086 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1087 | # CONFIG_NLS_ASCII is not set | ||
| 1088 | # CONFIG_NLS_ISO8859_1 is not set | ||
| 1089 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1090 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1091 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1092 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1093 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1094 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1095 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1096 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1097 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1098 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1099 | # CONFIG_NLS_KOI8_R is not set | ||
| 1100 | # CONFIG_NLS_KOI8_U is not set | ||
| 1101 | # CONFIG_NLS_UTF8 is not set | ||
| 1102 | |||
| 1103 | # | ||
| 1104 | # Distributed Lock Manager | ||
| 1105 | # | ||
| 1106 | # CONFIG_DLM is not set | ||
| 1107 | |||
| 1108 | # | ||
| 1109 | # Profiling support | ||
| 1110 | # | ||
| 1111 | # CONFIG_PROFILING is not set | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # Kernel hacking | ||
| 1115 | # | ||
| 1116 | # CONFIG_PRINTK_TIME is not set | ||
| 1117 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1118 | CONFIG_MAGIC_SYSRQ=y | ||
| 1119 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1120 | # CONFIG_DEBUG_FS is not set | ||
| 1121 | # CONFIG_HEADERS_CHECK is not set | ||
| 1122 | CONFIG_DEBUG_KERNEL=y | ||
| 1123 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1124 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1125 | CONFIG_SCHED_DEBUG=y | ||
| 1126 | # CONFIG_SCHEDSTATS is not set | ||
| 1127 | # CONFIG_TIMER_STATS is not set | ||
| 1128 | # CONFIG_DEBUG_SLAB is not set | ||
| 1129 | CONFIG_DEBUG_PREEMPT=y | ||
| 1130 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1131 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1132 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1133 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1134 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1135 | # CONFIG_PROVE_LOCKING is not set | ||
| 1136 | # CONFIG_LOCK_STAT is not set | ||
| 1137 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1138 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1139 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1140 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1141 | # CONFIG_DEBUG_INFO is not set | ||
| 1142 | # CONFIG_DEBUG_VM is not set | ||
| 1143 | # CONFIG_DEBUG_LIST is not set | ||
| 1144 | CONFIG_FRAME_POINTER=y | ||
| 1145 | CONFIG_FORCED_INLINING=y | ||
| 1146 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1147 | # CONFIG_FAULT_INJECTION is not set | ||
| 1148 | # CONFIG_DEBUG_USER is not set | ||
| 1149 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1150 | # CONFIG_DEBUG_LL is not set | ||
| 1151 | |||
| 1152 | # | ||
| 1153 | # Security options | ||
| 1154 | # | ||
| 1155 | # CONFIG_KEYS is not set | ||
| 1156 | # CONFIG_SECURITY is not set | ||
| 1157 | # CONFIG_CRYPTO is not set | ||
| 1158 | |||
| 1159 | # | ||
| 1160 | # Library routines | ||
| 1161 | # | ||
| 1162 | CONFIG_BITREVERSE=y | ||
| 1163 | # CONFIG_CRC_CCITT is not set | ||
| 1164 | # CONFIG_CRC16 is not set | ||
| 1165 | # CONFIG_CRC_ITU_T is not set | ||
| 1166 | CONFIG_CRC32=y | ||
| 1167 | # CONFIG_CRC7 is not set | ||
| 1168 | # CONFIG_LIBCRC32C is not set | ||
| 1169 | CONFIG_PLIST=y | ||
| 1170 | CONFIG_HAS_IOMEM=y | ||
| 1171 | CONFIG_HAS_IOPORT=y | ||
| 1172 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_generic_1610_defconfig b/arch/arm/configs/omap_generic_1610_defconfig new file mode 100644 index 000000000000..fc66f019d56c --- /dev/null +++ b/arch/arm/configs/omap_generic_1610_defconfig | |||
| @@ -0,0 +1,1178 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 13:01:27 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | CONFIG_LOCALVERSION_AUTO=y | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 42 | # CONFIG_TASKSTATS is not set | ||
| 43 | # CONFIG_USER_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | ||
| 48 | # CONFIG_RELAY is not set | ||
| 49 | CONFIG_BLK_DEV_INITRD=y | ||
| 50 | CONFIG_INITRAMFS_SOURCE="" | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | # CONFIG_EMBEDDED is not set | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_ALL is not set | ||
| 58 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | CONFIG_MODULES=y | ||
| 79 | CONFIG_MODULE_UNLOAD=y | ||
| 80 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
| 81 | # CONFIG_MODVERSIONS is not set | ||
| 82 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 83 | CONFIG_KMOD=y | ||
| 84 | CONFIG_BLOCK=y | ||
| 85 | # CONFIG_LBD is not set | ||
| 86 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 87 | # CONFIG_LSF is not set | ||
| 88 | # CONFIG_BLK_DEV_BSG is not set | ||
| 89 | |||
| 90 | # | ||
| 91 | # IO Schedulers | ||
| 92 | # | ||
| 93 | CONFIG_IOSCHED_NOOP=y | ||
| 94 | CONFIG_IOSCHED_AS=y | ||
| 95 | CONFIG_IOSCHED_DEADLINE=y | ||
| 96 | CONFIG_IOSCHED_CFQ=y | ||
| 97 | # CONFIG_DEFAULT_AS is not set | ||
| 98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 99 | CONFIG_DEFAULT_CFQ=y | ||
| 100 | # CONFIG_DEFAULT_NOOP is not set | ||
| 101 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 102 | |||
| 103 | # | ||
| 104 | # System Type | ||
| 105 | # | ||
| 106 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 107 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 108 | # CONFIG_ARCH_REALVIEW is not set | ||
| 109 | # CONFIG_ARCH_VERSATILE is not set | ||
| 110 | # CONFIG_ARCH_AT91 is not set | ||
| 111 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 112 | # CONFIG_ARCH_CLPS711X is not set | ||
| 113 | # CONFIG_ARCH_CO285 is not set | ||
| 114 | # CONFIG_ARCH_EBSA110 is not set | ||
| 115 | # CONFIG_ARCH_EP93XX is not set | ||
| 116 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 117 | # CONFIG_ARCH_NETX is not set | ||
| 118 | # CONFIG_ARCH_H720X is not set | ||
| 119 | # CONFIG_ARCH_IMX is not set | ||
| 120 | # CONFIG_ARCH_IOP13XX is not set | ||
| 121 | # CONFIG_ARCH_IOP32X is not set | ||
| 122 | # CONFIG_ARCH_IOP33X is not set | ||
| 123 | # CONFIG_ARCH_IXP23XX is not set | ||
| 124 | # CONFIG_ARCH_IXP2000 is not set | ||
| 125 | # CONFIG_ARCH_IXP4XX is not set | ||
| 126 | # CONFIG_ARCH_L7200 is not set | ||
| 127 | # CONFIG_ARCH_KS8695 is not set | ||
| 128 | # CONFIG_ARCH_NS9XXX is not set | ||
| 129 | # CONFIG_ARCH_MXC is not set | ||
| 130 | # CONFIG_ARCH_PNX4008 is not set | ||
| 131 | # CONFIG_ARCH_PXA is not set | ||
| 132 | # CONFIG_ARCH_RPC is not set | ||
| 133 | # CONFIG_ARCH_SA1100 is not set | ||
| 134 | # CONFIG_ARCH_S3C2410 is not set | ||
| 135 | # CONFIG_ARCH_SHARK is not set | ||
| 136 | # CONFIG_ARCH_LH7A40X is not set | ||
| 137 | # CONFIG_ARCH_DAVINCI is not set | ||
| 138 | CONFIG_ARCH_OMAP=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # TI OMAP Implementations | ||
| 142 | # | ||
| 143 | CONFIG_ARCH_OMAP_OTG=y | ||
| 144 | CONFIG_ARCH_OMAP1=y | ||
| 145 | # CONFIG_ARCH_OMAP2 is not set | ||
| 146 | # CONFIG_ARCH_OMAP3 is not set | ||
| 147 | |||
| 148 | # | ||
| 149 | # OMAP Feature Selections | ||
| 150 | # | ||
| 151 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 152 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 153 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 154 | CONFIG_OMAP_MUX=y | ||
| 155 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 156 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 157 | # CONFIG_OMAP_STI is not set | ||
| 158 | CONFIG_OMAP_MCBSP=y | ||
| 159 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 160 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 161 | CONFIG_OMAP_MPU_TIMER=y | ||
| 162 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 163 | # CONFIG_OMAP_DM_TIMER is not set | ||
| 164 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 165 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 166 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 167 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 168 | # CONFIG_OMAP_DSP is not set | ||
| 169 | |||
| 170 | # | ||
| 171 | # OMAP Core Type | ||
| 172 | # | ||
| 173 | # CONFIG_ARCH_OMAP730 is not set | ||
| 174 | # CONFIG_ARCH_OMAP15XX is not set | ||
| 175 | CONFIG_ARCH_OMAP16XX=y | ||
| 176 | |||
| 177 | # | ||
| 178 | # OMAP Board Type | ||
| 179 | # | ||
| 180 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 181 | # CONFIG_MACH_OMAP_H2 is not set | ||
| 182 | # CONFIG_MACH_OMAP_H3 is not set | ||
| 183 | # CONFIG_MACH_OMAP_OSK is not set | ||
| 184 | # CONFIG_MACH_NOKIA770 is not set | ||
| 185 | CONFIG_MACH_OMAP_GENERIC=y | ||
| 186 | |||
| 187 | # | ||
| 188 | # OMAP CPU Speed | ||
| 189 | # | ||
| 190 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 191 | # CONFIG_OMAP_ARM_216MHZ is not set | ||
| 192 | CONFIG_OMAP_ARM_192MHZ=y | ||
| 193 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 194 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 195 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 196 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 197 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 198 | |||
| 199 | # | ||
| 200 | # Boot options | ||
| 201 | # | ||
| 202 | |||
| 203 | # | ||
| 204 | # Power management | ||
| 205 | # | ||
| 206 | |||
| 207 | # | ||
| 208 | # Processor Type | ||
| 209 | # | ||
| 210 | CONFIG_CPU_32=y | ||
| 211 | CONFIG_CPU_ARM926T=y | ||
| 212 | CONFIG_CPU_32v5=y | ||
| 213 | CONFIG_CPU_ABRT_EV5TJ=y | ||
| 214 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 215 | CONFIG_CPU_CACHE_VIVT=y | ||
| 216 | CONFIG_CPU_COPY_V4WB=y | ||
| 217 | CONFIG_CPU_TLB_V4WBI=y | ||
| 218 | CONFIG_CPU_CP15=y | ||
| 219 | CONFIG_CPU_CP15_MMU=y | ||
| 220 | |||
| 221 | # | ||
| 222 | # Processor Features | ||
| 223 | # | ||
| 224 | # CONFIG_ARM_THUMB is not set | ||
| 225 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 226 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 227 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 228 | # CONFIG_CPU_CACHE_ROUND_ROBIN is not set | ||
| 229 | # CONFIG_OUTER_CACHE is not set | ||
| 230 | |||
| 231 | # | ||
| 232 | # Bus support | ||
| 233 | # | ||
| 234 | # CONFIG_PCI_SYSCALL is not set | ||
| 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 236 | |||
| 237 | # | ||
| 238 | # PCCARD (PCMCIA/CardBus) support | ||
| 239 | # | ||
| 240 | # CONFIG_PCCARD is not set | ||
| 241 | |||
| 242 | # | ||
| 243 | # Kernel Features | ||
| 244 | # | ||
| 245 | # CONFIG_TICK_ONESHOT is not set | ||
| 246 | # CONFIG_NO_HZ is not set | ||
| 247 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 248 | CONFIG_PREEMPT=y | ||
| 249 | CONFIG_HZ=100 | ||
| 250 | # CONFIG_AEABI is not set | ||
| 251 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 252 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 253 | CONFIG_FLATMEM_MANUAL=y | ||
| 254 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 255 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 256 | CONFIG_FLATMEM=y | ||
| 257 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 258 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 259 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 260 | # CONFIG_RESOURCES_64BIT is not set | ||
| 261 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 262 | CONFIG_BOUNCE=y | ||
| 263 | CONFIG_VIRT_TO_BUS=y | ||
| 264 | # CONFIG_LEDS is not set | ||
| 265 | CONFIG_ALIGNMENT_TRAP=y | ||
| 266 | |||
| 267 | # | ||
| 268 | # Boot options | ||
| 269 | # | ||
| 270 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 271 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 272 | CONFIG_CMDLINE="mem=64M console=ttyS2,115200 root=0803 ro init=/bin/sh" | ||
| 273 | # CONFIG_XIP_KERNEL is not set | ||
| 274 | # CONFIG_KEXEC is not set | ||
| 275 | |||
| 276 | # | ||
| 277 | # CPU Frequency scaling | ||
| 278 | # | ||
| 279 | # CONFIG_CPU_FREQ is not set | ||
| 280 | |||
| 281 | # | ||
| 282 | # Floating point emulation | ||
| 283 | # | ||
| 284 | |||
| 285 | # | ||
| 286 | # At least one emulation must be selected | ||
| 287 | # | ||
| 288 | CONFIG_FPE_NWFPE=y | ||
| 289 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 290 | # CONFIG_FPE_FASTFPE is not set | ||
| 291 | # CONFIG_VFP is not set | ||
| 292 | |||
| 293 | # | ||
| 294 | # Userspace binary formats | ||
| 295 | # | ||
| 296 | CONFIG_BINFMT_ELF=y | ||
| 297 | # CONFIG_BINFMT_AOUT is not set | ||
| 298 | # CONFIG_BINFMT_MISC is not set | ||
| 299 | # CONFIG_ARTHUR is not set | ||
| 300 | |||
| 301 | # | ||
| 302 | # Power management options | ||
| 303 | # | ||
| 304 | CONFIG_PM=y | ||
| 305 | # CONFIG_PM_LEGACY is not set | ||
| 306 | # CONFIG_PM_DEBUG is not set | ||
| 307 | CONFIG_PM_SLEEP=y | ||
| 308 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 309 | CONFIG_SUSPEND=y | ||
| 310 | # CONFIG_APM_EMULATION is not set | ||
| 311 | |||
| 312 | # | ||
| 313 | # Networking | ||
| 314 | # | ||
| 315 | CONFIG_NET=y | ||
| 316 | |||
| 317 | # | ||
| 318 | # Networking options | ||
| 319 | # | ||
| 320 | CONFIG_PACKET=y | ||
| 321 | # CONFIG_PACKET_MMAP is not set | ||
| 322 | CONFIG_UNIX=y | ||
| 323 | CONFIG_XFRM=y | ||
| 324 | # CONFIG_XFRM_USER is not set | ||
| 325 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 326 | # CONFIG_XFRM_MIGRATE is not set | ||
| 327 | # CONFIG_NET_KEY is not set | ||
| 328 | CONFIG_INET=y | ||
| 329 | CONFIG_IP_MULTICAST=y | ||
| 330 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 331 | CONFIG_IP_FIB_HASH=y | ||
| 332 | CONFIG_IP_PNP=y | ||
| 333 | CONFIG_IP_PNP_DHCP=y | ||
| 334 | CONFIG_IP_PNP_BOOTP=y | ||
| 335 | # CONFIG_IP_PNP_RARP is not set | ||
| 336 | # CONFIG_NET_IPIP is not set | ||
| 337 | # CONFIG_NET_IPGRE is not set | ||
| 338 | # CONFIG_IP_MROUTE is not set | ||
| 339 | # CONFIG_ARPD is not set | ||
| 340 | # CONFIG_SYN_COOKIES is not set | ||
| 341 | # CONFIG_INET_AH is not set | ||
| 342 | # CONFIG_INET_ESP is not set | ||
| 343 | # CONFIG_INET_IPCOMP is not set | ||
| 344 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 345 | # CONFIG_INET_TUNNEL is not set | ||
| 346 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 347 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 348 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 349 | CONFIG_INET_DIAG=y | ||
| 350 | CONFIG_INET_TCP_DIAG=y | ||
| 351 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 352 | CONFIG_TCP_CONG_CUBIC=y | ||
| 353 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 354 | # CONFIG_TCP_MD5SIG is not set | ||
| 355 | # CONFIG_IPV6 is not set | ||
| 356 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 357 | # CONFIG_INET6_TUNNEL is not set | ||
| 358 | # CONFIG_NETWORK_SECMARK is not set | ||
| 359 | # CONFIG_NETFILTER is not set | ||
| 360 | # CONFIG_IP_DCCP is not set | ||
| 361 | # CONFIG_IP_SCTP is not set | ||
| 362 | # CONFIG_TIPC is not set | ||
| 363 | # CONFIG_ATM is not set | ||
| 364 | # CONFIG_BRIDGE is not set | ||
| 365 | # CONFIG_VLAN_8021Q is not set | ||
| 366 | # CONFIG_DECNET is not set | ||
| 367 | # CONFIG_LLC2 is not set | ||
| 368 | # CONFIG_IPX is not set | ||
| 369 | # CONFIG_ATALK is not set | ||
| 370 | # CONFIG_X25 is not set | ||
| 371 | # CONFIG_LAPB is not set | ||
| 372 | # CONFIG_ECONET is not set | ||
| 373 | # CONFIG_WAN_ROUTER is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # QoS and/or fair queueing | ||
| 377 | # | ||
| 378 | # CONFIG_NET_SCHED is not set | ||
| 379 | |||
| 380 | # | ||
| 381 | # Network testing | ||
| 382 | # | ||
| 383 | # CONFIG_NET_PKTGEN is not set | ||
| 384 | # CONFIG_HAMRADIO is not set | ||
| 385 | # CONFIG_IRDA is not set | ||
| 386 | # CONFIG_BT is not set | ||
| 387 | # CONFIG_AF_RXRPC is not set | ||
| 388 | |||
| 389 | # | ||
| 390 | # Wireless | ||
| 391 | # | ||
| 392 | # CONFIG_CFG80211 is not set | ||
| 393 | # CONFIG_WIRELESS_EXT is not set | ||
| 394 | # CONFIG_MAC80211 is not set | ||
| 395 | # CONFIG_IEEE80211 is not set | ||
| 396 | # CONFIG_RFKILL is not set | ||
| 397 | # CONFIG_NET_9P is not set | ||
| 398 | |||
| 399 | # | ||
| 400 | # Device Drivers | ||
| 401 | # | ||
| 402 | |||
| 403 | # | ||
| 404 | # Generic Driver Options | ||
| 405 | # | ||
| 406 | CONFIG_STANDALONE=y | ||
| 407 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 408 | # CONFIG_FW_LOADER is not set | ||
| 409 | # CONFIG_DEBUG_DRIVER is not set | ||
| 410 | # CONFIG_DEBUG_DEVRES is not set | ||
| 411 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 412 | # CONFIG_CONNECTOR is not set | ||
| 413 | # CONFIG_MTD is not set | ||
| 414 | # CONFIG_PARPORT is not set | ||
| 415 | CONFIG_BLK_DEV=y | ||
| 416 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 417 | CONFIG_BLK_DEV_LOOP=y | ||
| 418 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 419 | # CONFIG_BLK_DEV_NBD is not set | ||
| 420 | # CONFIG_BLK_DEV_UB is not set | ||
| 421 | CONFIG_BLK_DEV_RAM=y | ||
| 422 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 423 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 424 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 425 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 426 | # CONFIG_ATA_OVER_ETH is not set | ||
| 427 | |||
| 428 | # | ||
| 429 | # SCSI device support | ||
| 430 | # | ||
| 431 | # CONFIG_RAID_ATTRS is not set | ||
| 432 | CONFIG_SCSI=y | ||
| 433 | CONFIG_SCSI_DMA=y | ||
| 434 | # CONFIG_SCSI_TGT is not set | ||
| 435 | # CONFIG_SCSI_NETLINK is not set | ||
| 436 | CONFIG_SCSI_PROC_FS=y | ||
| 437 | |||
| 438 | # | ||
| 439 | # SCSI support type (disk, tape, CD-ROM) | ||
| 440 | # | ||
| 441 | CONFIG_BLK_DEV_SD=y | ||
| 442 | # CONFIG_CHR_DEV_ST is not set | ||
| 443 | # CONFIG_CHR_DEV_OSST is not set | ||
| 444 | CONFIG_BLK_DEV_SR=y | ||
| 445 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
| 446 | CONFIG_CHR_DEV_SG=y | ||
| 447 | # CONFIG_CHR_DEV_SCH is not set | ||
| 448 | |||
| 449 | # | ||
| 450 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 451 | # | ||
| 452 | CONFIG_SCSI_MULTI_LUN=y | ||
| 453 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 454 | # CONFIG_SCSI_LOGGING is not set | ||
| 455 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 456 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 457 | |||
| 458 | # | ||
| 459 | # SCSI Transports | ||
| 460 | # | ||
| 461 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 462 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 463 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 464 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 465 | CONFIG_SCSI_LOWLEVEL=y | ||
| 466 | # CONFIG_ISCSI_TCP is not set | ||
| 467 | # CONFIG_SCSI_DEBUG is not set | ||
| 468 | # CONFIG_ATA is not set | ||
| 469 | # CONFIG_MD is not set | ||
| 470 | CONFIG_NETDEVICES=y | ||
| 471 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 472 | # CONFIG_DUMMY is not set | ||
| 473 | # CONFIG_BONDING is not set | ||
| 474 | # CONFIG_MACVLAN is not set | ||
| 475 | # CONFIG_EQUALIZER is not set | ||
| 476 | # CONFIG_TUN is not set | ||
| 477 | # CONFIG_PHYLIB is not set | ||
| 478 | CONFIG_NET_ETHERNET=y | ||
| 479 | CONFIG_MII=y | ||
| 480 | # CONFIG_AX88796 is not set | ||
| 481 | # CONFIG_SMC91X is not set | ||
| 482 | # CONFIG_DM9000 is not set | ||
| 483 | CONFIG_NETDEV_1000=y | ||
| 484 | CONFIG_NETDEV_10000=y | ||
| 485 | |||
| 486 | # | ||
| 487 | # Wireless LAN | ||
| 488 | # | ||
| 489 | # CONFIG_WLAN_PRE80211 is not set | ||
| 490 | # CONFIG_WLAN_80211 is not set | ||
| 491 | |||
| 492 | # | ||
| 493 | # USB Network Adapters | ||
| 494 | # | ||
| 495 | # CONFIG_USB_CATC is not set | ||
| 496 | # CONFIG_USB_KAWETH is not set | ||
| 497 | # CONFIG_USB_PEGASUS is not set | ||
| 498 | CONFIG_USB_RTL8150=y | ||
| 499 | CONFIG_USB_USBNET_MII=y | ||
| 500 | CONFIG_USB_USBNET=y | ||
| 501 | CONFIG_USB_NET_AX8817X=y | ||
| 502 | CONFIG_USB_NET_CDCETHER=y | ||
| 503 | # CONFIG_USB_NET_DM9601 is not set | ||
| 504 | # CONFIG_USB_NET_GL620A is not set | ||
| 505 | CONFIG_USB_NET_NET1080=y | ||
| 506 | # CONFIG_USB_NET_PLUSB is not set | ||
| 507 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 508 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 509 | CONFIG_USB_NET_CDC_SUBSET=y | ||
| 510 | CONFIG_USB_ALI_M5632=y | ||
| 511 | CONFIG_USB_AN2720=y | ||
| 512 | CONFIG_USB_BELKIN=y | ||
| 513 | CONFIG_USB_ARMLINUX=y | ||
| 514 | CONFIG_USB_EPSON2888=y | ||
| 515 | # CONFIG_USB_KC2190 is not set | ||
| 516 | CONFIG_USB_NET_ZAURUS=y | ||
| 517 | # CONFIG_WAN is not set | ||
| 518 | CONFIG_PPP=y | ||
| 519 | CONFIG_PPP_MULTILINK=y | ||
| 520 | # CONFIG_PPP_FILTER is not set | ||
| 521 | # CONFIG_PPP_ASYNC is not set | ||
| 522 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 523 | # CONFIG_PPP_DEFLATE is not set | ||
| 524 | # CONFIG_PPP_BSDCOMP is not set | ||
| 525 | # CONFIG_PPP_MPPE is not set | ||
| 526 | # CONFIG_PPPOE is not set | ||
| 527 | # CONFIG_PPPOL2TP is not set | ||
| 528 | # CONFIG_SLIP is not set | ||
| 529 | CONFIG_SLHC=y | ||
| 530 | # CONFIG_SHAPER is not set | ||
| 531 | # CONFIG_NETCONSOLE is not set | ||
| 532 | # CONFIG_NETPOLL is not set | ||
| 533 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 534 | # CONFIG_ISDN is not set | ||
| 535 | |||
| 536 | # | ||
| 537 | # Input device support | ||
| 538 | # | ||
| 539 | CONFIG_INPUT=y | ||
| 540 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 541 | # CONFIG_INPUT_POLLDEV is not set | ||
| 542 | |||
| 543 | # | ||
| 544 | # Userland interfaces | ||
| 545 | # | ||
| 546 | CONFIG_INPUT_MOUSEDEV=y | ||
| 547 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 548 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 549 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 550 | # CONFIG_INPUT_JOYDEV is not set | ||
| 551 | # CONFIG_INPUT_TSDEV is not set | ||
| 552 | # CONFIG_INPUT_EVDEV is not set | ||
| 553 | # CONFIG_INPUT_EVBUG is not set | ||
| 554 | |||
| 555 | # | ||
| 556 | # Input Device Drivers | ||
| 557 | # | ||
| 558 | CONFIG_INPUT_KEYBOARD=y | ||
| 559 | CONFIG_KEYBOARD_ATKBD=y | ||
| 560 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 561 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 562 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 563 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 564 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 565 | CONFIG_KEYBOARD_OMAP=y | ||
| 566 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 567 | # CONFIG_INPUT_MOUSE is not set | ||
| 568 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 569 | # CONFIG_INPUT_TABLET is not set | ||
| 570 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 571 | # CONFIG_INPUT_MISC is not set | ||
| 572 | |||
| 573 | # | ||
| 574 | # Hardware I/O ports | ||
| 575 | # | ||
| 576 | CONFIG_SERIO=y | ||
| 577 | CONFIG_SERIO_SERPORT=y | ||
| 578 | CONFIG_SERIO_LIBPS2=y | ||
| 579 | # CONFIG_SERIO_RAW is not set | ||
| 580 | # CONFIG_GAMEPORT is not set | ||
| 581 | |||
| 582 | # | ||
| 583 | # Character devices | ||
| 584 | # | ||
| 585 | CONFIG_VT=y | ||
| 586 | CONFIG_VT_CONSOLE=y | ||
| 587 | CONFIG_HW_CONSOLE=y | ||
| 588 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 589 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # Serial drivers | ||
| 593 | # | ||
| 594 | CONFIG_SERIAL_8250=y | ||
| 595 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 596 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 597 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 598 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 599 | |||
| 600 | # | ||
| 601 | # Non-8250 serial port support | ||
| 602 | # | ||
| 603 | CONFIG_SERIAL_CORE=y | ||
| 604 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 605 | CONFIG_UNIX98_PTYS=y | ||
| 606 | # CONFIG_LEGACY_PTYS is not set | ||
| 607 | # CONFIG_IPMI_HANDLER is not set | ||
| 608 | # CONFIG_WATCHDOG is not set | ||
| 609 | CONFIG_HW_RANDOM=m | ||
| 610 | CONFIG_HW_RANDOM_OMAP=m | ||
| 611 | # CONFIG_NVRAM is not set | ||
| 612 | # CONFIG_R3964 is not set | ||
| 613 | # CONFIG_RAW_DRIVER is not set | ||
| 614 | # CONFIG_TCG_TPM is not set | ||
| 615 | CONFIG_I2C=y | ||
| 616 | CONFIG_I2C_BOARDINFO=y | ||
| 617 | CONFIG_I2C_CHARDEV=y | ||
| 618 | |||
| 619 | # | ||
| 620 | # I2C Algorithms | ||
| 621 | # | ||
| 622 | CONFIG_I2C_ALGOBIT=y | ||
| 623 | # CONFIG_I2C_ALGOPCF is not set | ||
| 624 | # CONFIG_I2C_ALGOPCA is not set | ||
| 625 | |||
| 626 | # | ||
| 627 | # I2C Hardware Bus support | ||
| 628 | # | ||
| 629 | # CONFIG_I2C_GPIO is not set | ||
| 630 | # CONFIG_I2C_OCORES is not set | ||
| 631 | # CONFIG_I2C_OMAP is not set | ||
| 632 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 633 | # CONFIG_I2C_SIMTEC is not set | ||
| 634 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 635 | # CONFIG_I2C_STUB is not set | ||
| 636 | # CONFIG_I2C_TINY_USB is not set | ||
| 637 | |||
| 638 | # | ||
| 639 | # Miscellaneous I2C Chip support | ||
| 640 | # | ||
| 641 | # CONFIG_SENSORS_DS1337 is not set | ||
| 642 | # CONFIG_SENSORS_DS1374 is not set | ||
| 643 | # CONFIG_DS1682 is not set | ||
| 644 | # CONFIG_SENSORS_EEPROM is not set | ||
| 645 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 646 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 647 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 648 | # CONFIG_ISP1301_OMAP is not set | ||
| 649 | # CONFIG_TPS65010 is not set | ||
| 650 | # CONFIG_GPIOEXPANDER_OMAP is not set | ||
| 651 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 652 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 653 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 654 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 655 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 656 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 657 | |||
| 658 | # | ||
| 659 | # SPI support | ||
| 660 | # | ||
| 661 | # CONFIG_SPI is not set | ||
| 662 | # CONFIG_SPI_MASTER is not set | ||
| 663 | # CONFIG_W1 is not set | ||
| 664 | CONFIG_HWMON=y | ||
| 665 | # CONFIG_HWMON_VID is not set | ||
| 666 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 667 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 668 | # CONFIG_SENSORS_AD7418 is not set | ||
| 669 | # CONFIG_SENSORS_ADM1021 is not set | ||
| 670 | # CONFIG_SENSORS_ADM1025 is not set | ||
| 671 | # CONFIG_SENSORS_ADM1026 is not set | ||
| 672 | # CONFIG_SENSORS_ADM1029 is not set | ||
| 673 | # CONFIG_SENSORS_ADM1031 is not set | ||
| 674 | # CONFIG_SENSORS_ADM9240 is not set | ||
| 675 | # CONFIG_SENSORS_ASB100 is not set | ||
| 676 | # CONFIG_SENSORS_ATXP1 is not set | ||
| 677 | # CONFIG_SENSORS_DS1621 is not set | ||
| 678 | # CONFIG_SENSORS_F71805F is not set | ||
| 679 | # CONFIG_SENSORS_FSCHER is not set | ||
| 680 | # CONFIG_SENSORS_FSCPOS is not set | ||
| 681 | # CONFIG_SENSORS_GL518SM is not set | ||
| 682 | # CONFIG_SENSORS_GL520SM is not set | ||
| 683 | # CONFIG_SENSORS_IT87 is not set | ||
| 684 | # CONFIG_SENSORS_LM63 is not set | ||
| 685 | # CONFIG_SENSORS_LM75 is not set | ||
| 686 | # CONFIG_SENSORS_LM77 is not set | ||
| 687 | # CONFIG_SENSORS_LM78 is not set | ||
| 688 | # CONFIG_SENSORS_LM80 is not set | ||
| 689 | # CONFIG_SENSORS_LM83 is not set | ||
| 690 | # CONFIG_SENSORS_LM85 is not set | ||
| 691 | # CONFIG_SENSORS_LM87 is not set | ||
| 692 | # CONFIG_SENSORS_LM90 is not set | ||
| 693 | # CONFIG_SENSORS_LM92 is not set | ||
| 694 | # CONFIG_SENSORS_LM93 is not set | ||
| 695 | # CONFIG_SENSORS_MAX1619 is not set | ||
| 696 | # CONFIG_SENSORS_MAX6650 is not set | ||
| 697 | # CONFIG_SENSORS_PC87360 is not set | ||
| 698 | # CONFIG_SENSORS_PC87427 is not set | ||
| 699 | # CONFIG_SENSORS_DME1737 is not set | ||
| 700 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 701 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
| 702 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 703 | # CONFIG_SENSORS_THMC50 is not set | ||
| 704 | # CONFIG_SENSORS_VT1211 is not set | ||
| 705 | # CONFIG_SENSORS_W83781D is not set | ||
| 706 | # CONFIG_SENSORS_W83791D is not set | ||
| 707 | # CONFIG_SENSORS_W83792D is not set | ||
| 708 | # CONFIG_SENSORS_W83793 is not set | ||
| 709 | # CONFIG_SENSORS_W83L785TS is not set | ||
| 710 | # CONFIG_SENSORS_W83627HF is not set | ||
| 711 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 712 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 713 | CONFIG_MISC_DEVICES=y | ||
| 714 | # CONFIG_EEPROM_93CX6 is not set | ||
| 715 | |||
| 716 | # | ||
| 717 | # Multifunction device drivers | ||
| 718 | # | ||
| 719 | # CONFIG_MFD_SM501 is not set | ||
| 720 | # CONFIG_NEW_LEDS is not set | ||
| 721 | |||
| 722 | # | ||
| 723 | # Multimedia devices | ||
| 724 | # | ||
| 725 | # CONFIG_VIDEO_DEV is not set | ||
| 726 | # CONFIG_DVB_CORE is not set | ||
| 727 | CONFIG_DAB=y | ||
| 728 | # CONFIG_USB_DABUSB is not set | ||
| 729 | |||
| 730 | # | ||
| 731 | # Graphics support | ||
| 732 | # | ||
| 733 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 734 | |||
| 735 | # | ||
| 736 | # Display device support | ||
| 737 | # | ||
| 738 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 739 | # CONFIG_VGASTATE is not set | ||
| 740 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 741 | # CONFIG_FB is not set | ||
| 742 | |||
| 743 | # | ||
| 744 | # Console display driver support | ||
| 745 | # | ||
| 746 | # CONFIG_VGA_CONSOLE is not set | ||
| 747 | CONFIG_DUMMY_CONSOLE=y | ||
| 748 | |||
| 749 | # | ||
| 750 | # Sound | ||
| 751 | # | ||
| 752 | # CONFIG_SOUND is not set | ||
| 753 | CONFIG_HID_SUPPORT=y | ||
| 754 | CONFIG_HID=y | ||
| 755 | # CONFIG_HID_DEBUG is not set | ||
| 756 | |||
| 757 | # | ||
| 758 | # USB Input Devices | ||
| 759 | # | ||
| 760 | CONFIG_USB_HID=y | ||
| 761 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 762 | # CONFIG_HID_FF is not set | ||
| 763 | # CONFIG_USB_HIDDEV is not set | ||
| 764 | CONFIG_USB_SUPPORT=y | ||
| 765 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 766 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 767 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 768 | CONFIG_USB=y | ||
| 769 | CONFIG_USB_DEBUG=y | ||
| 770 | |||
| 771 | # | ||
| 772 | # Miscellaneous USB options | ||
| 773 | # | ||
| 774 | CONFIG_USB_DEVICEFS=y | ||
| 775 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 776 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 777 | # CONFIG_USB_SUSPEND is not set | ||
| 778 | # CONFIG_USB_PERSIST is not set | ||
| 779 | # CONFIG_USB_OTG is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # USB Host Controller Drivers | ||
| 783 | # | ||
| 784 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 785 | CONFIG_USB_OHCI_HCD=y | ||
| 786 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 787 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 788 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 789 | # CONFIG_USB_SL811_HCD is not set | ||
| 790 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 791 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # USB Device Class drivers | ||
| 795 | # | ||
| 796 | # CONFIG_USB_ACM is not set | ||
| 797 | # CONFIG_USB_PRINTER is not set | ||
| 798 | |||
| 799 | # | ||
| 800 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 801 | # | ||
| 802 | |||
| 803 | # | ||
| 804 | # may also be needed; see USB_STORAGE Help for more information | ||
| 805 | # | ||
| 806 | CONFIG_USB_STORAGE=y | ||
| 807 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 808 | CONFIG_USB_STORAGE_DATAFAB=y | ||
| 809 | CONFIG_USB_STORAGE_FREECOM=y | ||
| 810 | CONFIG_USB_STORAGE_DPCM=y | ||
| 811 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 812 | CONFIG_USB_STORAGE_SDDR09=y | ||
| 813 | CONFIG_USB_STORAGE_SDDR55=y | ||
| 814 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
| 815 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 816 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 817 | # CONFIG_USB_LIBUSUAL is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # USB Imaging devices | ||
| 821 | # | ||
| 822 | # CONFIG_USB_MDC800 is not set | ||
| 823 | # CONFIG_USB_MICROTEK is not set | ||
| 824 | CONFIG_USB_MON=y | ||
| 825 | |||
| 826 | # | ||
| 827 | # USB port drivers | ||
| 828 | # | ||
| 829 | |||
| 830 | # | ||
| 831 | # USB Serial Converter support | ||
| 832 | # | ||
| 833 | # CONFIG_USB_SERIAL is not set | ||
| 834 | |||
| 835 | # | ||
| 836 | # USB Miscellaneous drivers | ||
| 837 | # | ||
| 838 | # CONFIG_USB_EMI62 is not set | ||
| 839 | # CONFIG_USB_EMI26 is not set | ||
| 840 | # CONFIG_USB_ADUTUX is not set | ||
| 841 | # CONFIG_USB_AUERSWALD is not set | ||
| 842 | # CONFIG_USB_RIO500 is not set | ||
| 843 | # CONFIG_USB_LEGOTOWER is not set | ||
| 844 | # CONFIG_USB_LCD is not set | ||
| 845 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 846 | # CONFIG_USB_LED is not set | ||
| 847 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 848 | # CONFIG_USB_CYTHERM is not set | ||
| 849 | # CONFIG_USB_PHIDGET is not set | ||
| 850 | # CONFIG_USB_IDMOUSE is not set | ||
| 851 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 852 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 853 | # CONFIG_USB_LD is not set | ||
| 854 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 855 | # CONFIG_USB_IOWARRIOR is not set | ||
| 856 | # CONFIG_USB_TEST is not set | ||
| 857 | |||
| 858 | # | ||
| 859 | # USB DSL modem support | ||
| 860 | # | ||
| 861 | |||
| 862 | # | ||
| 863 | # USB Gadget Support | ||
| 864 | # | ||
| 865 | # CONFIG_USB_GADGET is not set | ||
| 866 | CONFIG_MMC=y | ||
| 867 | # CONFIG_MMC_DEBUG is not set | ||
| 868 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 869 | |||
| 870 | # | ||
| 871 | # MMC/SD Card Drivers | ||
| 872 | # | ||
| 873 | CONFIG_MMC_BLOCK=y | ||
| 874 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 875 | |||
| 876 | # | ||
| 877 | # MMC/SD Host Controller Drivers | ||
| 878 | # | ||
| 879 | CONFIG_MMC_OMAP=y | ||
| 880 | CONFIG_RTC_LIB=y | ||
| 881 | CONFIG_RTC_CLASS=y | ||
| 882 | CONFIG_RTC_HCTOSYS=y | ||
| 883 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 884 | # CONFIG_RTC_DEBUG is not set | ||
| 885 | |||
| 886 | # | ||
| 887 | # RTC interfaces | ||
| 888 | # | ||
| 889 | CONFIG_RTC_INTF_SYSFS=y | ||
| 890 | CONFIG_RTC_INTF_PROC=y | ||
| 891 | CONFIG_RTC_INTF_DEV=y | ||
| 892 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 893 | # CONFIG_RTC_DRV_TEST is not set | ||
| 894 | |||
| 895 | # | ||
| 896 | # I2C RTC drivers | ||
| 897 | # | ||
| 898 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 899 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 900 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 901 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 902 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 903 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 904 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 905 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 906 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 907 | |||
| 908 | # | ||
| 909 | # SPI RTC drivers | ||
| 910 | # | ||
| 911 | |||
| 912 | # | ||
| 913 | # Platform RTC drivers | ||
| 914 | # | ||
| 915 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 916 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 917 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 918 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 919 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 920 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 921 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 922 | |||
| 923 | # | ||
| 924 | # on-CPU RTC drivers | ||
| 925 | # | ||
| 926 | CONFIG_RTC_DRV_OMAP=y | ||
| 927 | |||
| 928 | # | ||
| 929 | # DMA Engine support | ||
| 930 | # | ||
| 931 | # CONFIG_DMA_ENGINE is not set | ||
| 932 | |||
| 933 | # | ||
| 934 | # DMA Clients | ||
| 935 | # | ||
| 936 | |||
| 937 | # | ||
| 938 | # DMA Devices | ||
| 939 | # | ||
| 940 | |||
| 941 | # | ||
| 942 | # CBUS support | ||
| 943 | # | ||
| 944 | # CONFIG_CBUS is not set | ||
| 945 | |||
| 946 | # | ||
| 947 | # File systems | ||
| 948 | # | ||
| 949 | CONFIG_EXT2_FS=y | ||
| 950 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 951 | # CONFIG_EXT2_FS_XIP is not set | ||
| 952 | CONFIG_EXT3_FS=y | ||
| 953 | CONFIG_EXT3_FS_XATTR=y | ||
| 954 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 955 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 956 | # CONFIG_EXT4DEV_FS is not set | ||
| 957 | CONFIG_JBD=y | ||
| 958 | # CONFIG_JBD_DEBUG is not set | ||
| 959 | CONFIG_FS_MBCACHE=y | ||
| 960 | # CONFIG_REISERFS_FS is not set | ||
| 961 | # CONFIG_JFS_FS is not set | ||
| 962 | # CONFIG_FS_POSIX_ACL is not set | ||
| 963 | # CONFIG_XFS_FS is not set | ||
| 964 | # CONFIG_GFS2_FS is not set | ||
| 965 | # CONFIG_OCFS2_FS is not set | ||
| 966 | # CONFIG_MINIX_FS is not set | ||
| 967 | # CONFIG_ROMFS_FS is not set | ||
| 968 | CONFIG_INOTIFY=y | ||
| 969 | CONFIG_INOTIFY_USER=y | ||
| 970 | # CONFIG_QUOTA is not set | ||
| 971 | CONFIG_DNOTIFY=y | ||
| 972 | CONFIG_AUTOFS_FS=y | ||
| 973 | CONFIG_AUTOFS4_FS=y | ||
| 974 | # CONFIG_FUSE_FS is not set | ||
| 975 | |||
| 976 | # | ||
| 977 | # CD-ROM/DVD Filesystems | ||
| 978 | # | ||
| 979 | CONFIG_ISO9660_FS=y | ||
| 980 | CONFIG_JOLIET=y | ||
| 981 | # CONFIG_ZISOFS is not set | ||
| 982 | # CONFIG_UDF_FS is not set | ||
| 983 | |||
| 984 | # | ||
| 985 | # DOS/FAT/NT Filesystems | ||
| 986 | # | ||
| 987 | CONFIG_FAT_FS=m | ||
| 988 | CONFIG_MSDOS_FS=m | ||
| 989 | CONFIG_VFAT_FS=m | ||
| 990 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 991 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 992 | # CONFIG_NTFS_FS is not set | ||
| 993 | |||
| 994 | # | ||
| 995 | # Pseudo filesystems | ||
| 996 | # | ||
| 997 | CONFIG_PROC_FS=y | ||
| 998 | CONFIG_PROC_SYSCTL=y | ||
| 999 | CONFIG_SYSFS=y | ||
| 1000 | # CONFIG_TMPFS is not set | ||
| 1001 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1002 | CONFIG_RAMFS=y | ||
| 1003 | # CONFIG_CONFIGFS_FS is not set | ||
| 1004 | |||
| 1005 | # | ||
| 1006 | # Miscellaneous filesystems | ||
| 1007 | # | ||
| 1008 | # CONFIG_ADFS_FS is not set | ||
| 1009 | # CONFIG_AFFS_FS is not set | ||
| 1010 | # CONFIG_HFS_FS is not set | ||
| 1011 | # CONFIG_HFSPLUS_FS is not set | ||
| 1012 | # CONFIG_BEFS_FS is not set | ||
| 1013 | # CONFIG_BFS_FS is not set | ||
| 1014 | # CONFIG_EFS_FS is not set | ||
| 1015 | # CONFIG_CRAMFS is not set | ||
| 1016 | # CONFIG_VXFS_FS is not set | ||
| 1017 | # CONFIG_HPFS_FS is not set | ||
| 1018 | # CONFIG_QNX4FS_FS is not set | ||
| 1019 | # CONFIG_SYSV_FS is not set | ||
| 1020 | # CONFIG_UFS_FS is not set | ||
| 1021 | |||
| 1022 | # | ||
| 1023 | # Network File Systems | ||
| 1024 | # | ||
| 1025 | CONFIG_NFS_FS=y | ||
| 1026 | # CONFIG_NFS_V3 is not set | ||
| 1027 | # CONFIG_NFS_V4 is not set | ||
| 1028 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1029 | # CONFIG_NFSD is not set | ||
| 1030 | # CONFIG_ROOT_NFS is not set | ||
| 1031 | CONFIG_LOCKD=y | ||
| 1032 | CONFIG_NFS_COMMON=y | ||
| 1033 | CONFIG_SUNRPC=y | ||
| 1034 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1035 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1036 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1037 | # CONFIG_SMB_FS is not set | ||
| 1038 | # CONFIG_CIFS is not set | ||
| 1039 | # CONFIG_NCP_FS is not set | ||
| 1040 | # CONFIG_CODA_FS is not set | ||
| 1041 | # CONFIG_AFS_FS is not set | ||
| 1042 | |||
| 1043 | # | ||
| 1044 | # Partition Types | ||
| 1045 | # | ||
| 1046 | CONFIG_PARTITION_ADVANCED=y | ||
| 1047 | # CONFIG_ACORN_PARTITION is not set | ||
| 1048 | # CONFIG_OSF_PARTITION is not set | ||
| 1049 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1050 | # CONFIG_ATARI_PARTITION is not set | ||
| 1051 | # CONFIG_MAC_PARTITION is not set | ||
| 1052 | CONFIG_MSDOS_PARTITION=y | ||
| 1053 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1054 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1055 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1056 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1057 | # CONFIG_LDM_PARTITION is not set | ||
| 1058 | # CONFIG_SGI_PARTITION is not set | ||
| 1059 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1060 | # CONFIG_SUN_PARTITION is not set | ||
| 1061 | # CONFIG_KARMA_PARTITION is not set | ||
| 1062 | # CONFIG_EFI_PARTITION is not set | ||
| 1063 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1064 | |||
| 1065 | # | ||
| 1066 | # Native Language Support | ||
| 1067 | # | ||
| 1068 | CONFIG_NLS=y | ||
| 1069 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1070 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
| 1071 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1072 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1073 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1074 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 1075 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1076 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1077 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1078 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1079 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1080 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1081 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1082 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1083 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1084 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1085 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1086 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1087 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1088 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1089 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1090 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1091 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1092 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1093 | # CONFIG_NLS_ASCII is not set | ||
| 1094 | # CONFIG_NLS_ISO8859_1 is not set | ||
| 1095 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1096 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1097 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1098 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1099 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1100 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1101 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1102 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1103 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1104 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1105 | # CONFIG_NLS_KOI8_R is not set | ||
| 1106 | # CONFIG_NLS_KOI8_U is not set | ||
| 1107 | # CONFIG_NLS_UTF8 is not set | ||
| 1108 | |||
| 1109 | # | ||
| 1110 | # Distributed Lock Manager | ||
| 1111 | # | ||
| 1112 | # CONFIG_DLM is not set | ||
| 1113 | |||
| 1114 | # | ||
| 1115 | # Profiling support | ||
| 1116 | # | ||
| 1117 | # CONFIG_PROFILING is not set | ||
| 1118 | |||
| 1119 | # | ||
| 1120 | # Kernel hacking | ||
| 1121 | # | ||
| 1122 | # CONFIG_PRINTK_TIME is not set | ||
| 1123 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1124 | CONFIG_MAGIC_SYSRQ=y | ||
| 1125 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1126 | # CONFIG_DEBUG_FS is not set | ||
| 1127 | # CONFIG_HEADERS_CHECK is not set | ||
| 1128 | CONFIG_DEBUG_KERNEL=y | ||
| 1129 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1130 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1131 | CONFIG_SCHED_DEBUG=y | ||
| 1132 | # CONFIG_SCHEDSTATS is not set | ||
| 1133 | # CONFIG_TIMER_STATS is not set | ||
| 1134 | # CONFIG_DEBUG_SLAB is not set | ||
| 1135 | CONFIG_DEBUG_PREEMPT=y | ||
| 1136 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1137 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1138 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1139 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1140 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1141 | # CONFIG_PROVE_LOCKING is not set | ||
| 1142 | # CONFIG_LOCK_STAT is not set | ||
| 1143 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1144 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1145 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1146 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1147 | # CONFIG_DEBUG_INFO is not set | ||
| 1148 | # CONFIG_DEBUG_VM is not set | ||
| 1149 | # CONFIG_DEBUG_LIST is not set | ||
| 1150 | CONFIG_FRAME_POINTER=y | ||
| 1151 | CONFIG_FORCED_INLINING=y | ||
| 1152 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1153 | # CONFIG_FAULT_INJECTION is not set | ||
| 1154 | # CONFIG_DEBUG_USER is not set | ||
| 1155 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1156 | # CONFIG_DEBUG_LL is not set | ||
| 1157 | |||
| 1158 | # | ||
| 1159 | # Security options | ||
| 1160 | # | ||
| 1161 | # CONFIG_KEYS is not set | ||
| 1162 | # CONFIG_SECURITY is not set | ||
| 1163 | # CONFIG_CRYPTO is not set | ||
| 1164 | |||
| 1165 | # | ||
| 1166 | # Library routines | ||
| 1167 | # | ||
| 1168 | CONFIG_BITREVERSE=y | ||
| 1169 | # CONFIG_CRC_CCITT is not set | ||
| 1170 | # CONFIG_CRC16 is not set | ||
| 1171 | # CONFIG_CRC_ITU_T is not set | ||
| 1172 | CONFIG_CRC32=y | ||
| 1173 | # CONFIG_CRC7 is not set | ||
| 1174 | # CONFIG_LIBCRC32C is not set | ||
| 1175 | CONFIG_PLIST=y | ||
| 1176 | CONFIG_HAS_IOMEM=y | ||
| 1177 | CONFIG_HAS_IOPORT=y | ||
| 1178 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_generic_1710_defconfig b/arch/arm/configs/omap_generic_1710_defconfig new file mode 100644 index 000000000000..0a00a708a4fc --- /dev/null +++ b/arch/arm/configs/omap_generic_1710_defconfig | |||
| @@ -0,0 +1,1088 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 13:02:08 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | CONFIG_LOCALVERSION="" | ||
| 35 | CONFIG_LOCALVERSION_AUTO=y | ||
| 36 | CONFIG_SWAP=y | ||
| 37 | CONFIG_SYSVIPC=y | ||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 39 | # CONFIG_POSIX_MQUEUE is not set | ||
| 40 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 41 | # CONFIG_TASKSTATS is not set | ||
| 42 | # CONFIG_USER_NS is not set | ||
| 43 | # CONFIG_AUDIT is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | ||
| 45 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 46 | CONFIG_SYSFS_DEPRECATED=y | ||
| 47 | # CONFIG_RELAY is not set | ||
| 48 | CONFIG_BLK_DEV_INITRD=y | ||
| 49 | CONFIG_INITRAMFS_SOURCE="" | ||
| 50 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 51 | CONFIG_SYSCTL=y | ||
| 52 | # CONFIG_EMBEDDED is not set | ||
| 53 | CONFIG_UID16=y | ||
| 54 | CONFIG_SYSCTL_SYSCALL=y | ||
| 55 | CONFIG_KALLSYMS=y | ||
| 56 | # CONFIG_KALLSYMS_ALL is not set | ||
| 57 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 58 | CONFIG_HOTPLUG=y | ||
| 59 | CONFIG_PRINTK=y | ||
| 60 | CONFIG_BUG=y | ||
| 61 | CONFIG_ELF_CORE=y | ||
| 62 | CONFIG_BASE_FULL=y | ||
| 63 | CONFIG_FUTEX=y | ||
| 64 | CONFIG_ANON_INODES=y | ||
| 65 | CONFIG_EPOLL=y | ||
| 66 | CONFIG_SIGNALFD=y | ||
| 67 | CONFIG_TIMERFD=y | ||
| 68 | CONFIG_EVENTFD=y | ||
| 69 | CONFIG_SHMEM=y | ||
| 70 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 71 | CONFIG_SLUB_DEBUG=y | ||
| 72 | # CONFIG_SLAB is not set | ||
| 73 | CONFIG_SLUB=y | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | # CONFIG_MODULES is not set | ||
| 79 | CONFIG_BLOCK=y | ||
| 80 | # CONFIG_LBD is not set | ||
| 81 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 82 | # CONFIG_LSF is not set | ||
| 83 | # CONFIG_BLK_DEV_BSG is not set | ||
| 84 | |||
| 85 | # | ||
| 86 | # IO Schedulers | ||
| 87 | # | ||
| 88 | CONFIG_IOSCHED_NOOP=y | ||
| 89 | CONFIG_IOSCHED_AS=y | ||
| 90 | CONFIG_IOSCHED_DEADLINE=y | ||
| 91 | CONFIG_IOSCHED_CFQ=y | ||
| 92 | # CONFIG_DEFAULT_AS is not set | ||
| 93 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 94 | CONFIG_DEFAULT_CFQ=y | ||
| 95 | # CONFIG_DEFAULT_NOOP is not set | ||
| 96 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 97 | |||
| 98 | # | ||
| 99 | # System Type | ||
| 100 | # | ||
| 101 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 102 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 103 | # CONFIG_ARCH_REALVIEW is not set | ||
| 104 | # CONFIG_ARCH_VERSATILE is not set | ||
| 105 | # CONFIG_ARCH_AT91 is not set | ||
| 106 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 107 | # CONFIG_ARCH_CLPS711X is not set | ||
| 108 | # CONFIG_ARCH_CO285 is not set | ||
| 109 | # CONFIG_ARCH_EBSA110 is not set | ||
| 110 | # CONFIG_ARCH_EP93XX is not set | ||
| 111 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 112 | # CONFIG_ARCH_NETX is not set | ||
| 113 | # CONFIG_ARCH_H720X is not set | ||
| 114 | # CONFIG_ARCH_IMX is not set | ||
| 115 | # CONFIG_ARCH_IOP13XX is not set | ||
| 116 | # CONFIG_ARCH_IOP32X is not set | ||
| 117 | # CONFIG_ARCH_IOP33X is not set | ||
| 118 | # CONFIG_ARCH_IXP23XX is not set | ||
| 119 | # CONFIG_ARCH_IXP2000 is not set | ||
| 120 | # CONFIG_ARCH_IXP4XX is not set | ||
| 121 | # CONFIG_ARCH_L7200 is not set | ||
| 122 | # CONFIG_ARCH_KS8695 is not set | ||
| 123 | # CONFIG_ARCH_NS9XXX is not set | ||
| 124 | # CONFIG_ARCH_MXC is not set | ||
| 125 | # CONFIG_ARCH_PNX4008 is not set | ||
| 126 | # CONFIG_ARCH_PXA is not set | ||
| 127 | # CONFIG_ARCH_RPC is not set | ||
| 128 | # CONFIG_ARCH_SA1100 is not set | ||
| 129 | # CONFIG_ARCH_S3C2410 is not set | ||
| 130 | # CONFIG_ARCH_SHARK is not set | ||
| 131 | # CONFIG_ARCH_LH7A40X is not set | ||
| 132 | # CONFIG_ARCH_DAVINCI is not set | ||
| 133 | CONFIG_ARCH_OMAP=y | ||
| 134 | |||
| 135 | # | ||
| 136 | # TI OMAP Implementations | ||
| 137 | # | ||
| 138 | CONFIG_ARCH_OMAP_OTG=y | ||
| 139 | CONFIG_ARCH_OMAP1=y | ||
| 140 | # CONFIG_ARCH_OMAP2 is not set | ||
| 141 | # CONFIG_ARCH_OMAP3 is not set | ||
| 142 | |||
| 143 | # | ||
| 144 | # OMAP Feature Selections | ||
| 145 | # | ||
| 146 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 147 | CONFIG_OMAP_BOOT_TAG=y | ||
| 148 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 149 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 150 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 151 | # CONFIG_OMAP_MUX is not set | ||
| 152 | # CONFIG_OMAP_STI is not set | ||
| 153 | CONFIG_OMAP_MCBSP=y | ||
| 154 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 155 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 156 | CONFIG_OMAP_MPU_TIMER=y | ||
| 157 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 158 | # CONFIG_OMAP_DM_TIMER is not set | ||
| 159 | # CONFIG_OMAP_LL_DEBUG_UART1 is not set | ||
| 160 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 161 | CONFIG_OMAP_LL_DEBUG_UART3=y | ||
| 162 | # CONFIG_OMAP_DSP is not set | ||
| 163 | |||
| 164 | # | ||
| 165 | # OMAP Core Type | ||
| 166 | # | ||
| 167 | # CONFIG_ARCH_OMAP730 is not set | ||
| 168 | # CONFIG_ARCH_OMAP15XX is not set | ||
| 169 | CONFIG_ARCH_OMAP16XX=y | ||
| 170 | |||
| 171 | # | ||
| 172 | # OMAP Board Type | ||
| 173 | # | ||
| 174 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 175 | # CONFIG_MACH_OMAP_H2 is not set | ||
| 176 | # CONFIG_MACH_OMAP_H3 is not set | ||
| 177 | # CONFIG_MACH_OMAP_OSK is not set | ||
| 178 | # CONFIG_MACH_NOKIA770 is not set | ||
| 179 | CONFIG_MACH_OMAP_GENERIC=y | ||
| 180 | |||
| 181 | # | ||
| 182 | # OMAP CPU Speed | ||
| 183 | # | ||
| 184 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 185 | # CONFIG_OMAP_ARM_216MHZ is not set | ||
| 186 | CONFIG_OMAP_ARM_192MHZ=y | ||
| 187 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 188 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 189 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 190 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 191 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 192 | |||
| 193 | # | ||
| 194 | # Boot options | ||
| 195 | # | ||
| 196 | |||
| 197 | # | ||
| 198 | # Power management | ||
| 199 | # | ||
| 200 | |||
| 201 | # | ||
| 202 | # Processor Type | ||
| 203 | # | ||
| 204 | CONFIG_CPU_32=y | ||
| 205 | CONFIG_CPU_ARM926T=y | ||
| 206 | CONFIG_CPU_32v5=y | ||
| 207 | CONFIG_CPU_ABRT_EV5TJ=y | ||
| 208 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 209 | CONFIG_CPU_CACHE_VIVT=y | ||
| 210 | CONFIG_CPU_COPY_V4WB=y | ||
| 211 | CONFIG_CPU_TLB_V4WBI=y | ||
| 212 | CONFIG_CPU_CP15=y | ||
| 213 | CONFIG_CPU_CP15_MMU=y | ||
| 214 | |||
| 215 | # | ||
| 216 | # Processor Features | ||
| 217 | # | ||
| 218 | # CONFIG_ARM_THUMB is not set | ||
| 219 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 220 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 221 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 222 | # CONFIG_CPU_CACHE_ROUND_ROBIN is not set | ||
| 223 | # CONFIG_OUTER_CACHE is not set | ||
| 224 | |||
| 225 | # | ||
| 226 | # Bus support | ||
| 227 | # | ||
| 228 | # CONFIG_PCI_SYSCALL is not set | ||
| 229 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 230 | |||
| 231 | # | ||
| 232 | # PCCARD (PCMCIA/CardBus) support | ||
| 233 | # | ||
| 234 | # CONFIG_PCCARD is not set | ||
| 235 | |||
| 236 | # | ||
| 237 | # Kernel Features | ||
| 238 | # | ||
| 239 | # CONFIG_TICK_ONESHOT is not set | ||
| 240 | # CONFIG_NO_HZ is not set | ||
| 241 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 242 | # CONFIG_PREEMPT is not set | ||
| 243 | CONFIG_HZ=100 | ||
| 244 | # CONFIG_AEABI is not set | ||
| 245 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 246 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 247 | CONFIG_FLATMEM_MANUAL=y | ||
| 248 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 249 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 250 | CONFIG_FLATMEM=y | ||
| 251 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 252 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 253 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 254 | # CONFIG_RESOURCES_64BIT is not set | ||
| 255 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 256 | CONFIG_BOUNCE=y | ||
| 257 | CONFIG_VIRT_TO_BUS=y | ||
| 258 | # CONFIG_LEDS is not set | ||
| 259 | CONFIG_ALIGNMENT_TRAP=y | ||
| 260 | |||
| 261 | # | ||
| 262 | # Boot options | ||
| 263 | # | ||
| 264 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 265 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 266 | CONFIG_CMDLINE="mem=64M console=tty0 console=ttyS2,115200 root=0801" | ||
| 267 | # CONFIG_XIP_KERNEL is not set | ||
| 268 | # CONFIG_KEXEC is not set | ||
| 269 | |||
| 270 | # | ||
| 271 | # CPU Frequency scaling | ||
| 272 | # | ||
| 273 | # CONFIG_CPU_FREQ is not set | ||
| 274 | |||
| 275 | # | ||
| 276 | # Floating point emulation | ||
| 277 | # | ||
| 278 | |||
| 279 | # | ||
| 280 | # At least one emulation must be selected | ||
| 281 | # | ||
| 282 | CONFIG_FPE_NWFPE=y | ||
| 283 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 284 | # CONFIG_FPE_FASTFPE is not set | ||
| 285 | # CONFIG_VFP is not set | ||
| 286 | |||
| 287 | # | ||
| 288 | # Userspace binary formats | ||
| 289 | # | ||
| 290 | CONFIG_BINFMT_ELF=y | ||
| 291 | # CONFIG_BINFMT_AOUT is not set | ||
| 292 | # CONFIG_BINFMT_MISC is not set | ||
| 293 | CONFIG_ARTHUR=y | ||
| 294 | |||
| 295 | # | ||
| 296 | # Power management options | ||
| 297 | # | ||
| 298 | CONFIG_PM=y | ||
| 299 | # CONFIG_PM_LEGACY is not set | ||
| 300 | # CONFIG_PM_DEBUG is not set | ||
| 301 | CONFIG_PM_SLEEP=y | ||
| 302 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 303 | CONFIG_SUSPEND=y | ||
| 304 | # CONFIG_APM_EMULATION is not set | ||
| 305 | |||
| 306 | # | ||
| 307 | # Networking | ||
| 308 | # | ||
| 309 | CONFIG_NET=y | ||
| 310 | |||
| 311 | # | ||
| 312 | # Networking options | ||
| 313 | # | ||
| 314 | CONFIG_PACKET=y | ||
| 315 | # CONFIG_PACKET_MMAP is not set | ||
| 316 | CONFIG_UNIX=y | ||
| 317 | CONFIG_XFRM=y | ||
| 318 | # CONFIG_XFRM_USER is not set | ||
| 319 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 320 | # CONFIG_XFRM_MIGRATE is not set | ||
| 321 | # CONFIG_NET_KEY is not set | ||
| 322 | CONFIG_INET=y | ||
| 323 | CONFIG_IP_MULTICAST=y | ||
| 324 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 325 | CONFIG_IP_FIB_HASH=y | ||
| 326 | CONFIG_IP_PNP=y | ||
| 327 | CONFIG_IP_PNP_DHCP=y | ||
| 328 | CONFIG_IP_PNP_BOOTP=y | ||
| 329 | # CONFIG_IP_PNP_RARP is not set | ||
| 330 | # CONFIG_NET_IPIP is not set | ||
| 331 | # CONFIG_NET_IPGRE is not set | ||
| 332 | # CONFIG_IP_MROUTE is not set | ||
| 333 | # CONFIG_ARPD is not set | ||
| 334 | # CONFIG_SYN_COOKIES is not set | ||
| 335 | # CONFIG_INET_AH is not set | ||
| 336 | # CONFIG_INET_ESP is not set | ||
| 337 | # CONFIG_INET_IPCOMP is not set | ||
| 338 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 339 | # CONFIG_INET_TUNNEL is not set | ||
| 340 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 341 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 342 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 343 | CONFIG_INET_DIAG=y | ||
| 344 | CONFIG_INET_TCP_DIAG=y | ||
| 345 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 346 | CONFIG_TCP_CONG_CUBIC=y | ||
| 347 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 348 | # CONFIG_TCP_MD5SIG is not set | ||
| 349 | # CONFIG_IPV6 is not set | ||
| 350 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 351 | # CONFIG_INET6_TUNNEL is not set | ||
| 352 | # CONFIG_NETLABEL is not set | ||
| 353 | # CONFIG_NETWORK_SECMARK is not set | ||
| 354 | # CONFIG_NETFILTER is not set | ||
| 355 | # CONFIG_IP_DCCP is not set | ||
| 356 | # CONFIG_IP_SCTP is not set | ||
| 357 | # CONFIG_TIPC is not set | ||
| 358 | # CONFIG_ATM is not set | ||
| 359 | # CONFIG_BRIDGE is not set | ||
| 360 | # CONFIG_VLAN_8021Q is not set | ||
| 361 | # CONFIG_DECNET is not set | ||
| 362 | # CONFIG_LLC2 is not set | ||
| 363 | # CONFIG_IPX is not set | ||
| 364 | # CONFIG_ATALK is not set | ||
| 365 | # CONFIG_X25 is not set | ||
| 366 | # CONFIG_LAPB is not set | ||
| 367 | # CONFIG_ECONET is not set | ||
| 368 | # CONFIG_WAN_ROUTER is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # QoS and/or fair queueing | ||
| 372 | # | ||
| 373 | # CONFIG_NET_SCHED is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # Network testing | ||
| 377 | # | ||
| 378 | # CONFIG_NET_PKTGEN is not set | ||
| 379 | # CONFIG_HAMRADIO is not set | ||
| 380 | # CONFIG_IRDA is not set | ||
| 381 | # CONFIG_BT is not set | ||
| 382 | # CONFIG_AF_RXRPC is not set | ||
| 383 | |||
| 384 | # | ||
| 385 | # Wireless | ||
| 386 | # | ||
| 387 | # CONFIG_CFG80211 is not set | ||
| 388 | # CONFIG_WIRELESS_EXT is not set | ||
| 389 | # CONFIG_MAC80211 is not set | ||
| 390 | # CONFIG_IEEE80211 is not set | ||
| 391 | # CONFIG_RFKILL is not set | ||
| 392 | # CONFIG_NET_9P is not set | ||
| 393 | |||
| 394 | # | ||
| 395 | # Device Drivers | ||
| 396 | # | ||
| 397 | |||
| 398 | # | ||
| 399 | # Generic Driver Options | ||
| 400 | # | ||
| 401 | CONFIG_STANDALONE=y | ||
| 402 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 403 | # CONFIG_FW_LOADER is not set | ||
| 404 | # CONFIG_DEBUG_DRIVER is not set | ||
| 405 | # CONFIG_DEBUG_DEVRES is not set | ||
| 406 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 407 | # CONFIG_CONNECTOR is not set | ||
| 408 | # CONFIG_MTD is not set | ||
| 409 | # CONFIG_PARPORT is not set | ||
| 410 | CONFIG_BLK_DEV=y | ||
| 411 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 412 | CONFIG_BLK_DEV_LOOP=y | ||
| 413 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 414 | # CONFIG_BLK_DEV_NBD is not set | ||
| 415 | # CONFIG_BLK_DEV_UB is not set | ||
| 416 | CONFIG_BLK_DEV_RAM=y | ||
| 417 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 418 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 419 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 420 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 421 | # CONFIG_ATA_OVER_ETH is not set | ||
| 422 | |||
| 423 | # | ||
| 424 | # SCSI device support | ||
| 425 | # | ||
| 426 | # CONFIG_RAID_ATTRS is not set | ||
| 427 | CONFIG_SCSI=y | ||
| 428 | CONFIG_SCSI_DMA=y | ||
| 429 | # CONFIG_SCSI_TGT is not set | ||
| 430 | # CONFIG_SCSI_NETLINK is not set | ||
| 431 | CONFIG_SCSI_PROC_FS=y | ||
| 432 | |||
| 433 | # | ||
| 434 | # SCSI support type (disk, tape, CD-ROM) | ||
| 435 | # | ||
| 436 | CONFIG_BLK_DEV_SD=y | ||
| 437 | # CONFIG_CHR_DEV_ST is not set | ||
| 438 | # CONFIG_CHR_DEV_OSST is not set | ||
| 439 | # CONFIG_BLK_DEV_SR is not set | ||
| 440 | # CONFIG_CHR_DEV_SG is not set | ||
| 441 | # CONFIG_CHR_DEV_SCH is not set | ||
| 442 | |||
| 443 | # | ||
| 444 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 445 | # | ||
| 446 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 447 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 448 | # CONFIG_SCSI_LOGGING is not set | ||
| 449 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 450 | |||
| 451 | # | ||
| 452 | # SCSI Transports | ||
| 453 | # | ||
| 454 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 455 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 456 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 457 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 458 | CONFIG_SCSI_LOWLEVEL=y | ||
| 459 | # CONFIG_ISCSI_TCP is not set | ||
| 460 | # CONFIG_SCSI_DEBUG is not set | ||
| 461 | # CONFIG_ATA is not set | ||
| 462 | # CONFIG_MD is not set | ||
| 463 | CONFIG_NETDEVICES=y | ||
| 464 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 465 | # CONFIG_DUMMY is not set | ||
| 466 | # CONFIG_BONDING is not set | ||
| 467 | # CONFIG_MACVLAN is not set | ||
| 468 | # CONFIG_EQUALIZER is not set | ||
| 469 | # CONFIG_TUN is not set | ||
| 470 | # CONFIG_PHYLIB is not set | ||
| 471 | CONFIG_NET_ETHERNET=y | ||
| 472 | CONFIG_MII=y | ||
| 473 | # CONFIG_AX88796 is not set | ||
| 474 | # CONFIG_SMC91X is not set | ||
| 475 | # CONFIG_DM9000 is not set | ||
| 476 | CONFIG_NETDEV_1000=y | ||
| 477 | CONFIG_NETDEV_10000=y | ||
| 478 | |||
| 479 | # | ||
| 480 | # Wireless LAN | ||
| 481 | # | ||
| 482 | # CONFIG_WLAN_PRE80211 is not set | ||
| 483 | # CONFIG_WLAN_80211 is not set | ||
| 484 | |||
| 485 | # | ||
| 486 | # USB Network Adapters | ||
| 487 | # | ||
| 488 | # CONFIG_USB_CATC is not set | ||
| 489 | # CONFIG_USB_KAWETH is not set | ||
| 490 | # CONFIG_USB_PEGASUS is not set | ||
| 491 | # CONFIG_USB_RTL8150 is not set | ||
| 492 | CONFIG_USB_USBNET_MII=y | ||
| 493 | CONFIG_USB_USBNET=y | ||
| 494 | CONFIG_USB_NET_AX8817X=y | ||
| 495 | CONFIG_USB_NET_CDCETHER=y | ||
| 496 | # CONFIG_USB_NET_DM9601 is not set | ||
| 497 | # CONFIG_USB_NET_GL620A is not set | ||
| 498 | CONFIG_USB_NET_NET1080=y | ||
| 499 | # CONFIG_USB_NET_PLUSB is not set | ||
| 500 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 501 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 502 | CONFIG_USB_NET_CDC_SUBSET=y | ||
| 503 | CONFIG_USB_ALI_M5632=y | ||
| 504 | # CONFIG_USB_AN2720 is not set | ||
| 505 | # CONFIG_USB_BELKIN is not set | ||
| 506 | # CONFIG_USB_ARMLINUX is not set | ||
| 507 | # CONFIG_USB_EPSON2888 is not set | ||
| 508 | # CONFIG_USB_KC2190 is not set | ||
| 509 | CONFIG_USB_NET_ZAURUS=y | ||
| 510 | # CONFIG_WAN is not set | ||
| 511 | CONFIG_PPP=y | ||
| 512 | # CONFIG_PPP_MULTILINK is not set | ||
| 513 | # CONFIG_PPP_FILTER is not set | ||
| 514 | # CONFIG_PPP_ASYNC is not set | ||
| 515 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 516 | # CONFIG_PPP_DEFLATE is not set | ||
| 517 | # CONFIG_PPP_BSDCOMP is not set | ||
| 518 | # CONFIG_PPP_MPPE is not set | ||
| 519 | # CONFIG_PPPOE is not set | ||
| 520 | # CONFIG_PPPOL2TP is not set | ||
| 521 | # CONFIG_SLIP is not set | ||
| 522 | CONFIG_SLHC=y | ||
| 523 | # CONFIG_SHAPER is not set | ||
| 524 | # CONFIG_NETCONSOLE is not set | ||
| 525 | # CONFIG_NETPOLL is not set | ||
| 526 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 527 | # CONFIG_ISDN is not set | ||
| 528 | |||
| 529 | # | ||
| 530 | # Input device support | ||
| 531 | # | ||
| 532 | CONFIG_INPUT=y | ||
| 533 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 534 | # CONFIG_INPUT_POLLDEV is not set | ||
| 535 | |||
| 536 | # | ||
| 537 | # Userland interfaces | ||
| 538 | # | ||
| 539 | CONFIG_INPUT_MOUSEDEV=y | ||
| 540 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 541 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 542 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 543 | # CONFIG_INPUT_JOYDEV is not set | ||
| 544 | # CONFIG_INPUT_TSDEV is not set | ||
| 545 | CONFIG_INPUT_EVDEV=y | ||
| 546 | # CONFIG_INPUT_EVBUG is not set | ||
| 547 | |||
| 548 | # | ||
| 549 | # Input Device Drivers | ||
| 550 | # | ||
| 551 | CONFIG_INPUT_KEYBOARD=y | ||
| 552 | CONFIG_KEYBOARD_ATKBD=y | ||
| 553 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 554 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 555 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 556 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 557 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 558 | CONFIG_KEYBOARD_OMAP=y | ||
| 559 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 560 | # CONFIG_INPUT_MOUSE is not set | ||
| 561 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 562 | # CONFIG_INPUT_TABLET is not set | ||
| 563 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 564 | # CONFIG_INPUT_MISC is not set | ||
| 565 | |||
| 566 | # | ||
| 567 | # Hardware I/O ports | ||
| 568 | # | ||
| 569 | CONFIG_SERIO=y | ||
| 570 | CONFIG_SERIO_SERPORT=y | ||
| 571 | CONFIG_SERIO_LIBPS2=y | ||
| 572 | # CONFIG_SERIO_RAW is not set | ||
| 573 | # CONFIG_GAMEPORT is not set | ||
| 574 | |||
| 575 | # | ||
| 576 | # Character devices | ||
| 577 | # | ||
| 578 | CONFIG_VT=y | ||
| 579 | CONFIG_VT_CONSOLE=y | ||
| 580 | CONFIG_HW_CONSOLE=y | ||
| 581 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 582 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 583 | |||
| 584 | # | ||
| 585 | # Serial drivers | ||
| 586 | # | ||
| 587 | CONFIG_SERIAL_8250=y | ||
| 588 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 589 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 590 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 591 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 592 | |||
| 593 | # | ||
| 594 | # Non-8250 serial port support | ||
| 595 | # | ||
| 596 | CONFIG_SERIAL_CORE=y | ||
| 597 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 598 | CONFIG_UNIX98_PTYS=y | ||
| 599 | CONFIG_LEGACY_PTYS=y | ||
| 600 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 601 | # CONFIG_IPMI_HANDLER is not set | ||
| 602 | # CONFIG_WATCHDOG is not set | ||
| 603 | CONFIG_HW_RANDOM=y | ||
| 604 | CONFIG_HW_RANDOM_OMAP=y | ||
| 605 | # CONFIG_NVRAM is not set | ||
| 606 | # CONFIG_R3964 is not set | ||
| 607 | # CONFIG_RAW_DRIVER is not set | ||
| 608 | # CONFIG_TCG_TPM is not set | ||
| 609 | # CONFIG_I2C is not set | ||
| 610 | |||
| 611 | # | ||
| 612 | # SPI support | ||
| 613 | # | ||
| 614 | # CONFIG_SPI is not set | ||
| 615 | # CONFIG_SPI_MASTER is not set | ||
| 616 | # CONFIG_W1 is not set | ||
| 617 | CONFIG_HWMON=y | ||
| 618 | # CONFIG_HWMON_VID is not set | ||
| 619 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 620 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 621 | # CONFIG_SENSORS_F71805F is not set | ||
| 622 | # CONFIG_SENSORS_IT87 is not set | ||
| 623 | # CONFIG_SENSORS_PC87360 is not set | ||
| 624 | # CONFIG_SENSORS_PC87427 is not set | ||
| 625 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 626 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 627 | # CONFIG_SENSORS_VT1211 is not set | ||
| 628 | # CONFIG_SENSORS_W83627HF is not set | ||
| 629 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 630 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 631 | CONFIG_MISC_DEVICES=y | ||
| 632 | # CONFIG_EEPROM_93CX6 is not set | ||
| 633 | |||
| 634 | # | ||
| 635 | # Multifunction device drivers | ||
| 636 | # | ||
| 637 | # CONFIG_MFD_SM501 is not set | ||
| 638 | # CONFIG_NEW_LEDS is not set | ||
| 639 | |||
| 640 | # | ||
| 641 | # Multimedia devices | ||
| 642 | # | ||
| 643 | # CONFIG_VIDEO_DEV is not set | ||
| 644 | # CONFIG_DVB_CORE is not set | ||
| 645 | CONFIG_DAB=y | ||
| 646 | # CONFIG_USB_DABUSB is not set | ||
| 647 | |||
| 648 | # | ||
| 649 | # Graphics support | ||
| 650 | # | ||
| 651 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 652 | |||
| 653 | # | ||
| 654 | # Display device support | ||
| 655 | # | ||
| 656 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 657 | # CONFIG_VGASTATE is not set | ||
| 658 | CONFIG_VIDEO_OUTPUT_CONTROL=y | ||
| 659 | # CONFIG_FB is not set | ||
| 660 | |||
| 661 | # | ||
| 662 | # Console display driver support | ||
| 663 | # | ||
| 664 | # CONFIG_VGA_CONSOLE is not set | ||
| 665 | CONFIG_DUMMY_CONSOLE=y | ||
| 666 | |||
| 667 | # | ||
| 668 | # Sound | ||
| 669 | # | ||
| 670 | # CONFIG_SOUND is not set | ||
| 671 | CONFIG_HID_SUPPORT=y | ||
| 672 | CONFIG_HID=y | ||
| 673 | CONFIG_HID_DEBUG=y | ||
| 674 | |||
| 675 | # | ||
| 676 | # USB Input Devices | ||
| 677 | # | ||
| 678 | CONFIG_USB_HID=y | ||
| 679 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 680 | # CONFIG_HID_FF is not set | ||
| 681 | # CONFIG_USB_HIDDEV is not set | ||
| 682 | CONFIG_USB_SUPPORT=y | ||
| 683 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 684 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 685 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 686 | CONFIG_USB=y | ||
| 687 | CONFIG_USB_DEBUG=y | ||
| 688 | |||
| 689 | # | ||
| 690 | # Miscellaneous USB options | ||
| 691 | # | ||
| 692 | CONFIG_USB_DEVICEFS=y | ||
| 693 | CONFIG_USB_DEVICE_CLASS=y | ||
| 694 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 695 | # CONFIG_USB_SUSPEND is not set | ||
| 696 | # CONFIG_USB_PERSIST is not set | ||
| 697 | # CONFIG_USB_OTG is not set | ||
| 698 | |||
| 699 | # | ||
| 700 | # USB Host Controller Drivers | ||
| 701 | # | ||
| 702 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 703 | CONFIG_USB_OHCI_HCD=y | ||
| 704 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 705 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 706 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 707 | # CONFIG_USB_SL811_HCD is not set | ||
| 708 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 709 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 710 | |||
| 711 | # | ||
| 712 | # USB Device Class drivers | ||
| 713 | # | ||
| 714 | # CONFIG_USB_ACM is not set | ||
| 715 | # CONFIG_USB_PRINTER is not set | ||
| 716 | |||
| 717 | # | ||
| 718 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 719 | # | ||
| 720 | |||
| 721 | # | ||
| 722 | # may also be needed; see USB_STORAGE Help for more information | ||
| 723 | # | ||
| 724 | CONFIG_USB_STORAGE=y | ||
| 725 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 726 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 727 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 728 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 729 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 730 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 731 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 732 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 733 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 734 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 735 | # CONFIG_USB_LIBUSUAL is not set | ||
| 736 | |||
| 737 | # | ||
| 738 | # USB Imaging devices | ||
| 739 | # | ||
| 740 | # CONFIG_USB_MDC800 is not set | ||
| 741 | # CONFIG_USB_MICROTEK is not set | ||
| 742 | CONFIG_USB_MON=y | ||
| 743 | |||
| 744 | # | ||
| 745 | # USB port drivers | ||
| 746 | # | ||
| 747 | |||
| 748 | # | ||
| 749 | # USB Serial Converter support | ||
| 750 | # | ||
| 751 | # CONFIG_USB_SERIAL is not set | ||
| 752 | |||
| 753 | # | ||
| 754 | # USB Miscellaneous drivers | ||
| 755 | # | ||
| 756 | # CONFIG_USB_EMI62 is not set | ||
| 757 | # CONFIG_USB_EMI26 is not set | ||
| 758 | # CONFIG_USB_ADUTUX is not set | ||
| 759 | # CONFIG_USB_AUERSWALD is not set | ||
| 760 | # CONFIG_USB_RIO500 is not set | ||
| 761 | # CONFIG_USB_LEGOTOWER is not set | ||
| 762 | # CONFIG_USB_LCD is not set | ||
| 763 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 764 | # CONFIG_USB_LED is not set | ||
| 765 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 766 | # CONFIG_USB_CYTHERM is not set | ||
| 767 | # CONFIG_USB_PHIDGET is not set | ||
| 768 | # CONFIG_USB_IDMOUSE is not set | ||
| 769 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 770 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 771 | # CONFIG_USB_LD is not set | ||
| 772 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 773 | # CONFIG_USB_IOWARRIOR is not set | ||
| 774 | # CONFIG_USB_TEST is not set | ||
| 775 | |||
| 776 | # | ||
| 777 | # USB DSL modem support | ||
| 778 | # | ||
| 779 | |||
| 780 | # | ||
| 781 | # USB Gadget Support | ||
| 782 | # | ||
| 783 | # CONFIG_USB_GADGET is not set | ||
| 784 | CONFIG_MMC=y | ||
| 785 | # CONFIG_MMC_DEBUG is not set | ||
| 786 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 787 | |||
| 788 | # | ||
| 789 | # MMC/SD Card Drivers | ||
| 790 | # | ||
| 791 | CONFIG_MMC_BLOCK=y | ||
| 792 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 793 | |||
| 794 | # | ||
| 795 | # MMC/SD Host Controller Drivers | ||
| 796 | # | ||
| 797 | CONFIG_MMC_OMAP=y | ||
| 798 | CONFIG_RTC_LIB=y | ||
| 799 | # CONFIG_RTC_CLASS is not set | ||
| 800 | |||
| 801 | # | ||
| 802 | # DMA Engine support | ||
| 803 | # | ||
| 804 | # CONFIG_DMA_ENGINE is not set | ||
| 805 | |||
| 806 | # | ||
| 807 | # DMA Clients | ||
| 808 | # | ||
| 809 | |||
| 810 | # | ||
| 811 | # DMA Devices | ||
| 812 | # | ||
| 813 | |||
| 814 | # | ||
| 815 | # CBUS support | ||
| 816 | # | ||
| 817 | # CONFIG_CBUS is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # File systems | ||
| 821 | # | ||
| 822 | CONFIG_EXT2_FS=y | ||
| 823 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 824 | # CONFIG_EXT2_FS_XIP is not set | ||
| 825 | CONFIG_EXT3_FS=y | ||
| 826 | CONFIG_EXT3_FS_XATTR=y | ||
| 827 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 828 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 829 | # CONFIG_EXT4DEV_FS is not set | ||
| 830 | CONFIG_JBD=y | ||
| 831 | # CONFIG_JBD_DEBUG is not set | ||
| 832 | CONFIG_FS_MBCACHE=y | ||
| 833 | # CONFIG_REISERFS_FS is not set | ||
| 834 | # CONFIG_JFS_FS is not set | ||
| 835 | # CONFIG_FS_POSIX_ACL is not set | ||
| 836 | # CONFIG_XFS_FS is not set | ||
| 837 | # CONFIG_GFS2_FS is not set | ||
| 838 | # CONFIG_OCFS2_FS is not set | ||
| 839 | # CONFIG_MINIX_FS is not set | ||
| 840 | # CONFIG_ROMFS_FS is not set | ||
| 841 | CONFIG_INOTIFY=y | ||
| 842 | CONFIG_INOTIFY_USER=y | ||
| 843 | # CONFIG_QUOTA is not set | ||
| 844 | CONFIG_DNOTIFY=y | ||
| 845 | # CONFIG_AUTOFS_FS is not set | ||
| 846 | # CONFIG_AUTOFS4_FS is not set | ||
| 847 | # CONFIG_FUSE_FS is not set | ||
| 848 | |||
| 849 | # | ||
| 850 | # CD-ROM/DVD Filesystems | ||
| 851 | # | ||
| 852 | # CONFIG_ISO9660_FS is not set | ||
| 853 | # CONFIG_UDF_FS is not set | ||
| 854 | |||
| 855 | # | ||
| 856 | # DOS/FAT/NT Filesystems | ||
| 857 | # | ||
| 858 | # CONFIG_MSDOS_FS is not set | ||
| 859 | # CONFIG_VFAT_FS is not set | ||
| 860 | # CONFIG_NTFS_FS is not set | ||
| 861 | |||
| 862 | # | ||
| 863 | # Pseudo filesystems | ||
| 864 | # | ||
| 865 | CONFIG_PROC_FS=y | ||
| 866 | CONFIG_PROC_SYSCTL=y | ||
| 867 | CONFIG_SYSFS=y | ||
| 868 | CONFIG_TMPFS=y | ||
| 869 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 870 | # CONFIG_HUGETLB_PAGE is not set | ||
| 871 | CONFIG_RAMFS=y | ||
| 872 | # CONFIG_CONFIGFS_FS is not set | ||
| 873 | |||
| 874 | # | ||
| 875 | # Miscellaneous filesystems | ||
| 876 | # | ||
| 877 | # CONFIG_ADFS_FS is not set | ||
| 878 | # CONFIG_AFFS_FS is not set | ||
| 879 | # CONFIG_HFS_FS is not set | ||
| 880 | # CONFIG_HFSPLUS_FS is not set | ||
| 881 | # CONFIG_BEFS_FS is not set | ||
| 882 | # CONFIG_BFS_FS is not set | ||
| 883 | # CONFIG_EFS_FS is not set | ||
| 884 | # CONFIG_CRAMFS is not set | ||
| 885 | # CONFIG_VXFS_FS is not set | ||
| 886 | # CONFIG_HPFS_FS is not set | ||
| 887 | # CONFIG_QNX4FS_FS is not set | ||
| 888 | # CONFIG_SYSV_FS is not set | ||
| 889 | # CONFIG_UFS_FS is not set | ||
| 890 | |||
| 891 | # | ||
| 892 | # Network File Systems | ||
| 893 | # | ||
| 894 | CONFIG_NFS_FS=y | ||
| 895 | CONFIG_NFS_V3=y | ||
| 896 | # CONFIG_NFS_V3_ACL is not set | ||
| 897 | CONFIG_NFS_V4=y | ||
| 898 | # CONFIG_NFS_DIRECTIO is not set | ||
| 899 | # CONFIG_NFSD is not set | ||
| 900 | # CONFIG_ROOT_NFS is not set | ||
| 901 | CONFIG_LOCKD=y | ||
| 902 | CONFIG_LOCKD_V4=y | ||
| 903 | CONFIG_NFS_COMMON=y | ||
| 904 | CONFIG_SUNRPC=y | ||
| 905 | CONFIG_SUNRPC_GSS=y | ||
| 906 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 907 | CONFIG_RPCSEC_GSS_KRB5=y | ||
| 908 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 909 | # CONFIG_SMB_FS is not set | ||
| 910 | # CONFIG_CIFS is not set | ||
| 911 | # CONFIG_NCP_FS is not set | ||
| 912 | # CONFIG_CODA_FS is not set | ||
| 913 | # CONFIG_AFS_FS is not set | ||
| 914 | |||
| 915 | # | ||
| 916 | # Partition Types | ||
| 917 | # | ||
| 918 | CONFIG_PARTITION_ADVANCED=y | ||
| 919 | # CONFIG_ACORN_PARTITION is not set | ||
| 920 | # CONFIG_OSF_PARTITION is not set | ||
| 921 | # CONFIG_AMIGA_PARTITION is not set | ||
| 922 | # CONFIG_ATARI_PARTITION is not set | ||
| 923 | # CONFIG_MAC_PARTITION is not set | ||
| 924 | CONFIG_MSDOS_PARTITION=y | ||
| 925 | # CONFIG_BSD_DISKLABEL is not set | ||
| 926 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 927 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 928 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 929 | # CONFIG_LDM_PARTITION is not set | ||
| 930 | # CONFIG_SGI_PARTITION is not set | ||
| 931 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 932 | # CONFIG_SUN_PARTITION is not set | ||
| 933 | # CONFIG_KARMA_PARTITION is not set | ||
| 934 | # CONFIG_EFI_PARTITION is not set | ||
| 935 | # CONFIG_SYSV68_PARTITION is not set | ||
| 936 | |||
| 937 | # | ||
| 938 | # Native Language Support | ||
| 939 | # | ||
| 940 | CONFIG_NLS=y | ||
| 941 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 942 | CONFIG_NLS_CODEPAGE_437=y | ||
| 943 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 944 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 945 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 946 | CONFIG_NLS_CODEPAGE_852=y | ||
| 947 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 948 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 949 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 950 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 951 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 952 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 953 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 954 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 955 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 956 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 957 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 958 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 959 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 960 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 961 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 962 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 963 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 964 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 965 | # CONFIG_NLS_ASCII is not set | ||
| 966 | CONFIG_NLS_ISO8859_1=y | ||
| 967 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 968 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 969 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 970 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 971 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 972 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 973 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 974 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 975 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 976 | CONFIG_NLS_ISO8859_15=y | ||
| 977 | # CONFIG_NLS_KOI8_R is not set | ||
| 978 | # CONFIG_NLS_KOI8_U is not set | ||
| 979 | # CONFIG_NLS_UTF8 is not set | ||
| 980 | |||
| 981 | # | ||
| 982 | # Distributed Lock Manager | ||
| 983 | # | ||
| 984 | # CONFIG_DLM is not set | ||
| 985 | |||
| 986 | # | ||
| 987 | # Profiling support | ||
| 988 | # | ||
| 989 | # CONFIG_PROFILING is not set | ||
| 990 | |||
| 991 | # | ||
| 992 | # Kernel hacking | ||
| 993 | # | ||
| 994 | # CONFIG_PRINTK_TIME is not set | ||
| 995 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 996 | CONFIG_MAGIC_SYSRQ=y | ||
| 997 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 998 | # CONFIG_DEBUG_FS is not set | ||
| 999 | # CONFIG_HEADERS_CHECK is not set | ||
| 1000 | CONFIG_DEBUG_KERNEL=y | ||
| 1001 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1002 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1003 | CONFIG_SCHED_DEBUG=y | ||
| 1004 | # CONFIG_SCHEDSTATS is not set | ||
| 1005 | # CONFIG_TIMER_STATS is not set | ||
| 1006 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 1007 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1008 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1009 | CONFIG_DEBUG_SPINLOCK=y | ||
| 1010 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1011 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1012 | # CONFIG_PROVE_LOCKING is not set | ||
| 1013 | # CONFIG_LOCK_STAT is not set | ||
| 1014 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1015 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1016 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1017 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1018 | # CONFIG_DEBUG_INFO is not set | ||
| 1019 | # CONFIG_DEBUG_VM is not set | ||
| 1020 | # CONFIG_DEBUG_LIST is not set | ||
| 1021 | CONFIG_FRAME_POINTER=y | ||
| 1022 | CONFIG_FORCED_INLINING=y | ||
| 1023 | # CONFIG_FAULT_INJECTION is not set | ||
| 1024 | # CONFIG_DEBUG_USER is not set | ||
| 1025 | CONFIG_DEBUG_ERRORS=y | ||
| 1026 | # CONFIG_DEBUG_LL is not set | ||
| 1027 | |||
| 1028 | # | ||
| 1029 | # Security options | ||
| 1030 | # | ||
| 1031 | # CONFIG_KEYS is not set | ||
| 1032 | CONFIG_SECURITY=y | ||
| 1033 | # CONFIG_SECURITY_NETWORK is not set | ||
| 1034 | CONFIG_SECURITY_CAPABILITIES=y | ||
| 1035 | # CONFIG_SECURITY_ROOTPLUG is not set | ||
| 1036 | # CONFIG_SECURITY_LOWMEM is not set | ||
| 1037 | CONFIG_CRYPTO=y | ||
| 1038 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1039 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 1040 | CONFIG_CRYPTO_MANAGER=y | ||
| 1041 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1042 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1043 | # CONFIG_CRYPTO_NULL is not set | ||
| 1044 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1045 | CONFIG_CRYPTO_MD5=y | ||
| 1046 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1047 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1048 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1049 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1050 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1051 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1052 | CONFIG_CRYPTO_ECB=y | ||
| 1053 | CONFIG_CRYPTO_CBC=y | ||
| 1054 | CONFIG_CRYPTO_PCBC=y | ||
| 1055 | # CONFIG_CRYPTO_LRW is not set | ||
| 1056 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1057 | CONFIG_CRYPTO_DES=y | ||
| 1058 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1059 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1060 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1061 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1062 | # CONFIG_CRYPTO_AES is not set | ||
| 1063 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1064 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1065 | # CONFIG_CRYPTO_TEA is not set | ||
| 1066 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1067 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1068 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1069 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1070 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1071 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1072 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1073 | CONFIG_CRYPTO_HW=y | ||
| 1074 | |||
| 1075 | # | ||
| 1076 | # Library routines | ||
| 1077 | # | ||
| 1078 | CONFIG_BITREVERSE=y | ||
| 1079 | # CONFIG_CRC_CCITT is not set | ||
| 1080 | # CONFIG_CRC16 is not set | ||
| 1081 | # CONFIG_CRC_ITU_T is not set | ||
| 1082 | CONFIG_CRC32=y | ||
| 1083 | # CONFIG_CRC7 is not set | ||
| 1084 | # CONFIG_LIBCRC32C is not set | ||
| 1085 | CONFIG_PLIST=y | ||
| 1086 | CONFIG_HAS_IOMEM=y | ||
| 1087 | CONFIG_HAS_IOPORT=y | ||
| 1088 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_generic_2420_defconfig b/arch/arm/configs/omap_generic_2420_defconfig new file mode 100644 index 000000000000..cf4073b47aaa --- /dev/null +++ b/arch/arm/configs/omap_generic_2420_defconfig | |||
| @@ -0,0 +1,655 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:44:48 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | CONFIG_LOCALVERSION="" | ||
| 35 | CONFIG_LOCALVERSION_AUTO=y | ||
| 36 | CONFIG_SWAP=y | ||
| 37 | CONFIG_SYSVIPC=y | ||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 39 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 40 | # CONFIG_USER_NS is not set | ||
| 41 | # CONFIG_IKCONFIG is not set | ||
| 42 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 43 | CONFIG_SYSFS_DEPRECATED=y | ||
| 44 | # CONFIG_RELAY is not set | ||
| 45 | CONFIG_BLK_DEV_INITRD=y | ||
| 46 | CONFIG_INITRAMFS_SOURCE="" | ||
| 47 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 48 | CONFIG_SYSCTL=y | ||
| 49 | # CONFIG_EMBEDDED is not set | ||
| 50 | CONFIG_UID16=y | ||
| 51 | CONFIG_SYSCTL_SYSCALL=y | ||
| 52 | CONFIG_KALLSYMS=y | ||
| 53 | # CONFIG_KALLSYMS_ALL is not set | ||
| 54 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 55 | CONFIG_HOTPLUG=y | ||
| 56 | CONFIG_PRINTK=y | ||
| 57 | CONFIG_BUG=y | ||
| 58 | CONFIG_ELF_CORE=y | ||
| 59 | CONFIG_BASE_FULL=y | ||
| 60 | CONFIG_FUTEX=y | ||
| 61 | CONFIG_ANON_INODES=y | ||
| 62 | CONFIG_EPOLL=y | ||
| 63 | CONFIG_SIGNALFD=y | ||
| 64 | CONFIG_TIMERFD=y | ||
| 65 | CONFIG_EVENTFD=y | ||
| 66 | CONFIG_SHMEM=y | ||
| 67 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 68 | CONFIG_SLUB_DEBUG=y | ||
| 69 | # CONFIG_SLAB is not set | ||
| 70 | CONFIG_SLUB=y | ||
| 71 | # CONFIG_SLOB is not set | ||
| 72 | CONFIG_RT_MUTEXES=y | ||
| 73 | # CONFIG_TINY_SHMEM is not set | ||
| 74 | CONFIG_BASE_SMALL=0 | ||
| 75 | CONFIG_MODULES=y | ||
| 76 | CONFIG_MODULE_UNLOAD=y | ||
| 77 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 78 | # CONFIG_MODVERSIONS is not set | ||
| 79 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 80 | # CONFIG_KMOD is not set | ||
| 81 | CONFIG_BLOCK=y | ||
| 82 | # CONFIG_LBD is not set | ||
| 83 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 84 | # CONFIG_LSF is not set | ||
| 85 | # CONFIG_BLK_DEV_BSG is not set | ||
| 86 | |||
| 87 | # | ||
| 88 | # IO Schedulers | ||
| 89 | # | ||
| 90 | CONFIG_IOSCHED_NOOP=y | ||
| 91 | CONFIG_IOSCHED_AS=y | ||
| 92 | CONFIG_IOSCHED_DEADLINE=y | ||
| 93 | CONFIG_IOSCHED_CFQ=y | ||
| 94 | # CONFIG_DEFAULT_AS is not set | ||
| 95 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 96 | CONFIG_DEFAULT_CFQ=y | ||
| 97 | # CONFIG_DEFAULT_NOOP is not set | ||
| 98 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 99 | |||
| 100 | # | ||
| 101 | # System Type | ||
| 102 | # | ||
| 103 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 104 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 105 | # CONFIG_ARCH_REALVIEW is not set | ||
| 106 | # CONFIG_ARCH_VERSATILE is not set | ||
| 107 | # CONFIG_ARCH_AT91 is not set | ||
| 108 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 109 | # CONFIG_ARCH_CLPS711X is not set | ||
| 110 | # CONFIG_ARCH_CO285 is not set | ||
| 111 | # CONFIG_ARCH_EBSA110 is not set | ||
| 112 | # CONFIG_ARCH_EP93XX is not set | ||
| 113 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 114 | # CONFIG_ARCH_NETX is not set | ||
| 115 | # CONFIG_ARCH_H720X is not set | ||
| 116 | # CONFIG_ARCH_IMX is not set | ||
| 117 | # CONFIG_ARCH_IOP13XX is not set | ||
| 118 | # CONFIG_ARCH_IOP32X is not set | ||
| 119 | # CONFIG_ARCH_IOP33X is not set | ||
| 120 | # CONFIG_ARCH_IXP23XX is not set | ||
| 121 | # CONFIG_ARCH_IXP2000 is not set | ||
| 122 | # CONFIG_ARCH_IXP4XX is not set | ||
| 123 | # CONFIG_ARCH_L7200 is not set | ||
| 124 | # CONFIG_ARCH_KS8695 is not set | ||
| 125 | # CONFIG_ARCH_NS9XXX is not set | ||
| 126 | # CONFIG_ARCH_MXC is not set | ||
| 127 | # CONFIG_ARCH_PNX4008 is not set | ||
| 128 | # CONFIG_ARCH_PXA is not set | ||
| 129 | # CONFIG_ARCH_RPC is not set | ||
| 130 | # CONFIG_ARCH_SA1100 is not set | ||
| 131 | # CONFIG_ARCH_S3C2410 is not set | ||
| 132 | # CONFIG_ARCH_SHARK is not set | ||
| 133 | # CONFIG_ARCH_LH7A40X is not set | ||
| 134 | # CONFIG_ARCH_DAVINCI is not set | ||
| 135 | CONFIG_ARCH_OMAP=y | ||
| 136 | |||
| 137 | # | ||
| 138 | # TI OMAP Implementations | ||
| 139 | # | ||
| 140 | CONFIG_ARCH_OMAP_OTG=y | ||
| 141 | # CONFIG_ARCH_OMAP1 is not set | ||
| 142 | CONFIG_ARCH_OMAP2=y | ||
| 143 | # CONFIG_ARCH_OMAP3 is not set | ||
| 144 | |||
| 145 | # | ||
| 146 | # OMAP Feature Selections | ||
| 147 | # | ||
| 148 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 149 | CONFIG_OMAP_BOOT_TAG=y | ||
| 150 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 151 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 152 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 153 | # CONFIG_OMAP_MUX is not set | ||
| 154 | # CONFIG_OMAP_STI is not set | ||
| 155 | CONFIG_OMAP_MCBSP=y | ||
| 156 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 157 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 158 | CONFIG_OMAP_MPU_TIMER=y | ||
| 159 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 160 | CONFIG_OMAP_DM_TIMER=y | ||
| 161 | # CONFIG_OMAP_LL_DEBUG_UART1 is not set | ||
| 162 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 163 | CONFIG_OMAP_LL_DEBUG_UART3=y | ||
| 164 | # CONFIG_OMAP_DSP is not set | ||
| 165 | CONFIG_MACH_OMAP_GENERIC=y | ||
| 166 | |||
| 167 | # | ||
| 168 | # OMAP Core Type | ||
| 169 | # | ||
| 170 | CONFIG_ARCH_OMAP24XX=y | ||
| 171 | CONFIG_ARCH_OMAP2420=y | ||
| 172 | # CONFIG_ARCH_OMAP2430 is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Board Type | ||
| 176 | # | ||
| 177 | # CONFIG_MACH_NOKIA_N800 is not set | ||
| 178 | # CONFIG_MACH_OMAP_H4 is not set | ||
| 179 | # CONFIG_MACH_OMAP_APOLLON is not set | ||
| 180 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 181 | # CONFIG_MACH_OMAP_2430SDP is not set | ||
| 182 | |||
| 183 | # | ||
| 184 | # Boot options | ||
| 185 | # | ||
| 186 | |||
| 187 | # | ||
| 188 | # Power management | ||
| 189 | # | ||
| 190 | |||
| 191 | # | ||
| 192 | # Processor Type | ||
| 193 | # | ||
| 194 | CONFIG_CPU_32=y | ||
| 195 | CONFIG_CPU_V6=y | ||
| 196 | # CONFIG_CPU_32v6K is not set | ||
| 197 | CONFIG_CPU_32v6=y | ||
| 198 | CONFIG_CPU_ABRT_EV6=y | ||
| 199 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 200 | CONFIG_CPU_CACHE_V6=y | ||
| 201 | CONFIG_CPU_CACHE_VIPT=y | ||
| 202 | CONFIG_CPU_COPY_V6=y | ||
| 203 | CONFIG_CPU_TLB_V6=y | ||
| 204 | CONFIG_CPU_HAS_ASID=y | ||
| 205 | CONFIG_CPU_CP15=y | ||
| 206 | CONFIG_CPU_CP15_MMU=y | ||
| 207 | |||
| 208 | # | ||
| 209 | # Processor Features | ||
| 210 | # | ||
| 211 | CONFIG_ARM_THUMB=y | ||
| 212 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 213 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 214 | # CONFIG_CPU_BPREDICT_DISABLE is not set | ||
| 215 | # CONFIG_OUTER_CACHE is not set | ||
| 216 | |||
| 217 | # | ||
| 218 | # Bus support | ||
| 219 | # | ||
| 220 | # CONFIG_PCI_SYSCALL is not set | ||
| 221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 222 | |||
| 223 | # | ||
| 224 | # PCCARD (PCMCIA/CardBus) support | ||
| 225 | # | ||
| 226 | # CONFIG_PCCARD is not set | ||
| 227 | |||
| 228 | # | ||
| 229 | # Kernel Features | ||
| 230 | # | ||
| 231 | # CONFIG_TICK_ONESHOT is not set | ||
| 232 | # CONFIG_NO_HZ is not set | ||
| 233 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 234 | # CONFIG_PREEMPT is not set | ||
| 235 | CONFIG_HZ=100 | ||
| 236 | # CONFIG_AEABI is not set | ||
| 237 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 238 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 239 | CONFIG_FLATMEM_MANUAL=y | ||
| 240 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 241 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 242 | CONFIG_FLATMEM=y | ||
| 243 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 244 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 246 | # CONFIG_RESOURCES_64BIT is not set | ||
| 247 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 248 | CONFIG_BOUNCE=y | ||
| 249 | CONFIG_VIRT_TO_BUS=y | ||
| 250 | CONFIG_LEDS=y | ||
| 251 | CONFIG_ALIGNMENT_TRAP=y | ||
| 252 | |||
| 253 | # | ||
| 254 | # Boot options | ||
| 255 | # | ||
| 256 | CONFIG_ZBOOT_ROM_TEXT=0x10C08000 | ||
| 257 | CONFIG_ZBOOT_ROM_BSS=0x10200000 | ||
| 258 | # CONFIG_ZBOOT_ROM is not set | ||
| 259 | CONFIG_CMDLINE="" | ||
| 260 | # CONFIG_XIP_KERNEL is not set | ||
| 261 | # CONFIG_KEXEC is not set | ||
| 262 | |||
| 263 | # | ||
| 264 | # CPU Frequency scaling | ||
| 265 | # | ||
| 266 | # CONFIG_CPU_FREQ is not set | ||
| 267 | |||
| 268 | # | ||
| 269 | # Floating point emulation | ||
| 270 | # | ||
| 271 | |||
| 272 | # | ||
| 273 | # At least one emulation must be selected | ||
| 274 | # | ||
| 275 | CONFIG_FPE_NWFPE=y | ||
| 276 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 277 | # CONFIG_FPE_FASTFPE is not set | ||
| 278 | # CONFIG_VFP is not set | ||
| 279 | |||
| 280 | # | ||
| 281 | # Userspace binary formats | ||
| 282 | # | ||
| 283 | CONFIG_BINFMT_ELF=y | ||
| 284 | # CONFIG_BINFMT_AOUT is not set | ||
| 285 | # CONFIG_BINFMT_MISC is not set | ||
| 286 | # CONFIG_ARTHUR is not set | ||
| 287 | |||
| 288 | # | ||
| 289 | # Power management options | ||
| 290 | # | ||
| 291 | # CONFIG_PM is not set | ||
| 292 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 293 | |||
| 294 | # | ||
| 295 | # Networking | ||
| 296 | # | ||
| 297 | # CONFIG_NET is not set | ||
| 298 | |||
| 299 | # | ||
| 300 | # Device Drivers | ||
| 301 | # | ||
| 302 | |||
| 303 | # | ||
| 304 | # Generic Driver Options | ||
| 305 | # | ||
| 306 | CONFIG_STANDALONE=y | ||
| 307 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 308 | CONFIG_FW_LOADER=y | ||
| 309 | # CONFIG_DEBUG_DRIVER is not set | ||
| 310 | # CONFIG_DEBUG_DEVRES is not set | ||
| 311 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 312 | # CONFIG_MTD is not set | ||
| 313 | # CONFIG_PARPORT is not set | ||
| 314 | CONFIG_BLK_DEV=y | ||
| 315 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 316 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 317 | CONFIG_BLK_DEV_RAM=y | ||
| 318 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 319 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
| 320 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 321 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 322 | |||
| 323 | # | ||
| 324 | # SCSI device support | ||
| 325 | # | ||
| 326 | # CONFIG_RAID_ATTRS is not set | ||
| 327 | # CONFIG_SCSI is not set | ||
| 328 | # CONFIG_SCSI_DMA is not set | ||
| 329 | # CONFIG_SCSI_NETLINK is not set | ||
| 330 | # CONFIG_ATA is not set | ||
| 331 | # CONFIG_MD is not set | ||
| 332 | |||
| 333 | # | ||
| 334 | # Input device support | ||
| 335 | # | ||
| 336 | CONFIG_INPUT=y | ||
| 337 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 338 | # CONFIG_INPUT_POLLDEV is not set | ||
| 339 | |||
| 340 | # | ||
| 341 | # Userland interfaces | ||
| 342 | # | ||
| 343 | CONFIG_INPUT_MOUSEDEV=y | ||
| 344 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 345 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 346 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 347 | # CONFIG_INPUT_JOYDEV is not set | ||
| 348 | # CONFIG_INPUT_TSDEV is not set | ||
| 349 | CONFIG_INPUT_EVDEV=y | ||
| 350 | # CONFIG_INPUT_EVBUG is not set | ||
| 351 | |||
| 352 | # | ||
| 353 | # Input Device Drivers | ||
| 354 | # | ||
| 355 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 356 | # CONFIG_INPUT_MOUSE is not set | ||
| 357 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 358 | # CONFIG_INPUT_TABLET is not set | ||
| 359 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 360 | # CONFIG_INPUT_MISC is not set | ||
| 361 | |||
| 362 | # | ||
| 363 | # Hardware I/O ports | ||
| 364 | # | ||
| 365 | CONFIG_SERIO=y | ||
| 366 | CONFIG_SERIO_SERPORT=y | ||
| 367 | # CONFIG_SERIO_RAW is not set | ||
| 368 | # CONFIG_GAMEPORT is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # Character devices | ||
| 372 | # | ||
| 373 | CONFIG_VT=y | ||
| 374 | CONFIG_VT_CONSOLE=y | ||
| 375 | CONFIG_HW_CONSOLE=y | ||
| 376 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 377 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 378 | |||
| 379 | # | ||
| 380 | # Serial drivers | ||
| 381 | # | ||
| 382 | CONFIG_SERIAL_8250=y | ||
| 383 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 384 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 385 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 386 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 387 | |||
| 388 | # | ||
| 389 | # Non-8250 serial port support | ||
| 390 | # | ||
| 391 | CONFIG_SERIAL_CORE=y | ||
| 392 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 393 | CONFIG_UNIX98_PTYS=y | ||
| 394 | # CONFIG_LEGACY_PTYS is not set | ||
| 395 | # CONFIG_IPMI_HANDLER is not set | ||
| 396 | CONFIG_WATCHDOG=y | ||
| 397 | CONFIG_WATCHDOG_NOWAYOUT=y | ||
| 398 | |||
| 399 | # | ||
| 400 | # Watchdog Device Drivers | ||
| 401 | # | ||
| 402 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 403 | # CONFIG_OMAP_WATCHDOG is not set | ||
| 404 | CONFIG_HW_RANDOM=m | ||
| 405 | CONFIG_HW_RANDOM_OMAP=m | ||
| 406 | # CONFIG_NVRAM is not set | ||
| 407 | # CONFIG_R3964 is not set | ||
| 408 | # CONFIG_RAW_DRIVER is not set | ||
| 409 | # CONFIG_TCG_TPM is not set | ||
| 410 | # CONFIG_I2C is not set | ||
| 411 | |||
| 412 | # | ||
| 413 | # SPI support | ||
| 414 | # | ||
| 415 | # CONFIG_SPI is not set | ||
| 416 | # CONFIG_SPI_MASTER is not set | ||
| 417 | # CONFIG_W1 is not set | ||
| 418 | CONFIG_HWMON=y | ||
| 419 | # CONFIG_HWMON_VID is not set | ||
| 420 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 421 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 422 | # CONFIG_SENSORS_F71805F is not set | ||
| 423 | # CONFIG_SENSORS_IT87 is not set | ||
| 424 | # CONFIG_SENSORS_PC87360 is not set | ||
| 425 | # CONFIG_SENSORS_PC87427 is not set | ||
| 426 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 427 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 428 | # CONFIG_SENSORS_VT1211 is not set | ||
| 429 | # CONFIG_SENSORS_W83627HF is not set | ||
| 430 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 431 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 432 | CONFIG_MISC_DEVICES=y | ||
| 433 | # CONFIG_EEPROM_93CX6 is not set | ||
| 434 | |||
| 435 | # | ||
| 436 | # Multifunction device drivers | ||
| 437 | # | ||
| 438 | # CONFIG_MFD_SM501 is not set | ||
| 439 | # CONFIG_NEW_LEDS is not set | ||
| 440 | |||
| 441 | # | ||
| 442 | # Multimedia devices | ||
| 443 | # | ||
| 444 | # CONFIG_VIDEO_DEV is not set | ||
| 445 | CONFIG_DAB=y | ||
| 446 | |||
| 447 | # | ||
| 448 | # Graphics support | ||
| 449 | # | ||
| 450 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 451 | |||
| 452 | # | ||
| 453 | # Display device support | ||
| 454 | # | ||
| 455 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 456 | # CONFIG_VGASTATE is not set | ||
| 457 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 458 | # CONFIG_FB is not set | ||
| 459 | |||
| 460 | # | ||
| 461 | # Console display driver support | ||
| 462 | # | ||
| 463 | # CONFIG_VGA_CONSOLE is not set | ||
| 464 | CONFIG_DUMMY_CONSOLE=y | ||
| 465 | |||
| 466 | # | ||
| 467 | # Sound | ||
| 468 | # | ||
| 469 | # CONFIG_SOUND is not set | ||
| 470 | CONFIG_HID_SUPPORT=y | ||
| 471 | CONFIG_HID=y | ||
| 472 | CONFIG_HID_DEBUG=y | ||
| 473 | CONFIG_USB_SUPPORT=y | ||
| 474 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 475 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 476 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 477 | # CONFIG_USB is not set | ||
| 478 | |||
| 479 | # | ||
| 480 | # Enable Host or Gadget support to see Inventra options | ||
| 481 | # | ||
| 482 | |||
| 483 | # | ||
| 484 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 485 | # | ||
| 486 | |||
| 487 | # | ||
| 488 | # USB Gadget Support | ||
| 489 | # | ||
| 490 | # CONFIG_USB_GADGET is not set | ||
| 491 | # CONFIG_MMC is not set | ||
| 492 | CONFIG_RTC_LIB=y | ||
| 493 | # CONFIG_RTC_CLASS is not set | ||
| 494 | |||
| 495 | # | ||
| 496 | # DMA Engine support | ||
| 497 | # | ||
| 498 | # CONFIG_DMA_ENGINE is not set | ||
| 499 | |||
| 500 | # | ||
| 501 | # DMA Clients | ||
| 502 | # | ||
| 503 | |||
| 504 | # | ||
| 505 | # DMA Devices | ||
| 506 | # | ||
| 507 | |||
| 508 | # | ||
| 509 | # CBUS support | ||
| 510 | # | ||
| 511 | # CONFIG_CBUS is not set | ||
| 512 | |||
| 513 | # | ||
| 514 | # File systems | ||
| 515 | # | ||
| 516 | CONFIG_EXT2_FS=y | ||
| 517 | CONFIG_EXT2_FS_XATTR=y | ||
| 518 | # CONFIG_EXT2_FS_POSIX_ACL is not set | ||
| 519 | # CONFIG_EXT2_FS_SECURITY is not set | ||
| 520 | # CONFIG_EXT2_FS_XIP is not set | ||
| 521 | # CONFIG_EXT3_FS is not set | ||
| 522 | # CONFIG_EXT4DEV_FS is not set | ||
| 523 | CONFIG_FS_MBCACHE=y | ||
| 524 | # CONFIG_REISERFS_FS is not set | ||
| 525 | # CONFIG_JFS_FS is not set | ||
| 526 | # CONFIG_FS_POSIX_ACL is not set | ||
| 527 | # CONFIG_XFS_FS is not set | ||
| 528 | # CONFIG_GFS2_FS is not set | ||
| 529 | # CONFIG_MINIX_FS is not set | ||
| 530 | CONFIG_ROMFS_FS=y | ||
| 531 | CONFIG_INOTIFY=y | ||
| 532 | CONFIG_INOTIFY_USER=y | ||
| 533 | # CONFIG_QUOTA is not set | ||
| 534 | CONFIG_DNOTIFY=y | ||
| 535 | # CONFIG_AUTOFS_FS is not set | ||
| 536 | # CONFIG_AUTOFS4_FS is not set | ||
| 537 | # CONFIG_FUSE_FS is not set | ||
| 538 | |||
| 539 | # | ||
| 540 | # CD-ROM/DVD Filesystems | ||
| 541 | # | ||
| 542 | # CONFIG_ISO9660_FS is not set | ||
| 543 | # CONFIG_UDF_FS is not set | ||
| 544 | |||
| 545 | # | ||
| 546 | # DOS/FAT/NT Filesystems | ||
| 547 | # | ||
| 548 | # CONFIG_MSDOS_FS is not set | ||
| 549 | # CONFIG_VFAT_FS is not set | ||
| 550 | # CONFIG_NTFS_FS is not set | ||
| 551 | |||
| 552 | # | ||
| 553 | # Pseudo filesystems | ||
| 554 | # | ||
| 555 | CONFIG_PROC_FS=y | ||
| 556 | CONFIG_PROC_SYSCTL=y | ||
| 557 | CONFIG_SYSFS=y | ||
| 558 | # CONFIG_TMPFS is not set | ||
| 559 | # CONFIG_HUGETLB_PAGE is not set | ||
| 560 | CONFIG_RAMFS=y | ||
| 561 | # CONFIG_CONFIGFS_FS is not set | ||
| 562 | |||
| 563 | # | ||
| 564 | # Miscellaneous filesystems | ||
| 565 | # | ||
| 566 | # CONFIG_ADFS_FS is not set | ||
| 567 | # CONFIG_AFFS_FS is not set | ||
| 568 | # CONFIG_HFS_FS is not set | ||
| 569 | # CONFIG_HFSPLUS_FS is not set | ||
| 570 | # CONFIG_BEFS_FS is not set | ||
| 571 | # CONFIG_BFS_FS is not set | ||
| 572 | # CONFIG_EFS_FS is not set | ||
| 573 | # CONFIG_CRAMFS is not set | ||
| 574 | # CONFIG_VXFS_FS is not set | ||
| 575 | # CONFIG_HPFS_FS is not set | ||
| 576 | # CONFIG_QNX4FS_FS is not set | ||
| 577 | # CONFIG_SYSV_FS is not set | ||
| 578 | # CONFIG_UFS_FS is not set | ||
| 579 | |||
| 580 | # | ||
| 581 | # Partition Types | ||
| 582 | # | ||
| 583 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 584 | CONFIG_MSDOS_PARTITION=y | ||
| 585 | |||
| 586 | # | ||
| 587 | # Native Language Support | ||
| 588 | # | ||
| 589 | # CONFIG_NLS is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # Profiling support | ||
| 593 | # | ||
| 594 | # CONFIG_PROFILING is not set | ||
| 595 | |||
| 596 | # | ||
| 597 | # Kernel hacking | ||
| 598 | # | ||
| 599 | # CONFIG_PRINTK_TIME is not set | ||
| 600 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 601 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 602 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 603 | # CONFIG_DEBUG_FS is not set | ||
| 604 | # CONFIG_HEADERS_CHECK is not set | ||
| 605 | CONFIG_DEBUG_KERNEL=y | ||
| 606 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 607 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 608 | CONFIG_SCHED_DEBUG=y | ||
| 609 | # CONFIG_SCHEDSTATS is not set | ||
| 610 | # CONFIG_TIMER_STATS is not set | ||
| 611 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 612 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 613 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 614 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 615 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 616 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 617 | # CONFIG_PROVE_LOCKING is not set | ||
| 618 | # CONFIG_LOCK_STAT is not set | ||
| 619 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 620 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 621 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 622 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 623 | CONFIG_DEBUG_INFO=y | ||
| 624 | # CONFIG_DEBUG_VM is not set | ||
| 625 | # CONFIG_DEBUG_LIST is not set | ||
| 626 | CONFIG_FRAME_POINTER=y | ||
| 627 | CONFIG_FORCED_INLINING=y | ||
| 628 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 629 | # CONFIG_FAULT_INJECTION is not set | ||
| 630 | CONFIG_DEBUG_USER=y | ||
| 631 | CONFIG_DEBUG_ERRORS=y | ||
| 632 | CONFIG_DEBUG_LL=y | ||
| 633 | # CONFIG_DEBUG_ICEDCC is not set | ||
| 634 | |||
| 635 | # | ||
| 636 | # Security options | ||
| 637 | # | ||
| 638 | # CONFIG_KEYS is not set | ||
| 639 | # CONFIG_SECURITY is not set | ||
| 640 | # CONFIG_CRYPTO is not set | ||
| 641 | |||
| 642 | # | ||
| 643 | # Library routines | ||
| 644 | # | ||
| 645 | CONFIG_BITREVERSE=y | ||
| 646 | CONFIG_CRC_CCITT=y | ||
| 647 | # CONFIG_CRC16 is not set | ||
| 648 | # CONFIG_CRC_ITU_T is not set | ||
| 649 | CONFIG_CRC32=y | ||
| 650 | # CONFIG_CRC7 is not set | ||
| 651 | # CONFIG_LIBCRC32C is not set | ||
| 652 | CONFIG_PLIST=y | ||
| 653 | CONFIG_HAS_IOMEM=y | ||
| 654 | CONFIG_HAS_IOPORT=y | ||
| 655 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_h2_1610_defconfig b/arch/arm/configs/omap_h2_1610_defconfig index 323c1deeb953..c03507202f3c 100644 --- a/arch/arm/configs/omap_h2_1610_defconfig +++ b/arch/arm/configs/omap_h2_1610_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.25-rc3 | 3 | # Linux kernel version: 2.6.25-rc2-omap1 |
| 4 | # Mon Mar 3 03:39:48 2008 | 4 | # Wed Feb 20 17:12:36 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| @@ -31,7 +31,6 @@ CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | |||
| 31 | # | 31 | # |
| 32 | CONFIG_EXPERIMENTAL=y | 32 | CONFIG_EXPERIMENTAL=y |
| 33 | CONFIG_BROKEN_ON_SMP=y | 33 | CONFIG_BROKEN_ON_SMP=y |
| 34 | CONFIG_LOCK_KERNEL=y | ||
| 35 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 36 | CONFIG_LOCALVERSION="" | 35 | CONFIG_LOCALVERSION="" |
| 37 | CONFIG_LOCALVERSION_AUTO=y | 36 | CONFIG_LOCALVERSION_AUTO=y |
| @@ -50,7 +49,7 @@ CONFIG_FAIR_GROUP_SCHED=y | |||
| 50 | # CONFIG_RT_GROUP_SCHED is not set | 49 | # CONFIG_RT_GROUP_SCHED is not set |
| 51 | CONFIG_USER_SCHED=y | 50 | CONFIG_USER_SCHED=y |
| 52 | # CONFIG_CGROUP_SCHED is not set | 51 | # CONFIG_CGROUP_SCHED is not set |
| 53 | # CONFIG_SYSFS_DEPRECATED is not set | 52 | CONFIG_SYSFS_DEPRECATED=y |
| 54 | # CONFIG_RELAY is not set | 53 | # CONFIG_RELAY is not set |
| 55 | CONFIG_NAMESPACES=y | 54 | CONFIG_NAMESPACES=y |
| 56 | # CONFIG_UTS_NS is not set | 55 | # CONFIG_UTS_NS is not set |
| @@ -65,6 +64,7 @@ CONFIG_SYSCTL=y | |||
| 65 | CONFIG_UID16=y | 64 | CONFIG_UID16=y |
| 66 | CONFIG_SYSCTL_SYSCALL=y | 65 | CONFIG_SYSCTL_SYSCALL=y |
| 67 | CONFIG_KALLSYMS=y | 66 | CONFIG_KALLSYMS=y |
| 67 | # CONFIG_KALLSYMS_ALL is not set | ||
| 68 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 68 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 69 | CONFIG_HOTPLUG=y | 69 | CONFIG_HOTPLUG=y |
| 70 | CONFIG_PRINTK=y | 70 | CONFIG_PRINTK=y |
| @@ -165,20 +165,28 @@ CONFIG_ARCH_OMAP=y | |||
| 165 | CONFIG_ARCH_OMAP_OTG=y | 165 | CONFIG_ARCH_OMAP_OTG=y |
| 166 | CONFIG_ARCH_OMAP1=y | 166 | CONFIG_ARCH_OMAP1=y |
| 167 | # CONFIG_ARCH_OMAP2 is not set | 167 | # CONFIG_ARCH_OMAP2 is not set |
| 168 | # CONFIG_ARCH_OMAP3 is not set | ||
| 168 | 169 | ||
| 169 | # | 170 | # |
| 170 | # OMAP Feature Selections | 171 | # OMAP Feature Selections |
| 171 | # | 172 | # |
| 173 | CONFIG_OMAP_DEBUG_SRAM_PATCH=y | ||
| 172 | # CONFIG_OMAP_RESET_CLOCKS is not set | 174 | # CONFIG_OMAP_RESET_CLOCKS is not set |
| 175 | CONFIG_OMAP_BOOT_TAG=y | ||
| 176 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 177 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 178 | CONFIG_OMAP_GPIO_SWITCH=y | ||
| 173 | CONFIG_OMAP_MUX=y | 179 | CONFIG_OMAP_MUX=y |
| 174 | # CONFIG_OMAP_MUX_DEBUG is not set | 180 | CONFIG_OMAP_MUX_DEBUG=y |
| 175 | CONFIG_OMAP_MUX_WARNINGS=y | 181 | CONFIG_OMAP_MUX_WARNINGS=y |
| 182 | # CONFIG_OMAP_STI is not set | ||
| 176 | CONFIG_OMAP_MCBSP=y | 183 | CONFIG_OMAP_MCBSP=y |
| 177 | # CONFIG_OMAP_MMU_FWK is not set | 184 | # CONFIG_OMAP_MMU_FWK is not set |
| 185 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 178 | # CONFIG_OMAP_MPU_TIMER is not set | 186 | # CONFIG_OMAP_MPU_TIMER is not set |
| 179 | CONFIG_OMAP_32K_TIMER=y | 187 | CONFIG_OMAP_32K_TIMER=y |
| 180 | CONFIG_OMAP_32K_TIMER_HZ=128 | 188 | CONFIG_OMAP_32K_TIMER_HZ=128 |
| 181 | # CONFIG_OMAP_DM_TIMER is not set | 189 | CONFIG_OMAP_DM_TIMER=y |
| 182 | CONFIG_OMAP_LL_DEBUG_UART1=y | 190 | CONFIG_OMAP_LL_DEBUG_UART1=y |
| 183 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | 191 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set |
| 184 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | 192 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set |
| @@ -206,10 +214,10 @@ CONFIG_MACH_OMAP_H2=y | |||
| 206 | # | 214 | # |
| 207 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | 215 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set |
| 208 | # CONFIG_OMAP_ARM_216MHZ is not set | 216 | # CONFIG_OMAP_ARM_216MHZ is not set |
| 209 | CONFIG_OMAP_ARM_192MHZ=y | 217 | # CONFIG_OMAP_ARM_192MHZ is not set |
| 210 | # CONFIG_OMAP_ARM_168MHZ is not set | 218 | # CONFIG_OMAP_ARM_168MHZ is not set |
| 211 | # CONFIG_OMAP_ARM_120MHZ is not set | 219 | # CONFIG_OMAP_ARM_120MHZ is not set |
| 212 | # CONFIG_OMAP_ARM_60MHZ is not set | 220 | CONFIG_OMAP_ARM_60MHZ=y |
| 213 | # CONFIG_OMAP_ARM_30MHZ is not set | 221 | # CONFIG_OMAP_ARM_30MHZ is not set |
| 214 | 222 | ||
| 215 | # | 223 | # |
| @@ -227,6 +235,7 @@ CONFIG_CPU_32=y | |||
| 227 | CONFIG_CPU_ARM926T=y | 235 | CONFIG_CPU_ARM926T=y |
| 228 | CONFIG_CPU_32v5=y | 236 | CONFIG_CPU_32v5=y |
| 229 | CONFIG_CPU_ABRT_EV5TJ=y | 237 | CONFIG_CPU_ABRT_EV5TJ=y |
| 238 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 230 | CONFIG_CPU_CACHE_VIVT=y | 239 | CONFIG_CPU_CACHE_VIVT=y |
| 231 | CONFIG_CPU_COPY_V4WB=y | 240 | CONFIG_CPU_COPY_V4WB=y |
| 232 | CONFIG_CPU_TLB_V4WBI=y | 241 | CONFIG_CPU_TLB_V4WBI=y |
| @@ -257,10 +266,9 @@ CONFIG_TICK_ONESHOT=y | |||
| 257 | CONFIG_NO_HZ=y | 266 | CONFIG_NO_HZ=y |
| 258 | CONFIG_HIGH_RES_TIMERS=y | 267 | CONFIG_HIGH_RES_TIMERS=y |
| 259 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 268 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
| 260 | CONFIG_PREEMPT=y | 269 | # CONFIG_PREEMPT is not set |
| 261 | CONFIG_HZ=128 | 270 | CONFIG_HZ=128 |
| 262 | CONFIG_AEABI=y | 271 | # CONFIG_AEABI is not set |
| 263 | CONFIG_OABI_COMPAT=y | ||
| 264 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | 272 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set |
| 265 | CONFIG_SELECT_MEMORY_MODEL=y | 273 | CONFIG_SELECT_MEMORY_MODEL=y |
| 266 | CONFIG_FLATMEM_MANUAL=y | 274 | CONFIG_FLATMEM_MANUAL=y |
| @@ -275,7 +283,8 @@ CONFIG_SPLIT_PTLOCK_CPUS=4096 | |||
| 275 | CONFIG_ZONE_DMA_FLAG=1 | 283 | CONFIG_ZONE_DMA_FLAG=1 |
| 276 | CONFIG_BOUNCE=y | 284 | CONFIG_BOUNCE=y |
| 277 | CONFIG_VIRT_TO_BUS=y | 285 | CONFIG_VIRT_TO_BUS=y |
| 278 | # CONFIG_LEDS is not set | 286 | CONFIG_LEDS=y |
| 287 | # CONFIG_LEDS_CPU is not set | ||
| 279 | CONFIG_ALIGNMENT_TRAP=y | 288 | CONFIG_ALIGNMENT_TRAP=y |
| 280 | 289 | ||
| 281 | # | 290 | # |
| @@ -283,7 +292,7 @@ CONFIG_ALIGNMENT_TRAP=y | |||
| 283 | # | 292 | # |
| 284 | CONFIG_ZBOOT_ROM_TEXT=0x0 | 293 | CONFIG_ZBOOT_ROM_TEXT=0x0 |
| 285 | CONFIG_ZBOOT_ROM_BSS=0x0 | 294 | CONFIG_ZBOOT_ROM_BSS=0x0 |
| 286 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200n8 root=0801 ro init=/bin/sh" | 295 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200n8 root=/dev/ram0 rw initrd=0x10600000,8M ramdisk_size=8192" |
| 287 | # CONFIG_XIP_KERNEL is not set | 296 | # CONFIG_XIP_KERNEL is not set |
| 288 | # CONFIG_KEXEC is not set | 297 | # CONFIG_KEXEC is not set |
| 289 | # CONFIG_ATAGS_PROC is not set | 298 | # CONFIG_ATAGS_PROC is not set |
| @@ -291,20 +300,7 @@ CONFIG_CMDLINE="mem=32M console=ttyS0,115200n8 root=0801 ro init=/bin/sh" | |||
| 291 | # | 300 | # |
| 292 | # CPU Frequency scaling | 301 | # CPU Frequency scaling |
| 293 | # | 302 | # |
| 294 | CONFIG_CPU_FREQ=y | 303 | # CONFIG_CPU_FREQ is not set |
| 295 | CONFIG_CPU_FREQ_TABLE=y | ||
| 296 | # CONFIG_CPU_FREQ_DEBUG is not set | ||
| 297 | CONFIG_CPU_FREQ_STAT=y | ||
| 298 | # CONFIG_CPU_FREQ_STAT_DETAILS is not set | ||
| 299 | # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set | ||
| 300 | CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y | ||
| 301 | # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set | ||
| 302 | # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set | ||
| 303 | # CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set | ||
| 304 | # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set | ||
| 305 | CONFIG_CPU_FREQ_GOV_USERSPACE=y | ||
| 306 | # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set | ||
| 307 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set | ||
| 308 | 304 | ||
| 309 | # | 305 | # |
| 310 | # Floating point emulation | 306 | # Floating point emulation |
| @@ -322,8 +318,9 @@ CONFIG_FPE_NWFPE=y | |||
| 322 | # Userspace binary formats | 318 | # Userspace binary formats |
| 323 | # | 319 | # |
| 324 | CONFIG_BINFMT_ELF=y | 320 | CONFIG_BINFMT_ELF=y |
| 325 | CONFIG_BINFMT_AOUT=y | 321 | # CONFIG_BINFMT_AOUT is not set |
| 326 | # CONFIG_BINFMT_MISC is not set | 322 | # CONFIG_BINFMT_MISC is not set |
| 323 | # CONFIG_ARTHUR is not set | ||
| 327 | 324 | ||
| 328 | # | 325 | # |
| 329 | # Power management options | 326 | # Power management options |
| @@ -433,21 +430,102 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 433 | CONFIG_STANDALONE=y | 430 | CONFIG_STANDALONE=y |
| 434 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 431 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 435 | # CONFIG_FW_LOADER is not set | 432 | # CONFIG_FW_LOADER is not set |
| 433 | CONFIG_DEBUG_DRIVER=y | ||
| 434 | # CONFIG_DEBUG_DEVRES is not set | ||
| 436 | # CONFIG_SYS_HYPERVISOR is not set | 435 | # CONFIG_SYS_HYPERVISOR is not set |
| 437 | # CONFIG_CONNECTOR is not set | 436 | # CONFIG_CONNECTOR is not set |
| 438 | # CONFIG_MTD is not set | 437 | CONFIG_MTD=y |
| 438 | CONFIG_MTD_DEBUG=y | ||
| 439 | CONFIG_MTD_DEBUG_VERBOSE=3 | ||
| 440 | # CONFIG_MTD_CONCAT is not set | ||
| 441 | CONFIG_MTD_PARTITIONS=y | ||
| 442 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 443 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 444 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 445 | |||
| 446 | # | ||
| 447 | # User Modules And Translation Layers | ||
| 448 | # | ||
| 449 | CONFIG_MTD_CHAR=y | ||
| 450 | CONFIG_MTD_BLKDEVS=y | ||
| 451 | CONFIG_MTD_BLOCK=y | ||
| 452 | # CONFIG_FTL is not set | ||
| 453 | # CONFIG_NFTL is not set | ||
| 454 | # CONFIG_INFTL is not set | ||
| 455 | # CONFIG_RFD_FTL is not set | ||
| 456 | # CONFIG_SSFDC is not set | ||
| 457 | # CONFIG_MTD_OOPS is not set | ||
| 458 | |||
| 459 | # | ||
| 460 | # RAM/ROM/Flash chip drivers | ||
| 461 | # | ||
| 462 | CONFIG_MTD_CFI=y | ||
| 463 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 464 | CONFIG_MTD_GEN_PROBE=y | ||
| 465 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 466 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 467 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 468 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 469 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 470 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 471 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 472 | CONFIG_MTD_CFI_I1=y | ||
| 473 | CONFIG_MTD_CFI_I2=y | ||
| 474 | # CONFIG_MTD_CFI_I4 is not set | ||
| 475 | # CONFIG_MTD_CFI_I8 is not set | ||
| 476 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 477 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
| 478 | # CONFIG_MTD_CFI_STAA is not set | ||
| 479 | CONFIG_MTD_CFI_UTIL=y | ||
| 480 | # CONFIG_MTD_RAM is not set | ||
| 481 | # CONFIG_MTD_ROM is not set | ||
| 482 | # CONFIG_MTD_ABSENT is not set | ||
| 483 | |||
| 484 | # | ||
| 485 | # Mapping drivers for chip access | ||
| 486 | # | ||
| 487 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 488 | # CONFIG_MTD_PHYSMAP is not set | ||
| 489 | # CONFIG_MTD_ARM_INTEGRATOR is not set | ||
| 490 | # CONFIG_MTD_OMAP_NOR is not set | ||
| 491 | # CONFIG_MTD_PLATRAM is not set | ||
| 492 | |||
| 493 | # | ||
| 494 | # Self-contained MTD device drivers | ||
| 495 | # | ||
| 496 | # CONFIG_MTD_DATAFLASH is not set | ||
| 497 | # CONFIG_MTD_M25P80 is not set | ||
| 498 | # CONFIG_MTD_SLRAM is not set | ||
| 499 | # CONFIG_MTD_PHRAM is not set | ||
| 500 | # CONFIG_MTD_MTDRAM is not set | ||
| 501 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 502 | |||
| 503 | # | ||
| 504 | # Disk-On-Chip Device Drivers | ||
| 505 | # | ||
| 506 | # CONFIG_MTD_DOC2000 is not set | ||
| 507 | # CONFIG_MTD_DOC2001 is not set | ||
| 508 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 509 | # CONFIG_MTD_NAND is not set | ||
| 510 | # CONFIG_MTD_ONENAND is not set | ||
| 511 | |||
| 512 | # | ||
| 513 | # UBI - Unsorted block images | ||
| 514 | # | ||
| 515 | # CONFIG_MTD_UBI is not set | ||
| 439 | # CONFIG_PARPORT is not set | 516 | # CONFIG_PARPORT is not set |
| 440 | CONFIG_BLK_DEV=y | 517 | CONFIG_BLK_DEV=y |
| 441 | # CONFIG_BLK_DEV_COW_COMMON is not set | 518 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 442 | CONFIG_BLK_DEV_LOOP=y | 519 | CONFIG_BLK_DEV_LOOP=y |
| 443 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 520 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 444 | # CONFIG_BLK_DEV_NBD is not set | 521 | # CONFIG_BLK_DEV_NBD is not set |
| 522 | # CONFIG_BLK_DEV_UB is not set | ||
| 445 | CONFIG_BLK_DEV_RAM=y | 523 | CONFIG_BLK_DEV_RAM=y |
| 446 | CONFIG_BLK_DEV_RAM_COUNT=16 | 524 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 447 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 525 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
| 448 | # CONFIG_BLK_DEV_XIP is not set | 526 | # CONFIG_BLK_DEV_XIP is not set |
| 449 | # CONFIG_CDROM_PKTCDVD is not set | 527 | # CONFIG_CDROM_PKTCDVD is not set |
| 450 | CONFIG_ATA_OVER_ETH=m | 528 | # CONFIG_ATA_OVER_ETH is not set |
| 451 | CONFIG_MISC_DEVICES=y | 529 | CONFIG_MISC_DEVICES=y |
| 452 | # CONFIG_EEPROM_93CX6 is not set | 530 | # CONFIG_EEPROM_93CX6 is not set |
| 453 | # CONFIG_ENCLOSURE_SERVICES is not set | 531 | # CONFIG_ENCLOSURE_SERVICES is not set |
| @@ -457,42 +535,9 @@ CONFIG_MISC_DEVICES=y | |||
| 457 | # SCSI device support | 535 | # SCSI device support |
| 458 | # | 536 | # |
| 459 | # CONFIG_RAID_ATTRS is not set | 537 | # CONFIG_RAID_ATTRS is not set |
| 460 | CONFIG_SCSI=y | 538 | # CONFIG_SCSI is not set |
| 461 | CONFIG_SCSI_DMA=y | 539 | # CONFIG_SCSI_DMA is not set |
| 462 | # CONFIG_SCSI_TGT is not set | ||
| 463 | # CONFIG_SCSI_NETLINK is not set | 540 | # CONFIG_SCSI_NETLINK is not set |
| 464 | CONFIG_SCSI_PROC_FS=y | ||
| 465 | |||
| 466 | # | ||
| 467 | # SCSI support type (disk, tape, CD-ROM) | ||
| 468 | # | ||
| 469 | # CONFIG_BLK_DEV_SD is not set | ||
| 470 | # CONFIG_CHR_DEV_ST is not set | ||
| 471 | # CONFIG_CHR_DEV_OSST is not set | ||
| 472 | # CONFIG_BLK_DEV_SR is not set | ||
| 473 | # CONFIG_CHR_DEV_SG is not set | ||
| 474 | # CONFIG_CHR_DEV_SCH is not set | ||
| 475 | |||
| 476 | # | ||
| 477 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 478 | # | ||
| 479 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 480 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 481 | # CONFIG_SCSI_LOGGING is not set | ||
| 482 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 483 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 484 | |||
| 485 | # | ||
| 486 | # SCSI Transports | ||
| 487 | # | ||
| 488 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 489 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 490 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 491 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 492 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 493 | CONFIG_SCSI_LOWLEVEL=y | ||
| 494 | # CONFIG_ISCSI_TCP is not set | ||
| 495 | # CONFIG_SCSI_DEBUG is not set | ||
| 496 | # CONFIG_ATA is not set | 541 | # CONFIG_ATA is not set |
| 497 | # CONFIG_MD is not set | 542 | # CONFIG_MD is not set |
| 498 | CONFIG_NETDEVICES=y | 543 | CONFIG_NETDEVICES=y |
| @@ -509,6 +554,7 @@ CONFIG_MII=y | |||
| 509 | # CONFIG_AX88796 is not set | 554 | # CONFIG_AX88796 is not set |
| 510 | CONFIG_SMC91X=y | 555 | CONFIG_SMC91X=y |
| 511 | # CONFIG_DM9000 is not set | 556 | # CONFIG_DM9000 is not set |
| 557 | # CONFIG_ENC28J60 is not set | ||
| 512 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 558 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 513 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 559 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 514 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 560 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -523,6 +569,15 @@ CONFIG_NETDEV_10000=y | |||
| 523 | # | 569 | # |
| 524 | # CONFIG_WLAN_PRE80211 is not set | 570 | # CONFIG_WLAN_PRE80211 is not set |
| 525 | # CONFIG_WLAN_80211 is not set | 571 | # CONFIG_WLAN_80211 is not set |
| 572 | |||
| 573 | # | ||
| 574 | # USB Network Adapters | ||
| 575 | # | ||
| 576 | # CONFIG_USB_CATC is not set | ||
| 577 | # CONFIG_USB_KAWETH is not set | ||
| 578 | # CONFIG_USB_PEGASUS is not set | ||
| 579 | # CONFIG_USB_RTL8150 is not set | ||
| 580 | # CONFIG_USB_USBNET is not set | ||
| 526 | # CONFIG_WAN is not set | 581 | # CONFIG_WAN is not set |
| 527 | CONFIG_PPP=y | 582 | CONFIG_PPP=y |
| 528 | # CONFIG_PPP_MULTILINK is not set | 583 | # CONFIG_PPP_MULTILINK is not set |
| @@ -612,7 +667,8 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
| 612 | CONFIG_UNIX98_PTYS=y | 667 | CONFIG_UNIX98_PTYS=y |
| 613 | # CONFIG_LEGACY_PTYS is not set | 668 | # CONFIG_LEGACY_PTYS is not set |
| 614 | # CONFIG_IPMI_HANDLER is not set | 669 | # CONFIG_IPMI_HANDLER is not set |
| 615 | # CONFIG_HW_RANDOM is not set | 670 | CONFIG_HW_RANDOM=m |
| 671 | CONFIG_HW_RANDOM_OMAP=m | ||
| 616 | # CONFIG_NVRAM is not set | 672 | # CONFIG_NVRAM is not set |
| 617 | # CONFIG_R3964 is not set | 673 | # CONFIG_R3964 is not set |
| 618 | # CONFIG_RAW_DRIVER is not set | 674 | # CONFIG_RAW_DRIVER is not set |
| @@ -638,6 +694,7 @@ CONFIG_I2C_OMAP=y | |||
| 638 | # CONFIG_I2C_SIMTEC is not set | 694 | # CONFIG_I2C_SIMTEC is not set |
| 639 | # CONFIG_I2C_TAOS_EVM is not set | 695 | # CONFIG_I2C_TAOS_EVM is not set |
| 640 | # CONFIG_I2C_STUB is not set | 696 | # CONFIG_I2C_STUB is not set |
| 697 | # CONFIG_I2C_TINY_USB is not set | ||
| 641 | 698 | ||
| 642 | # | 699 | # |
| 643 | # Miscellaneous I2C Chip support | 700 | # Miscellaneous I2C Chip support |
| @@ -647,8 +704,10 @@ CONFIG_I2C_OMAP=y | |||
| 647 | # CONFIG_SENSORS_PCF8574 is not set | 704 | # CONFIG_SENSORS_PCF8574 is not set |
| 648 | # CONFIG_PCF8575 is not set | 705 | # CONFIG_PCF8575 is not set |
| 649 | # CONFIG_SENSORS_PCF8591 is not set | 706 | # CONFIG_SENSORS_PCF8591 is not set |
| 650 | # CONFIG_ISP1301_OMAP is not set | 707 | CONFIG_ISP1301_OMAP=y |
| 651 | CONFIG_TPS65010=y | 708 | CONFIG_TPS65010=y |
| 709 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 710 | # CONFIG_GPIOEXPANDER_OMAP is not set | ||
| 652 | # CONFIG_SENSORS_MAX6875 is not set | 711 | # CONFIG_SENSORS_MAX6875 is not set |
| 653 | # CONFIG_SENSORS_TSL2550 is not set | 712 | # CONFIG_SENSORS_TSL2550 is not set |
| 654 | # CONFIG_I2C_DEBUG_CORE is not set | 713 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -659,8 +718,26 @@ CONFIG_TPS65010=y | |||
| 659 | # | 718 | # |
| 660 | # SPI support | 719 | # SPI support |
| 661 | # | 720 | # |
| 662 | # CONFIG_SPI is not set | 721 | CONFIG_SPI=y |
| 663 | # CONFIG_SPI_MASTER is not set | 722 | # CONFIG_SPI_DEBUG is not set |
| 723 | CONFIG_SPI_MASTER=y | ||
| 724 | |||
| 725 | # | ||
| 726 | # SPI Master Controller Drivers | ||
| 727 | # | ||
| 728 | CONFIG_SPI_BITBANG=y | ||
| 729 | CONFIG_SPI_OMAP_UWIRE=y | ||
| 730 | |||
| 731 | # | ||
| 732 | # SPI Protocol Masters | ||
| 733 | # | ||
| 734 | # CONFIG_SPI_AT25 is not set | ||
| 735 | CONFIG_SPI_TSC2101=y | ||
| 736 | # CONFIG_SPI_TSC2102 is not set | ||
| 737 | # CONFIG_SPI_TSC210X is not set | ||
| 738 | # CONFIG_SPI_TSC2301 is not set | ||
| 739 | # CONFIG_SPI_SPIDEV is not set | ||
| 740 | # CONFIG_SPI_TLE62X0 is not set | ||
| 664 | # CONFIG_W1 is not set | 741 | # CONFIG_W1 is not set |
| 665 | # CONFIG_POWER_SUPPLY is not set | 742 | # CONFIG_POWER_SUPPLY is not set |
| 666 | CONFIG_HWMON=y | 743 | CONFIG_HWMON=y |
| @@ -673,7 +750,6 @@ CONFIG_HWMON=y | |||
| 673 | # CONFIG_SENSORS_ADM1031 is not set | 750 | # CONFIG_SENSORS_ADM1031 is not set |
| 674 | # CONFIG_SENSORS_ADM9240 is not set | 751 | # CONFIG_SENSORS_ADM9240 is not set |
| 675 | # CONFIG_SENSORS_ADT7470 is not set | 752 | # CONFIG_SENSORS_ADT7470 is not set |
| 676 | # CONFIG_SENSORS_ADT7473 is not set | ||
| 677 | # CONFIG_SENSORS_ATXP1 is not set | 753 | # CONFIG_SENSORS_ATXP1 is not set |
| 678 | # CONFIG_SENSORS_DS1621 is not set | 754 | # CONFIG_SENSORS_DS1621 is not set |
| 679 | # CONFIG_SENSORS_F71805F is not set | 755 | # CONFIG_SENSORS_F71805F is not set |
| @@ -683,6 +759,7 @@ CONFIG_HWMON=y | |||
| 683 | # CONFIG_SENSORS_GL520SM is not set | 759 | # CONFIG_SENSORS_GL520SM is not set |
| 684 | # CONFIG_SENSORS_IT87 is not set | 760 | # CONFIG_SENSORS_IT87 is not set |
| 685 | # CONFIG_SENSORS_LM63 is not set | 761 | # CONFIG_SENSORS_LM63 is not set |
| 762 | # CONFIG_SENSORS_LM70 is not set | ||
| 686 | # CONFIG_SENSORS_LM75 is not set | 763 | # CONFIG_SENSORS_LM75 is not set |
| 687 | # CONFIG_SENSORS_LM77 is not set | 764 | # CONFIG_SENSORS_LM77 is not set |
| 688 | # CONFIG_SENSORS_LM78 is not set | 765 | # CONFIG_SENSORS_LM78 is not set |
| @@ -712,6 +789,7 @@ CONFIG_HWMON=y | |||
| 712 | # CONFIG_SENSORS_W83L786NG is not set | 789 | # CONFIG_SENSORS_W83L786NG is not set |
| 713 | # CONFIG_SENSORS_W83627HF is not set | 790 | # CONFIG_SENSORS_W83627HF is not set |
| 714 | # CONFIG_SENSORS_W83627EHF is not set | 791 | # CONFIG_SENSORS_W83627EHF is not set |
| 792 | # CONFIG_SENSORS_TSC210X is not set | ||
| 715 | # CONFIG_HWMON_DEBUG_CHIP is not set | 793 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 716 | CONFIG_WATCHDOG=y | 794 | CONFIG_WATCHDOG=y |
| 717 | CONFIG_WATCHDOG_NOWAYOUT=y | 795 | CONFIG_WATCHDOG_NOWAYOUT=y |
| @@ -723,6 +801,11 @@ CONFIG_WATCHDOG_NOWAYOUT=y | |||
| 723 | # CONFIG_OMAP_WATCHDOG is not set | 801 | # CONFIG_OMAP_WATCHDOG is not set |
| 724 | 802 | ||
| 725 | # | 803 | # |
| 804 | # USB-based Watchdog Cards | ||
| 805 | # | ||
| 806 | # CONFIG_USBPCWATCHDOG is not set | ||
| 807 | |||
| 808 | # | ||
| 726 | # Sonics Silicon Backplane | 809 | # Sonics Silicon Backplane |
| 727 | # | 810 | # |
| 728 | CONFIG_SSB_POSSIBLE=y | 811 | CONFIG_SSB_POSSIBLE=y |
| @@ -740,6 +823,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 740 | # CONFIG_VIDEO_DEV is not set | 823 | # CONFIG_VIDEO_DEV is not set |
| 741 | # CONFIG_DVB_CORE is not set | 824 | # CONFIG_DVB_CORE is not set |
| 742 | CONFIG_DAB=y | 825 | CONFIG_DAB=y |
| 826 | # CONFIG_USB_DABUSB is not set | ||
| 743 | 827 | ||
| 744 | # | 828 | # |
| 745 | # Graphics support | 829 | # Graphics support |
| @@ -749,9 +833,9 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 749 | CONFIG_FB=y | 833 | CONFIG_FB=y |
| 750 | CONFIG_FIRMWARE_EDID=y | 834 | CONFIG_FIRMWARE_EDID=y |
| 751 | # CONFIG_FB_DDC is not set | 835 | # CONFIG_FB_DDC is not set |
| 752 | # CONFIG_FB_CFB_FILLRECT is not set | 836 | CONFIG_FB_CFB_FILLRECT=y |
| 753 | # CONFIG_FB_CFB_COPYAREA is not set | 837 | CONFIG_FB_CFB_COPYAREA=y |
| 754 | # CONFIG_FB_CFB_IMAGEBLIT is not set | 838 | CONFIG_FB_CFB_IMAGEBLIT=y |
| 755 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | 839 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set |
| 756 | # CONFIG_FB_SYS_FILLRECT is not set | 840 | # CONFIG_FB_SYS_FILLRECT is not set |
| 757 | # CONFIG_FB_SYS_COPYAREA is not set | 841 | # CONFIG_FB_SYS_COPYAREA is not set |
| @@ -769,7 +853,11 @@ CONFIG_FB_MODE_HELPERS=y | |||
| 769 | # | 853 | # |
| 770 | # CONFIG_FB_S1D13XXX is not set | 854 | # CONFIG_FB_S1D13XXX is not set |
| 771 | # CONFIG_FB_VIRTUAL is not set | 855 | # CONFIG_FB_VIRTUAL is not set |
| 772 | # CONFIG_FB_OMAP is not set | 856 | CONFIG_FB_OMAP=y |
| 857 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 858 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 859 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 860 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 773 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 861 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 774 | 862 | ||
| 775 | # | 863 | # |
| @@ -785,17 +873,9 @@ CONFIG_DUMMY_CONSOLE=y | |||
| 785 | CONFIG_FRAMEBUFFER_CONSOLE=y | 873 | CONFIG_FRAMEBUFFER_CONSOLE=y |
| 786 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | 874 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set |
| 787 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | 875 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set |
| 788 | CONFIG_FONTS=y | 876 | # CONFIG_FONTS is not set |
| 789 | CONFIG_FONT_8x8=y | 877 | CONFIG_FONT_8x8=y |
| 790 | CONFIG_FONT_8x16=y | 878 | CONFIG_FONT_8x16=y |
| 791 | # CONFIG_FONT_6x11 is not set | ||
| 792 | # CONFIG_FONT_7x14 is not set | ||
| 793 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 794 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 795 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 796 | # CONFIG_FONT_SUN8x16 is not set | ||
| 797 | # CONFIG_FONT_SUN12x22 is not set | ||
| 798 | # CONFIG_FONT_10x18 is not set | ||
| 799 | CONFIG_LOGO=y | 879 | CONFIG_LOGO=y |
| 800 | # CONFIG_LOGO_LINUX_MONO is not set | 880 | # CONFIG_LOGO_LINUX_MONO is not set |
| 801 | # CONFIG_LOGO_LINUX_VGA16 is not set | 881 | # CONFIG_LOGO_LINUX_VGA16 is not set |
| @@ -804,37 +884,204 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
| 804 | # | 884 | # |
| 805 | # Sound | 885 | # Sound |
| 806 | # | 886 | # |
| 807 | CONFIG_SOUND=y | 887 | # CONFIG_SOUND is not set |
| 888 | CONFIG_HID_SUPPORT=y | ||
| 889 | CONFIG_HID=y | ||
| 890 | # CONFIG_HID_DEBUG is not set | ||
| 891 | # CONFIG_HIDRAW is not set | ||
| 808 | 892 | ||
| 809 | # | 893 | # |
| 810 | # Advanced Linux Sound Architecture | 894 | # USB Input Devices |
| 811 | # | 895 | # |
| 812 | # CONFIG_SND is not set | 896 | # CONFIG_USB_HID is not set |
| 813 | 897 | ||
| 814 | # | 898 | # |
| 815 | # Open Sound System | 899 | # USB HID Boot Protocol drivers |
| 816 | # | 900 | # |
| 817 | CONFIG_SOUND_PRIME=y | 901 | # CONFIG_USB_KBD is not set |
| 818 | # CONFIG_SOUND_MSNDCLAS is not set | 902 | # CONFIG_USB_MOUSE is not set |
| 819 | # CONFIG_SOUND_MSNDPIN is not set | ||
| 820 | CONFIG_HID_SUPPORT=y | ||
| 821 | CONFIG_HID=y | ||
| 822 | CONFIG_HID_DEBUG=y | ||
| 823 | # CONFIG_HIDRAW is not set | ||
| 824 | CONFIG_USB_SUPPORT=y | 903 | CONFIG_USB_SUPPORT=y |
| 825 | CONFIG_USB_ARCH_HAS_HCD=y | 904 | CONFIG_USB_ARCH_HAS_HCD=y |
| 826 | CONFIG_USB_ARCH_HAS_OHCI=y | 905 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 827 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 906 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 828 | # CONFIG_USB is not set | 907 | CONFIG_USB=y |
| 908 | # CONFIG_USB_DEBUG is not set | ||
| 909 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 910 | |||
| 911 | # | ||
| 912 | # Miscellaneous USB options | ||
| 913 | # | ||
| 914 | CONFIG_USB_DEVICEFS=y | ||
| 915 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 916 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 917 | CONFIG_USB_SUSPEND=y | ||
| 918 | # CONFIG_USB_PERSIST is not set | ||
| 919 | CONFIG_USB_OTG=y | ||
| 920 | CONFIG_USB_OTG_WHITELIST=y | ||
| 921 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 922 | |||
| 923 | # | ||
| 924 | # USB Host Controller Drivers | ||
| 925 | # | ||
| 926 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 927 | CONFIG_USB_OHCI_HCD=y | ||
| 928 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 929 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 930 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 931 | # CONFIG_USB_SL811_HCD is not set | ||
| 932 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 933 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 934 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 935 | |||
| 936 | # | ||
| 937 | # USB Device Class drivers | ||
| 938 | # | ||
| 939 | # CONFIG_USB_ACM is not set | ||
| 940 | # CONFIG_USB_PRINTER is not set | ||
| 829 | 941 | ||
| 830 | # | 942 | # |
| 831 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 943 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 832 | # | 944 | # |
| 833 | # CONFIG_USB_GADGET is not set | 945 | |
| 834 | # CONFIG_MMC is not set | 946 | # |
| 947 | # may also be needed; see USB_STORAGE Help for more information | ||
| 948 | # | ||
| 949 | # CONFIG_USB_LIBUSUAL is not set | ||
| 950 | |||
| 951 | # | ||
| 952 | # USB Imaging devices | ||
| 953 | # | ||
| 954 | # CONFIG_USB_MDC800 is not set | ||
| 955 | CONFIG_USB_MON=y | ||
| 956 | |||
| 957 | # | ||
| 958 | # USB port drivers | ||
| 959 | # | ||
| 960 | # CONFIG_USB_SERIAL is not set | ||
| 961 | |||
| 962 | # | ||
| 963 | # USB Miscellaneous drivers | ||
| 964 | # | ||
| 965 | # CONFIG_USB_EMI62 is not set | ||
| 966 | # CONFIG_USB_EMI26 is not set | ||
| 967 | # CONFIG_USB_ADUTUX is not set | ||
| 968 | # CONFIG_USB_AUERSWALD is not set | ||
| 969 | # CONFIG_USB_RIO500 is not set | ||
| 970 | # CONFIG_USB_LEGOTOWER is not set | ||
| 971 | # CONFIG_USB_LCD is not set | ||
| 972 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 973 | # CONFIG_USB_LED is not set | ||
| 974 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 975 | # CONFIG_USB_CYTHERM is not set | ||
| 976 | # CONFIG_USB_PHIDGET is not set | ||
| 977 | # CONFIG_USB_IDMOUSE is not set | ||
| 978 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 979 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 980 | # CONFIG_USB_LD is not set | ||
| 981 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 982 | # CONFIG_USB_IOWARRIOR is not set | ||
| 983 | CONFIG_USB_TEST=y | ||
| 984 | CONFIG_USB_GADGET=y | ||
| 985 | # CONFIG_USB_GADGET_DEBUG is not set | ||
| 986 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 987 | CONFIG_USB_GADGET_SELECTED=y | ||
| 988 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
| 989 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | ||
| 990 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 991 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 992 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 993 | # CONFIG_USB_GADGET_M66592 is not set | ||
| 994 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 995 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 996 | CONFIG_USB_GADGET_OMAP=y | ||
| 997 | CONFIG_USB_OMAP=y | ||
| 998 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
| 999 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 1000 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 1001 | # CONFIG_USB_GADGET_DUALSPEED is not set | ||
| 1002 | # CONFIG_USB_ZERO is not set | ||
| 1003 | CONFIG_USB_ETH=y | ||
| 1004 | CONFIG_USB_ETH_RNDIS=y | ||
| 1005 | # CONFIG_USB_GADGETFS is not set | ||
| 1006 | # CONFIG_USB_FILE_STORAGE is not set | ||
| 1007 | # CONFIG_USB_G_SERIAL is not set | ||
| 1008 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 1009 | # CONFIG_USB_G_PRINTER is not set | ||
| 1010 | CONFIG_MMC=y | ||
| 1011 | # CONFIG_MMC_DEBUG is not set | ||
| 1012 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 1013 | |||
| 1014 | # | ||
| 1015 | # MMC/SD Card Drivers | ||
| 1016 | # | ||
| 1017 | CONFIG_MMC_BLOCK=y | ||
| 1018 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 1019 | # CONFIG_SDIO_UART is not set | ||
| 1020 | |||
| 1021 | # | ||
| 1022 | # MMC/SD Host Controller Drivers | ||
| 1023 | # | ||
| 1024 | CONFIG_MMC_OMAP=y | ||
| 1025 | # CONFIG_MMC_SPI is not set | ||
| 835 | # CONFIG_NEW_LEDS is not set | 1026 | # CONFIG_NEW_LEDS is not set |
| 836 | CONFIG_RTC_LIB=y | 1027 | CONFIG_RTC_LIB=y |
| 837 | # CONFIG_RTC_CLASS is not set | 1028 | CONFIG_RTC_CLASS=y |
| 1029 | CONFIG_RTC_HCTOSYS=y | ||
| 1030 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 1031 | # CONFIG_RTC_DEBUG is not set | ||
| 1032 | |||
| 1033 | # | ||
| 1034 | # RTC interfaces | ||
| 1035 | # | ||
| 1036 | CONFIG_RTC_INTF_SYSFS=y | ||
| 1037 | CONFIG_RTC_INTF_PROC=y | ||
| 1038 | CONFIG_RTC_INTF_DEV=y | ||
| 1039 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 1040 | # CONFIG_RTC_DRV_TEST is not set | ||
| 1041 | |||
| 1042 | # | ||
| 1043 | # I2C RTC drivers | ||
| 1044 | # | ||
| 1045 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 1046 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 1047 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 1048 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 1049 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 1050 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 1051 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 1052 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 1053 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 1054 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 1055 | |||
| 1056 | # | ||
| 1057 | # SPI RTC drivers | ||
| 1058 | # | ||
| 1059 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 1060 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 1061 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 1062 | |||
| 1063 | # | ||
| 1064 | # Platform RTC drivers | ||
| 1065 | # | ||
| 1066 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 1067 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 1068 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 1069 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 1070 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 1071 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 1072 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 1073 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 1074 | |||
| 1075 | # | ||
| 1076 | # on-CPU RTC drivers | ||
| 1077 | # | ||
| 1078 | CONFIG_RTC_DRV_OMAP=y | ||
| 1079 | |||
| 1080 | # | ||
| 1081 | # CBUS support | ||
| 1082 | # | ||
| 1083 | # CONFIG_CBUS is not set | ||
| 1084 | # CONFIG_OMAP_DSP is not set | ||
| 838 | 1085 | ||
| 839 | # | 1086 | # |
| 840 | # File systems | 1087 | # File systems |
| @@ -894,6 +1141,17 @@ CONFIG_SYSFS=y | |||
| 894 | # CONFIG_BEFS_FS is not set | 1141 | # CONFIG_BEFS_FS is not set |
| 895 | # CONFIG_BFS_FS is not set | 1142 | # CONFIG_BFS_FS is not set |
| 896 | # CONFIG_EFS_FS is not set | 1143 | # CONFIG_EFS_FS is not set |
| 1144 | CONFIG_JFFS2_FS=y | ||
| 1145 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1146 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1147 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 1148 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 1149 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 1150 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 1151 | CONFIG_JFFS2_ZLIB=y | ||
| 1152 | # CONFIG_JFFS2_LZO is not set | ||
| 1153 | CONFIG_JFFS2_RTIME=y | ||
| 1154 | # CONFIG_JFFS2_RUBIN is not set | ||
| 897 | CONFIG_CRAMFS=y | 1155 | CONFIG_CRAMFS=y |
| 898 | # CONFIG_VXFS_FS is not set | 1156 | # CONFIG_VXFS_FS is not set |
| 899 | # CONFIG_MINIX_FS is not set | 1157 | # CONFIG_MINIX_FS is not set |
| @@ -904,19 +1162,16 @@ CONFIG_ROMFS_FS=y | |||
| 904 | # CONFIG_UFS_FS is not set | 1162 | # CONFIG_UFS_FS is not set |
| 905 | CONFIG_NETWORK_FILESYSTEMS=y | 1163 | CONFIG_NETWORK_FILESYSTEMS=y |
| 906 | CONFIG_NFS_FS=y | 1164 | CONFIG_NFS_FS=y |
| 907 | CONFIG_NFS_V3=y | 1165 | # CONFIG_NFS_V3 is not set |
| 908 | # CONFIG_NFS_V3_ACL is not set | 1166 | # CONFIG_NFS_V4 is not set |
| 909 | CONFIG_NFS_V4=y | ||
| 910 | # CONFIG_NFS_DIRECTIO is not set | 1167 | # CONFIG_NFS_DIRECTIO is not set |
| 911 | # CONFIG_NFSD is not set | 1168 | # CONFIG_NFSD is not set |
| 912 | CONFIG_ROOT_NFS=y | 1169 | CONFIG_ROOT_NFS=y |
| 913 | CONFIG_LOCKD=y | 1170 | CONFIG_LOCKD=y |
| 914 | CONFIG_LOCKD_V4=y | ||
| 915 | CONFIG_NFS_COMMON=y | 1171 | CONFIG_NFS_COMMON=y |
| 916 | CONFIG_SUNRPC=y | 1172 | CONFIG_SUNRPC=y |
| 917 | CONFIG_SUNRPC_GSS=y | ||
| 918 | # CONFIG_SUNRPC_BIND34 is not set | 1173 | # CONFIG_SUNRPC_BIND34 is not set |
| 919 | CONFIG_RPCSEC_GSS_KRB5=y | 1174 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 920 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1175 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 921 | # CONFIG_SMB_FS is not set | 1176 | # CONFIG_SMB_FS is not set |
| 922 | # CONFIG_CIFS is not set | 1177 | # CONFIG_CIFS is not set |
| @@ -981,11 +1236,38 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 981 | # CONFIG_UNUSED_SYMBOLS is not set | 1236 | # CONFIG_UNUSED_SYMBOLS is not set |
| 982 | # CONFIG_DEBUG_FS is not set | 1237 | # CONFIG_DEBUG_FS is not set |
| 983 | # CONFIG_HEADERS_CHECK is not set | 1238 | # CONFIG_HEADERS_CHECK is not set |
| 984 | # CONFIG_DEBUG_KERNEL is not set | 1239 | CONFIG_DEBUG_KERNEL=y |
| 1240 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1241 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1242 | CONFIG_SCHED_DEBUG=y | ||
| 1243 | # CONFIG_SCHEDSTATS is not set | ||
| 1244 | # CONFIG_TIMER_STATS is not set | ||
| 1245 | # CONFIG_DEBUG_SLAB is not set | ||
| 1246 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1247 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1248 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1249 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1250 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1251 | # CONFIG_PROVE_LOCKING is not set | ||
| 1252 | # CONFIG_LOCK_STAT is not set | ||
| 1253 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1254 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1255 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 985 | CONFIG_DEBUG_BUGVERBOSE=y | 1256 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1257 | CONFIG_DEBUG_INFO=y | ||
| 1258 | # CONFIG_DEBUG_VM is not set | ||
| 1259 | # CONFIG_DEBUG_LIST is not set | ||
| 1260 | # CONFIG_DEBUG_SG is not set | ||
| 986 | CONFIG_FRAME_POINTER=y | 1261 | CONFIG_FRAME_POINTER=y |
| 1262 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
| 1263 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1264 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
| 1265 | # CONFIG_FAULT_INJECTION is not set | ||
| 987 | # CONFIG_SAMPLES is not set | 1266 | # CONFIG_SAMPLES is not set |
| 988 | # CONFIG_DEBUG_USER is not set | 1267 | CONFIG_DEBUG_USER=y |
| 1268 | CONFIG_DEBUG_ERRORS=y | ||
| 1269 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
| 1270 | # CONFIG_DEBUG_LL is not set | ||
| 989 | 1271 | ||
| 990 | # | 1272 | # |
| 991 | # Security options | 1273 | # Security options |
| @@ -994,31 +1276,29 @@ CONFIG_FRAME_POINTER=y | |||
| 994 | # CONFIG_SECURITY is not set | 1276 | # CONFIG_SECURITY is not set |
| 995 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1277 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 996 | CONFIG_CRYPTO=y | 1278 | CONFIG_CRYPTO=y |
| 997 | CONFIG_CRYPTO_ALGAPI=y | ||
| 998 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 999 | # CONFIG_CRYPTO_SEQIV is not set | 1279 | # CONFIG_CRYPTO_SEQIV is not set |
| 1000 | CONFIG_CRYPTO_MANAGER=y | 1280 | # CONFIG_CRYPTO_MANAGER is not set |
| 1001 | # CONFIG_CRYPTO_HMAC is not set | 1281 | # CONFIG_CRYPTO_HMAC is not set |
| 1002 | # CONFIG_CRYPTO_XCBC is not set | 1282 | # CONFIG_CRYPTO_XCBC is not set |
| 1003 | # CONFIG_CRYPTO_NULL is not set | 1283 | # CONFIG_CRYPTO_NULL is not set |
| 1004 | # CONFIG_CRYPTO_MD4 is not set | 1284 | # CONFIG_CRYPTO_MD4 is not set |
| 1005 | CONFIG_CRYPTO_MD5=y | 1285 | # CONFIG_CRYPTO_MD5 is not set |
| 1006 | # CONFIG_CRYPTO_SHA1 is not set | 1286 | # CONFIG_CRYPTO_SHA1 is not set |
| 1007 | # CONFIG_CRYPTO_SHA256 is not set | 1287 | # CONFIG_CRYPTO_SHA256 is not set |
| 1008 | # CONFIG_CRYPTO_SHA512 is not set | 1288 | # CONFIG_CRYPTO_SHA512 is not set |
| 1009 | # CONFIG_CRYPTO_WP512 is not set | 1289 | # CONFIG_CRYPTO_WP512 is not set |
| 1010 | # CONFIG_CRYPTO_TGR192 is not set | 1290 | # CONFIG_CRYPTO_TGR192 is not set |
| 1011 | # CONFIG_CRYPTO_GF128MUL is not set | 1291 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1012 | CONFIG_CRYPTO_ECB=m | 1292 | # CONFIG_CRYPTO_ECB is not set |
| 1013 | CONFIG_CRYPTO_CBC=y | 1293 | # CONFIG_CRYPTO_CBC is not set |
| 1014 | CONFIG_CRYPTO_PCBC=m | 1294 | # CONFIG_CRYPTO_PCBC is not set |
| 1015 | # CONFIG_CRYPTO_LRW is not set | 1295 | # CONFIG_CRYPTO_LRW is not set |
| 1016 | # CONFIG_CRYPTO_XTS is not set | 1296 | # CONFIG_CRYPTO_XTS is not set |
| 1017 | # CONFIG_CRYPTO_CTR is not set | 1297 | # CONFIG_CRYPTO_CTR is not set |
| 1018 | # CONFIG_CRYPTO_GCM is not set | 1298 | # CONFIG_CRYPTO_GCM is not set |
| 1019 | # CONFIG_CRYPTO_CCM is not set | 1299 | # CONFIG_CRYPTO_CCM is not set |
| 1020 | # CONFIG_CRYPTO_CRYPTD is not set | 1300 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1021 | CONFIG_CRYPTO_DES=y | 1301 | # CONFIG_CRYPTO_DES is not set |
| 1022 | # CONFIG_CRYPTO_FCRYPT is not set | 1302 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1023 | # CONFIG_CRYPTO_BLOWFISH is not set | 1303 | # CONFIG_CRYPTO_BLOWFISH is not set |
| 1024 | # CONFIG_CRYPTO_TWOFISH is not set | 1304 | # CONFIG_CRYPTO_TWOFISH is not set |
| @@ -1052,6 +1332,7 @@ CONFIG_CRC32=y | |||
| 1052 | # CONFIG_CRC7 is not set | 1332 | # CONFIG_CRC7 is not set |
| 1053 | # CONFIG_LIBCRC32C is not set | 1333 | # CONFIG_LIBCRC32C is not set |
| 1054 | CONFIG_ZLIB_INFLATE=y | 1334 | CONFIG_ZLIB_INFLATE=y |
| 1335 | CONFIG_ZLIB_DEFLATE=y | ||
| 1055 | CONFIG_PLIST=y | 1336 | CONFIG_PLIST=y |
| 1056 | CONFIG_HAS_IOMEM=y | 1337 | CONFIG_HAS_IOMEM=y |
| 1057 | CONFIG_HAS_IOPORT=y | 1338 | CONFIG_HAS_IOPORT=y |
diff --git a/arch/arm/configs/omap_h4_2420_defconfig b/arch/arm/configs/omap_h4_2420_defconfig new file mode 100644 index 000000000000..5bc89185a64f --- /dev/null +++ b/arch/arm/configs/omap_h4_2420_defconfig | |||
| @@ -0,0 +1,1120 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:44:58 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | CONFIG_LOCALVERSION="" | ||
| 35 | CONFIG_LOCALVERSION_AUTO=y | ||
| 36 | CONFIG_SWAP=y | ||
| 37 | CONFIG_SYSVIPC=y | ||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 39 | # CONFIG_POSIX_MQUEUE is not set | ||
| 40 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 42 | # CONFIG_TASKSTATS is not set | ||
| 43 | # CONFIG_USER_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | ||
| 48 | # CONFIG_RELAY is not set | ||
| 49 | CONFIG_BLK_DEV_INITRD=y | ||
| 50 | CONFIG_INITRAMFS_SOURCE="" | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | CONFIG_EMBEDDED=y | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_ALL is not set | ||
| 58 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | CONFIG_MODULES=y | ||
| 79 | CONFIG_MODULE_UNLOAD=y | ||
| 80 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 81 | CONFIG_MODVERSIONS=y | ||
| 82 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
| 83 | CONFIG_KMOD=y | ||
| 84 | CONFIG_BLOCK=y | ||
| 85 | # CONFIG_LBD is not set | ||
| 86 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 87 | # CONFIG_LSF is not set | ||
| 88 | # CONFIG_BLK_DEV_BSG is not set | ||
| 89 | |||
| 90 | # | ||
| 91 | # IO Schedulers | ||
| 92 | # | ||
| 93 | CONFIG_IOSCHED_NOOP=y | ||
| 94 | CONFIG_IOSCHED_AS=y | ||
| 95 | CONFIG_IOSCHED_DEADLINE=y | ||
| 96 | CONFIG_IOSCHED_CFQ=y | ||
| 97 | CONFIG_DEFAULT_AS=y | ||
| 98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 99 | # CONFIG_DEFAULT_CFQ is not set | ||
| 100 | # CONFIG_DEFAULT_NOOP is not set | ||
| 101 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 102 | |||
| 103 | # | ||
| 104 | # System Type | ||
| 105 | # | ||
| 106 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 107 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 108 | # CONFIG_ARCH_REALVIEW is not set | ||
| 109 | # CONFIG_ARCH_VERSATILE is not set | ||
| 110 | # CONFIG_ARCH_AT91 is not set | ||
| 111 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 112 | # CONFIG_ARCH_CLPS711X is not set | ||
| 113 | # CONFIG_ARCH_CO285 is not set | ||
| 114 | # CONFIG_ARCH_EBSA110 is not set | ||
| 115 | # CONFIG_ARCH_EP93XX is not set | ||
| 116 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 117 | # CONFIG_ARCH_NETX is not set | ||
| 118 | # CONFIG_ARCH_H720X is not set | ||
| 119 | # CONFIG_ARCH_IMX is not set | ||
| 120 | # CONFIG_ARCH_IOP13XX is not set | ||
| 121 | # CONFIG_ARCH_IOP32X is not set | ||
| 122 | # CONFIG_ARCH_IOP33X is not set | ||
| 123 | # CONFIG_ARCH_IXP23XX is not set | ||
| 124 | # CONFIG_ARCH_IXP2000 is not set | ||
| 125 | # CONFIG_ARCH_IXP4XX is not set | ||
| 126 | # CONFIG_ARCH_L7200 is not set | ||
| 127 | # CONFIG_ARCH_KS8695 is not set | ||
| 128 | # CONFIG_ARCH_NS9XXX is not set | ||
| 129 | # CONFIG_ARCH_MXC is not set | ||
| 130 | # CONFIG_ARCH_PNX4008 is not set | ||
| 131 | # CONFIG_ARCH_PXA is not set | ||
| 132 | # CONFIG_ARCH_RPC is not set | ||
| 133 | # CONFIG_ARCH_SA1100 is not set | ||
| 134 | # CONFIG_ARCH_S3C2410 is not set | ||
| 135 | # CONFIG_ARCH_SHARK is not set | ||
| 136 | # CONFIG_ARCH_LH7A40X is not set | ||
| 137 | # CONFIG_ARCH_DAVINCI is not set | ||
| 138 | CONFIG_ARCH_OMAP=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # TI OMAP Implementations | ||
| 142 | # | ||
| 143 | CONFIG_ARCH_OMAP_OTG=y | ||
| 144 | # CONFIG_ARCH_OMAP1 is not set | ||
| 145 | CONFIG_ARCH_OMAP2=y | ||
| 146 | # CONFIG_ARCH_OMAP3 is not set | ||
| 147 | |||
| 148 | # | ||
| 149 | # OMAP Feature Selections | ||
| 150 | # | ||
| 151 | CONFIG_OMAP_DEBUG_DEVICES=y | ||
| 152 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 153 | CONFIG_OMAP_BOOT_TAG=y | ||
| 154 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 155 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 156 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 157 | CONFIG_OMAP_MUX=y | ||
| 158 | CONFIG_OMAP_MUX_DEBUG=y | ||
| 159 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 160 | # CONFIG_OMAP_STI is not set | ||
| 161 | CONFIG_OMAP_MCBSP=y | ||
| 162 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 163 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 164 | CONFIG_OMAP_MPU_TIMER=y | ||
| 165 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 166 | CONFIG_OMAP_DM_TIMER=y | ||
| 167 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 168 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 169 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 170 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 171 | # CONFIG_OMAP_DSP is not set | ||
| 172 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Core Type | ||
| 176 | # | ||
| 177 | CONFIG_ARCH_OMAP24XX=y | ||
| 178 | CONFIG_ARCH_OMAP2420=y | ||
| 179 | # CONFIG_ARCH_OMAP2430 is not set | ||
| 180 | |||
| 181 | # | ||
| 182 | # OMAP Board Type | ||
| 183 | # | ||
| 184 | # CONFIG_MACH_NOKIA_N800 is not set | ||
| 185 | CONFIG_MACH_OMAP_H4=y | ||
| 186 | # CONFIG_MACH_OMAP_H4_TUSB is not set | ||
| 187 | # CONFIG_MACH_OMAP_H4_OTG is not set | ||
| 188 | # CONFIG_MACH_OMAP2_H4_USB1 is not set | ||
| 189 | # CONFIG_MACH_OMAP_APOLLON is not set | ||
| 190 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 191 | # CONFIG_MACH_OMAP_2430SDP is not set | ||
| 192 | |||
| 193 | # | ||
| 194 | # Boot options | ||
| 195 | # | ||
| 196 | |||
| 197 | # | ||
| 198 | # Power management | ||
| 199 | # | ||
| 200 | |||
| 201 | # | ||
| 202 | # Processor Type | ||
| 203 | # | ||
| 204 | CONFIG_CPU_32=y | ||
| 205 | CONFIG_CPU_V6=y | ||
| 206 | # CONFIG_CPU_32v6K is not set | ||
| 207 | CONFIG_CPU_32v6=y | ||
| 208 | CONFIG_CPU_ABRT_EV6=y | ||
| 209 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 210 | CONFIG_CPU_CACHE_V6=y | ||
| 211 | CONFIG_CPU_CACHE_VIPT=y | ||
| 212 | CONFIG_CPU_COPY_V6=y | ||
| 213 | CONFIG_CPU_TLB_V6=y | ||
| 214 | CONFIG_CPU_HAS_ASID=y | ||
| 215 | CONFIG_CPU_CP15=y | ||
| 216 | CONFIG_CPU_CP15_MMU=y | ||
| 217 | |||
| 218 | # | ||
| 219 | # Processor Features | ||
| 220 | # | ||
| 221 | CONFIG_ARM_THUMB=y | ||
| 222 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 223 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 224 | # CONFIG_CPU_BPREDICT_DISABLE is not set | ||
| 225 | # CONFIG_OUTER_CACHE is not set | ||
| 226 | |||
| 227 | # | ||
| 228 | # Bus support | ||
| 229 | # | ||
| 230 | # CONFIG_PCI_SYSCALL is not set | ||
| 231 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 232 | |||
| 233 | # | ||
| 234 | # PCCARD (PCMCIA/CardBus) support | ||
| 235 | # | ||
| 236 | # CONFIG_PCCARD is not set | ||
| 237 | |||
| 238 | # | ||
| 239 | # Kernel Features | ||
| 240 | # | ||
| 241 | # CONFIG_TICK_ONESHOT is not set | ||
| 242 | # CONFIG_NO_HZ is not set | ||
| 243 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 244 | # CONFIG_PREEMPT is not set | ||
| 245 | CONFIG_HZ=100 | ||
| 246 | CONFIG_AEABI=y | ||
| 247 | CONFIG_OABI_COMPAT=y | ||
| 248 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 249 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 250 | CONFIG_FLATMEM_MANUAL=y | ||
| 251 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 252 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 253 | CONFIG_FLATMEM=y | ||
| 254 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 255 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 256 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 257 | # CONFIG_RESOURCES_64BIT is not set | ||
| 258 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 259 | CONFIG_BOUNCE=y | ||
| 260 | CONFIG_VIRT_TO_BUS=y | ||
| 261 | # CONFIG_LEDS is not set | ||
| 262 | CONFIG_ALIGNMENT_TRAP=y | ||
| 263 | |||
| 264 | # | ||
| 265 | # Boot options | ||
| 266 | # | ||
| 267 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 268 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 269 | CONFIG_CMDLINE="root=/dev/ram0 rw console=ttyS0,115200n8 initrd=0x80600000,8M ramdisk_size=8192" | ||
| 270 | # CONFIG_XIP_KERNEL is not set | ||
| 271 | # CONFIG_KEXEC is not set | ||
| 272 | |||
| 273 | # | ||
| 274 | # CPU Frequency scaling | ||
| 275 | # | ||
| 276 | # CONFIG_CPU_FREQ is not set | ||
| 277 | |||
| 278 | # | ||
| 279 | # Floating point emulation | ||
| 280 | # | ||
| 281 | |||
| 282 | # | ||
| 283 | # At least one emulation must be selected | ||
| 284 | # | ||
| 285 | CONFIG_FPE_NWFPE=y | ||
| 286 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 287 | # CONFIG_FPE_FASTFPE is not set | ||
| 288 | # CONFIG_VFP is not set | ||
| 289 | |||
| 290 | # | ||
| 291 | # Userspace binary formats | ||
| 292 | # | ||
| 293 | CONFIG_BINFMT_ELF=y | ||
| 294 | # CONFIG_BINFMT_AOUT is not set | ||
| 295 | CONFIG_BINFMT_MISC=y | ||
| 296 | |||
| 297 | # | ||
| 298 | # Power management options | ||
| 299 | # | ||
| 300 | # CONFIG_PM is not set | ||
| 301 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 302 | |||
| 303 | # | ||
| 304 | # Networking | ||
| 305 | # | ||
| 306 | CONFIG_NET=y | ||
| 307 | |||
| 308 | # | ||
| 309 | # Networking options | ||
| 310 | # | ||
| 311 | CONFIG_PACKET=y | ||
| 312 | # CONFIG_PACKET_MMAP is not set | ||
| 313 | CONFIG_UNIX=y | ||
| 314 | CONFIG_XFRM=y | ||
| 315 | # CONFIG_XFRM_USER is not set | ||
| 316 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 317 | # CONFIG_XFRM_MIGRATE is not set | ||
| 318 | CONFIG_NET_KEY=y | ||
| 319 | # CONFIG_NET_KEY_MIGRATE is not set | ||
| 320 | CONFIG_INET=y | ||
| 321 | # CONFIG_IP_MULTICAST is not set | ||
| 322 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 323 | CONFIG_IP_FIB_HASH=y | ||
| 324 | CONFIG_IP_PNP=y | ||
| 325 | CONFIG_IP_PNP_DHCP=y | ||
| 326 | # CONFIG_IP_PNP_BOOTP is not set | ||
| 327 | # CONFIG_IP_PNP_RARP is not set | ||
| 328 | # CONFIG_NET_IPIP is not set | ||
| 329 | # CONFIG_NET_IPGRE is not set | ||
| 330 | # CONFIG_ARPD is not set | ||
| 331 | # CONFIG_SYN_COOKIES is not set | ||
| 332 | # CONFIG_INET_AH is not set | ||
| 333 | # CONFIG_INET_ESP is not set | ||
| 334 | # CONFIG_INET_IPCOMP is not set | ||
| 335 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 336 | # CONFIG_INET_TUNNEL is not set | ||
| 337 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 338 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 339 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 340 | CONFIG_INET_DIAG=y | ||
| 341 | CONFIG_INET_TCP_DIAG=y | ||
| 342 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 343 | CONFIG_TCP_CONG_CUBIC=y | ||
| 344 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 345 | # CONFIG_TCP_MD5SIG is not set | ||
| 346 | # CONFIG_IPV6 is not set | ||
| 347 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 348 | # CONFIG_INET6_TUNNEL is not set | ||
| 349 | # CONFIG_NETWORK_SECMARK is not set | ||
| 350 | # CONFIG_NETFILTER is not set | ||
| 351 | # CONFIG_IP_DCCP is not set | ||
| 352 | # CONFIG_IP_SCTP is not set | ||
| 353 | # CONFIG_TIPC is not set | ||
| 354 | # CONFIG_ATM is not set | ||
| 355 | # CONFIG_BRIDGE is not set | ||
| 356 | # CONFIG_VLAN_8021Q is not set | ||
| 357 | # CONFIG_DECNET is not set | ||
| 358 | # CONFIG_LLC2 is not set | ||
| 359 | # CONFIG_IPX is not set | ||
| 360 | # CONFIG_ATALK is not set | ||
| 361 | # CONFIG_X25 is not set | ||
| 362 | # CONFIG_LAPB is not set | ||
| 363 | # CONFIG_ECONET is not set | ||
| 364 | # CONFIG_WAN_ROUTER is not set | ||
| 365 | |||
| 366 | # | ||
| 367 | # QoS and/or fair queueing | ||
| 368 | # | ||
| 369 | # CONFIG_NET_SCHED is not set | ||
| 370 | |||
| 371 | # | ||
| 372 | # Network testing | ||
| 373 | # | ||
| 374 | # CONFIG_NET_PKTGEN is not set | ||
| 375 | # CONFIG_HAMRADIO is not set | ||
| 376 | CONFIG_IRDA=y | ||
| 377 | |||
| 378 | # | ||
| 379 | # IrDA protocols | ||
| 380 | # | ||
| 381 | CONFIG_IRLAN=y | ||
| 382 | CONFIG_IRCOMM=y | ||
| 383 | # CONFIG_IRDA_ULTRA is not set | ||
| 384 | |||
| 385 | # | ||
| 386 | # IrDA options | ||
| 387 | # | ||
| 388 | # CONFIG_IRDA_CACHE_LAST_LSAP is not set | ||
| 389 | # CONFIG_IRDA_FAST_RR is not set | ||
| 390 | # CONFIG_IRDA_DEBUG is not set | ||
| 391 | |||
| 392 | # | ||
| 393 | # Infrared-port device drivers | ||
| 394 | # | ||
| 395 | |||
| 396 | # | ||
| 397 | # SIR device drivers | ||
| 398 | # | ||
| 399 | # CONFIG_IRTTY_SIR is not set | ||
| 400 | |||
| 401 | # | ||
| 402 | # Dongle support | ||
| 403 | # | ||
| 404 | |||
| 405 | # | ||
| 406 | # Old SIR device drivers | ||
| 407 | # | ||
| 408 | # CONFIG_IRPORT_SIR is not set | ||
| 409 | |||
| 410 | # | ||
| 411 | # Old Serial dongle support | ||
| 412 | # | ||
| 413 | |||
| 414 | # | ||
| 415 | # FIR device drivers | ||
| 416 | # | ||
| 417 | CONFIG_OMAP_IR=y | ||
| 418 | # CONFIG_BT is not set | ||
| 419 | # CONFIG_AF_RXRPC is not set | ||
| 420 | |||
| 421 | # | ||
| 422 | # Wireless | ||
| 423 | # | ||
| 424 | # CONFIG_CFG80211 is not set | ||
| 425 | # CONFIG_WIRELESS_EXT is not set | ||
| 426 | # CONFIG_MAC80211 is not set | ||
| 427 | # CONFIG_IEEE80211 is not set | ||
| 428 | # CONFIG_RFKILL is not set | ||
| 429 | # CONFIG_NET_9P is not set | ||
| 430 | |||
| 431 | # | ||
| 432 | # Device Drivers | ||
| 433 | # | ||
| 434 | |||
| 435 | # | ||
| 436 | # Generic Driver Options | ||
| 437 | # | ||
| 438 | CONFIG_STANDALONE=y | ||
| 439 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 440 | # CONFIG_FW_LOADER is not set | ||
| 441 | # CONFIG_DEBUG_DRIVER is not set | ||
| 442 | # CONFIG_DEBUG_DEVRES is not set | ||
| 443 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 444 | # CONFIG_CONNECTOR is not set | ||
| 445 | CONFIG_MTD=y | ||
| 446 | # CONFIG_MTD_DEBUG is not set | ||
| 447 | CONFIG_MTD_CONCAT=y | ||
| 448 | CONFIG_MTD_PARTITIONS=y | ||
| 449 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 450 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 451 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 452 | |||
| 453 | # | ||
| 454 | # User Modules And Translation Layers | ||
| 455 | # | ||
| 456 | CONFIG_MTD_CHAR=y | ||
| 457 | CONFIG_MTD_BLKDEVS=y | ||
| 458 | CONFIG_MTD_BLOCK=y | ||
| 459 | # CONFIG_FTL is not set | ||
| 460 | # CONFIG_NFTL is not set | ||
| 461 | # CONFIG_INFTL is not set | ||
| 462 | # CONFIG_RFD_FTL is not set | ||
| 463 | # CONFIG_SSFDC is not set | ||
| 464 | |||
| 465 | # | ||
| 466 | # RAM/ROM/Flash chip drivers | ||
| 467 | # | ||
| 468 | CONFIG_MTD_CFI=y | ||
| 469 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 470 | CONFIG_MTD_GEN_PROBE=y | ||
| 471 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 472 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 473 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 474 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 475 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 476 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 477 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 478 | CONFIG_MTD_CFI_I1=y | ||
| 479 | CONFIG_MTD_CFI_I2=y | ||
| 480 | # CONFIG_MTD_CFI_I4 is not set | ||
| 481 | # CONFIG_MTD_CFI_I8 is not set | ||
| 482 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 483 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
| 484 | # CONFIG_MTD_CFI_STAA is not set | ||
| 485 | CONFIG_MTD_CFI_UTIL=y | ||
| 486 | # CONFIG_MTD_RAM is not set | ||
| 487 | # CONFIG_MTD_ROM is not set | ||
| 488 | # CONFIG_MTD_ABSENT is not set | ||
| 489 | |||
| 490 | # | ||
| 491 | # Mapping drivers for chip access | ||
| 492 | # | ||
| 493 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 494 | # CONFIG_MTD_PHYSMAP is not set | ||
| 495 | # CONFIG_MTD_ARM_INTEGRATOR is not set | ||
| 496 | CONFIG_MTD_OMAP_NOR=y | ||
| 497 | # CONFIG_MTD_PLATRAM is not set | ||
| 498 | |||
| 499 | # | ||
| 500 | # Self-contained MTD device drivers | ||
| 501 | # | ||
| 502 | # CONFIG_MTD_SLRAM is not set | ||
| 503 | # CONFIG_MTD_PHRAM is not set | ||
| 504 | # CONFIG_MTD_MTDRAM is not set | ||
| 505 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # Disk-On-Chip Device Drivers | ||
| 509 | # | ||
| 510 | # CONFIG_MTD_DOC2000 is not set | ||
| 511 | # CONFIG_MTD_DOC2001 is not set | ||
| 512 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 513 | # CONFIG_MTD_NAND is not set | ||
| 514 | # CONFIG_MTD_ONENAND is not set | ||
| 515 | |||
| 516 | # | ||
| 517 | # UBI - Unsorted block images | ||
| 518 | # | ||
| 519 | # CONFIG_MTD_UBI is not set | ||
| 520 | # CONFIG_PARPORT is not set | ||
| 521 | CONFIG_BLK_DEV=y | ||
| 522 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 523 | CONFIG_BLK_DEV_LOOP=y | ||
| 524 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 525 | # CONFIG_BLK_DEV_NBD is not set | ||
| 526 | CONFIG_BLK_DEV_RAM=y | ||
| 527 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 528 | CONFIG_BLK_DEV_RAM_SIZE=16384 | ||
| 529 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 530 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 531 | # CONFIG_ATA_OVER_ETH is not set | ||
| 532 | |||
| 533 | # | ||
| 534 | # SCSI device support | ||
| 535 | # | ||
| 536 | # CONFIG_RAID_ATTRS is not set | ||
| 537 | # CONFIG_SCSI is not set | ||
| 538 | # CONFIG_SCSI_DMA is not set | ||
| 539 | # CONFIG_SCSI_NETLINK is not set | ||
| 540 | # CONFIG_ATA is not set | ||
| 541 | # CONFIG_MD is not set | ||
| 542 | CONFIG_NETDEVICES=y | ||
| 543 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 544 | # CONFIG_DUMMY is not set | ||
| 545 | # CONFIG_BONDING is not set | ||
| 546 | # CONFIG_MACVLAN is not set | ||
| 547 | # CONFIG_EQUALIZER is not set | ||
| 548 | # CONFIG_TUN is not set | ||
| 549 | # CONFIG_PHYLIB is not set | ||
| 550 | CONFIG_NET_ETHERNET=y | ||
| 551 | CONFIG_MII=y | ||
| 552 | # CONFIG_AX88796 is not set | ||
| 553 | CONFIG_SMC91X=y | ||
| 554 | # CONFIG_DM9000 is not set | ||
| 555 | CONFIG_NETDEV_1000=y | ||
| 556 | CONFIG_NETDEV_10000=y | ||
| 557 | |||
| 558 | # | ||
| 559 | # Wireless LAN | ||
| 560 | # | ||
| 561 | # CONFIG_WLAN_PRE80211 is not set | ||
| 562 | # CONFIG_WLAN_80211 is not set | ||
| 563 | # CONFIG_WAN is not set | ||
| 564 | # CONFIG_PPP is not set | ||
| 565 | # CONFIG_SLIP is not set | ||
| 566 | # CONFIG_SHAPER is not set | ||
| 567 | # CONFIG_NETCONSOLE is not set | ||
| 568 | # CONFIG_NETPOLL is not set | ||
| 569 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 570 | # CONFIG_ISDN is not set | ||
| 571 | |||
| 572 | # | ||
| 573 | # Input device support | ||
| 574 | # | ||
| 575 | CONFIG_INPUT=y | ||
| 576 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 577 | # CONFIG_INPUT_POLLDEV is not set | ||
| 578 | |||
| 579 | # | ||
| 580 | # Userland interfaces | ||
| 581 | # | ||
| 582 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 583 | # CONFIG_INPUT_JOYDEV is not set | ||
| 584 | # CONFIG_INPUT_TSDEV is not set | ||
| 585 | CONFIG_INPUT_EVDEV=y | ||
| 586 | # CONFIG_INPUT_EVBUG is not set | ||
| 587 | |||
| 588 | # | ||
| 589 | # Input Device Drivers | ||
| 590 | # | ||
| 591 | CONFIG_INPUT_KEYBOARD=y | ||
| 592 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 593 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 594 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 595 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 596 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 597 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 598 | CONFIG_KEYBOARD_OMAP=y | ||
| 599 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 600 | # CONFIG_INPUT_MOUSE is not set | ||
| 601 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 602 | # CONFIG_INPUT_TABLET is not set | ||
| 603 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 604 | # CONFIG_INPUT_MISC is not set | ||
| 605 | |||
| 606 | # | ||
| 607 | # Hardware I/O ports | ||
| 608 | # | ||
| 609 | # CONFIG_SERIO is not set | ||
| 610 | # CONFIG_GAMEPORT is not set | ||
| 611 | |||
| 612 | # | ||
| 613 | # Character devices | ||
| 614 | # | ||
| 615 | CONFIG_VT=y | ||
| 616 | CONFIG_VT_CONSOLE=y | ||
| 617 | CONFIG_HW_CONSOLE=y | ||
| 618 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 619 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 620 | |||
| 621 | # | ||
| 622 | # Serial drivers | ||
| 623 | # | ||
| 624 | CONFIG_SERIAL_8250=y | ||
| 625 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 626 | CONFIG_SERIAL_8250_NR_UARTS=32 | ||
| 627 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 628 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 629 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
| 630 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 631 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
| 632 | CONFIG_SERIAL_8250_RSA=y | ||
| 633 | |||
| 634 | # | ||
| 635 | # Non-8250 serial port support | ||
| 636 | # | ||
| 637 | CONFIG_SERIAL_CORE=y | ||
| 638 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 639 | CONFIG_UNIX98_PTYS=y | ||
| 640 | # CONFIG_LEGACY_PTYS is not set | ||
| 641 | # CONFIG_IPMI_HANDLER is not set | ||
| 642 | CONFIG_WATCHDOG=y | ||
| 643 | CONFIG_WATCHDOG_NOWAYOUT=y | ||
| 644 | |||
| 645 | # | ||
| 646 | # Watchdog Device Drivers | ||
| 647 | # | ||
| 648 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 649 | CONFIG_OMAP_WATCHDOG=y | ||
| 650 | CONFIG_HW_RANDOM=m | ||
| 651 | CONFIG_HW_RANDOM_OMAP=m | ||
| 652 | # CONFIG_NVRAM is not set | ||
| 653 | # CONFIG_R3964 is not set | ||
| 654 | # CONFIG_RAW_DRIVER is not set | ||
| 655 | # CONFIG_TCG_TPM is not set | ||
| 656 | CONFIG_I2C=y | ||
| 657 | CONFIG_I2C_BOARDINFO=y | ||
| 658 | # CONFIG_I2C_CHARDEV is not set | ||
| 659 | |||
| 660 | # | ||
| 661 | # I2C Algorithms | ||
| 662 | # | ||
| 663 | # CONFIG_I2C_ALGOBIT is not set | ||
| 664 | # CONFIG_I2C_ALGOPCF is not set | ||
| 665 | # CONFIG_I2C_ALGOPCA is not set | ||
| 666 | |||
| 667 | # | ||
| 668 | # I2C Hardware Bus support | ||
| 669 | # | ||
| 670 | # CONFIG_I2C_GPIO is not set | ||
| 671 | # CONFIG_I2C_OCORES is not set | ||
| 672 | CONFIG_I2C_OMAP=y | ||
| 673 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 674 | # CONFIG_I2C_SIMTEC is not set | ||
| 675 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 676 | # CONFIG_I2C_STUB is not set | ||
| 677 | |||
| 678 | # | ||
| 679 | # Miscellaneous I2C Chip support | ||
| 680 | # | ||
| 681 | # CONFIG_SENSORS_DS1337 is not set | ||
| 682 | # CONFIG_SENSORS_DS1374 is not set | ||
| 683 | # CONFIG_DS1682 is not set | ||
| 684 | # CONFIG_SENSORS_EEPROM is not set | ||
| 685 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 686 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 687 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 688 | # CONFIG_ISP1301_OMAP is not set | ||
| 689 | # CONFIG_TPS65010 is not set | ||
| 690 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 691 | CONFIG_GPIOEXPANDER_OMAP=y | ||
| 692 | # CONFIG_TWL4030_CORE is not set | ||
| 693 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 694 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 695 | CONFIG_MENELAUS=y | ||
| 696 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 697 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 698 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 699 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 700 | |||
| 701 | # | ||
| 702 | # SPI support | ||
| 703 | # | ||
| 704 | # CONFIG_SPI is not set | ||
| 705 | # CONFIG_SPI_MASTER is not set | ||
| 706 | # CONFIG_W1 is not set | ||
| 707 | # CONFIG_HWMON is not set | ||
| 708 | CONFIG_MISC_DEVICES=y | ||
| 709 | # CONFIG_EEPROM_93CX6 is not set | ||
| 710 | |||
| 711 | # | ||
| 712 | # Multifunction device drivers | ||
| 713 | # | ||
| 714 | # CONFIG_MFD_SM501 is not set | ||
| 715 | # CONFIG_NEW_LEDS is not set | ||
| 716 | |||
| 717 | # | ||
| 718 | # Multimedia devices | ||
| 719 | # | ||
| 720 | # CONFIG_VIDEO_DEV is not set | ||
| 721 | # CONFIG_DVB_CORE is not set | ||
| 722 | CONFIG_DAB=y | ||
| 723 | |||
| 724 | # | ||
| 725 | # Graphics support | ||
| 726 | # | ||
| 727 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 728 | |||
| 729 | # | ||
| 730 | # Display device support | ||
| 731 | # | ||
| 732 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 733 | # CONFIG_VGASTATE is not set | ||
| 734 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 735 | CONFIG_FB=y | ||
| 736 | CONFIG_FIRMWARE_EDID=y | ||
| 737 | # CONFIG_FB_DDC is not set | ||
| 738 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 739 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 740 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 741 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 742 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 743 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 744 | # CONFIG_FB_SYS_FOPS is not set | ||
| 745 | CONFIG_FB_DEFERRED_IO=y | ||
| 746 | # CONFIG_FB_SVGALIB is not set | ||
| 747 | # CONFIG_FB_MACMODES is not set | ||
| 748 | # CONFIG_FB_BACKLIGHT is not set | ||
| 749 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 750 | # CONFIG_FB_TILEBLITTING is not set | ||
| 751 | |||
| 752 | # | ||
| 753 | # Frame buffer hardware drivers | ||
| 754 | # | ||
| 755 | # CONFIG_FB_S1D13XXX is not set | ||
| 756 | CONFIG_FB_OMAP=y | ||
| 757 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 758 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 759 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 760 | # CONFIG_FB_VIRTUAL is not set | ||
| 761 | |||
| 762 | # | ||
| 763 | # Console display driver support | ||
| 764 | # | ||
| 765 | # CONFIG_VGA_CONSOLE is not set | ||
| 766 | CONFIG_DUMMY_CONSOLE=y | ||
| 767 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 768 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 769 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 770 | # CONFIG_FONTS is not set | ||
| 771 | CONFIG_FONT_8x8=y | ||
| 772 | CONFIG_FONT_8x16=y | ||
| 773 | CONFIG_LOGO=y | ||
| 774 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 775 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 776 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 777 | |||
| 778 | # | ||
| 779 | # Sound | ||
| 780 | # | ||
| 781 | # CONFIG_SOUND is not set | ||
| 782 | CONFIG_HID_SUPPORT=y | ||
| 783 | CONFIG_HID=y | ||
| 784 | # CONFIG_HID_DEBUG is not set | ||
| 785 | CONFIG_USB_SUPPORT=y | ||
| 786 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 787 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 788 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 789 | # CONFIG_USB is not set | ||
| 790 | |||
| 791 | # | ||
| 792 | # Enable Host or Gadget support to see Inventra options | ||
| 793 | # | ||
| 794 | |||
| 795 | # | ||
| 796 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 797 | # | ||
| 798 | |||
| 799 | # | ||
| 800 | # USB Gadget Support | ||
| 801 | # | ||
| 802 | # CONFIG_USB_GADGET is not set | ||
| 803 | CONFIG_MMC=y | ||
| 804 | # CONFIG_MMC_DEBUG is not set | ||
| 805 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 806 | |||
| 807 | # | ||
| 808 | # MMC/SD Card Drivers | ||
| 809 | # | ||
| 810 | CONFIG_MMC_BLOCK=y | ||
| 811 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 812 | |||
| 813 | # | ||
| 814 | # MMC/SD Host Controller Drivers | ||
| 815 | # | ||
| 816 | CONFIG_MMC_OMAP=y | ||
| 817 | CONFIG_RTC_LIB=y | ||
| 818 | # CONFIG_RTC_CLASS is not set | ||
| 819 | |||
| 820 | # | ||
| 821 | # DMA Engine support | ||
| 822 | # | ||
| 823 | # CONFIG_DMA_ENGINE is not set | ||
| 824 | |||
| 825 | # | ||
| 826 | # DMA Clients | ||
| 827 | # | ||
| 828 | |||
| 829 | # | ||
| 830 | # DMA Devices | ||
| 831 | # | ||
| 832 | |||
| 833 | # | ||
| 834 | # CBUS support | ||
| 835 | # | ||
| 836 | # CONFIG_CBUS is not set | ||
| 837 | |||
| 838 | # | ||
| 839 | # File systems | ||
| 840 | # | ||
| 841 | CONFIG_EXT2_FS=y | ||
| 842 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 843 | # CONFIG_EXT2_FS_XIP is not set | ||
| 844 | CONFIG_EXT3_FS=y | ||
| 845 | # CONFIG_EXT3_FS_XATTR is not set | ||
| 846 | # CONFIG_EXT4DEV_FS is not set | ||
| 847 | CONFIG_JBD=y | ||
| 848 | # CONFIG_JBD_DEBUG is not set | ||
| 849 | # CONFIG_REISERFS_FS is not set | ||
| 850 | # CONFIG_JFS_FS is not set | ||
| 851 | # CONFIG_FS_POSIX_ACL is not set | ||
| 852 | # CONFIG_XFS_FS is not set | ||
| 853 | # CONFIG_GFS2_FS is not set | ||
| 854 | # CONFIG_OCFS2_FS is not set | ||
| 855 | # CONFIG_MINIX_FS is not set | ||
| 856 | # CONFIG_ROMFS_FS is not set | ||
| 857 | CONFIG_INOTIFY=y | ||
| 858 | CONFIG_INOTIFY_USER=y | ||
| 859 | CONFIG_QUOTA=y | ||
| 860 | # CONFIG_QFMT_V1 is not set | ||
| 861 | CONFIG_QFMT_V2=y | ||
| 862 | CONFIG_QUOTACTL=y | ||
| 863 | CONFIG_DNOTIFY=y | ||
| 864 | # CONFIG_AUTOFS_FS is not set | ||
| 865 | # CONFIG_AUTOFS4_FS is not set | ||
| 866 | # CONFIG_FUSE_FS is not set | ||
| 867 | |||
| 868 | # | ||
| 869 | # CD-ROM/DVD Filesystems | ||
| 870 | # | ||
| 871 | # CONFIG_ISO9660_FS is not set | ||
| 872 | # CONFIG_UDF_FS is not set | ||
| 873 | |||
| 874 | # | ||
| 875 | # DOS/FAT/NT Filesystems | ||
| 876 | # | ||
| 877 | CONFIG_FAT_FS=y | ||
| 878 | CONFIG_MSDOS_FS=y | ||
| 879 | CONFIG_VFAT_FS=y | ||
| 880 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 881 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 882 | # CONFIG_NTFS_FS is not set | ||
| 883 | |||
| 884 | # | ||
| 885 | # Pseudo filesystems | ||
| 886 | # | ||
| 887 | CONFIG_PROC_FS=y | ||
| 888 | CONFIG_PROC_SYSCTL=y | ||
| 889 | CONFIG_SYSFS=y | ||
| 890 | CONFIG_TMPFS=y | ||
| 891 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 892 | # CONFIG_HUGETLB_PAGE is not set | ||
| 893 | CONFIG_RAMFS=y | ||
| 894 | # CONFIG_CONFIGFS_FS is not set | ||
| 895 | |||
| 896 | # | ||
| 897 | # Miscellaneous filesystems | ||
| 898 | # | ||
| 899 | # CONFIG_ADFS_FS is not set | ||
| 900 | # CONFIG_AFFS_FS is not set | ||
| 901 | # CONFIG_HFS_FS is not set | ||
| 902 | # CONFIG_HFSPLUS_FS is not set | ||
| 903 | # CONFIG_BEFS_FS is not set | ||
| 904 | # CONFIG_BFS_FS is not set | ||
| 905 | # CONFIG_EFS_FS is not set | ||
| 906 | CONFIG_JFFS2_FS=y | ||
| 907 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 908 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 909 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 910 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 911 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 912 | CONFIG_JFFS2_ZLIB=y | ||
| 913 | CONFIG_JFFS2_RTIME=y | ||
| 914 | # CONFIG_JFFS2_RUBIN is not set | ||
| 915 | # CONFIG_CRAMFS is not set | ||
| 916 | # CONFIG_VXFS_FS is not set | ||
| 917 | # CONFIG_HPFS_FS is not set | ||
| 918 | # CONFIG_QNX4FS_FS is not set | ||
| 919 | # CONFIG_SYSV_FS is not set | ||
| 920 | # CONFIG_UFS_FS is not set | ||
| 921 | |||
| 922 | # | ||
| 923 | # Network File Systems | ||
| 924 | # | ||
| 925 | CONFIG_NFS_FS=y | ||
| 926 | CONFIG_NFS_V3=y | ||
| 927 | # CONFIG_NFS_V3_ACL is not set | ||
| 928 | CONFIG_NFS_V4=y | ||
| 929 | # CONFIG_NFS_DIRECTIO is not set | ||
| 930 | # CONFIG_NFSD is not set | ||
| 931 | CONFIG_ROOT_NFS=y | ||
| 932 | CONFIG_LOCKD=y | ||
| 933 | CONFIG_LOCKD_V4=y | ||
| 934 | CONFIG_NFS_COMMON=y | ||
| 935 | CONFIG_SUNRPC=y | ||
| 936 | CONFIG_SUNRPC_GSS=y | ||
| 937 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 938 | CONFIG_RPCSEC_GSS_KRB5=y | ||
| 939 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 940 | # CONFIG_SMB_FS is not set | ||
| 941 | # CONFIG_CIFS is not set | ||
| 942 | # CONFIG_NCP_FS is not set | ||
| 943 | # CONFIG_CODA_FS is not set | ||
| 944 | # CONFIG_AFS_FS is not set | ||
| 945 | |||
| 946 | # | ||
| 947 | # Partition Types | ||
| 948 | # | ||
| 949 | CONFIG_PARTITION_ADVANCED=y | ||
| 950 | # CONFIG_ACORN_PARTITION is not set | ||
| 951 | # CONFIG_OSF_PARTITION is not set | ||
| 952 | # CONFIG_AMIGA_PARTITION is not set | ||
| 953 | # CONFIG_ATARI_PARTITION is not set | ||
| 954 | # CONFIG_MAC_PARTITION is not set | ||
| 955 | CONFIG_MSDOS_PARTITION=y | ||
| 956 | # CONFIG_BSD_DISKLABEL is not set | ||
| 957 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 958 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 959 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 960 | # CONFIG_LDM_PARTITION is not set | ||
| 961 | # CONFIG_SGI_PARTITION is not set | ||
| 962 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 963 | # CONFIG_SUN_PARTITION is not set | ||
| 964 | # CONFIG_KARMA_PARTITION is not set | ||
| 965 | # CONFIG_EFI_PARTITION is not set | ||
| 966 | # CONFIG_SYSV68_PARTITION is not set | ||
| 967 | |||
| 968 | # | ||
| 969 | # Native Language Support | ||
| 970 | # | ||
| 971 | CONFIG_NLS=y | ||
| 972 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 973 | CONFIG_NLS_CODEPAGE_437=y | ||
| 974 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 975 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 976 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 977 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 978 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 979 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 980 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 981 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 982 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 983 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 984 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 985 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 986 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 987 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 988 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 989 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 990 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 991 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 992 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 993 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 994 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 995 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 996 | # CONFIG_NLS_ASCII is not set | ||
| 997 | # CONFIG_NLS_ISO8859_1 is not set | ||
| 998 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 999 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1000 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1001 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1002 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1003 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1004 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1005 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1006 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1007 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1008 | # CONFIG_NLS_KOI8_R is not set | ||
| 1009 | # CONFIG_NLS_KOI8_U is not set | ||
| 1010 | # CONFIG_NLS_UTF8 is not set | ||
| 1011 | |||
| 1012 | # | ||
| 1013 | # Distributed Lock Manager | ||
| 1014 | # | ||
| 1015 | # CONFIG_DLM is not set | ||
| 1016 | |||
| 1017 | # | ||
| 1018 | # Profiling support | ||
| 1019 | # | ||
| 1020 | # CONFIG_PROFILING is not set | ||
| 1021 | |||
| 1022 | # | ||
| 1023 | # Kernel hacking | ||
| 1024 | # | ||
| 1025 | # CONFIG_PRINTK_TIME is not set | ||
| 1026 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1027 | CONFIG_MAGIC_SYSRQ=y | ||
| 1028 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1029 | # CONFIG_DEBUG_FS is not set | ||
| 1030 | # CONFIG_HEADERS_CHECK is not set | ||
| 1031 | CONFIG_DEBUG_KERNEL=y | ||
| 1032 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1033 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1034 | CONFIG_SCHED_DEBUG=y | ||
| 1035 | # CONFIG_SCHEDSTATS is not set | ||
| 1036 | # CONFIG_TIMER_STATS is not set | ||
| 1037 | # CONFIG_DEBUG_SLAB is not set | ||
| 1038 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1039 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1040 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1041 | CONFIG_DEBUG_MUTEXES=y | ||
| 1042 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1043 | # CONFIG_PROVE_LOCKING is not set | ||
| 1044 | # CONFIG_LOCK_STAT is not set | ||
| 1045 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1046 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1047 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1048 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 1049 | # CONFIG_DEBUG_INFO is not set | ||
| 1050 | # CONFIG_DEBUG_VM is not set | ||
| 1051 | # CONFIG_DEBUG_LIST is not set | ||
| 1052 | CONFIG_FRAME_POINTER=y | ||
| 1053 | CONFIG_FORCED_INLINING=y | ||
| 1054 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1055 | # CONFIG_FAULT_INJECTION is not set | ||
| 1056 | # CONFIG_DEBUG_USER is not set | ||
| 1057 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1058 | CONFIG_DEBUG_LL=y | ||
| 1059 | # CONFIG_DEBUG_ICEDCC is not set | ||
| 1060 | |||
| 1061 | # | ||
| 1062 | # Security options | ||
| 1063 | # | ||
| 1064 | # CONFIG_KEYS is not set | ||
| 1065 | # CONFIG_SECURITY is not set | ||
| 1066 | CONFIG_CRYPTO=y | ||
| 1067 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1068 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 1069 | CONFIG_CRYPTO_MANAGER=y | ||
| 1070 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1071 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1072 | # CONFIG_CRYPTO_NULL is not set | ||
| 1073 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1074 | CONFIG_CRYPTO_MD5=y | ||
| 1075 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1076 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1077 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1078 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1079 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1080 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1081 | CONFIG_CRYPTO_ECB=m | ||
| 1082 | CONFIG_CRYPTO_CBC=y | ||
| 1083 | CONFIG_CRYPTO_PCBC=m | ||
| 1084 | # CONFIG_CRYPTO_LRW is not set | ||
| 1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1086 | CONFIG_CRYPTO_DES=y | ||
| 1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1091 | # CONFIG_CRYPTO_AES is not set | ||
| 1092 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1093 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1094 | # CONFIG_CRYPTO_TEA is not set | ||
| 1095 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1096 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1098 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1099 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1100 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1101 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1102 | # CONFIG_CRYPTO_TEST is not set | ||
| 1103 | CONFIG_CRYPTO_HW=y | ||
| 1104 | |||
| 1105 | # | ||
| 1106 | # Library routines | ||
| 1107 | # | ||
| 1108 | CONFIG_BITREVERSE=y | ||
| 1109 | CONFIG_CRC_CCITT=y | ||
| 1110 | # CONFIG_CRC16 is not set | ||
| 1111 | # CONFIG_CRC_ITU_T is not set | ||
| 1112 | CONFIG_CRC32=y | ||
| 1113 | # CONFIG_CRC7 is not set | ||
| 1114 | CONFIG_LIBCRC32C=y | ||
| 1115 | CONFIG_ZLIB_INFLATE=y | ||
| 1116 | CONFIG_ZLIB_DEFLATE=y | ||
| 1117 | CONFIG_PLIST=y | ||
| 1118 | CONFIG_HAS_IOMEM=y | ||
| 1119 | CONFIG_HAS_IOPORT=y | ||
| 1120 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_innovator_1510_defconfig b/arch/arm/configs/omap_innovator_1510_defconfig new file mode 100644 index 000000000000..55b2611bd90a --- /dev/null +++ b/arch/arm/configs/omap_innovator_1510_defconfig | |||
| @@ -0,0 +1,1253 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:45:02 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | CONFIG_LOCALVERSION_AUTO=y | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 42 | # CONFIG_TASKSTATS is not set | ||
| 43 | # CONFIG_USER_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | ||
| 48 | # CONFIG_RELAY is not set | ||
| 49 | CONFIG_BLK_DEV_INITRD=y | ||
| 50 | CONFIG_INITRAMFS_SOURCE="" | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | # CONFIG_EMBEDDED is not set | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_ALL is not set | ||
| 58 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | CONFIG_MODULES=y | ||
| 79 | CONFIG_MODULE_UNLOAD=y | ||
| 80 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 81 | # CONFIG_MODVERSIONS is not set | ||
| 82 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 83 | CONFIG_KMOD=y | ||
| 84 | CONFIG_BLOCK=y | ||
| 85 | # CONFIG_LBD is not set | ||
| 86 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 87 | # CONFIG_LSF is not set | ||
| 88 | # CONFIG_BLK_DEV_BSG is not set | ||
| 89 | |||
| 90 | # | ||
| 91 | # IO Schedulers | ||
| 92 | # | ||
| 93 | CONFIG_IOSCHED_NOOP=y | ||
| 94 | CONFIG_IOSCHED_AS=y | ||
| 95 | CONFIG_IOSCHED_DEADLINE=y | ||
| 96 | CONFIG_IOSCHED_CFQ=y | ||
| 97 | # CONFIG_DEFAULT_AS is not set | ||
| 98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 99 | CONFIG_DEFAULT_CFQ=y | ||
| 100 | # CONFIG_DEFAULT_NOOP is not set | ||
| 101 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 102 | |||
| 103 | # | ||
| 104 | # System Type | ||
| 105 | # | ||
| 106 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 107 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 108 | # CONFIG_ARCH_REALVIEW is not set | ||
| 109 | # CONFIG_ARCH_VERSATILE is not set | ||
| 110 | # CONFIG_ARCH_AT91 is not set | ||
| 111 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 112 | # CONFIG_ARCH_CLPS711X is not set | ||
| 113 | # CONFIG_ARCH_CO285 is not set | ||
| 114 | # CONFIG_ARCH_EBSA110 is not set | ||
| 115 | # CONFIG_ARCH_EP93XX is not set | ||
| 116 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 117 | # CONFIG_ARCH_NETX is not set | ||
| 118 | # CONFIG_ARCH_H720X is not set | ||
| 119 | # CONFIG_ARCH_IMX is not set | ||
| 120 | # CONFIG_ARCH_IOP13XX is not set | ||
| 121 | # CONFIG_ARCH_IOP32X is not set | ||
| 122 | # CONFIG_ARCH_IOP33X is not set | ||
| 123 | # CONFIG_ARCH_IXP23XX is not set | ||
| 124 | # CONFIG_ARCH_IXP2000 is not set | ||
| 125 | # CONFIG_ARCH_IXP4XX is not set | ||
| 126 | # CONFIG_ARCH_L7200 is not set | ||
| 127 | # CONFIG_ARCH_KS8695 is not set | ||
| 128 | # CONFIG_ARCH_NS9XXX is not set | ||
| 129 | # CONFIG_ARCH_MXC is not set | ||
| 130 | # CONFIG_ARCH_PNX4008 is not set | ||
| 131 | # CONFIG_ARCH_PXA is not set | ||
| 132 | # CONFIG_ARCH_RPC is not set | ||
| 133 | # CONFIG_ARCH_SA1100 is not set | ||
| 134 | # CONFIG_ARCH_S3C2410 is not set | ||
| 135 | # CONFIG_ARCH_SHARK is not set | ||
| 136 | # CONFIG_ARCH_LH7A40X is not set | ||
| 137 | # CONFIG_ARCH_DAVINCI is not set | ||
| 138 | CONFIG_ARCH_OMAP=y | ||
| 139 | |||
| 140 | # | ||
| 141 | # TI OMAP Implementations | ||
| 142 | # | ||
| 143 | CONFIG_ARCH_OMAP1=y | ||
| 144 | # CONFIG_ARCH_OMAP2 is not set | ||
| 145 | # CONFIG_ARCH_OMAP3 is not set | ||
| 146 | |||
| 147 | # | ||
| 148 | # OMAP Feature Selections | ||
| 149 | # | ||
| 150 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 151 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 152 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 153 | CONFIG_OMAP_MUX=y | ||
| 154 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 155 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 156 | CONFIG_OMAP_MCBSP=y | ||
| 157 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 158 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 159 | CONFIG_OMAP_MPU_TIMER=y | ||
| 160 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 161 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 162 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 163 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 164 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 165 | # CONFIG_OMAP_DSP is not set | ||
| 166 | |||
| 167 | # | ||
| 168 | # OMAP Core Type | ||
| 169 | # | ||
| 170 | # CONFIG_ARCH_OMAP730 is not set | ||
| 171 | CONFIG_ARCH_OMAP15XX=y | ||
| 172 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Board Type | ||
| 176 | # | ||
| 177 | CONFIG_MACH_OMAP_INNOVATOR=y | ||
| 178 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 179 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 180 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 181 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 182 | # CONFIG_MACH_SX1 is not set | ||
| 183 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 184 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 185 | |||
| 186 | # | ||
| 187 | # OMAP CPU Speed | ||
| 188 | # | ||
| 189 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 190 | CONFIG_OMAP_ARM_168MHZ=y | ||
| 191 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 192 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 193 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 194 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 195 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 196 | |||
| 197 | # | ||
| 198 | # Boot options | ||
| 199 | # | ||
| 200 | |||
| 201 | # | ||
| 202 | # Power management | ||
| 203 | # | ||
| 204 | |||
| 205 | # | ||
| 206 | # Processor Type | ||
| 207 | # | ||
| 208 | CONFIG_CPU_32=y | ||
| 209 | CONFIG_CPU_ARM925T=y | ||
| 210 | CONFIG_CPU_32v4T=y | ||
| 211 | CONFIG_CPU_ABRT_EV4T=y | ||
| 212 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 213 | CONFIG_CPU_CACHE_V4WT=y | ||
| 214 | CONFIG_CPU_CACHE_VIVT=y | ||
| 215 | CONFIG_CPU_COPY_V4WB=y | ||
| 216 | CONFIG_CPU_TLB_V4WBI=y | ||
| 217 | CONFIG_CPU_CP15=y | ||
| 218 | CONFIG_CPU_CP15_MMU=y | ||
| 219 | |||
| 220 | # | ||
| 221 | # Processor Features | ||
| 222 | # | ||
| 223 | CONFIG_ARM_THUMB=y | ||
| 224 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 225 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 226 | CONFIG_CPU_DCACHE_WRITETHROUGH=y | ||
| 227 | # CONFIG_OUTER_CACHE is not set | ||
| 228 | |||
| 229 | # | ||
| 230 | # Bus support | ||
| 231 | # | ||
| 232 | # CONFIG_PCI_SYSCALL is not set | ||
| 233 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 234 | |||
| 235 | # | ||
| 236 | # PCCARD (PCMCIA/CardBus) support | ||
| 237 | # | ||
| 238 | # CONFIG_PCCARD is not set | ||
| 239 | |||
| 240 | # | ||
| 241 | # Kernel Features | ||
| 242 | # | ||
| 243 | # CONFIG_TICK_ONESHOT is not set | ||
| 244 | # CONFIG_NO_HZ is not set | ||
| 245 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 246 | CONFIG_PREEMPT=y | ||
| 247 | CONFIG_HZ=100 | ||
| 248 | # CONFIG_AEABI is not set | ||
| 249 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 250 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 251 | CONFIG_FLATMEM_MANUAL=y | ||
| 252 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 253 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 254 | CONFIG_FLATMEM=y | ||
| 255 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 256 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 257 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 258 | # CONFIG_RESOURCES_64BIT is not set | ||
| 259 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 260 | CONFIG_BOUNCE=y | ||
| 261 | CONFIG_VIRT_TO_BUS=y | ||
| 262 | CONFIG_LEDS=y | ||
| 263 | CONFIG_ALIGNMENT_TRAP=y | ||
| 264 | |||
| 265 | # | ||
| 266 | # Boot options | ||
| 267 | # | ||
| 268 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 269 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 270 | CONFIG_CMDLINE="console=ttyS0,115200n8 root=/dev/nfs ip=bootp noinitrd" | ||
| 271 | # CONFIG_XIP_KERNEL is not set | ||
| 272 | # CONFIG_KEXEC is not set | ||
| 273 | |||
| 274 | # | ||
| 275 | # CPU Frequency scaling | ||
| 276 | # | ||
| 277 | # CONFIG_CPU_FREQ is not set | ||
| 278 | |||
| 279 | # | ||
| 280 | # Floating point emulation | ||
| 281 | # | ||
| 282 | |||
| 283 | # | ||
| 284 | # At least one emulation must be selected | ||
| 285 | # | ||
| 286 | CONFIG_FPE_NWFPE=y | ||
| 287 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 288 | # CONFIG_FPE_FASTFPE is not set | ||
| 289 | |||
| 290 | # | ||
| 291 | # Userspace binary formats | ||
| 292 | # | ||
| 293 | CONFIG_BINFMT_ELF=y | ||
| 294 | # CONFIG_BINFMT_AOUT is not set | ||
| 295 | # CONFIG_BINFMT_MISC is not set | ||
| 296 | # CONFIG_ARTHUR is not set | ||
| 297 | |||
| 298 | # | ||
| 299 | # Power management options | ||
| 300 | # | ||
| 301 | CONFIG_PM=y | ||
| 302 | # CONFIG_PM_LEGACY is not set | ||
| 303 | # CONFIG_PM_DEBUG is not set | ||
| 304 | CONFIG_PM_SLEEP=y | ||
| 305 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 306 | CONFIG_SUSPEND=y | ||
| 307 | # CONFIG_APM_EMULATION is not set | ||
| 308 | |||
| 309 | # | ||
| 310 | # Networking | ||
| 311 | # | ||
| 312 | CONFIG_NET=y | ||
| 313 | |||
| 314 | # | ||
| 315 | # Networking options | ||
| 316 | # | ||
| 317 | CONFIG_PACKET=y | ||
| 318 | # CONFIG_PACKET_MMAP is not set | ||
| 319 | CONFIG_UNIX=y | ||
| 320 | CONFIG_XFRM=y | ||
| 321 | # CONFIG_XFRM_USER is not set | ||
| 322 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 323 | # CONFIG_XFRM_MIGRATE is not set | ||
| 324 | # CONFIG_NET_KEY is not set | ||
| 325 | CONFIG_INET=y | ||
| 326 | CONFIG_IP_MULTICAST=y | ||
| 327 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 328 | CONFIG_IP_FIB_HASH=y | ||
| 329 | CONFIG_IP_PNP=y | ||
| 330 | CONFIG_IP_PNP_DHCP=y | ||
| 331 | CONFIG_IP_PNP_BOOTP=y | ||
| 332 | # CONFIG_IP_PNP_RARP is not set | ||
| 333 | # CONFIG_NET_IPIP is not set | ||
| 334 | # CONFIG_NET_IPGRE is not set | ||
| 335 | # CONFIG_IP_MROUTE is not set | ||
| 336 | # CONFIG_ARPD is not set | ||
| 337 | # CONFIG_SYN_COOKIES is not set | ||
| 338 | # CONFIG_INET_AH is not set | ||
| 339 | # CONFIG_INET_ESP is not set | ||
| 340 | # CONFIG_INET_IPCOMP is not set | ||
| 341 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 342 | # CONFIG_INET_TUNNEL is not set | ||
| 343 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 344 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 345 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 346 | CONFIG_INET_DIAG=y | ||
| 347 | CONFIG_INET_TCP_DIAG=y | ||
| 348 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 349 | CONFIG_TCP_CONG_CUBIC=y | ||
| 350 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 351 | # CONFIG_TCP_MD5SIG is not set | ||
| 352 | # CONFIG_IPV6 is not set | ||
| 353 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 354 | # CONFIG_INET6_TUNNEL is not set | ||
| 355 | # CONFIG_NETWORK_SECMARK is not set | ||
| 356 | # CONFIG_NETFILTER is not set | ||
| 357 | # CONFIG_IP_DCCP is not set | ||
| 358 | # CONFIG_IP_SCTP is not set | ||
| 359 | # CONFIG_TIPC is not set | ||
| 360 | # CONFIG_ATM is not set | ||
| 361 | # CONFIG_BRIDGE is not set | ||
| 362 | # CONFIG_VLAN_8021Q is not set | ||
| 363 | # CONFIG_DECNET is not set | ||
| 364 | # CONFIG_LLC2 is not set | ||
| 365 | # CONFIG_IPX is not set | ||
| 366 | # CONFIG_ATALK is not set | ||
| 367 | # CONFIG_X25 is not set | ||
| 368 | # CONFIG_LAPB is not set | ||
| 369 | # CONFIG_ECONET is not set | ||
| 370 | # CONFIG_WAN_ROUTER is not set | ||
| 371 | |||
| 372 | # | ||
| 373 | # QoS and/or fair queueing | ||
| 374 | # | ||
| 375 | # CONFIG_NET_SCHED is not set | ||
| 376 | |||
| 377 | # | ||
| 378 | # Network testing | ||
| 379 | # | ||
| 380 | # CONFIG_NET_PKTGEN is not set | ||
| 381 | # CONFIG_HAMRADIO is not set | ||
| 382 | # CONFIG_IRDA is not set | ||
| 383 | # CONFIG_BT is not set | ||
| 384 | # CONFIG_AF_RXRPC is not set | ||
| 385 | |||
| 386 | # | ||
| 387 | # Wireless | ||
| 388 | # | ||
| 389 | # CONFIG_CFG80211 is not set | ||
| 390 | # CONFIG_WIRELESS_EXT is not set | ||
| 391 | # CONFIG_MAC80211 is not set | ||
| 392 | # CONFIG_IEEE80211 is not set | ||
| 393 | # CONFIG_RFKILL is not set | ||
| 394 | # CONFIG_NET_9P is not set | ||
| 395 | |||
| 396 | # | ||
| 397 | # Device Drivers | ||
| 398 | # | ||
| 399 | |||
| 400 | # | ||
| 401 | # Generic Driver Options | ||
| 402 | # | ||
| 403 | CONFIG_STANDALONE=y | ||
| 404 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 405 | # CONFIG_FW_LOADER is not set | ||
| 406 | # CONFIG_DEBUG_DRIVER is not set | ||
| 407 | # CONFIG_DEBUG_DEVRES is not set | ||
| 408 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 409 | # CONFIG_CONNECTOR is not set | ||
| 410 | # CONFIG_MTD is not set | ||
| 411 | # CONFIG_PARPORT is not set | ||
| 412 | CONFIG_BLK_DEV=y | ||
| 413 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 414 | CONFIG_BLK_DEV_LOOP=y | ||
| 415 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 416 | # CONFIG_BLK_DEV_NBD is not set | ||
| 417 | # CONFIG_BLK_DEV_UB is not set | ||
| 418 | CONFIG_BLK_DEV_RAM=y | ||
| 419 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 420 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 421 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 422 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 423 | # CONFIG_ATA_OVER_ETH is not set | ||
| 424 | |||
| 425 | # | ||
| 426 | # SCSI device support | ||
| 427 | # | ||
| 428 | # CONFIG_RAID_ATTRS is not set | ||
| 429 | CONFIG_SCSI=y | ||
| 430 | CONFIG_SCSI_DMA=y | ||
| 431 | # CONFIG_SCSI_TGT is not set | ||
| 432 | # CONFIG_SCSI_NETLINK is not set | ||
| 433 | CONFIG_SCSI_PROC_FS=y | ||
| 434 | |||
| 435 | # | ||
| 436 | # SCSI support type (disk, tape, CD-ROM) | ||
| 437 | # | ||
| 438 | CONFIG_BLK_DEV_SD=y | ||
| 439 | CONFIG_CHR_DEV_ST=y | ||
| 440 | # CONFIG_CHR_DEV_OSST is not set | ||
| 441 | CONFIG_BLK_DEV_SR=y | ||
| 442 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
| 443 | CONFIG_CHR_DEV_SG=y | ||
| 444 | # CONFIG_CHR_DEV_SCH is not set | ||
| 445 | |||
| 446 | # | ||
| 447 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 448 | # | ||
| 449 | CONFIG_SCSI_MULTI_LUN=y | ||
| 450 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 451 | # CONFIG_SCSI_LOGGING is not set | ||
| 452 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 453 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 454 | |||
| 455 | # | ||
| 456 | # SCSI Transports | ||
| 457 | # | ||
| 458 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 459 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 460 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 461 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 462 | CONFIG_SCSI_LOWLEVEL=y | ||
| 463 | # CONFIG_ISCSI_TCP is not set | ||
| 464 | # CONFIG_SCSI_DEBUG is not set | ||
| 465 | # CONFIG_ATA is not set | ||
| 466 | # CONFIG_MD is not set | ||
| 467 | CONFIG_NETDEVICES=y | ||
| 468 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 469 | # CONFIG_DUMMY is not set | ||
| 470 | # CONFIG_BONDING is not set | ||
| 471 | # CONFIG_MACVLAN is not set | ||
| 472 | # CONFIG_EQUALIZER is not set | ||
| 473 | # CONFIG_TUN is not set | ||
| 474 | # CONFIG_PHYLIB is not set | ||
| 475 | CONFIG_NET_ETHERNET=y | ||
| 476 | CONFIG_MII=y | ||
| 477 | # CONFIG_AX88796 is not set | ||
| 478 | CONFIG_SMC91X=y | ||
| 479 | # CONFIG_DM9000 is not set | ||
| 480 | CONFIG_NETDEV_1000=y | ||
| 481 | CONFIG_NETDEV_10000=y | ||
| 482 | |||
| 483 | # | ||
| 484 | # Wireless LAN | ||
| 485 | # | ||
| 486 | # CONFIG_WLAN_PRE80211 is not set | ||
| 487 | # CONFIG_WLAN_80211 is not set | ||
| 488 | |||
| 489 | # | ||
| 490 | # USB Network Adapters | ||
| 491 | # | ||
| 492 | # CONFIG_USB_CATC is not set | ||
| 493 | # CONFIG_USB_KAWETH is not set | ||
| 494 | # CONFIG_USB_PEGASUS is not set | ||
| 495 | CONFIG_USB_RTL8150=y | ||
| 496 | CONFIG_USB_USBNET_MII=y | ||
| 497 | CONFIG_USB_USBNET=y | ||
| 498 | CONFIG_USB_NET_AX8817X=y | ||
| 499 | CONFIG_USB_NET_CDCETHER=y | ||
| 500 | # CONFIG_USB_NET_DM9601 is not set | ||
| 501 | # CONFIG_USB_NET_GL620A is not set | ||
| 502 | CONFIG_USB_NET_NET1080=y | ||
| 503 | # CONFIG_USB_NET_PLUSB is not set | ||
| 504 | # CONFIG_USB_NET_MCS7830 is not set | ||
| 505 | # CONFIG_USB_NET_RNDIS_HOST is not set | ||
| 506 | # CONFIG_USB_NET_CDC_SUBSET is not set | ||
| 507 | CONFIG_USB_NET_ZAURUS=y | ||
| 508 | # CONFIG_WAN is not set | ||
| 509 | CONFIG_PPP=y | ||
| 510 | CONFIG_PPP_MULTILINK=y | ||
| 511 | # CONFIG_PPP_FILTER is not set | ||
| 512 | CONFIG_PPP_ASYNC=y | ||
| 513 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 514 | CONFIG_PPP_DEFLATE=y | ||
| 515 | CONFIG_PPP_BSDCOMP=y | ||
| 516 | # CONFIG_PPP_MPPE is not set | ||
| 517 | # CONFIG_PPPOE is not set | ||
| 518 | # CONFIG_PPPOL2TP is not set | ||
| 519 | # CONFIG_SLIP is not set | ||
| 520 | CONFIG_SLHC=y | ||
| 521 | # CONFIG_SHAPER is not set | ||
| 522 | # CONFIG_NETCONSOLE is not set | ||
| 523 | # CONFIG_NETPOLL is not set | ||
| 524 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 525 | # CONFIG_ISDN is not set | ||
| 526 | |||
| 527 | # | ||
| 528 | # Input device support | ||
| 529 | # | ||
| 530 | CONFIG_INPUT=y | ||
| 531 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 532 | # CONFIG_INPUT_POLLDEV is not set | ||
| 533 | |||
| 534 | # | ||
| 535 | # Userland interfaces | ||
| 536 | # | ||
| 537 | CONFIG_INPUT_MOUSEDEV=y | ||
| 538 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 539 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=240 | ||
| 540 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=320 | ||
| 541 | # CONFIG_INPUT_JOYDEV is not set | ||
| 542 | # CONFIG_INPUT_TSDEV is not set | ||
| 543 | # CONFIG_INPUT_EVDEV is not set | ||
| 544 | # CONFIG_INPUT_EVBUG is not set | ||
| 545 | |||
| 546 | # | ||
| 547 | # Input Device Drivers | ||
| 548 | # | ||
| 549 | CONFIG_INPUT_KEYBOARD=y | ||
| 550 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 551 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 552 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 553 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 554 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 555 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 556 | CONFIG_KEYBOARD_OMAP=y | ||
| 557 | CONFIG_OMAP_PS2=m | ||
| 558 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 559 | # CONFIG_INPUT_MOUSE is not set | ||
| 560 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 561 | # CONFIG_INPUT_TABLET is not set | ||
| 562 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 563 | # CONFIG_INPUT_MISC is not set | ||
| 564 | |||
| 565 | # | ||
| 566 | # Hardware I/O ports | ||
| 567 | # | ||
| 568 | CONFIG_SERIO=y | ||
| 569 | CONFIG_SERIO_SERPORT=y | ||
| 570 | # CONFIG_SERIO_RAW is not set | ||
| 571 | # CONFIG_GAMEPORT is not set | ||
| 572 | |||
| 573 | # | ||
| 574 | # Character devices | ||
| 575 | # | ||
| 576 | CONFIG_VT=y | ||
| 577 | CONFIG_VT_CONSOLE=y | ||
| 578 | CONFIG_HW_CONSOLE=y | ||
| 579 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 580 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 581 | |||
| 582 | # | ||
| 583 | # Serial drivers | ||
| 584 | # | ||
| 585 | CONFIG_SERIAL_8250=y | ||
| 586 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 587 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 588 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 589 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # Non-8250 serial port support | ||
| 593 | # | ||
| 594 | CONFIG_SERIAL_CORE=y | ||
| 595 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 596 | CONFIG_UNIX98_PTYS=y | ||
| 597 | # CONFIG_LEGACY_PTYS is not set | ||
| 598 | # CONFIG_IPMI_HANDLER is not set | ||
| 599 | # CONFIG_WATCHDOG is not set | ||
| 600 | CONFIG_HW_RANDOM=m | ||
| 601 | # CONFIG_NVRAM is not set | ||
| 602 | # CONFIG_R3964 is not set | ||
| 603 | # CONFIG_RAW_DRIVER is not set | ||
| 604 | # CONFIG_TCG_TPM is not set | ||
| 605 | CONFIG_I2C=y | ||
| 606 | CONFIG_I2C_BOARDINFO=y | ||
| 607 | # CONFIG_I2C_CHARDEV is not set | ||
| 608 | |||
| 609 | # | ||
| 610 | # I2C Algorithms | ||
| 611 | # | ||
| 612 | # CONFIG_I2C_ALGOBIT is not set | ||
| 613 | # CONFIG_I2C_ALGOPCF is not set | ||
| 614 | # CONFIG_I2C_ALGOPCA is not set | ||
| 615 | |||
| 616 | # | ||
| 617 | # I2C Hardware Bus support | ||
| 618 | # | ||
| 619 | # CONFIG_I2C_GPIO is not set | ||
| 620 | # CONFIG_I2C_OCORES is not set | ||
| 621 | # CONFIG_I2C_OMAP is not set | ||
| 622 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 623 | # CONFIG_I2C_SIMTEC is not set | ||
| 624 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 625 | # CONFIG_I2C_STUB is not set | ||
| 626 | # CONFIG_I2C_TINY_USB is not set | ||
| 627 | |||
| 628 | # | ||
| 629 | # Miscellaneous I2C Chip support | ||
| 630 | # | ||
| 631 | # CONFIG_SENSORS_DS1337 is not set | ||
| 632 | # CONFIG_SENSORS_DS1374 is not set | ||
| 633 | # CONFIG_DS1682 is not set | ||
| 634 | # CONFIG_SENSORS_EEPROM is not set | ||
| 635 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 636 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 637 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 638 | # CONFIG_TPS65010 is not set | ||
| 639 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 640 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 641 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 642 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 643 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 644 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 645 | |||
| 646 | # | ||
| 647 | # SPI support | ||
| 648 | # | ||
| 649 | # CONFIG_SPI is not set | ||
| 650 | # CONFIG_SPI_MASTER is not set | ||
| 651 | # CONFIG_W1 is not set | ||
| 652 | CONFIG_HWMON=y | ||
| 653 | # CONFIG_HWMON_VID is not set | ||
| 654 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 655 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 656 | # CONFIG_SENSORS_AD7418 is not set | ||
| 657 | # CONFIG_SENSORS_ADM1021 is not set | ||
| 658 | # CONFIG_SENSORS_ADM1025 is not set | ||
| 659 | # CONFIG_SENSORS_ADM1026 is not set | ||
| 660 | # CONFIG_SENSORS_ADM1029 is not set | ||
| 661 | # CONFIG_SENSORS_ADM1031 is not set | ||
| 662 | # CONFIG_SENSORS_ADM9240 is not set | ||
| 663 | # CONFIG_SENSORS_ASB100 is not set | ||
| 664 | # CONFIG_SENSORS_ATXP1 is not set | ||
| 665 | # CONFIG_SENSORS_DS1621 is not set | ||
| 666 | # CONFIG_SENSORS_F71805F is not set | ||
| 667 | # CONFIG_SENSORS_FSCHER is not set | ||
| 668 | # CONFIG_SENSORS_FSCPOS is not set | ||
| 669 | # CONFIG_SENSORS_GL518SM is not set | ||
| 670 | # CONFIG_SENSORS_GL520SM is not set | ||
| 671 | # CONFIG_SENSORS_IT87 is not set | ||
| 672 | # CONFIG_SENSORS_LM63 is not set | ||
| 673 | # CONFIG_SENSORS_LM75 is not set | ||
| 674 | # CONFIG_SENSORS_LM77 is not set | ||
| 675 | # CONFIG_SENSORS_LM78 is not set | ||
| 676 | # CONFIG_SENSORS_LM80 is not set | ||
| 677 | # CONFIG_SENSORS_LM83 is not set | ||
| 678 | # CONFIG_SENSORS_LM85 is not set | ||
| 679 | # CONFIG_SENSORS_LM87 is not set | ||
| 680 | # CONFIG_SENSORS_LM90 is not set | ||
| 681 | # CONFIG_SENSORS_LM92 is not set | ||
| 682 | # CONFIG_SENSORS_LM93 is not set | ||
| 683 | # CONFIG_SENSORS_MAX1619 is not set | ||
| 684 | # CONFIG_SENSORS_MAX6650 is not set | ||
| 685 | # CONFIG_SENSORS_PC87360 is not set | ||
| 686 | # CONFIG_SENSORS_PC87427 is not set | ||
| 687 | # CONFIG_SENSORS_DME1737 is not set | ||
| 688 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 689 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
| 690 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 691 | # CONFIG_SENSORS_THMC50 is not set | ||
| 692 | # CONFIG_SENSORS_VT1211 is not set | ||
| 693 | # CONFIG_SENSORS_W83781D is not set | ||
| 694 | # CONFIG_SENSORS_W83791D is not set | ||
| 695 | # CONFIG_SENSORS_W83792D is not set | ||
| 696 | # CONFIG_SENSORS_W83793 is not set | ||
| 697 | # CONFIG_SENSORS_W83L785TS is not set | ||
| 698 | # CONFIG_SENSORS_W83627HF is not set | ||
| 699 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 700 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 701 | CONFIG_MISC_DEVICES=y | ||
| 702 | # CONFIG_EEPROM_93CX6 is not set | ||
| 703 | |||
| 704 | # | ||
| 705 | # Multifunction device drivers | ||
| 706 | # | ||
| 707 | # CONFIG_MFD_SM501 is not set | ||
| 708 | # CONFIG_NEW_LEDS is not set | ||
| 709 | |||
| 710 | # | ||
| 711 | # Multimedia devices | ||
| 712 | # | ||
| 713 | # CONFIG_VIDEO_DEV is not set | ||
| 714 | # CONFIG_DVB_CORE is not set | ||
| 715 | CONFIG_DAB=y | ||
| 716 | # CONFIG_USB_DABUSB is not set | ||
| 717 | |||
| 718 | # | ||
| 719 | # Graphics support | ||
| 720 | # | ||
| 721 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 722 | |||
| 723 | # | ||
| 724 | # Display device support | ||
| 725 | # | ||
| 726 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 727 | # CONFIG_VGASTATE is not set | ||
| 728 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 729 | CONFIG_FB=y | ||
| 730 | # CONFIG_FIRMWARE_EDID is not set | ||
| 731 | # CONFIG_FB_DDC is not set | ||
| 732 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 733 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 734 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 735 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 736 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 737 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 738 | # CONFIG_FB_SYS_FOPS is not set | ||
| 739 | CONFIG_FB_DEFERRED_IO=y | ||
| 740 | # CONFIG_FB_SVGALIB is not set | ||
| 741 | # CONFIG_FB_MACMODES is not set | ||
| 742 | # CONFIG_FB_BACKLIGHT is not set | ||
| 743 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 744 | # CONFIG_FB_TILEBLITTING is not set | ||
| 745 | |||
| 746 | # | ||
| 747 | # Frame buffer hardware drivers | ||
| 748 | # | ||
| 749 | # CONFIG_FB_S1D13XXX is not set | ||
| 750 | CONFIG_FB_OMAP=y | ||
| 751 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 752 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 753 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 754 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 755 | # CONFIG_FB_VIRTUAL is not set | ||
| 756 | |||
| 757 | # | ||
| 758 | # Console display driver support | ||
| 759 | # | ||
| 760 | # CONFIG_VGA_CONSOLE is not set | ||
| 761 | CONFIG_DUMMY_CONSOLE=y | ||
| 762 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 763 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 764 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 765 | CONFIG_FONTS=y | ||
| 766 | CONFIG_FONT_8x8=y | ||
| 767 | CONFIG_FONT_8x16=y | ||
| 768 | # CONFIG_FONT_6x11 is not set | ||
| 769 | # CONFIG_FONT_7x14 is not set | ||
| 770 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 771 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 772 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 773 | # CONFIG_FONT_SUN8x16 is not set | ||
| 774 | # CONFIG_FONT_SUN12x22 is not set | ||
| 775 | # CONFIG_FONT_10x18 is not set | ||
| 776 | CONFIG_LOGO=y | ||
| 777 | CONFIG_LOGO_LINUX_MONO=y | ||
| 778 | CONFIG_LOGO_LINUX_VGA16=y | ||
| 779 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 780 | |||
| 781 | # | ||
| 782 | # Sound | ||
| 783 | # | ||
| 784 | # CONFIG_SOUND is not set | ||
| 785 | CONFIG_HID_SUPPORT=y | ||
| 786 | CONFIG_HID=y | ||
| 787 | # CONFIG_HID_DEBUG is not set | ||
| 788 | |||
| 789 | # | ||
| 790 | # USB Input Devices | ||
| 791 | # | ||
| 792 | CONFIG_USB_HID=y | ||
| 793 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 794 | # CONFIG_HID_FF is not set | ||
| 795 | # CONFIG_USB_HIDDEV is not set | ||
| 796 | CONFIG_USB_SUPPORT=y | ||
| 797 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 798 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 799 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 800 | CONFIG_USB=y | ||
| 801 | CONFIG_USB_DEBUG=y | ||
| 802 | |||
| 803 | # | ||
| 804 | # Miscellaneous USB options | ||
| 805 | # | ||
| 806 | CONFIG_USB_DEVICEFS=y | ||
| 807 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 808 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 809 | CONFIG_USB_SUSPEND=y | ||
| 810 | # CONFIG_USB_PERSIST is not set | ||
| 811 | # CONFIG_USB_OTG is not set | ||
| 812 | |||
| 813 | # | ||
| 814 | # USB Host Controller Drivers | ||
| 815 | # | ||
| 816 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 817 | CONFIG_USB_OHCI_HCD=y | ||
| 818 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 819 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 820 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 821 | # CONFIG_USB_SL811_HCD is not set | ||
| 822 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 823 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 824 | |||
| 825 | # | ||
| 826 | # USB Device Class drivers | ||
| 827 | # | ||
| 828 | # CONFIG_USB_ACM is not set | ||
| 829 | # CONFIG_USB_PRINTER is not set | ||
| 830 | |||
| 831 | # | ||
| 832 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 833 | # | ||
| 834 | |||
| 835 | # | ||
| 836 | # may also be needed; see USB_STORAGE Help for more information | ||
| 837 | # | ||
| 838 | CONFIG_USB_STORAGE=y | ||
| 839 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 840 | CONFIG_USB_STORAGE_DATAFAB=y | ||
| 841 | CONFIG_USB_STORAGE_FREECOM=y | ||
| 842 | CONFIG_USB_STORAGE_DPCM=y | ||
| 843 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 844 | CONFIG_USB_STORAGE_SDDR09=y | ||
| 845 | CONFIG_USB_STORAGE_SDDR55=y | ||
| 846 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
| 847 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 848 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 849 | # CONFIG_USB_LIBUSUAL is not set | ||
| 850 | |||
| 851 | # | ||
| 852 | # USB Imaging devices | ||
| 853 | # | ||
| 854 | # CONFIG_USB_MDC800 is not set | ||
| 855 | # CONFIG_USB_MICROTEK is not set | ||
| 856 | CONFIG_USB_MON=y | ||
| 857 | |||
| 858 | # | ||
| 859 | # USB port drivers | ||
| 860 | # | ||
| 861 | |||
| 862 | # | ||
| 863 | # USB Serial Converter support | ||
| 864 | # | ||
| 865 | # CONFIG_USB_SERIAL is not set | ||
| 866 | |||
| 867 | # | ||
| 868 | # USB Miscellaneous drivers | ||
| 869 | # | ||
| 870 | # CONFIG_USB_EMI62 is not set | ||
| 871 | # CONFIG_USB_EMI26 is not set | ||
| 872 | # CONFIG_USB_ADUTUX is not set | ||
| 873 | # CONFIG_USB_AUERSWALD is not set | ||
| 874 | # CONFIG_USB_RIO500 is not set | ||
| 875 | # CONFIG_USB_LEGOTOWER is not set | ||
| 876 | # CONFIG_USB_LCD is not set | ||
| 877 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 878 | # CONFIG_USB_LED is not set | ||
| 879 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 880 | # CONFIG_USB_CYTHERM is not set | ||
| 881 | # CONFIG_USB_PHIDGET is not set | ||
| 882 | # CONFIG_USB_IDMOUSE is not set | ||
| 883 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 884 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 885 | # CONFIG_USB_LD is not set | ||
| 886 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 887 | # CONFIG_USB_IOWARRIOR is not set | ||
| 888 | # CONFIG_USB_TEST is not set | ||
| 889 | |||
| 890 | # | ||
| 891 | # USB DSL modem support | ||
| 892 | # | ||
| 893 | |||
| 894 | # | ||
| 895 | # USB Gadget Support | ||
| 896 | # | ||
| 897 | # CONFIG_USB_GADGET is not set | ||
| 898 | CONFIG_MMC=y | ||
| 899 | # CONFIG_MMC_DEBUG is not set | ||
| 900 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 901 | |||
| 902 | # | ||
| 903 | # MMC/SD Card Drivers | ||
| 904 | # | ||
| 905 | CONFIG_MMC_BLOCK=y | ||
| 906 | CONFIG_MMC_BLOCK_BOUNCE=y | ||
| 907 | |||
| 908 | # | ||
| 909 | # MMC/SD Host Controller Drivers | ||
| 910 | # | ||
| 911 | CONFIG_MMC_OMAP=y | ||
| 912 | CONFIG_RTC_LIB=y | ||
| 913 | CONFIG_RTC_CLASS=y | ||
| 914 | CONFIG_RTC_HCTOSYS=y | ||
| 915 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 916 | # CONFIG_RTC_DEBUG is not set | ||
| 917 | |||
| 918 | # | ||
| 919 | # RTC interfaces | ||
| 920 | # | ||
| 921 | CONFIG_RTC_INTF_SYSFS=y | ||
| 922 | CONFIG_RTC_INTF_PROC=y | ||
| 923 | CONFIG_RTC_INTF_DEV=y | ||
| 924 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 925 | # CONFIG_RTC_DRV_TEST is not set | ||
| 926 | |||
| 927 | # | ||
| 928 | # I2C RTC drivers | ||
| 929 | # | ||
| 930 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 931 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 932 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 933 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 934 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 935 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 936 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 937 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 938 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 939 | |||
| 940 | # | ||
| 941 | # SPI RTC drivers | ||
| 942 | # | ||
| 943 | |||
| 944 | # | ||
| 945 | # Platform RTC drivers | ||
| 946 | # | ||
| 947 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 948 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 949 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 950 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 951 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 952 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 953 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 954 | |||
| 955 | # | ||
| 956 | # on-CPU RTC drivers | ||
| 957 | # | ||
| 958 | CONFIG_RTC_DRV_OMAP=y | ||
| 959 | |||
| 960 | # | ||
| 961 | # DMA Engine support | ||
| 962 | # | ||
| 963 | # CONFIG_DMA_ENGINE is not set | ||
| 964 | |||
| 965 | # | ||
| 966 | # DMA Clients | ||
| 967 | # | ||
| 968 | |||
| 969 | # | ||
| 970 | # DMA Devices | ||
| 971 | # | ||
| 972 | |||
| 973 | # | ||
| 974 | # CBUS support | ||
| 975 | # | ||
| 976 | # CONFIG_CBUS is not set | ||
| 977 | |||
| 978 | # | ||
| 979 | # File systems | ||
| 980 | # | ||
| 981 | CONFIG_EXT2_FS=y | ||
| 982 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 983 | # CONFIG_EXT2_FS_XIP is not set | ||
| 984 | CONFIG_EXT3_FS=y | ||
| 985 | CONFIG_EXT3_FS_XATTR=y | ||
| 986 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 987 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 988 | # CONFIG_EXT4DEV_FS is not set | ||
| 989 | CONFIG_JBD=y | ||
| 990 | # CONFIG_JBD_DEBUG is not set | ||
| 991 | CONFIG_FS_MBCACHE=y | ||
| 992 | # CONFIG_REISERFS_FS is not set | ||
| 993 | # CONFIG_JFS_FS is not set | ||
| 994 | # CONFIG_FS_POSIX_ACL is not set | ||
| 995 | # CONFIG_XFS_FS is not set | ||
| 996 | # CONFIG_GFS2_FS is not set | ||
| 997 | # CONFIG_OCFS2_FS is not set | ||
| 998 | # CONFIG_MINIX_FS is not set | ||
| 999 | # CONFIG_ROMFS_FS is not set | ||
| 1000 | CONFIG_INOTIFY=y | ||
| 1001 | CONFIG_INOTIFY_USER=y | ||
| 1002 | # CONFIG_QUOTA is not set | ||
| 1003 | CONFIG_DNOTIFY=y | ||
| 1004 | CONFIG_AUTOFS_FS=y | ||
| 1005 | CONFIG_AUTOFS4_FS=y | ||
| 1006 | # CONFIG_FUSE_FS is not set | ||
| 1007 | |||
| 1008 | # | ||
| 1009 | # CD-ROM/DVD Filesystems | ||
| 1010 | # | ||
| 1011 | CONFIG_ISO9660_FS=y | ||
| 1012 | CONFIG_JOLIET=y | ||
| 1013 | # CONFIG_ZISOFS is not set | ||
| 1014 | # CONFIG_UDF_FS is not set | ||
| 1015 | |||
| 1016 | # | ||
| 1017 | # DOS/FAT/NT Filesystems | ||
| 1018 | # | ||
| 1019 | CONFIG_FAT_FS=m | ||
| 1020 | CONFIG_MSDOS_FS=m | ||
| 1021 | CONFIG_VFAT_FS=m | ||
| 1022 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1023 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1024 | # CONFIG_NTFS_FS is not set | ||
| 1025 | |||
| 1026 | # | ||
| 1027 | # Pseudo filesystems | ||
| 1028 | # | ||
| 1029 | CONFIG_PROC_FS=y | ||
| 1030 | CONFIG_PROC_SYSCTL=y | ||
| 1031 | CONFIG_SYSFS=y | ||
| 1032 | CONFIG_TMPFS=y | ||
| 1033 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 1034 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1035 | CONFIG_RAMFS=y | ||
| 1036 | # CONFIG_CONFIGFS_FS is not set | ||
| 1037 | |||
| 1038 | # | ||
| 1039 | # Miscellaneous filesystems | ||
| 1040 | # | ||
| 1041 | # CONFIG_ADFS_FS is not set | ||
| 1042 | # CONFIG_AFFS_FS is not set | ||
| 1043 | # CONFIG_HFS_FS is not set | ||
| 1044 | # CONFIG_HFSPLUS_FS is not set | ||
| 1045 | # CONFIG_BEFS_FS is not set | ||
| 1046 | # CONFIG_BFS_FS is not set | ||
| 1047 | # CONFIG_EFS_FS is not set | ||
| 1048 | # CONFIG_CRAMFS is not set | ||
| 1049 | # CONFIG_VXFS_FS is not set | ||
| 1050 | # CONFIG_HPFS_FS is not set | ||
| 1051 | # CONFIG_QNX4FS_FS is not set | ||
| 1052 | # CONFIG_SYSV_FS is not set | ||
| 1053 | # CONFIG_UFS_FS is not set | ||
| 1054 | |||
| 1055 | # | ||
| 1056 | # Network File Systems | ||
| 1057 | # | ||
| 1058 | CONFIG_NFS_FS=y | ||
| 1059 | CONFIG_NFS_V3=y | ||
| 1060 | # CONFIG_NFS_V3_ACL is not set | ||
| 1061 | CONFIG_NFS_V4=y | ||
| 1062 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1063 | # CONFIG_NFSD is not set | ||
| 1064 | CONFIG_ROOT_NFS=y | ||
| 1065 | CONFIG_LOCKD=y | ||
| 1066 | CONFIG_LOCKD_V4=y | ||
| 1067 | CONFIG_NFS_COMMON=y | ||
| 1068 | CONFIG_SUNRPC=y | ||
| 1069 | CONFIG_SUNRPC_GSS=y | ||
| 1070 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1071 | CONFIG_RPCSEC_GSS_KRB5=y | ||
| 1072 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1073 | # CONFIG_SMB_FS is not set | ||
| 1074 | # CONFIG_CIFS is not set | ||
| 1075 | # CONFIG_NCP_FS is not set | ||
| 1076 | # CONFIG_CODA_FS is not set | ||
| 1077 | # CONFIG_AFS_FS is not set | ||
| 1078 | |||
| 1079 | # | ||
| 1080 | # Partition Types | ||
| 1081 | # | ||
| 1082 | CONFIG_PARTITION_ADVANCED=y | ||
| 1083 | # CONFIG_ACORN_PARTITION is not set | ||
| 1084 | # CONFIG_OSF_PARTITION is not set | ||
| 1085 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1086 | # CONFIG_ATARI_PARTITION is not set | ||
| 1087 | # CONFIG_MAC_PARTITION is not set | ||
| 1088 | CONFIG_MSDOS_PARTITION=y | ||
| 1089 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1090 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1091 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1092 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1093 | # CONFIG_LDM_PARTITION is not set | ||
| 1094 | # CONFIG_SGI_PARTITION is not set | ||
| 1095 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1096 | # CONFIG_SUN_PARTITION is not set | ||
| 1097 | # CONFIG_KARMA_PARTITION is not set | ||
| 1098 | # CONFIG_EFI_PARTITION is not set | ||
| 1099 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1100 | |||
| 1101 | # | ||
| 1102 | # Native Language Support | ||
| 1103 | # | ||
| 1104 | CONFIG_NLS=y | ||
| 1105 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1106 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
| 1107 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1108 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1109 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1110 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 1111 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1112 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1113 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1114 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1115 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1116 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1117 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1118 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1119 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 1120 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1121 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1122 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1123 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1124 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1125 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1126 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1127 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1128 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 1129 | # CONFIG_NLS_ASCII is not set | ||
| 1130 | # CONFIG_NLS_ISO8859_1 is not set | ||
| 1131 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1132 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1133 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1134 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 1135 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1136 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1137 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1138 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1139 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1140 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1141 | # CONFIG_NLS_KOI8_R is not set | ||
| 1142 | # CONFIG_NLS_KOI8_U is not set | ||
| 1143 | # CONFIG_NLS_UTF8 is not set | ||
| 1144 | |||
| 1145 | # | ||
| 1146 | # Distributed Lock Manager | ||
| 1147 | # | ||
| 1148 | # CONFIG_DLM is not set | ||
| 1149 | |||
| 1150 | # | ||
| 1151 | # Profiling support | ||
| 1152 | # | ||
| 1153 | # CONFIG_PROFILING is not set | ||
| 1154 | |||
| 1155 | # | ||
| 1156 | # Kernel hacking | ||
| 1157 | # | ||
| 1158 | # CONFIG_PRINTK_TIME is not set | ||
| 1159 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1160 | CONFIG_MAGIC_SYSRQ=y | ||
| 1161 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1162 | # CONFIG_DEBUG_FS is not set | ||
| 1163 | # CONFIG_HEADERS_CHECK is not set | ||
| 1164 | CONFIG_DEBUG_KERNEL=y | ||
| 1165 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1166 | CONFIG_DETECT_SOFTLOCKUP=y | ||
| 1167 | CONFIG_SCHED_DEBUG=y | ||
| 1168 | # CONFIG_SCHEDSTATS is not set | ||
| 1169 | # CONFIG_TIMER_STATS is not set | ||
| 1170 | # CONFIG_DEBUG_SLAB is not set | ||
| 1171 | CONFIG_DEBUG_PREEMPT=y | ||
| 1172 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1173 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1174 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1175 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1176 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1177 | # CONFIG_PROVE_LOCKING is not set | ||
| 1178 | # CONFIG_LOCK_STAT is not set | ||
| 1179 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1180 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1181 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1182 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 1183 | # CONFIG_DEBUG_INFO is not set | ||
| 1184 | # CONFIG_DEBUG_VM is not set | ||
| 1185 | # CONFIG_DEBUG_LIST is not set | ||
| 1186 | CONFIG_FRAME_POINTER=y | ||
| 1187 | CONFIG_FORCED_INLINING=y | ||
| 1188 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1189 | # CONFIG_FAULT_INJECTION is not set | ||
| 1190 | # CONFIG_DEBUG_USER is not set | ||
| 1191 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1192 | # CONFIG_DEBUG_LL is not set | ||
| 1193 | |||
| 1194 | # | ||
| 1195 | # Security options | ||
| 1196 | # | ||
| 1197 | # CONFIG_KEYS is not set | ||
| 1198 | # CONFIG_SECURITY is not set | ||
| 1199 | CONFIG_CRYPTO=y | ||
| 1200 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1201 | CONFIG_CRYPTO_BLKCIPHER=y | ||
| 1202 | CONFIG_CRYPTO_MANAGER=y | ||
| 1203 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1204 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1205 | # CONFIG_CRYPTO_NULL is not set | ||
| 1206 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1207 | CONFIG_CRYPTO_MD5=y | ||
| 1208 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1209 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1210 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1211 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1212 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1213 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1214 | CONFIG_CRYPTO_ECB=m | ||
| 1215 | CONFIG_CRYPTO_CBC=y | ||
| 1216 | CONFIG_CRYPTO_PCBC=m | ||
| 1217 | # CONFIG_CRYPTO_LRW is not set | ||
| 1218 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1219 | CONFIG_CRYPTO_DES=y | ||
| 1220 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1221 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1222 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1223 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1224 | # CONFIG_CRYPTO_AES is not set | ||
| 1225 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1226 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1227 | # CONFIG_CRYPTO_TEA is not set | ||
| 1228 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1229 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1230 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1231 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1232 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1233 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1234 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1235 | # CONFIG_CRYPTO_TEST is not set | ||
| 1236 | CONFIG_CRYPTO_HW=y | ||
| 1237 | |||
| 1238 | # | ||
| 1239 | # Library routines | ||
| 1240 | # | ||
| 1241 | CONFIG_BITREVERSE=y | ||
| 1242 | CONFIG_CRC_CCITT=y | ||
| 1243 | # CONFIG_CRC16 is not set | ||
| 1244 | # CONFIG_CRC_ITU_T is not set | ||
| 1245 | CONFIG_CRC32=y | ||
| 1246 | # CONFIG_CRC7 is not set | ||
| 1247 | # CONFIG_LIBCRC32C is not set | ||
| 1248 | CONFIG_ZLIB_INFLATE=y | ||
| 1249 | CONFIG_ZLIB_DEFLATE=y | ||
| 1250 | CONFIG_PLIST=y | ||
| 1251 | CONFIG_HAS_IOMEM=y | ||
| 1252 | CONFIG_HAS_IOPORT=y | ||
| 1253 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_innovator_1610_defconfig b/arch/arm/configs/omap_innovator_1610_defconfig new file mode 100644 index 000000000000..95d9f2be53e0 --- /dev/null +++ b/arch/arm/configs/omap_innovator_1610_defconfig | |||
| @@ -0,0 +1,839 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:45:05 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | CONFIG_LOCALVERSION="" | ||
| 35 | CONFIG_LOCALVERSION_AUTO=y | ||
| 36 | CONFIG_SWAP=y | ||
| 37 | CONFIG_SYSVIPC=y | ||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 39 | # CONFIG_POSIX_MQUEUE is not set | ||
| 40 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 41 | # CONFIG_TASKSTATS is not set | ||
| 42 | # CONFIG_USER_NS is not set | ||
| 43 | # CONFIG_AUDIT is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | ||
| 45 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 46 | CONFIG_SYSFS_DEPRECATED=y | ||
| 47 | # CONFIG_RELAY is not set | ||
| 48 | CONFIG_BLK_DEV_INITRD=y | ||
| 49 | CONFIG_INITRAMFS_SOURCE="" | ||
| 50 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 51 | CONFIG_SYSCTL=y | ||
| 52 | # CONFIG_EMBEDDED is not set | ||
| 53 | CONFIG_UID16=y | ||
| 54 | CONFIG_SYSCTL_SYSCALL=y | ||
| 55 | CONFIG_KALLSYMS=y | ||
| 56 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 57 | CONFIG_HOTPLUG=y | ||
| 58 | CONFIG_PRINTK=y | ||
| 59 | CONFIG_BUG=y | ||
| 60 | CONFIG_ELF_CORE=y | ||
| 61 | CONFIG_BASE_FULL=y | ||
| 62 | CONFIG_FUTEX=y | ||
| 63 | CONFIG_ANON_INODES=y | ||
| 64 | CONFIG_EPOLL=y | ||
| 65 | CONFIG_SIGNALFD=y | ||
| 66 | CONFIG_TIMERFD=y | ||
| 67 | CONFIG_EVENTFD=y | ||
| 68 | CONFIG_SHMEM=y | ||
| 69 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 70 | CONFIG_SLUB_DEBUG=y | ||
| 71 | # CONFIG_SLAB is not set | ||
| 72 | CONFIG_SLUB=y | ||
| 73 | # CONFIG_SLOB is not set | ||
| 74 | CONFIG_RT_MUTEXES=y | ||
| 75 | # CONFIG_TINY_SHMEM is not set | ||
| 76 | CONFIG_BASE_SMALL=0 | ||
| 77 | CONFIG_MODULES=y | ||
| 78 | CONFIG_MODULE_UNLOAD=y | ||
| 79 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 80 | # CONFIG_MODVERSIONS is not set | ||
| 81 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 82 | CONFIG_KMOD=y | ||
| 83 | CONFIG_BLOCK=y | ||
| 84 | # CONFIG_LBD is not set | ||
| 85 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 86 | # CONFIG_LSF is not set | ||
| 87 | # CONFIG_BLK_DEV_BSG is not set | ||
| 88 | |||
| 89 | # | ||
| 90 | # IO Schedulers | ||
| 91 | # | ||
| 92 | CONFIG_IOSCHED_NOOP=y | ||
| 93 | CONFIG_IOSCHED_AS=y | ||
| 94 | CONFIG_IOSCHED_DEADLINE=y | ||
| 95 | CONFIG_IOSCHED_CFQ=y | ||
| 96 | # CONFIG_DEFAULT_AS is not set | ||
| 97 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 98 | CONFIG_DEFAULT_CFQ=y | ||
| 99 | # CONFIG_DEFAULT_NOOP is not set | ||
| 100 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 101 | |||
| 102 | # | ||
| 103 | # System Type | ||
| 104 | # | ||
| 105 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 106 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 107 | # CONFIG_ARCH_REALVIEW is not set | ||
| 108 | # CONFIG_ARCH_VERSATILE is not set | ||
| 109 | # CONFIG_ARCH_AT91 is not set | ||
| 110 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 111 | # CONFIG_ARCH_CLPS711X is not set | ||
| 112 | # CONFIG_ARCH_CO285 is not set | ||
| 113 | # CONFIG_ARCH_EBSA110 is not set | ||
| 114 | # CONFIG_ARCH_EP93XX is not set | ||
| 115 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 116 | # CONFIG_ARCH_NETX is not set | ||
| 117 | # CONFIG_ARCH_H720X is not set | ||
| 118 | # CONFIG_ARCH_IMX is not set | ||
| 119 | # CONFIG_ARCH_IOP13XX is not set | ||
| 120 | # CONFIG_ARCH_IOP32X is not set | ||
| 121 | # CONFIG_ARCH_IOP33X is not set | ||
| 122 | # CONFIG_ARCH_IXP23XX is not set | ||
| 123 | # CONFIG_ARCH_IXP2000 is not set | ||
| 124 | # CONFIG_ARCH_IXP4XX is not set | ||
| 125 | # CONFIG_ARCH_L7200 is not set | ||
| 126 | # CONFIG_ARCH_KS8695 is not set | ||
| 127 | # CONFIG_ARCH_NS9XXX is not set | ||
| 128 | # CONFIG_ARCH_MXC is not set | ||
| 129 | # CONFIG_ARCH_PNX4008 is not set | ||
| 130 | # CONFIG_ARCH_PXA is not set | ||
| 131 | # CONFIG_ARCH_RPC is not set | ||
| 132 | # CONFIG_ARCH_SA1100 is not set | ||
| 133 | # CONFIG_ARCH_S3C2410 is not set | ||
| 134 | # CONFIG_ARCH_SHARK is not set | ||
| 135 | # CONFIG_ARCH_LH7A40X is not set | ||
| 136 | # CONFIG_ARCH_DAVINCI is not set | ||
| 137 | CONFIG_ARCH_OMAP=y | ||
| 138 | |||
| 139 | # | ||
| 140 | # TI OMAP Implementations | ||
| 141 | # | ||
| 142 | CONFIG_ARCH_OMAP_OTG=y | ||
| 143 | CONFIG_ARCH_OMAP1=y | ||
| 144 | # CONFIG_ARCH_OMAP2 is not set | ||
| 145 | # CONFIG_ARCH_OMAP3 is not set | ||
| 146 | |||
| 147 | # | ||
| 148 | # OMAP Feature Selections | ||
| 149 | # | ||
| 150 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 151 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 152 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 153 | CONFIG_OMAP_MUX=y | ||
| 154 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 155 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 156 | # CONFIG_OMAP_STI is not set | ||
| 157 | CONFIG_OMAP_MCBSP=y | ||
| 158 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 159 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 160 | CONFIG_OMAP_MPU_TIMER=y | ||
| 161 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 162 | # CONFIG_OMAP_DM_TIMER is not set | ||
| 163 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 164 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 165 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 166 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 167 | # CONFIG_OMAP_DSP is not set | ||
| 168 | |||
| 169 | # | ||
| 170 | # OMAP Core Type | ||
| 171 | # | ||
| 172 | # CONFIG_ARCH_OMAP730 is not set | ||
| 173 | # CONFIG_ARCH_OMAP15XX is not set | ||
| 174 | CONFIG_ARCH_OMAP16XX=y | ||
| 175 | |||
| 176 | # | ||
| 177 | # OMAP Board Type | ||
| 178 | # | ||
| 179 | CONFIG_MACH_OMAP_INNOVATOR=y | ||
| 180 | # CONFIG_MACH_OMAP_H2 is not set | ||
| 181 | # CONFIG_MACH_OMAP_H3 is not set | ||
| 182 | # CONFIG_MACH_OMAP_OSK is not set | ||
| 183 | # CONFIG_MACH_NOKIA770 is not set | ||
| 184 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 185 | |||
| 186 | # | ||
| 187 | # OMAP CPU Speed | ||
| 188 | # | ||
| 189 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 190 | # CONFIG_OMAP_ARM_216MHZ is not set | ||
| 191 | CONFIG_OMAP_ARM_192MHZ=y | ||
| 192 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 193 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 194 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 195 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 196 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 197 | |||
| 198 | # | ||
| 199 | # Boot options | ||
| 200 | # | ||
| 201 | |||
| 202 | # | ||
| 203 | # Power management | ||
| 204 | # | ||
| 205 | |||
| 206 | # | ||
| 207 | # Processor Type | ||
| 208 | # | ||
| 209 | CONFIG_CPU_32=y | ||
| 210 | CONFIG_CPU_ARM926T=y | ||
| 211 | CONFIG_CPU_32v5=y | ||
| 212 | CONFIG_CPU_ABRT_EV5TJ=y | ||
| 213 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 214 | CONFIG_CPU_CACHE_VIVT=y | ||
| 215 | CONFIG_CPU_COPY_V4WB=y | ||
| 216 | CONFIG_CPU_TLB_V4WBI=y | ||
| 217 | CONFIG_CPU_CP15=y | ||
| 218 | CONFIG_CPU_CP15_MMU=y | ||
| 219 | |||
| 220 | # | ||
| 221 | # Processor Features | ||
| 222 | # | ||
| 223 | # CONFIG_ARM_THUMB is not set | ||
| 224 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 225 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 226 | CONFIG_CPU_DCACHE_WRITETHROUGH=y | ||
| 227 | # CONFIG_CPU_CACHE_ROUND_ROBIN is not set | ||
| 228 | # CONFIG_OUTER_CACHE is not set | ||
| 229 | |||
| 230 | # | ||
| 231 | # Bus support | ||
| 232 | # | ||
| 233 | # CONFIG_PCI_SYSCALL is not set | ||
| 234 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 235 | |||
| 236 | # | ||
| 237 | # PCCARD (PCMCIA/CardBus) support | ||
| 238 | # | ||
| 239 | # CONFIG_PCCARD is not set | ||
| 240 | |||
| 241 | # | ||
| 242 | # Kernel Features | ||
| 243 | # | ||
| 244 | # CONFIG_TICK_ONESHOT is not set | ||
| 245 | # CONFIG_NO_HZ is not set | ||
| 246 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 247 | # CONFIG_PREEMPT is not set | ||
| 248 | CONFIG_HZ=100 | ||
| 249 | # CONFIG_AEABI is not set | ||
| 250 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 251 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 252 | CONFIG_FLATMEM_MANUAL=y | ||
| 253 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 254 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 255 | CONFIG_FLATMEM=y | ||
| 256 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 257 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 258 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 259 | # CONFIG_RESOURCES_64BIT is not set | ||
| 260 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 261 | CONFIG_BOUNCE=y | ||
| 262 | CONFIG_VIRT_TO_BUS=y | ||
| 263 | # CONFIG_LEDS is not set | ||
| 264 | CONFIG_ALIGNMENT_TRAP=y | ||
| 265 | |||
| 266 | # | ||
| 267 | # Boot options | ||
| 268 | # | ||
| 269 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 270 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 271 | CONFIG_CMDLINE="mem=32M console=tty0 console=ttyS0,115200 initrd=0x10200000,8M root=/dev/ram0 rw" | ||
| 272 | # CONFIG_XIP_KERNEL is not set | ||
| 273 | # CONFIG_KEXEC is not set | ||
| 274 | |||
| 275 | # | ||
| 276 | # CPU Frequency scaling | ||
| 277 | # | ||
| 278 | # CONFIG_CPU_FREQ is not set | ||
| 279 | |||
| 280 | # | ||
| 281 | # Floating point emulation | ||
| 282 | # | ||
| 283 | |||
| 284 | # | ||
| 285 | # At least one emulation must be selected | ||
| 286 | # | ||
| 287 | CONFIG_FPE_NWFPE=y | ||
| 288 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 289 | # CONFIG_FPE_FASTFPE is not set | ||
| 290 | # CONFIG_VFP is not set | ||
| 291 | |||
| 292 | # | ||
| 293 | # Userspace binary formats | ||
| 294 | # | ||
| 295 | CONFIG_BINFMT_ELF=y | ||
| 296 | # CONFIG_BINFMT_AOUT is not set | ||
| 297 | # CONFIG_BINFMT_MISC is not set | ||
| 298 | # CONFIG_ARTHUR is not set | ||
| 299 | |||
| 300 | # | ||
| 301 | # Power management options | ||
| 302 | # | ||
| 303 | # CONFIG_PM is not set | ||
| 304 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 305 | |||
| 306 | # | ||
| 307 | # Networking | ||
| 308 | # | ||
| 309 | CONFIG_NET=y | ||
| 310 | |||
| 311 | # | ||
| 312 | # Networking options | ||
| 313 | # | ||
| 314 | CONFIG_PACKET=m | ||
| 315 | # CONFIG_PACKET_MMAP is not set | ||
| 316 | CONFIG_UNIX=y | ||
| 317 | CONFIG_XFRM=y | ||
| 318 | # CONFIG_XFRM_USER is not set | ||
| 319 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 320 | # CONFIG_XFRM_MIGRATE is not set | ||
| 321 | # CONFIG_NET_KEY is not set | ||
| 322 | CONFIG_INET=y | ||
| 323 | CONFIG_IP_MULTICAST=y | ||
| 324 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 325 | CONFIG_IP_FIB_HASH=y | ||
| 326 | CONFIG_IP_PNP=y | ||
| 327 | CONFIG_IP_PNP_DHCP=y | ||
| 328 | CONFIG_IP_PNP_BOOTP=y | ||
| 329 | # CONFIG_IP_PNP_RARP is not set | ||
| 330 | # CONFIG_NET_IPIP is not set | ||
| 331 | # CONFIG_NET_IPGRE is not set | ||
| 332 | # CONFIG_IP_MROUTE is not set | ||
| 333 | # CONFIG_ARPD is not set | ||
| 334 | # CONFIG_SYN_COOKIES is not set | ||
| 335 | # CONFIG_INET_AH is not set | ||
| 336 | # CONFIG_INET_ESP is not set | ||
| 337 | # CONFIG_INET_IPCOMP is not set | ||
| 338 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 339 | # CONFIG_INET_TUNNEL is not set | ||
| 340 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 341 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 342 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 343 | CONFIG_INET_DIAG=y | ||
| 344 | CONFIG_INET_TCP_DIAG=y | ||
| 345 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 346 | CONFIG_TCP_CONG_CUBIC=y | ||
| 347 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 348 | # CONFIG_TCP_MD5SIG is not set | ||
| 349 | # CONFIG_IPV6 is not set | ||
| 350 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 351 | # CONFIG_INET6_TUNNEL is not set | ||
| 352 | # CONFIG_NETWORK_SECMARK is not set | ||
| 353 | # CONFIG_NETFILTER is not set | ||
| 354 | # CONFIG_IP_DCCP is not set | ||
| 355 | # CONFIG_IP_SCTP is not set | ||
| 356 | # CONFIG_TIPC is not set | ||
| 357 | # CONFIG_ATM is not set | ||
| 358 | # CONFIG_BRIDGE is not set | ||
| 359 | # CONFIG_VLAN_8021Q is not set | ||
| 360 | # CONFIG_DECNET is not set | ||
| 361 | # CONFIG_LLC2 is not set | ||
| 362 | # CONFIG_IPX is not set | ||
| 363 | # CONFIG_ATALK is not set | ||
| 364 | # CONFIG_X25 is not set | ||
| 365 | # CONFIG_LAPB is not set | ||
| 366 | # CONFIG_ECONET is not set | ||
| 367 | # CONFIG_WAN_ROUTER is not set | ||
| 368 | |||
| 369 | # | ||
| 370 | # QoS and/or fair queueing | ||
| 371 | # | ||
| 372 | # CONFIG_NET_SCHED is not set | ||
| 373 | |||
| 374 | # | ||
| 375 | # Network testing | ||
| 376 | # | ||
| 377 | # CONFIG_NET_PKTGEN is not set | ||
| 378 | # CONFIG_HAMRADIO is not set | ||
| 379 | # CONFIG_IRDA is not set | ||
| 380 | # CONFIG_BT is not set | ||
| 381 | # CONFIG_AF_RXRPC is not set | ||
| 382 | |||
| 383 | # | ||
| 384 | # Wireless | ||
| 385 | # | ||
| 386 | # CONFIG_CFG80211 is not set | ||
| 387 | # CONFIG_WIRELESS_EXT is not set | ||
| 388 | # CONFIG_MAC80211 is not set | ||
| 389 | # CONFIG_IEEE80211 is not set | ||
| 390 | # CONFIG_RFKILL is not set | ||
| 391 | # CONFIG_NET_9P is not set | ||
| 392 | |||
| 393 | # | ||
| 394 | # Device Drivers | ||
| 395 | # | ||
| 396 | |||
| 397 | # | ||
| 398 | # Generic Driver Options | ||
| 399 | # | ||
| 400 | CONFIG_STANDALONE=y | ||
| 401 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 402 | # CONFIG_FW_LOADER is not set | ||
| 403 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 404 | # CONFIG_CONNECTOR is not set | ||
| 405 | # CONFIG_MTD is not set | ||
| 406 | # CONFIG_PARPORT is not set | ||
| 407 | CONFIG_BLK_DEV=y | ||
| 408 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 409 | CONFIG_BLK_DEV_LOOP=y | ||
| 410 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 411 | # CONFIG_BLK_DEV_NBD is not set | ||
| 412 | CONFIG_BLK_DEV_RAM=y | ||
| 413 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 414 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 415 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 416 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 417 | # CONFIG_ATA_OVER_ETH is not set | ||
| 418 | |||
| 419 | # | ||
| 420 | # SCSI device support | ||
| 421 | # | ||
| 422 | # CONFIG_RAID_ATTRS is not set | ||
| 423 | # CONFIG_SCSI is not set | ||
| 424 | # CONFIG_SCSI_DMA is not set | ||
| 425 | # CONFIG_SCSI_NETLINK is not set | ||
| 426 | # CONFIG_ATA is not set | ||
| 427 | # CONFIG_MD is not set | ||
| 428 | CONFIG_NETDEVICES=y | ||
| 429 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 430 | # CONFIG_DUMMY is not set | ||
| 431 | # CONFIG_BONDING is not set | ||
| 432 | # CONFIG_MACVLAN is not set | ||
| 433 | # CONFIG_EQUALIZER is not set | ||
| 434 | # CONFIG_TUN is not set | ||
| 435 | # CONFIG_PHYLIB is not set | ||
| 436 | CONFIG_NET_ETHERNET=y | ||
| 437 | CONFIG_MII=y | ||
| 438 | # CONFIG_AX88796 is not set | ||
| 439 | CONFIG_SMC91X=y | ||
| 440 | # CONFIG_DM9000 is not set | ||
| 441 | CONFIG_NETDEV_1000=y | ||
| 442 | CONFIG_NETDEV_10000=y | ||
| 443 | |||
| 444 | # | ||
| 445 | # Wireless LAN | ||
| 446 | # | ||
| 447 | # CONFIG_WLAN_PRE80211 is not set | ||
| 448 | # CONFIG_WLAN_80211 is not set | ||
| 449 | # CONFIG_WAN is not set | ||
| 450 | CONFIG_PPP=y | ||
| 451 | CONFIG_PPP_MULTILINK=y | ||
| 452 | # CONFIG_PPP_FILTER is not set | ||
| 453 | # CONFIG_PPP_ASYNC is not set | ||
| 454 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 455 | # CONFIG_PPP_DEFLATE is not set | ||
| 456 | # CONFIG_PPP_BSDCOMP is not set | ||
| 457 | # CONFIG_PPP_MPPE is not set | ||
| 458 | # CONFIG_PPPOE is not set | ||
| 459 | # CONFIG_PPPOL2TP is not set | ||
| 460 | # CONFIG_SLIP is not set | ||
| 461 | CONFIG_SLHC=y | ||
| 462 | # CONFIG_SHAPER is not set | ||
| 463 | # CONFIG_NETCONSOLE is not set | ||
| 464 | # CONFIG_NETPOLL is not set | ||
| 465 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 466 | # CONFIG_ISDN is not set | ||
| 467 | |||
| 468 | # | ||
| 469 | # Input device support | ||
| 470 | # | ||
| 471 | CONFIG_INPUT=y | ||
| 472 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 473 | # CONFIG_INPUT_POLLDEV is not set | ||
| 474 | |||
| 475 | # | ||
| 476 | # Userland interfaces | ||
| 477 | # | ||
| 478 | CONFIG_INPUT_MOUSEDEV=y | ||
| 479 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 480 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 481 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 482 | # CONFIG_INPUT_JOYDEV is not set | ||
| 483 | # CONFIG_INPUT_TSDEV is not set | ||
| 484 | # CONFIG_INPUT_EVDEV is not set | ||
| 485 | # CONFIG_INPUT_EVBUG is not set | ||
| 486 | |||
| 487 | # | ||
| 488 | # Input Device Drivers | ||
| 489 | # | ||
| 490 | CONFIG_INPUT_KEYBOARD=y | ||
| 491 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 492 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 493 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 494 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 495 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 496 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 497 | CONFIG_KEYBOARD_OMAP=y | ||
| 498 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 499 | # CONFIG_INPUT_MOUSE is not set | ||
| 500 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 501 | # CONFIG_INPUT_TABLET is not set | ||
| 502 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 503 | # CONFIG_INPUT_MISC is not set | ||
| 504 | |||
| 505 | # | ||
| 506 | # Hardware I/O ports | ||
| 507 | # | ||
| 508 | CONFIG_SERIO=y | ||
| 509 | CONFIG_SERIO_SERPORT=y | ||
| 510 | # CONFIG_SERIO_RAW is not set | ||
| 511 | # CONFIG_GAMEPORT is not set | ||
| 512 | |||
| 513 | # | ||
| 514 | # Character devices | ||
| 515 | # | ||
| 516 | CONFIG_VT=y | ||
| 517 | CONFIG_VT_CONSOLE=y | ||
| 518 | CONFIG_HW_CONSOLE=y | ||
| 519 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 520 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 521 | |||
| 522 | # | ||
| 523 | # Serial drivers | ||
| 524 | # | ||
| 525 | CONFIG_SERIAL_8250=y | ||
| 526 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 527 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 528 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 529 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 530 | |||
| 531 | # | ||
| 532 | # Non-8250 serial port support | ||
| 533 | # | ||
| 534 | CONFIG_SERIAL_CORE=y | ||
| 535 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 536 | CONFIG_UNIX98_PTYS=y | ||
| 537 | CONFIG_LEGACY_PTYS=y | ||
| 538 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 539 | # CONFIG_IPMI_HANDLER is not set | ||
| 540 | # CONFIG_WATCHDOG is not set | ||
| 541 | CONFIG_HW_RANDOM=m | ||
| 542 | CONFIG_HW_RANDOM_OMAP=m | ||
| 543 | # CONFIG_NVRAM is not set | ||
| 544 | # CONFIG_R3964 is not set | ||
| 545 | # CONFIG_RAW_DRIVER is not set | ||
| 546 | # CONFIG_TCG_TPM is not set | ||
| 547 | # CONFIG_I2C is not set | ||
| 548 | |||
| 549 | # | ||
| 550 | # SPI support | ||
| 551 | # | ||
| 552 | # CONFIG_SPI is not set | ||
| 553 | # CONFIG_SPI_MASTER is not set | ||
| 554 | # CONFIG_W1 is not set | ||
| 555 | CONFIG_HWMON=y | ||
| 556 | # CONFIG_HWMON_VID is not set | ||
| 557 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 558 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 559 | # CONFIG_SENSORS_F71805F is not set | ||
| 560 | # CONFIG_SENSORS_IT87 is not set | ||
| 561 | # CONFIG_SENSORS_PC87360 is not set | ||
| 562 | # CONFIG_SENSORS_PC87427 is not set | ||
| 563 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 564 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 565 | # CONFIG_SENSORS_VT1211 is not set | ||
| 566 | # CONFIG_SENSORS_W83627HF is not set | ||
| 567 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 568 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 569 | CONFIG_MISC_DEVICES=y | ||
| 570 | # CONFIG_EEPROM_93CX6 is not set | ||
| 571 | |||
| 572 | # | ||
| 573 | # Multifunction device drivers | ||
| 574 | # | ||
| 575 | # CONFIG_MFD_SM501 is not set | ||
| 576 | # CONFIG_NEW_LEDS is not set | ||
| 577 | |||
| 578 | # | ||
| 579 | # Multimedia devices | ||
| 580 | # | ||
| 581 | # CONFIG_VIDEO_DEV is not set | ||
| 582 | # CONFIG_DVB_CORE is not set | ||
| 583 | CONFIG_DAB=y | ||
| 584 | |||
| 585 | # | ||
| 586 | # Graphics support | ||
| 587 | # | ||
| 588 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 589 | |||
| 590 | # | ||
| 591 | # Display device support | ||
| 592 | # | ||
| 593 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 594 | # CONFIG_VGASTATE is not set | ||
| 595 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 596 | CONFIG_FB=y | ||
| 597 | # CONFIG_FIRMWARE_EDID is not set | ||
| 598 | # CONFIG_FB_DDC is not set | ||
| 599 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 600 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 601 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 602 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 603 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 604 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 605 | # CONFIG_FB_SYS_FOPS is not set | ||
| 606 | CONFIG_FB_DEFERRED_IO=y | ||
| 607 | # CONFIG_FB_SVGALIB is not set | ||
| 608 | # CONFIG_FB_MACMODES is not set | ||
| 609 | # CONFIG_FB_BACKLIGHT is not set | ||
| 610 | CONFIG_FB_MODE_HELPERS=y | ||
| 611 | # CONFIG_FB_TILEBLITTING is not set | ||
| 612 | |||
| 613 | # | ||
| 614 | # Frame buffer hardware drivers | ||
| 615 | # | ||
| 616 | # CONFIG_FB_S1D13XXX is not set | ||
| 617 | CONFIG_FB_OMAP=y | ||
| 618 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 619 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 620 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 621 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 622 | # CONFIG_FB_VIRTUAL is not set | ||
| 623 | |||
| 624 | # | ||
| 625 | # Console display driver support | ||
| 626 | # | ||
| 627 | # CONFIG_VGA_CONSOLE is not set | ||
| 628 | CONFIG_DUMMY_CONSOLE=y | ||
| 629 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 630 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 631 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 632 | CONFIG_FONTS=y | ||
| 633 | CONFIG_FONT_8x8=y | ||
| 634 | CONFIG_FONT_8x16=y | ||
| 635 | # CONFIG_FONT_6x11 is not set | ||
| 636 | # CONFIG_FONT_7x14 is not set | ||
| 637 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 638 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 639 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 640 | # CONFIG_FONT_SUN8x16 is not set | ||
| 641 | # CONFIG_FONT_SUN12x22 is not set | ||
| 642 | # CONFIG_FONT_10x18 is not set | ||
| 643 | CONFIG_LOGO=y | ||
| 644 | CONFIG_LOGO_LINUX_MONO=y | ||
| 645 | CONFIG_LOGO_LINUX_VGA16=y | ||
| 646 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 647 | |||
| 648 | # | ||
| 649 | # Sound | ||
| 650 | # | ||
| 651 | # CONFIG_SOUND is not set | ||
| 652 | CONFIG_HID_SUPPORT=y | ||
| 653 | CONFIG_HID=y | ||
| 654 | CONFIG_HID_DEBUG=y | ||
| 655 | CONFIG_USB_SUPPORT=y | ||
| 656 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 657 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 658 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 659 | # CONFIG_USB is not set | ||
| 660 | |||
| 661 | # | ||
| 662 | # Enable Host or Gadget support to see Inventra options | ||
| 663 | # | ||
| 664 | |||
| 665 | # | ||
| 666 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 667 | # | ||
| 668 | |||
| 669 | # | ||
| 670 | # USB Gadget Support | ||
| 671 | # | ||
| 672 | # CONFIG_USB_GADGET is not set | ||
| 673 | # CONFIG_MMC is not set | ||
| 674 | CONFIG_RTC_LIB=y | ||
| 675 | # CONFIG_RTC_CLASS is not set | ||
| 676 | |||
| 677 | # | ||
| 678 | # DMA Engine support | ||
| 679 | # | ||
| 680 | # CONFIG_DMA_ENGINE is not set | ||
| 681 | |||
| 682 | # | ||
| 683 | # DMA Clients | ||
| 684 | # | ||
| 685 | |||
| 686 | # | ||
| 687 | # DMA Devices | ||
| 688 | # | ||
| 689 | |||
| 690 | # | ||
| 691 | # CBUS support | ||
| 692 | # | ||
| 693 | # CONFIG_CBUS is not set | ||
| 694 | |||
| 695 | # | ||
| 696 | # File systems | ||
| 697 | # | ||
| 698 | CONFIG_EXT2_FS=y | ||
| 699 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 700 | # CONFIG_EXT2_FS_XIP is not set | ||
| 701 | # CONFIG_EXT3_FS is not set | ||
| 702 | # CONFIG_EXT4DEV_FS is not set | ||
| 703 | # CONFIG_REISERFS_FS is not set | ||
| 704 | # CONFIG_JFS_FS is not set | ||
| 705 | # CONFIG_FS_POSIX_ACL is not set | ||
| 706 | # CONFIG_XFS_FS is not set | ||
| 707 | # CONFIG_GFS2_FS is not set | ||
| 708 | # CONFIG_OCFS2_FS is not set | ||
| 709 | # CONFIG_MINIX_FS is not set | ||
| 710 | # CONFIG_ROMFS_FS is not set | ||
| 711 | CONFIG_INOTIFY=y | ||
| 712 | CONFIG_INOTIFY_USER=y | ||
| 713 | # CONFIG_QUOTA is not set | ||
| 714 | CONFIG_DNOTIFY=y | ||
| 715 | CONFIG_AUTOFS_FS=y | ||
| 716 | CONFIG_AUTOFS4_FS=y | ||
| 717 | # CONFIG_FUSE_FS is not set | ||
| 718 | |||
| 719 | # | ||
| 720 | # CD-ROM/DVD Filesystems | ||
| 721 | # | ||
| 722 | # CONFIG_ISO9660_FS is not set | ||
| 723 | # CONFIG_UDF_FS is not set | ||
| 724 | |||
| 725 | # | ||
| 726 | # DOS/FAT/NT Filesystems | ||
| 727 | # | ||
| 728 | # CONFIG_MSDOS_FS is not set | ||
| 729 | # CONFIG_VFAT_FS is not set | ||
| 730 | # CONFIG_NTFS_FS is not set | ||
| 731 | |||
| 732 | # | ||
| 733 | # Pseudo filesystems | ||
| 734 | # | ||
| 735 | CONFIG_PROC_FS=y | ||
| 736 | CONFIG_PROC_SYSCTL=y | ||
| 737 | CONFIG_SYSFS=y | ||
| 738 | # CONFIG_TMPFS is not set | ||
| 739 | # CONFIG_HUGETLB_PAGE is not set | ||
| 740 | CONFIG_RAMFS=y | ||
| 741 | # CONFIG_CONFIGFS_FS is not set | ||
| 742 | |||
| 743 | # | ||
| 744 | # Miscellaneous filesystems | ||
| 745 | # | ||
| 746 | # CONFIG_ADFS_FS is not set | ||
| 747 | # CONFIG_AFFS_FS is not set | ||
| 748 | # CONFIG_HFS_FS is not set | ||
| 749 | # CONFIG_HFSPLUS_FS is not set | ||
| 750 | # CONFIG_BEFS_FS is not set | ||
| 751 | # CONFIG_BFS_FS is not set | ||
| 752 | # CONFIG_EFS_FS is not set | ||
| 753 | # CONFIG_CRAMFS is not set | ||
| 754 | # CONFIG_VXFS_FS is not set | ||
| 755 | # CONFIG_HPFS_FS is not set | ||
| 756 | # CONFIG_QNX4FS_FS is not set | ||
| 757 | # CONFIG_SYSV_FS is not set | ||
| 758 | # CONFIG_UFS_FS is not set | ||
| 759 | |||
| 760 | # | ||
| 761 | # Network File Systems | ||
| 762 | # | ||
| 763 | CONFIG_NFS_FS=y | ||
| 764 | CONFIG_NFS_V3=y | ||
| 765 | # CONFIG_NFS_V3_ACL is not set | ||
| 766 | # CONFIG_NFS_V4 is not set | ||
| 767 | # CONFIG_NFS_DIRECTIO is not set | ||
| 768 | # CONFIG_NFSD is not set | ||
| 769 | # CONFIG_ROOT_NFS is not set | ||
| 770 | CONFIG_LOCKD=y | ||
| 771 | CONFIG_LOCKD_V4=y | ||
| 772 | CONFIG_NFS_COMMON=y | ||
| 773 | CONFIG_SUNRPC=y | ||
| 774 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 775 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 776 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 777 | # CONFIG_SMB_FS is not set | ||
| 778 | # CONFIG_CIFS is not set | ||
| 779 | # CONFIG_NCP_FS is not set | ||
| 780 | # CONFIG_CODA_FS is not set | ||
| 781 | # CONFIG_AFS_FS is not set | ||
| 782 | |||
| 783 | # | ||
| 784 | # Partition Types | ||
| 785 | # | ||
| 786 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 787 | CONFIG_MSDOS_PARTITION=y | ||
| 788 | |||
| 789 | # | ||
| 790 | # Native Language Support | ||
| 791 | # | ||
| 792 | # CONFIG_NLS is not set | ||
| 793 | |||
| 794 | # | ||
| 795 | # Distributed Lock Manager | ||
| 796 | # | ||
| 797 | # CONFIG_DLM is not set | ||
| 798 | |||
| 799 | # | ||
| 800 | # Profiling support | ||
| 801 | # | ||
| 802 | # CONFIG_PROFILING is not set | ||
| 803 | |||
| 804 | # | ||
| 805 | # Kernel hacking | ||
| 806 | # | ||
| 807 | # CONFIG_PRINTK_TIME is not set | ||
| 808 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 809 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 810 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 811 | # CONFIG_DEBUG_FS is not set | ||
| 812 | # CONFIG_HEADERS_CHECK is not set | ||
| 813 | # CONFIG_DEBUG_KERNEL is not set | ||
| 814 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 815 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 816 | CONFIG_FRAME_POINTER=y | ||
| 817 | # CONFIG_DEBUG_USER is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # Security options | ||
| 821 | # | ||
| 822 | # CONFIG_KEYS is not set | ||
| 823 | # CONFIG_SECURITY is not set | ||
| 824 | # CONFIG_CRYPTO is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # Library routines | ||
| 828 | # | ||
| 829 | CONFIG_BITREVERSE=y | ||
| 830 | # CONFIG_CRC_CCITT is not set | ||
| 831 | # CONFIG_CRC16 is not set | ||
| 832 | # CONFIG_CRC_ITU_T is not set | ||
| 833 | CONFIG_CRC32=y | ||
| 834 | # CONFIG_CRC7 is not set | ||
| 835 | # CONFIG_LIBCRC32C is not set | ||
| 836 | CONFIG_PLIST=y | ||
| 837 | CONFIG_HAS_IOMEM=y | ||
| 838 | CONFIG_HAS_IOPORT=y | ||
| 839 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/omap_osk_5912_defconfig b/arch/arm/configs/omap_osk_5912_defconfig index d4ca5e6e4ffa..b68e0144cab5 100644 --- a/arch/arm/configs/omap_osk_5912_defconfig +++ b/arch/arm/configs/omap_osk_5912_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.25-rc3 | 3 | # Linux kernel version: 2.6.24-rc3-omap1 |
| 4 | # Mon Mar 3 03:35:17 2008 | 4 | # Fri Nov 23 12:24:12 2007 |
| 5 | # | 5 | # |
| 6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| @@ -21,7 +21,6 @@ CONFIG_RWSEM_GENERIC_SPINLOCK=y | |||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 22 | CONFIG_GENERIC_HWEIGHT=y | 22 | CONFIG_GENERIC_HWEIGHT=y |
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 24 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
| 25 | CONFIG_ZONE_DMA=y | 24 | CONFIG_ZONE_DMA=y |
| 26 | CONFIG_VECTORS_BASE=0xffff0000 | 25 | CONFIG_VECTORS_BASE=0xffff0000 |
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -40,22 +39,17 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 40 | # CONFIG_POSIX_MQUEUE is not set | 39 | # CONFIG_POSIX_MQUEUE is not set |
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 40 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 41 | # CONFIG_TASKSTATS is not set |
| 42 | # CONFIG_USER_NS is not set | ||
| 43 | # CONFIG_PID_NS is not set | ||
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 44 | # CONFIG_IKCONFIG is not set | 45 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 46 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | 47 | # CONFIG_CGROUPS is not set |
| 47 | CONFIG_GROUP_SCHED=y | ||
| 48 | CONFIG_FAIR_GROUP_SCHED=y | 48 | CONFIG_FAIR_GROUP_SCHED=y |
| 49 | # CONFIG_RT_GROUP_SCHED is not set | 49 | CONFIG_FAIR_USER_SCHED=y |
| 50 | CONFIG_USER_SCHED=y | 50 | # CONFIG_FAIR_CGROUP_SCHED is not set |
| 51 | # CONFIG_CGROUP_SCHED is not set | 51 | CONFIG_SYSFS_DEPRECATED=y |
| 52 | # CONFIG_SYSFS_DEPRECATED is not set | ||
| 53 | # CONFIG_RELAY is not set | 52 | # CONFIG_RELAY is not set |
| 54 | CONFIG_NAMESPACES=y | ||
| 55 | # CONFIG_UTS_NS is not set | ||
| 56 | # CONFIG_IPC_NS is not set | ||
| 57 | # CONFIG_USER_NS is not set | ||
| 58 | # CONFIG_PID_NS is not set | ||
| 59 | CONFIG_BLK_DEV_INITRD=y | 53 | CONFIG_BLK_DEV_INITRD=y |
| 60 | CONFIG_INITRAMFS_SOURCE="" | 54 | CONFIG_INITRAMFS_SOURCE="" |
| 61 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 55 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| @@ -69,26 +63,18 @@ CONFIG_HOTPLUG=y | |||
| 69 | CONFIG_PRINTK=y | 63 | CONFIG_PRINTK=y |
| 70 | CONFIG_BUG=y | 64 | CONFIG_BUG=y |
| 71 | CONFIG_ELF_CORE=y | 65 | CONFIG_ELF_CORE=y |
| 72 | CONFIG_COMPAT_BRK=y | ||
| 73 | CONFIG_BASE_FULL=y | 66 | CONFIG_BASE_FULL=y |
| 74 | CONFIG_FUTEX=y | 67 | CONFIG_FUTEX=y |
| 75 | CONFIG_ANON_INODES=y | 68 | CONFIG_ANON_INODES=y |
| 76 | CONFIG_EPOLL=y | 69 | CONFIG_EPOLL=y |
| 77 | CONFIG_SIGNALFD=y | 70 | CONFIG_SIGNALFD=y |
| 78 | CONFIG_TIMERFD=y | ||
| 79 | CONFIG_EVENTFD=y | 71 | CONFIG_EVENTFD=y |
| 80 | CONFIG_SHMEM=y | 72 | CONFIG_SHMEM=y |
| 81 | CONFIG_VM_EVENT_COUNTERS=y | 73 | CONFIG_VM_EVENT_COUNTERS=y |
| 82 | CONFIG_SLAB=y | 74 | CONFIG_SLUB_DEBUG=y |
| 83 | # CONFIG_SLUB is not set | 75 | # CONFIG_SLAB is not set |
| 76 | CONFIG_SLUB=y | ||
| 84 | # CONFIG_SLOB is not set | 77 | # CONFIG_SLOB is not set |
| 85 | # CONFIG_PROFILING is not set | ||
| 86 | # CONFIG_MARKERS is not set | ||
| 87 | CONFIG_HAVE_OPROFILE=y | ||
| 88 | # CONFIG_KPROBES is not set | ||
| 89 | CONFIG_HAVE_KPROBES=y | ||
| 90 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 91 | CONFIG_SLABINFO=y | ||
| 92 | CONFIG_RT_MUTEXES=y | 78 | CONFIG_RT_MUTEXES=y |
| 93 | # CONFIG_TINY_SHMEM is not set | 79 | # CONFIG_TINY_SHMEM is not set |
| 94 | CONFIG_BASE_SMALL=0 | 80 | CONFIG_BASE_SMALL=0 |
| @@ -116,8 +102,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 116 | CONFIG_DEFAULT_CFQ=y | 102 | CONFIG_DEFAULT_CFQ=y |
| 117 | # CONFIG_DEFAULT_NOOP is not set | 103 | # CONFIG_DEFAULT_NOOP is not set |
| 118 | CONFIG_DEFAULT_IOSCHED="cfq" | 104 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 119 | CONFIG_CLASSIC_RCU=y | ||
| 120 | # CONFIG_PREEMPT_RCU is not set | ||
| 121 | 105 | ||
| 122 | # | 106 | # |
| 123 | # System Type | 107 | # System Type |
| @@ -146,7 +130,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 146 | # CONFIG_ARCH_KS8695 is not set | 130 | # CONFIG_ARCH_KS8695 is not set |
| 147 | # CONFIG_ARCH_NS9XXX is not set | 131 | # CONFIG_ARCH_NS9XXX is not set |
| 148 | # CONFIG_ARCH_MXC is not set | 132 | # CONFIG_ARCH_MXC is not set |
| 149 | # CONFIG_ARCH_ORION is not set | ||
| 150 | # CONFIG_ARCH_PNX4008 is not set | 133 | # CONFIG_ARCH_PNX4008 is not set |
| 151 | # CONFIG_ARCH_PXA is not set | 134 | # CONFIG_ARCH_PXA is not set |
| 152 | # CONFIG_ARCH_RPC is not set | 135 | # CONFIG_ARCH_RPC is not set |
| @@ -156,7 +139,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 156 | # CONFIG_ARCH_LH7A40X is not set | 139 | # CONFIG_ARCH_LH7A40X is not set |
| 157 | # CONFIG_ARCH_DAVINCI is not set | 140 | # CONFIG_ARCH_DAVINCI is not set |
| 158 | CONFIG_ARCH_OMAP=y | 141 | CONFIG_ARCH_OMAP=y |
| 159 | # CONFIG_ARCH_MSM7X00A is not set | ||
| 160 | 142 | ||
| 161 | # | 143 | # |
| 162 | # TI OMAP Implementations | 144 | # TI OMAP Implementations |
| @@ -164,16 +146,22 @@ CONFIG_ARCH_OMAP=y | |||
| 164 | CONFIG_ARCH_OMAP_OTG=y | 146 | CONFIG_ARCH_OMAP_OTG=y |
| 165 | CONFIG_ARCH_OMAP1=y | 147 | CONFIG_ARCH_OMAP1=y |
| 166 | # CONFIG_ARCH_OMAP2 is not set | 148 | # CONFIG_ARCH_OMAP2 is not set |
| 149 | # CONFIG_ARCH_OMAP3 is not set | ||
| 167 | 150 | ||
| 168 | # | 151 | # |
| 169 | # OMAP Feature Selections | 152 | # OMAP Feature Selections |
| 170 | # | 153 | # |
| 154 | CONFIG_OMAP_DEBUG_SRAM_PATCH=y | ||
| 171 | CONFIG_OMAP_RESET_CLOCKS=y | 155 | CONFIG_OMAP_RESET_CLOCKS=y |
| 156 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 157 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 172 | CONFIG_OMAP_MUX=y | 158 | CONFIG_OMAP_MUX=y |
| 173 | # CONFIG_OMAP_MUX_DEBUG is not set | 159 | # CONFIG_OMAP_MUX_DEBUG is not set |
| 174 | CONFIG_OMAP_MUX_WARNINGS=y | 160 | CONFIG_OMAP_MUX_WARNINGS=y |
| 161 | # CONFIG_OMAP_STI is not set | ||
| 175 | CONFIG_OMAP_MCBSP=y | 162 | CONFIG_OMAP_MCBSP=y |
| 176 | # CONFIG_OMAP_MMU_FWK is not set | 163 | # CONFIG_OMAP_MMU_FWK is not set |
| 164 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 177 | # CONFIG_OMAP_MPU_TIMER is not set | 165 | # CONFIG_OMAP_MPU_TIMER is not set |
| 178 | CONFIG_OMAP_32K_TIMER=y | 166 | CONFIG_OMAP_32K_TIMER=y |
| 179 | CONFIG_OMAP_32K_TIMER_HZ=128 | 167 | CONFIG_OMAP_32K_TIMER_HZ=128 |
| @@ -182,6 +170,7 @@ CONFIG_OMAP_LL_DEBUG_UART1=y | |||
| 182 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | 170 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set |
| 183 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | 171 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set |
| 184 | CONFIG_OMAP_SERIAL_WAKE=y | 172 | CONFIG_OMAP_SERIAL_WAKE=y |
| 173 | # CONFIG_OMAP_DSP is not set | ||
| 185 | 174 | ||
| 186 | # | 175 | # |
| 187 | # OMAP Core Type | 176 | # OMAP Core Type |
| @@ -193,13 +182,13 @@ CONFIG_ARCH_OMAP16XX=y | |||
| 193 | # | 182 | # |
| 194 | # OMAP Board Type | 183 | # OMAP Board Type |
| 195 | # | 184 | # |
| 196 | CONFIG_MACH_OMAP_INNOVATOR=y | 185 | # CONFIG_MACH_OMAP_INNOVATOR is not set |
| 197 | CONFIG_MACH_OMAP_H2=y | 186 | # CONFIG_MACH_OMAP_H2 is not set |
| 198 | CONFIG_MACH_OMAP_H3=y | 187 | # CONFIG_MACH_OMAP_H3 is not set |
| 199 | CONFIG_MACH_OMAP_OSK=y | 188 | CONFIG_MACH_OMAP_OSK=y |
| 200 | # CONFIG_OMAP_OSK_MISTRAL is not set | 189 | # CONFIG_OMAP_OSK_MISTRAL is not set |
| 201 | CONFIG_MACH_NOKIA770=y | 190 | # CONFIG_MACH_NOKIA770 is not set |
| 202 | CONFIG_MACH_OMAP_GENERIC=y | 191 | # CONFIG_MACH_OMAP_GENERIC is not set |
| 203 | 192 | ||
| 204 | # | 193 | # |
| 205 | # OMAP CPU Speed | 194 | # OMAP CPU Speed |
| @@ -227,6 +216,7 @@ CONFIG_CPU_32=y | |||
| 227 | CONFIG_CPU_ARM926T=y | 216 | CONFIG_CPU_ARM926T=y |
| 228 | CONFIG_CPU_32v5=y | 217 | CONFIG_CPU_32v5=y |
| 229 | CONFIG_CPU_ABRT_EV5TJ=y | 218 | CONFIG_CPU_ABRT_EV5TJ=y |
| 219 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 230 | CONFIG_CPU_CACHE_VIVT=y | 220 | CONFIG_CPU_CACHE_VIVT=y |
| 231 | CONFIG_CPU_COPY_V4WB=y | 221 | CONFIG_CPU_COPY_V4WB=y |
| 232 | CONFIG_CPU_TLB_V4WBI=y | 222 | CONFIG_CPU_TLB_V4WBI=y |
| @@ -264,12 +254,11 @@ CONFIG_OMAP_CF=y | |||
| 264 | # | 254 | # |
| 265 | CONFIG_TICK_ONESHOT=y | 255 | CONFIG_TICK_ONESHOT=y |
| 266 | CONFIG_NO_HZ=y | 256 | CONFIG_NO_HZ=y |
| 267 | CONFIG_HIGH_RES_TIMERS=y | 257 | # CONFIG_HIGH_RES_TIMERS is not set |
| 268 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 258 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
| 269 | # CONFIG_PREEMPT is not set | 259 | # CONFIG_PREEMPT is not set |
| 270 | CONFIG_HZ=128 | 260 | CONFIG_HZ=128 |
| 271 | CONFIG_AEABI=y | 261 | # CONFIG_AEABI is not set |
| 272 | CONFIG_OABI_COMPAT=y | ||
| 273 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | 262 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set |
| 274 | CONFIG_SELECT_MEMORY_MODEL=y | 263 | CONFIG_SELECT_MEMORY_MODEL=y |
| 275 | CONFIG_FLATMEM_MANUAL=y | 264 | CONFIG_FLATMEM_MANUAL=y |
| @@ -295,7 +284,6 @@ CONFIG_ZBOOT_ROM_BSS=0x0 | |||
| 295 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200 initrd=0x10400000,8M root=/dev/ram0 rw" | 284 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200 initrd=0x10400000,8M root=/dev/ram0 rw" |
| 296 | # CONFIG_XIP_KERNEL is not set | 285 | # CONFIG_XIP_KERNEL is not set |
| 297 | # CONFIG_KEXEC is not set | 286 | # CONFIG_KEXEC is not set |
| 298 | # CONFIG_ATAGS_PROC is not set | ||
| 299 | 287 | ||
| 300 | # | 288 | # |
| 301 | # CPU Frequency scaling | 289 | # CPU Frequency scaling |
| @@ -320,6 +308,7 @@ CONFIG_FPE_NWFPE=y | |||
| 320 | CONFIG_BINFMT_ELF=y | 308 | CONFIG_BINFMT_ELF=y |
| 321 | # CONFIG_BINFMT_AOUT is not set | 309 | # CONFIG_BINFMT_AOUT is not set |
| 322 | # CONFIG_BINFMT_MISC is not set | 310 | # CONFIG_BINFMT_MISC is not set |
| 311 | # CONFIG_ARTHUR is not set | ||
| 323 | 312 | ||
| 324 | # | 313 | # |
| 325 | # Power management options | 314 | # Power management options |
| @@ -328,10 +317,9 @@ CONFIG_PM=y | |||
| 328 | # CONFIG_PM_LEGACY is not set | 317 | # CONFIG_PM_LEGACY is not set |
| 329 | # CONFIG_PM_DEBUG is not set | 318 | # CONFIG_PM_DEBUG is not set |
| 330 | CONFIG_PM_SLEEP=y | 319 | CONFIG_PM_SLEEP=y |
| 320 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 331 | CONFIG_SUSPEND=y | 321 | CONFIG_SUSPEND=y |
| 332 | CONFIG_SUSPEND_FREEZER=y | ||
| 333 | # CONFIG_APM_EMULATION is not set | 322 | # CONFIG_APM_EMULATION is not set |
| 334 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 335 | 323 | ||
| 336 | # | 324 | # |
| 337 | # Networking | 325 | # Networking |
| @@ -348,7 +336,6 @@ CONFIG_XFRM=y | |||
| 348 | # CONFIG_XFRM_USER is not set | 336 | # CONFIG_XFRM_USER is not set |
| 349 | # CONFIG_XFRM_SUB_POLICY is not set | 337 | # CONFIG_XFRM_SUB_POLICY is not set |
| 350 | # CONFIG_XFRM_MIGRATE is not set | 338 | # CONFIG_XFRM_MIGRATE is not set |
| 351 | # CONFIG_XFRM_STATISTICS is not set | ||
| 352 | # CONFIG_NET_KEY is not set | 339 | # CONFIG_NET_KEY is not set |
| 353 | CONFIG_INET=y | 340 | CONFIG_INET=y |
| 354 | CONFIG_IP_MULTICAST=y | 341 | CONFIG_IP_MULTICAST=y |
| @@ -404,7 +391,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 404 | # | 391 | # |
| 405 | # CONFIG_NET_PKTGEN is not set | 392 | # CONFIG_NET_PKTGEN is not set |
| 406 | # CONFIG_HAMRADIO is not set | 393 | # CONFIG_HAMRADIO is not set |
| 407 | # CONFIG_CAN is not set | ||
| 408 | # CONFIG_IRDA is not set | 394 | # CONFIG_IRDA is not set |
| 409 | # CONFIG_BT is not set | 395 | # CONFIG_BT is not set |
| 410 | # CONFIG_AF_RXRPC is not set | 396 | # CONFIG_AF_RXRPC is not set |
| @@ -517,13 +503,11 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 517 | CONFIG_BLK_DEV_RAM=y | 503 | CONFIG_BLK_DEV_RAM=y |
| 518 | CONFIG_BLK_DEV_RAM_COUNT=16 | 504 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 519 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 505 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
| 520 | # CONFIG_BLK_DEV_XIP is not set | 506 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 |
| 521 | # CONFIG_CDROM_PKTCDVD is not set | 507 | # CONFIG_CDROM_PKTCDVD is not set |
| 522 | # CONFIG_ATA_OVER_ETH is not set | 508 | # CONFIG_ATA_OVER_ETH is not set |
| 523 | CONFIG_MISC_DEVICES=y | 509 | CONFIG_MISC_DEVICES=y |
| 524 | # CONFIG_EEPROM_93CX6 is not set | 510 | # CONFIG_EEPROM_93CX6 is not set |
| 525 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 526 | CONFIG_HAVE_IDE=y | ||
| 527 | CONFIG_IDE=m | 511 | CONFIG_IDE=m |
| 528 | CONFIG_BLK_DEV_IDE=m | 512 | CONFIG_BLK_DEV_IDE=m |
| 529 | 513 | ||
| @@ -545,6 +529,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 545 | # | 529 | # |
| 546 | # CONFIG_IDE_GENERIC is not set | 530 | # CONFIG_IDE_GENERIC is not set |
| 547 | # CONFIG_BLK_DEV_PLATFORM is not set | 531 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 532 | # CONFIG_IDE_ARM is not set | ||
| 548 | # CONFIG_BLK_DEV_IDEDMA is not set | 533 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 549 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 534 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
| 550 | # CONFIG_BLK_DEV_HD is not set | 535 | # CONFIG_BLK_DEV_HD is not set |
| @@ -578,7 +563,6 @@ CONFIG_SMC91X=y | |||
| 578 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 563 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 579 | # CONFIG_B44 is not set | 564 | # CONFIG_B44 is not set |
| 580 | CONFIG_NETDEV_1000=y | 565 | CONFIG_NETDEV_1000=y |
| 581 | # CONFIG_E1000E_ENABLED is not set | ||
| 582 | CONFIG_NETDEV_10000=y | 566 | CONFIG_NETDEV_10000=y |
| 583 | 567 | ||
| 584 | # | 568 | # |
| @@ -600,6 +584,7 @@ CONFIG_PPP_MULTILINK=y | |||
| 600 | # CONFIG_PPPOL2TP is not set | 584 | # CONFIG_PPPOL2TP is not set |
| 601 | # CONFIG_SLIP is not set | 585 | # CONFIG_SLIP is not set |
| 602 | CONFIG_SLHC=y | 586 | CONFIG_SLHC=y |
| 587 | # CONFIG_SHAPER is not set | ||
| 603 | # CONFIG_NETCONSOLE is not set | 588 | # CONFIG_NETCONSOLE is not set |
| 604 | # CONFIG_NETPOLL is not set | 589 | # CONFIG_NETPOLL is not set |
| 605 | # CONFIG_NET_POLL_CONTROLLER is not set | 590 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -696,7 +681,6 @@ CONFIG_HW_RANDOM_OMAP=m | |||
| 696 | # CONFIG_SYNCLINK_CS is not set | 681 | # CONFIG_SYNCLINK_CS is not set |
| 697 | # CONFIG_CARDMAN_4000 is not set | 682 | # CONFIG_CARDMAN_4000 is not set |
| 698 | # CONFIG_CARDMAN_4040 is not set | 683 | # CONFIG_CARDMAN_4040 is not set |
| 699 | # CONFIG_IPWIRELESS is not set | ||
| 700 | # CONFIG_RAW_DRIVER is not set | 684 | # CONFIG_RAW_DRIVER is not set |
| 701 | # CONFIG_TCG_TPM is not set | 685 | # CONFIG_TCG_TPM is not set |
| 702 | CONFIG_I2C=y | 686 | CONFIG_I2C=y |
| @@ -724,13 +708,17 @@ CONFIG_I2C_OMAP=y | |||
| 724 | # | 708 | # |
| 725 | # Miscellaneous I2C Chip support | 709 | # Miscellaneous I2C Chip support |
| 726 | # | 710 | # |
| 711 | # CONFIG_SENSORS_DS1337 is not set | ||
| 712 | # CONFIG_SENSORS_DS1374 is not set | ||
| 727 | # CONFIG_DS1682 is not set | 713 | # CONFIG_DS1682 is not set |
| 728 | # CONFIG_SENSORS_EEPROM is not set | 714 | # CONFIG_SENSORS_EEPROM is not set |
| 729 | # CONFIG_SENSORS_PCF8574 is not set | 715 | # CONFIG_SENSORS_PCF8574 is not set |
| 730 | # CONFIG_PCF8575 is not set | 716 | # CONFIG_SENSORS_PCA9539 is not set |
| 731 | # CONFIG_SENSORS_PCF8591 is not set | 717 | # CONFIG_SENSORS_PCF8591 is not set |
| 732 | # CONFIG_ISP1301_OMAP is not set | 718 | # CONFIG_ISP1301_OMAP is not set |
| 733 | CONFIG_TPS65010=y | 719 | CONFIG_TPS65010=y |
| 720 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 721 | # CONFIG_GPIOEXPANDER_OMAP is not set | ||
| 734 | # CONFIG_SENSORS_MAX6875 is not set | 722 | # CONFIG_SENSORS_MAX6875 is not set |
| 735 | # CONFIG_SENSORS_TSL2550 is not set | 723 | # CONFIG_SENSORS_TSL2550 is not set |
| 736 | # CONFIG_I2C_DEBUG_CORE is not set | 724 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -755,7 +743,6 @@ CONFIG_HWMON=y | |||
| 755 | # CONFIG_SENSORS_ADM1031 is not set | 743 | # CONFIG_SENSORS_ADM1031 is not set |
| 756 | # CONFIG_SENSORS_ADM9240 is not set | 744 | # CONFIG_SENSORS_ADM9240 is not set |
| 757 | # CONFIG_SENSORS_ADT7470 is not set | 745 | # CONFIG_SENSORS_ADT7470 is not set |
| 758 | # CONFIG_SENSORS_ADT7473 is not set | ||
| 759 | # CONFIG_SENSORS_ATXP1 is not set | 746 | # CONFIG_SENSORS_ATXP1 is not set |
| 760 | # CONFIG_SENSORS_DS1621 is not set | 747 | # CONFIG_SENSORS_DS1621 is not set |
| 761 | # CONFIG_SENSORS_F71805F is not set | 748 | # CONFIG_SENSORS_F71805F is not set |
| @@ -783,7 +770,6 @@ CONFIG_HWMON=y | |||
| 783 | # CONFIG_SENSORS_SMSC47M1 is not set | 770 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 784 | # CONFIG_SENSORS_SMSC47M192 is not set | 771 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 785 | # CONFIG_SENSORS_SMSC47B397 is not set | 772 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 786 | # CONFIG_SENSORS_ADS7828 is not set | ||
| 787 | # CONFIG_SENSORS_THMC50 is not set | 773 | # CONFIG_SENSORS_THMC50 is not set |
| 788 | # CONFIG_SENSORS_VT1211 is not set | 774 | # CONFIG_SENSORS_VT1211 is not set |
| 789 | # CONFIG_SENSORS_W83781D is not set | 775 | # CONFIG_SENSORS_W83781D is not set |
| @@ -791,7 +777,6 @@ CONFIG_HWMON=y | |||
| 791 | # CONFIG_SENSORS_W83792D is not set | 777 | # CONFIG_SENSORS_W83792D is not set |
| 792 | # CONFIG_SENSORS_W83793 is not set | 778 | # CONFIG_SENSORS_W83793 is not set |
| 793 | # CONFIG_SENSORS_W83L785TS is not set | 779 | # CONFIG_SENSORS_W83L785TS is not set |
| 794 | # CONFIG_SENSORS_W83L786NG is not set | ||
| 795 | # CONFIG_SENSORS_W83627HF is not set | 780 | # CONFIG_SENSORS_W83627HF is not set |
| 796 | # CONFIG_SENSORS_W83627EHF is not set | 781 | # CONFIG_SENSORS_W83627EHF is not set |
| 797 | # CONFIG_HWMON_DEBUG_CHIP is not set | 782 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| @@ -807,7 +792,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 807 | # Multifunction device drivers | 792 | # Multifunction device drivers |
| 808 | # | 793 | # |
| 809 | # CONFIG_MFD_SM501 is not set | 794 | # CONFIG_MFD_SM501 is not set |
| 810 | # CONFIG_MFD_ASIC3 is not set | ||
| 811 | 795 | ||
| 812 | # | 796 | # |
| 813 | # Multimedia devices | 797 | # Multimedia devices |
| @@ -822,11 +806,11 @@ CONFIG_DAB=y | |||
| 822 | # CONFIG_VGASTATE is not set | 806 | # CONFIG_VGASTATE is not set |
| 823 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 807 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
| 824 | CONFIG_FB=y | 808 | CONFIG_FB=y |
| 825 | CONFIG_FIRMWARE_EDID=y | 809 | # CONFIG_FIRMWARE_EDID is not set |
| 826 | # CONFIG_FB_DDC is not set | 810 | # CONFIG_FB_DDC is not set |
| 827 | # CONFIG_FB_CFB_FILLRECT is not set | 811 | CONFIG_FB_CFB_FILLRECT=y |
| 828 | # CONFIG_FB_CFB_COPYAREA is not set | 812 | CONFIG_FB_CFB_COPYAREA=y |
| 829 | # CONFIG_FB_CFB_IMAGEBLIT is not set | 813 | CONFIG_FB_CFB_IMAGEBLIT=y |
| 830 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | 814 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set |
| 831 | # CONFIG_FB_SYS_FILLRECT is not set | 815 | # CONFIG_FB_SYS_FILLRECT is not set |
| 832 | # CONFIG_FB_SYS_COPYAREA is not set | 816 | # CONFIG_FB_SYS_COPYAREA is not set |
| @@ -844,7 +828,11 @@ CONFIG_FB_MODE_HELPERS=y | |||
| 844 | # | 828 | # |
| 845 | # CONFIG_FB_S1D13XXX is not set | 829 | # CONFIG_FB_S1D13XXX is not set |
| 846 | # CONFIG_FB_VIRTUAL is not set | 830 | # CONFIG_FB_VIRTUAL is not set |
| 847 | # CONFIG_FB_OMAP is not set | 831 | CONFIG_FB_OMAP=y |
| 832 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 833 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 834 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 835 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 848 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 836 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 849 | 837 | ||
| 850 | # | 838 | # |
| @@ -891,8 +879,16 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
| 891 | # CONFIG_USB is not set | 879 | # CONFIG_USB is not set |
| 892 | 880 | ||
| 893 | # | 881 | # |
| 882 | # Enable Host or Gadget support to see Inventra options | ||
| 883 | # | ||
| 884 | |||
| 885 | # | ||
| 894 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 895 | # | 887 | # |
| 888 | |||
| 889 | # | ||
| 890 | # USB Gadget Support | ||
| 891 | # | ||
| 896 | # CONFIG_USB_GADGET is not set | 892 | # CONFIG_USB_GADGET is not set |
| 897 | # CONFIG_MMC is not set | 893 | # CONFIG_MMC is not set |
| 898 | # CONFIG_NEW_LEDS is not set | 894 | # CONFIG_NEW_LEDS is not set |
| @@ -900,6 +896,11 @@ CONFIG_RTC_LIB=y | |||
| 900 | # CONFIG_RTC_CLASS is not set | 896 | # CONFIG_RTC_CLASS is not set |
| 901 | 897 | ||
| 902 | # | 898 | # |
| 899 | # CBUS support | ||
| 900 | # | ||
| 901 | # CONFIG_CBUS is not set | ||
| 902 | |||
| 903 | # | ||
| 903 | # File systems | 904 | # File systems |
| 904 | # | 905 | # |
| 905 | CONFIG_EXT2_FS=y | 906 | CONFIG_EXT2_FS=y |
| @@ -913,10 +914,12 @@ CONFIG_EXT2_FS=y | |||
| 913 | # CONFIG_XFS_FS is not set | 914 | # CONFIG_XFS_FS is not set |
| 914 | # CONFIG_GFS2_FS is not set | 915 | # CONFIG_GFS2_FS is not set |
| 915 | # CONFIG_OCFS2_FS is not set | 916 | # CONFIG_OCFS2_FS is not set |
| 916 | CONFIG_DNOTIFY=y | 917 | # CONFIG_MINIX_FS is not set |
| 918 | # CONFIG_ROMFS_FS is not set | ||
| 917 | CONFIG_INOTIFY=y | 919 | CONFIG_INOTIFY=y |
| 918 | CONFIG_INOTIFY_USER=y | 920 | CONFIG_INOTIFY_USER=y |
| 919 | # CONFIG_QUOTA is not set | 921 | # CONFIG_QUOTA is not set |
| 922 | CONFIG_DNOTIFY=y | ||
| 920 | CONFIG_AUTOFS_FS=y | 923 | CONFIG_AUTOFS_FS=y |
| 921 | CONFIG_AUTOFS4_FS=y | 924 | CONFIG_AUTOFS4_FS=y |
| 922 | # CONFIG_FUSE_FS is not set | 925 | # CONFIG_FUSE_FS is not set |
| @@ -970,10 +973,8 @@ CONFIG_JFFS2_RTIME=y | |||
| 970 | # CONFIG_JFFS2_RUBIN is not set | 973 | # CONFIG_JFFS2_RUBIN is not set |
| 971 | # CONFIG_CRAMFS is not set | 974 | # CONFIG_CRAMFS is not set |
| 972 | # CONFIG_VXFS_FS is not set | 975 | # CONFIG_VXFS_FS is not set |
| 973 | # CONFIG_MINIX_FS is not set | ||
| 974 | # CONFIG_HPFS_FS is not set | 976 | # CONFIG_HPFS_FS is not set |
| 975 | # CONFIG_QNX4FS_FS is not set | 977 | # CONFIG_QNX4FS_FS is not set |
| 976 | # CONFIG_ROMFS_FS is not set | ||
| 977 | # CONFIG_SYSV_FS is not set | 978 | # CONFIG_SYSV_FS is not set |
| 978 | # CONFIG_UFS_FS is not set | 979 | # CONFIG_UFS_FS is not set |
| 979 | CONFIG_NETWORK_FILESYSTEMS=y | 980 | CONFIG_NETWORK_FILESYSTEMS=y |
| @@ -1043,6 +1044,9 @@ CONFIG_NLS_ISO8859_1=m | |||
| 1043 | # CONFIG_NLS_KOI8_U is not set | 1044 | # CONFIG_NLS_KOI8_U is not set |
| 1044 | # CONFIG_NLS_UTF8 is not set | 1045 | # CONFIG_NLS_UTF8 is not set |
| 1045 | # CONFIG_DLM is not set | 1046 | # CONFIG_DLM is not set |
| 1047 | CONFIG_INSTRUMENTATION=y | ||
| 1048 | # CONFIG_PROFILING is not set | ||
| 1049 | # CONFIG_MARKERS is not set | ||
| 1046 | 1050 | ||
| 1047 | # | 1051 | # |
| 1048 | # Kernel hacking | 1052 | # Kernel hacking |
| @@ -1055,6 +1059,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1055 | # CONFIG_DEBUG_FS is not set | 1059 | # CONFIG_DEBUG_FS is not set |
| 1056 | # CONFIG_HEADERS_CHECK is not set | 1060 | # CONFIG_HEADERS_CHECK is not set |
| 1057 | # CONFIG_DEBUG_KERNEL is not set | 1061 | # CONFIG_DEBUG_KERNEL is not set |
| 1062 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 1058 | CONFIG_DEBUG_BUGVERBOSE=y | 1063 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1059 | CONFIG_FRAME_POINTER=y | 1064 | CONFIG_FRAME_POINTER=y |
| 1060 | # CONFIG_SAMPLES is not set | 1065 | # CONFIG_SAMPLES is not set |
| @@ -1066,51 +1071,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1066 | # CONFIG_KEYS is not set | 1071 | # CONFIG_KEYS is not set |
| 1067 | # CONFIG_SECURITY is not set | 1072 | # CONFIG_SECURITY is not set |
| 1068 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1073 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1069 | CONFIG_CRYPTO=y | 1074 | # CONFIG_CRYPTO is not set |
| 1070 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1071 | # CONFIG_CRYPTO_MANAGER is not set | ||
| 1072 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1073 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1074 | # CONFIG_CRYPTO_NULL is not set | ||
| 1075 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1076 | # CONFIG_CRYPTO_MD5 is not set | ||
| 1077 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1078 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1079 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1080 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1081 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1082 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1083 | # CONFIG_CRYPTO_ECB is not set | ||
| 1084 | # CONFIG_CRYPTO_CBC is not set | ||
| 1085 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1086 | # CONFIG_CRYPTO_LRW is not set | ||
| 1087 | # CONFIG_CRYPTO_XTS is not set | ||
| 1088 | # CONFIG_CRYPTO_CTR is not set | ||
| 1089 | # CONFIG_CRYPTO_GCM is not set | ||
| 1090 | # CONFIG_CRYPTO_CCM is not set | ||
| 1091 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1092 | # CONFIG_CRYPTO_DES is not set | ||
| 1093 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1094 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1095 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1096 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1097 | # CONFIG_CRYPTO_AES is not set | ||
| 1098 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1099 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1100 | # CONFIG_CRYPTO_TEA is not set | ||
| 1101 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1102 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1103 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1104 | # CONFIG_CRYPTO_SEED is not set | ||
| 1105 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1106 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1107 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1108 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1109 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1110 | # CONFIG_CRYPTO_TEST is not set | ||
| 1111 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1112 | # CONFIG_CRYPTO_LZO is not set | ||
| 1113 | CONFIG_CRYPTO_HW=y | ||
| 1114 | 1075 | ||
| 1115 | # | 1076 | # |
| 1116 | # Library routines | 1077 | # Library routines |
diff --git a/arch/arm/configs/omap_perseus2_730_defconfig b/arch/arm/configs/omap_perseus2_730_defconfig new file mode 100644 index 000000000000..b94800c0e000 --- /dev/null +++ b/arch/arm/configs/omap_perseus2_730_defconfig | |||
| @@ -0,0 +1,928 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.23-rc6-omap1 | ||
| 4 | # Tue Sep 18 11:45:12 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # General setup | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | CONFIG_LOCALVERSION="" | ||
| 36 | CONFIG_LOCALVERSION_AUTO=y | ||
| 37 | CONFIG_SWAP=y | ||
| 38 | CONFIG_SYSVIPC=y | ||
| 39 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 40 | # CONFIG_POSIX_MQUEUE is not set | ||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 42 | # CONFIG_TASKSTATS is not set | ||
| 43 | # CONFIG_USER_NS is not set | ||
| 44 | # CONFIG_AUDIT is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | ||
| 46 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | ||
| 48 | # CONFIG_RELAY is not set | ||
| 49 | CONFIG_BLK_DEV_INITRD=y | ||
| 50 | CONFIG_INITRAMFS_SOURCE="" | ||
| 51 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 52 | CONFIG_SYSCTL=y | ||
| 53 | # CONFIG_EMBEDDED is not set | ||
| 54 | CONFIG_UID16=y | ||
| 55 | CONFIG_SYSCTL_SYSCALL=y | ||
| 56 | CONFIG_KALLSYMS=y | ||
| 57 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 58 | CONFIG_HOTPLUG=y | ||
| 59 | CONFIG_PRINTK=y | ||
| 60 | CONFIG_BUG=y | ||
| 61 | CONFIG_ELF_CORE=y | ||
| 62 | CONFIG_BASE_FULL=y | ||
| 63 | CONFIG_FUTEX=y | ||
| 64 | CONFIG_ANON_INODES=y | ||
| 65 | CONFIG_EPOLL=y | ||
| 66 | CONFIG_SIGNALFD=y | ||
| 67 | CONFIG_TIMERFD=y | ||
| 68 | CONFIG_EVENTFD=y | ||
| 69 | CONFIG_SHMEM=y | ||
| 70 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 71 | CONFIG_SLAB=y | ||
| 72 | # CONFIG_SLUB is not set | ||
| 73 | # CONFIG_SLOB is not set | ||
| 74 | CONFIG_RT_MUTEXES=y | ||
| 75 | # CONFIG_TINY_SHMEM is not set | ||
| 76 | CONFIG_BASE_SMALL=0 | ||
| 77 | CONFIG_MODULES=y | ||
| 78 | CONFIG_MODULE_UNLOAD=y | ||
| 79 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 80 | # CONFIG_MODVERSIONS is not set | ||
| 81 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 82 | CONFIG_KMOD=y | ||
| 83 | CONFIG_BLOCK=y | ||
| 84 | # CONFIG_LBD is not set | ||
| 85 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 86 | # CONFIG_LSF is not set | ||
| 87 | # CONFIG_BLK_DEV_BSG is not set | ||
| 88 | |||
| 89 | # | ||
| 90 | # IO Schedulers | ||
| 91 | # | ||
| 92 | CONFIG_IOSCHED_NOOP=y | ||
| 93 | CONFIG_IOSCHED_AS=y | ||
| 94 | CONFIG_IOSCHED_DEADLINE=y | ||
| 95 | CONFIG_IOSCHED_CFQ=y | ||
| 96 | # CONFIG_DEFAULT_AS is not set | ||
| 97 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 98 | CONFIG_DEFAULT_CFQ=y | ||
| 99 | # CONFIG_DEFAULT_NOOP is not set | ||
| 100 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 101 | |||
| 102 | # | ||
| 103 | # System Type | ||
| 104 | # | ||
| 105 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 106 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 107 | # CONFIG_ARCH_REALVIEW is not set | ||
| 108 | # CONFIG_ARCH_VERSATILE is not set | ||
| 109 | # CONFIG_ARCH_AT91 is not set | ||
| 110 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 111 | # CONFIG_ARCH_CLPS711X is not set | ||
| 112 | # CONFIG_ARCH_CO285 is not set | ||
| 113 | # CONFIG_ARCH_EBSA110 is not set | ||
| 114 | # CONFIG_ARCH_EP93XX is not set | ||
| 115 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 116 | # CONFIG_ARCH_NETX is not set | ||
| 117 | # CONFIG_ARCH_H720X is not set | ||
| 118 | # CONFIG_ARCH_IMX is not set | ||
| 119 | # CONFIG_ARCH_IOP13XX is not set | ||
| 120 | # CONFIG_ARCH_IOP32X is not set | ||
| 121 | # CONFIG_ARCH_IOP33X is not set | ||
| 122 | # CONFIG_ARCH_IXP23XX is not set | ||
| 123 | # CONFIG_ARCH_IXP2000 is not set | ||
| 124 | # CONFIG_ARCH_IXP4XX is not set | ||
| 125 | # CONFIG_ARCH_L7200 is not set | ||
| 126 | # CONFIG_ARCH_KS8695 is not set | ||
| 127 | # CONFIG_ARCH_NS9XXX is not set | ||
| 128 | # CONFIG_ARCH_MXC is not set | ||
| 129 | # CONFIG_ARCH_PNX4008 is not set | ||
| 130 | # CONFIG_ARCH_PXA is not set | ||
| 131 | # CONFIG_ARCH_RPC is not set | ||
| 132 | # CONFIG_ARCH_SA1100 is not set | ||
| 133 | # CONFIG_ARCH_S3C2410 is not set | ||
| 134 | # CONFIG_ARCH_SHARK is not set | ||
| 135 | # CONFIG_ARCH_LH7A40X is not set | ||
| 136 | # CONFIG_ARCH_DAVINCI is not set | ||
| 137 | CONFIG_ARCH_OMAP=y | ||
| 138 | |||
| 139 | # | ||
| 140 | # TI OMAP Implementations | ||
| 141 | # | ||
| 142 | CONFIG_ARCH_OMAP_OTG=y | ||
| 143 | CONFIG_ARCH_OMAP1=y | ||
| 144 | # CONFIG_ARCH_OMAP2 is not set | ||
| 145 | # CONFIG_ARCH_OMAP3 is not set | ||
| 146 | |||
| 147 | # | ||
| 148 | # OMAP Feature Selections | ||
| 149 | # | ||
| 150 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 151 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 152 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 153 | CONFIG_OMAP_MUX=y | ||
| 154 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 155 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 156 | CONFIG_OMAP_MCBSP=y | ||
| 157 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 158 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 159 | CONFIG_OMAP_MPU_TIMER=y | ||
| 160 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 161 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 162 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 163 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 164 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 165 | |||
| 166 | # | ||
| 167 | # OMAP Core Type | ||
| 168 | # | ||
| 169 | CONFIG_ARCH_OMAP730=y | ||
| 170 | # CONFIG_ARCH_OMAP15XX is not set | ||
| 171 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 172 | |||
| 173 | # | ||
| 174 | # OMAP Board Type | ||
| 175 | # | ||
| 176 | CONFIG_MACH_OMAP_PERSEUS2=y | ||
| 177 | # CONFIG_MACH_OMAP_FSAMPLE is not set | ||
| 178 | |||
| 179 | # | ||
| 180 | # OMAP CPU Speed | ||
| 181 | # | ||
| 182 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 183 | # CONFIG_OMAP_ARM_195MHZ is not set | ||
| 184 | CONFIG_OMAP_ARM_182MHZ=y | ||
| 185 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 186 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 187 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 188 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 189 | # CONFIG_MACH_OMAP_APOLLON_PLUS is not set | ||
| 190 | |||
| 191 | # | ||
| 192 | # Boot options | ||
| 193 | # | ||
| 194 | |||
| 195 | # | ||
| 196 | # Power management | ||
| 197 | # | ||
| 198 | |||
| 199 | # | ||
| 200 | # Processor Type | ||
| 201 | # | ||
| 202 | CONFIG_CPU_32=y | ||
| 203 | CONFIG_CPU_ARM926T=y | ||
| 204 | CONFIG_CPU_32v5=y | ||
| 205 | CONFIG_CPU_ABRT_EV5TJ=y | ||
| 206 | CONFIG_CPU_PABRT_NOIFAR=y | ||
| 207 | CONFIG_CPU_CACHE_VIVT=y | ||
| 208 | CONFIG_CPU_COPY_V4WB=y | ||
| 209 | CONFIG_CPU_TLB_V4WBI=y | ||
| 210 | CONFIG_CPU_CP15=y | ||
| 211 | CONFIG_CPU_CP15_MMU=y | ||
| 212 | |||
| 213 | # | ||
| 214 | # Processor Features | ||
| 215 | # | ||
| 216 | # CONFIG_ARM_THUMB is not set | ||
| 217 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 218 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 219 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 220 | # CONFIG_CPU_CACHE_ROUND_ROBIN is not set | ||
| 221 | # CONFIG_OUTER_CACHE is not set | ||
| 222 | |||
| 223 | # | ||
| 224 | # Bus support | ||
| 225 | # | ||
| 226 | # CONFIG_PCI_SYSCALL is not set | ||
| 227 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 228 | |||
| 229 | # | ||
| 230 | # PCCARD (PCMCIA/CardBus) support | ||
| 231 | # | ||
| 232 | # CONFIG_PCCARD is not set | ||
| 233 | |||
| 234 | # | ||
| 235 | # Kernel Features | ||
| 236 | # | ||
| 237 | # CONFIG_TICK_ONESHOT is not set | ||
| 238 | # CONFIG_NO_HZ is not set | ||
| 239 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 240 | CONFIG_PREEMPT=y | ||
| 241 | CONFIG_HZ=100 | ||
| 242 | # CONFIG_AEABI is not set | ||
| 243 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 244 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 245 | CONFIG_FLATMEM_MANUAL=y | ||
| 246 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 247 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 248 | CONFIG_FLATMEM=y | ||
| 249 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 250 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 251 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 252 | # CONFIG_RESOURCES_64BIT is not set | ||
| 253 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 254 | CONFIG_BOUNCE=y | ||
| 255 | CONFIG_VIRT_TO_BUS=y | ||
| 256 | CONFIG_LEDS=y | ||
| 257 | CONFIG_LEDS_CPU=y | ||
| 258 | CONFIG_ALIGNMENT_TRAP=y | ||
| 259 | |||
| 260 | # | ||
| 261 | # Boot options | ||
| 262 | # | ||
| 263 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 264 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 265 | CONFIG_CMDLINE="mem=32M console=ttyS0,115200 ip=dhcp" | ||
| 266 | # CONFIG_XIP_KERNEL is not set | ||
| 267 | # CONFIG_KEXEC is not set | ||
| 268 | |||
| 269 | # | ||
| 270 | # CPU Frequency scaling | ||
| 271 | # | ||
| 272 | # CONFIG_CPU_FREQ is not set | ||
| 273 | |||
| 274 | # | ||
| 275 | # Floating point emulation | ||
| 276 | # | ||
| 277 | |||
| 278 | # | ||
| 279 | # At least one emulation must be selected | ||
| 280 | # | ||
| 281 | CONFIG_FPE_NWFPE=y | ||
| 282 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 283 | # CONFIG_FPE_FASTFPE is not set | ||
| 284 | # CONFIG_VFP is not set | ||
| 285 | |||
| 286 | # | ||
| 287 | # Userspace binary formats | ||
| 288 | # | ||
| 289 | CONFIG_BINFMT_ELF=y | ||
| 290 | # CONFIG_BINFMT_AOUT is not set | ||
| 291 | # CONFIG_BINFMT_MISC is not set | ||
| 292 | # CONFIG_ARTHUR is not set | ||
| 293 | |||
| 294 | # | ||
| 295 | # Power management options | ||
| 296 | # | ||
| 297 | CONFIG_PM=y | ||
| 298 | # CONFIG_PM_LEGACY is not set | ||
| 299 | # CONFIG_PM_DEBUG is not set | ||
| 300 | CONFIG_PM_SLEEP=y | ||
| 301 | CONFIG_SUSPEND_UP_POSSIBLE=y | ||
| 302 | CONFIG_SUSPEND=y | ||
| 303 | # CONFIG_APM_EMULATION is not set | ||
| 304 | |||
| 305 | # | ||
| 306 | # Networking | ||
| 307 | # | ||
| 308 | CONFIG_NET=y | ||
| 309 | |||
| 310 | # | ||
| 311 | # Networking options | ||
| 312 | # | ||
| 313 | CONFIG_PACKET=y | ||
| 314 | # CONFIG_PACKET_MMAP is not set | ||
| 315 | CONFIG_UNIX=y | ||
| 316 | CONFIG_XFRM=y | ||
| 317 | # CONFIG_XFRM_USER is not set | ||
| 318 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 319 | # CONFIG_XFRM_MIGRATE is not set | ||
| 320 | # CONFIG_NET_KEY is not set | ||
| 321 | CONFIG_INET=y | ||
| 322 | CONFIG_IP_MULTICAST=y | ||
| 323 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 324 | CONFIG_IP_FIB_HASH=y | ||
| 325 | CONFIG_IP_PNP=y | ||
| 326 | CONFIG_IP_PNP_DHCP=y | ||
| 327 | CONFIG_IP_PNP_BOOTP=y | ||
| 328 | # CONFIG_IP_PNP_RARP is not set | ||
| 329 | # CONFIG_NET_IPIP is not set | ||
| 330 | # CONFIG_NET_IPGRE is not set | ||
| 331 | # CONFIG_IP_MROUTE is not set | ||
| 332 | # CONFIG_ARPD is not set | ||
| 333 | # CONFIG_SYN_COOKIES is not set | ||
| 334 | # CONFIG_INET_AH is not set | ||
| 335 | # CONFIG_INET_ESP is not set | ||
| 336 | # CONFIG_INET_IPCOMP is not set | ||
| 337 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 338 | # CONFIG_INET_TUNNEL is not set | ||
| 339 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 340 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 341 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 342 | CONFIG_INET_DIAG=y | ||
| 343 | CONFIG_INET_TCP_DIAG=y | ||
| 344 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 345 | CONFIG_TCP_CONG_CUBIC=y | ||
| 346 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 347 | # CONFIG_TCP_MD5SIG is not set | ||
| 348 | # CONFIG_IPV6 is not set | ||
| 349 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 350 | # CONFIG_INET6_TUNNEL is not set | ||
| 351 | # CONFIG_NETWORK_SECMARK is not set | ||
| 352 | # CONFIG_NETFILTER is not set | ||
| 353 | # CONFIG_IP_DCCP is not set | ||
| 354 | # CONFIG_IP_SCTP is not set | ||
| 355 | # CONFIG_TIPC is not set | ||
| 356 | # CONFIG_ATM is not set | ||
| 357 | # CONFIG_BRIDGE is not set | ||
| 358 | # CONFIG_VLAN_8021Q is not set | ||
| 359 | # CONFIG_DECNET is not set | ||
| 360 | # CONFIG_LLC2 is not set | ||
| 361 | # CONFIG_IPX is not set | ||
| 362 | # CONFIG_ATALK is not set | ||
| 363 | # CONFIG_X25 is not set | ||
| 364 | # CONFIG_LAPB is not set | ||
| 365 | # CONFIG_ECONET is not set | ||
| 366 | # CONFIG_WAN_ROUTER is not set | ||
| 367 | |||
| 368 | # | ||
| 369 | # QoS and/or fair queueing | ||
| 370 | # | ||
| 371 | # CONFIG_NET_SCHED is not set | ||
| 372 | |||
| 373 | # | ||
| 374 | # Network testing | ||
| 375 | # | ||
| 376 | # CONFIG_NET_PKTGEN is not set | ||
| 377 | # CONFIG_HAMRADIO is not set | ||
| 378 | # CONFIG_IRDA is not set | ||
| 379 | # CONFIG_BT is not set | ||
| 380 | # CONFIG_AF_RXRPC is not set | ||
| 381 | |||
| 382 | # | ||
| 383 | # Wireless | ||
| 384 | # | ||
| 385 | # CONFIG_CFG80211 is not set | ||
| 386 | # CONFIG_WIRELESS_EXT is not set | ||
| 387 | # CONFIG_MAC80211 is not set | ||
| 388 | # CONFIG_IEEE80211 is not set | ||
| 389 | # CONFIG_RFKILL is not set | ||
| 390 | # CONFIG_NET_9P is not set | ||
| 391 | |||
| 392 | # | ||
| 393 | # Device Drivers | ||
| 394 | # | ||
| 395 | |||
| 396 | # | ||
| 397 | # Generic Driver Options | ||
| 398 | # | ||
| 399 | CONFIG_STANDALONE=y | ||
| 400 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 401 | # CONFIG_FW_LOADER is not set | ||
| 402 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 403 | # CONFIG_CONNECTOR is not set | ||
| 404 | CONFIG_MTD=y | ||
| 405 | # CONFIG_MTD_DEBUG is not set | ||
| 406 | # CONFIG_MTD_CONCAT is not set | ||
| 407 | CONFIG_MTD_PARTITIONS=y | ||
| 408 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 409 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 410 | # CONFIG_MTD_AFS_PARTS is not set | ||
| 411 | |||
| 412 | # | ||
| 413 | # User Modules And Translation Layers | ||
| 414 | # | ||
| 415 | CONFIG_MTD_CHAR=y | ||
| 416 | CONFIG_MTD_BLKDEVS=y | ||
| 417 | CONFIG_MTD_BLOCK=y | ||
| 418 | # CONFIG_FTL is not set | ||
| 419 | # CONFIG_NFTL is not set | ||
| 420 | # CONFIG_INFTL is not set | ||
| 421 | # CONFIG_RFD_FTL is not set | ||
| 422 | # CONFIG_SSFDC is not set | ||
| 423 | |||
| 424 | # | ||
| 425 | # RAM/ROM/Flash chip drivers | ||
| 426 | # | ||
| 427 | CONFIG_MTD_CFI=y | ||
| 428 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 429 | CONFIG_MTD_GEN_PROBE=y | ||
| 430 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 431 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 432 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 433 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 434 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 435 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 436 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 437 | CONFIG_MTD_CFI_I1=y | ||
| 438 | CONFIG_MTD_CFI_I2=y | ||
| 439 | # CONFIG_MTD_CFI_I4 is not set | ||
| 440 | # CONFIG_MTD_CFI_I8 is not set | ||
| 441 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 442 | # CONFIG_MTD_CFI_AMDSTD is not set | ||
| 443 | # CONFIG_MTD_CFI_STAA is not set | ||
| 444 | CONFIG_MTD_CFI_UTIL=y | ||
| 445 | # CONFIG_MTD_RAM is not set | ||
| 446 | # CONFIG_MTD_ROM is not set | ||
| 447 | # CONFIG_MTD_ABSENT is not set | ||
| 448 | |||
| 449 | # | ||
| 450 | # Mapping drivers for chip access | ||
| 451 | # | ||
| 452 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 453 | # CONFIG_MTD_PHYSMAP is not set | ||
| 454 | # CONFIG_MTD_ARM_INTEGRATOR is not set | ||
| 455 | CONFIG_MTD_OMAP_NOR=y | ||
| 456 | # CONFIG_MTD_PLATRAM is not set | ||
| 457 | |||
| 458 | # | ||
| 459 | # Self-contained MTD device drivers | ||
| 460 | # | ||
| 461 | # CONFIG_MTD_SLRAM is not set | ||
| 462 | # CONFIG_MTD_PHRAM is not set | ||
| 463 | # CONFIG_MTD_MTDRAM is not set | ||
| 464 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 465 | |||
| 466 | # | ||
| 467 | # Disk-On-Chip Device Drivers | ||
| 468 | # | ||
| 469 | # CONFIG_MTD_DOC2000 is not set | ||
| 470 | # CONFIG_MTD_DOC2001 is not set | ||
| 471 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 472 | CONFIG_MTD_NAND=y | ||
| 473 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
| 474 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
| 475 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
| 476 | CONFIG_MTD_NAND_OMAP=y | ||
| 477 | CONFIG_MTD_NAND_IDS=y | ||
| 478 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
| 479 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
| 480 | # CONFIG_MTD_NAND_PLATFORM is not set | ||
| 481 | # CONFIG_MTD_ONENAND is not set | ||
| 482 | |||
| 483 | # | ||
| 484 | # UBI - Unsorted block images | ||
| 485 | # | ||
| 486 | # CONFIG_MTD_UBI is not set | ||
| 487 | # CONFIG_PARPORT is not set | ||
| 488 | CONFIG_BLK_DEV=y | ||
| 489 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 490 | CONFIG_BLK_DEV_LOOP=y | ||
| 491 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 492 | # CONFIG_BLK_DEV_NBD is not set | ||
| 493 | CONFIG_BLK_DEV_RAM=y | ||
| 494 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 495 | CONFIG_BLK_DEV_RAM_SIZE=8192 | ||
| 496 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 497 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 498 | # CONFIG_ATA_OVER_ETH is not set | ||
| 499 | |||
| 500 | # | ||
| 501 | # SCSI device support | ||
| 502 | # | ||
| 503 | # CONFIG_RAID_ATTRS is not set | ||
| 504 | # CONFIG_SCSI is not set | ||
| 505 | # CONFIG_SCSI_DMA is not set | ||
| 506 | # CONFIG_SCSI_NETLINK is not set | ||
| 507 | # CONFIG_ATA is not set | ||
| 508 | # CONFIG_MD is not set | ||
| 509 | CONFIG_NETDEVICES=y | ||
| 510 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 511 | # CONFIG_DUMMY is not set | ||
| 512 | # CONFIG_BONDING is not set | ||
| 513 | # CONFIG_MACVLAN is not set | ||
| 514 | # CONFIG_EQUALIZER is not set | ||
| 515 | # CONFIG_TUN is not set | ||
| 516 | # CONFIG_PHYLIB is not set | ||
| 517 | CONFIG_NET_ETHERNET=y | ||
| 518 | CONFIG_MII=y | ||
| 519 | # CONFIG_AX88796 is not set | ||
| 520 | CONFIG_SMC91X=y | ||
| 521 | # CONFIG_DM9000 is not set | ||
| 522 | CONFIG_NETDEV_1000=y | ||
| 523 | CONFIG_NETDEV_10000=y | ||
| 524 | |||
| 525 | # | ||
| 526 | # Wireless LAN | ||
| 527 | # | ||
| 528 | # CONFIG_WLAN_PRE80211 is not set | ||
| 529 | # CONFIG_WLAN_80211 is not set | ||
| 530 | # CONFIG_WAN is not set | ||
| 531 | # CONFIG_PPP is not set | ||
| 532 | # CONFIG_SLIP is not set | ||
| 533 | # CONFIG_SHAPER is not set | ||
| 534 | # CONFIG_NETCONSOLE is not set | ||
| 535 | # CONFIG_NETPOLL is not set | ||
| 536 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 537 | # CONFIG_ISDN is not set | ||
| 538 | |||
| 539 | # | ||
| 540 | # Input device support | ||
| 541 | # | ||
| 542 | CONFIG_INPUT=y | ||
| 543 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 544 | # CONFIG_INPUT_POLLDEV is not set | ||
| 545 | |||
| 546 | # | ||
| 547 | # Userland interfaces | ||
| 548 | # | ||
| 549 | CONFIG_INPUT_MOUSEDEV=y | ||
| 550 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 551 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 552 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 553 | # CONFIG_INPUT_JOYDEV is not set | ||
| 554 | # CONFIG_INPUT_TSDEV is not set | ||
| 555 | # CONFIG_INPUT_EVDEV is not set | ||
| 556 | # CONFIG_INPUT_EVBUG is not set | ||
| 557 | |||
| 558 | # | ||
| 559 | # Input Device Drivers | ||
| 560 | # | ||
| 561 | CONFIG_INPUT_KEYBOARD=y | ||
| 562 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 563 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 564 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 565 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 566 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 567 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 568 | CONFIG_KEYBOARD_OMAP=y | ||
| 569 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 570 | # CONFIG_INPUT_MOUSE is not set | ||
| 571 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 572 | # CONFIG_INPUT_TABLET is not set | ||
| 573 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 574 | # CONFIG_INPUT_MISC is not set | ||
| 575 | |||
| 576 | # | ||
| 577 | # Hardware I/O ports | ||
| 578 | # | ||
| 579 | CONFIG_SERIO=y | ||
| 580 | CONFIG_SERIO_SERPORT=y | ||
| 581 | # CONFIG_SERIO_RAW is not set | ||
| 582 | # CONFIG_GAMEPORT is not set | ||
| 583 | |||
| 584 | # | ||
| 585 | # Character devices | ||
| 586 | # | ||
| 587 | CONFIG_VT=y | ||
| 588 | CONFIG_VT_CONSOLE=y | ||
| 589 | CONFIG_HW_CONSOLE=y | ||
| 590 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 591 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 592 | |||
| 593 | # | ||
| 594 | # Serial drivers | ||
| 595 | # | ||
| 596 | CONFIG_SERIAL_8250=y | ||
| 597 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 598 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 599 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 600 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 601 | |||
| 602 | # | ||
| 603 | # Non-8250 serial port support | ||
| 604 | # | ||
| 605 | CONFIG_SERIAL_CORE=y | ||
| 606 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 607 | CONFIG_UNIX98_PTYS=y | ||
| 608 | # CONFIG_LEGACY_PTYS is not set | ||
| 609 | # CONFIG_IPMI_HANDLER is not set | ||
| 610 | # CONFIG_WATCHDOG is not set | ||
| 611 | CONFIG_HW_RANDOM=m | ||
| 612 | # CONFIG_NVRAM is not set | ||
| 613 | # CONFIG_R3964 is not set | ||
| 614 | # CONFIG_RAW_DRIVER is not set | ||
| 615 | # CONFIG_TCG_TPM is not set | ||
| 616 | # CONFIG_I2C is not set | ||
| 617 | |||
| 618 | # | ||
| 619 | # SPI support | ||
| 620 | # | ||
| 621 | # CONFIG_SPI is not set | ||
| 622 | # CONFIG_SPI_MASTER is not set | ||
| 623 | # CONFIG_W1 is not set | ||
| 624 | CONFIG_HWMON=y | ||
| 625 | # CONFIG_HWMON_VID is not set | ||
| 626 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 627 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
| 628 | # CONFIG_SENSORS_F71805F is not set | ||
| 629 | # CONFIG_SENSORS_IT87 is not set | ||
| 630 | # CONFIG_SENSORS_PC87360 is not set | ||
| 631 | # CONFIG_SENSORS_PC87427 is not set | ||
| 632 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 633 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 634 | # CONFIG_SENSORS_VT1211 is not set | ||
| 635 | # CONFIG_SENSORS_W83627HF is not set | ||
| 636 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 637 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 638 | CONFIG_MISC_DEVICES=y | ||
| 639 | # CONFIG_EEPROM_93CX6 is not set | ||
| 640 | |||
| 641 | # | ||
| 642 | # Multifunction device drivers | ||
| 643 | # | ||
| 644 | # CONFIG_MFD_SM501 is not set | ||
| 645 | # CONFIG_NEW_LEDS is not set | ||
| 646 | |||
| 647 | # | ||
| 648 | # Multimedia devices | ||
| 649 | # | ||
| 650 | # CONFIG_VIDEO_DEV is not set | ||
| 651 | # CONFIG_DVB_CORE is not set | ||
| 652 | CONFIG_DAB=y | ||
| 653 | |||
| 654 | # | ||
| 655 | # Graphics support | ||
| 656 | # | ||
| 657 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 658 | |||
| 659 | # | ||
| 660 | # Display device support | ||
| 661 | # | ||
| 662 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 663 | # CONFIG_VGASTATE is not set | ||
| 664 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
| 665 | CONFIG_FB=y | ||
| 666 | # CONFIG_FIRMWARE_EDID is not set | ||
| 667 | # CONFIG_FB_DDC is not set | ||
| 668 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 669 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 670 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 671 | CONFIG_FB_SYS_FILLRECT=y | ||
| 672 | CONFIG_FB_SYS_COPYAREA=y | ||
| 673 | CONFIG_FB_SYS_IMAGEBLIT=y | ||
| 674 | CONFIG_FB_SYS_FOPS=y | ||
| 675 | CONFIG_FB_DEFERRED_IO=y | ||
| 676 | # CONFIG_FB_SVGALIB is not set | ||
| 677 | # CONFIG_FB_MACMODES is not set | ||
| 678 | # CONFIG_FB_BACKLIGHT is not set | ||
| 679 | CONFIG_FB_MODE_HELPERS=y | ||
| 680 | # CONFIG_FB_TILEBLITTING is not set | ||
| 681 | |||
| 682 | # | ||
| 683 | # Frame buffer hardware drivers | ||
| 684 | # | ||
| 685 | # CONFIG_FB_S1D13XXX is not set | ||
| 686 | # CONFIG_FB_OMAP is not set | ||
| 687 | CONFIG_FB_VIRTUAL=y | ||
| 688 | |||
| 689 | # | ||
| 690 | # Console display driver support | ||
| 691 | # | ||
| 692 | # CONFIG_VGA_CONSOLE is not set | ||
| 693 | CONFIG_DUMMY_CONSOLE=y | ||
| 694 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | ||
| 695 | # CONFIG_LOGO is not set | ||
| 696 | |||
| 697 | # | ||
| 698 | # Sound | ||
| 699 | # | ||
| 700 | # CONFIG_SOUND is not set | ||
| 701 | CONFIG_HID_SUPPORT=y | ||
| 702 | CONFIG_HID=y | ||
| 703 | # CONFIG_HID_DEBUG is not set | ||
| 704 | CONFIG_USB_SUPPORT=y | ||
| 705 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 706 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 707 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 708 | # CONFIG_USB is not set | ||
| 709 | |||
| 710 | # | ||
| 711 | # Enable Host or Gadget support to see Inventra options | ||
| 712 | # | ||
| 713 | |||
| 714 | # | ||
| 715 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 716 | # | ||
| 717 | |||
| 718 | # | ||
| 719 | # USB Gadget Support | ||
| 720 | # | ||
| 721 | # CONFIG_USB_GADGET is not set | ||
| 722 | # CONFIG_MMC is not set | ||
| 723 | CONFIG_RTC_LIB=y | ||
| 724 | CONFIG_RTC_CLASS=y | ||
| 725 | CONFIG_RTC_HCTOSYS=y | ||
| 726 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 727 | # CONFIG_RTC_DEBUG is not set | ||
| 728 | |||
| 729 | # | ||
| 730 | # RTC interfaces | ||
| 731 | # | ||
| 732 | CONFIG_RTC_INTF_SYSFS=y | ||
| 733 | CONFIG_RTC_INTF_PROC=y | ||
| 734 | CONFIG_RTC_INTF_DEV=y | ||
| 735 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 736 | # CONFIG_RTC_DRV_TEST is not set | ||
| 737 | |||
| 738 | # | ||
| 739 | # SPI RTC drivers | ||
| 740 | # | ||
| 741 | |||
| 742 | # | ||
| 743 | # Platform RTC drivers | ||
| 744 | # | ||
| 745 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 746 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 747 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 748 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 749 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 750 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 751 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 752 | |||
| 753 | # | ||
| 754 | # on-CPU RTC drivers | ||
| 755 | # | ||
| 756 | CONFIG_RTC_DRV_OMAP=y | ||
| 757 | |||
| 758 | # | ||
| 759 | # DMA Engine support | ||
| 760 | # | ||
| 761 | # CONFIG_DMA_ENGINE is not set | ||
| 762 | |||
| 763 | # | ||
| 764 | # DMA Clients | ||
| 765 | # | ||
| 766 | |||
| 767 | # | ||
| 768 | # DMA Devices | ||
| 769 | # | ||
| 770 | |||
| 771 | # | ||
| 772 | # CBUS support | ||
| 773 | # | ||
| 774 | # CONFIG_CBUS is not set | ||
| 775 | |||
| 776 | # | ||
| 777 | # File systems | ||
| 778 | # | ||
| 779 | CONFIG_EXT2_FS=y | ||
| 780 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 781 | # CONFIG_EXT2_FS_XIP is not set | ||
| 782 | # CONFIG_EXT3_FS is not set | ||
| 783 | # CONFIG_EXT4DEV_FS is not set | ||
| 784 | # CONFIG_REISERFS_FS is not set | ||
| 785 | # CONFIG_JFS_FS is not set | ||
| 786 | # CONFIG_FS_POSIX_ACL is not set | ||
| 787 | # CONFIG_XFS_FS is not set | ||
| 788 | # CONFIG_GFS2_FS is not set | ||
| 789 | # CONFIG_OCFS2_FS is not set | ||
| 790 | # CONFIG_MINIX_FS is not set | ||
| 791 | # CONFIG_ROMFS_FS is not set | ||
| 792 | CONFIG_INOTIFY=y | ||
| 793 | CONFIG_INOTIFY_USER=y | ||
| 794 | # CONFIG_QUOTA is not set | ||
| 795 | CONFIG_DNOTIFY=y | ||
| 796 | # CONFIG_AUTOFS_FS is not set | ||
| 797 | # CONFIG_AUTOFS4_FS is not set | ||
| 798 | # CONFIG_FUSE_FS is not set | ||
| 799 | |||
| 800 | # | ||
| 801 | # CD-ROM/DVD Filesystems | ||
| 802 | # | ||
| 803 | # CONFIG_ISO9660_FS is not set | ||
| 804 | # CONFIG_UDF_FS is not set | ||
| 805 | |||
| 806 | # | ||
| 807 | # DOS/FAT/NT Filesystems | ||
| 808 | # | ||
| 809 | # CONFIG_MSDOS_FS is not set | ||
| 810 | # CONFIG_VFAT_FS is not set | ||
| 811 | # CONFIG_NTFS_FS is not set | ||
| 812 | |||
| 813 | # | ||
| 814 | # Pseudo filesystems | ||
| 815 | # | ||
| 816 | CONFIG_PROC_FS=y | ||
| 817 | CONFIG_PROC_SYSCTL=y | ||
| 818 | CONFIG_SYSFS=y | ||
| 819 | # CONFIG_TMPFS is not set | ||
| 820 | # CONFIG_HUGETLB_PAGE is not set | ||
| 821 | CONFIG_RAMFS=y | ||
| 822 | # CONFIG_CONFIGFS_FS is not set | ||
| 823 | |||
| 824 | # | ||
| 825 | # Miscellaneous filesystems | ||
| 826 | # | ||
| 827 | # CONFIG_ADFS_FS is not set | ||
| 828 | # CONFIG_AFFS_FS is not set | ||
| 829 | # CONFIG_HFS_FS is not set | ||
| 830 | # CONFIG_HFSPLUS_FS is not set | ||
| 831 | # CONFIG_BEFS_FS is not set | ||
| 832 | # CONFIG_BFS_FS is not set | ||
| 833 | # CONFIG_EFS_FS is not set | ||
| 834 | CONFIG_JFFS2_FS=y | ||
| 835 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 836 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 837 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 838 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 839 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 840 | CONFIG_JFFS2_ZLIB=y | ||
| 841 | CONFIG_JFFS2_RTIME=y | ||
| 842 | # CONFIG_JFFS2_RUBIN is not set | ||
| 843 | # CONFIG_CRAMFS is not set | ||
| 844 | # CONFIG_VXFS_FS is not set | ||
| 845 | # CONFIG_HPFS_FS is not set | ||
| 846 | # CONFIG_QNX4FS_FS is not set | ||
| 847 | # CONFIG_SYSV_FS is not set | ||
| 848 | # CONFIG_UFS_FS is not set | ||
| 849 | |||
| 850 | # | ||
| 851 | # Network File Systems | ||
| 852 | # | ||
| 853 | CONFIG_NFS_FS=y | ||
| 854 | # CONFIG_NFS_V3 is not set | ||
| 855 | # CONFIG_NFS_V4 is not set | ||
| 856 | # CONFIG_NFS_DIRECTIO is not set | ||
| 857 | # CONFIG_NFSD is not set | ||
| 858 | CONFIG_ROOT_NFS=y | ||
| 859 | CONFIG_LOCKD=y | ||
| 860 | CONFIG_NFS_COMMON=y | ||
| 861 | CONFIG_SUNRPC=y | ||
| 862 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 863 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 864 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 865 | # CONFIG_SMB_FS is not set | ||
| 866 | # CONFIG_CIFS is not set | ||
| 867 | # CONFIG_NCP_FS is not set | ||
| 868 | # CONFIG_CODA_FS is not set | ||
| 869 | # CONFIG_AFS_FS is not set | ||
| 870 | |||
| 871 | # | ||
| 872 | # Partition Types | ||
| 873 | # | ||
| 874 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 875 | CONFIG_MSDOS_PARTITION=y | ||
| 876 | |||
| 877 | # | ||
| 878 | # Native Language Support | ||
| 879 | # | ||
| 880 | # CONFIG_NLS is not set | ||
| 881 | |||
| 882 | # | ||
| 883 | # Distributed Lock Manager | ||
| 884 | # | ||
| 885 | # CONFIG_DLM is not set | ||
| 886 | |||
| 887 | # | ||
| 888 | # Profiling support | ||
| 889 | # | ||
| 890 | # CONFIG_PROFILING is not set | ||
| 891 | |||
| 892 | # | ||
| 893 | # Kernel hacking | ||
| 894 | # | ||
| 895 | # CONFIG_PRINTK_TIME is not set | ||
| 896 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 897 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 898 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 899 | # CONFIG_DEBUG_FS is not set | ||
| 900 | # CONFIG_HEADERS_CHECK is not set | ||
| 901 | # CONFIG_DEBUG_KERNEL is not set | ||
| 902 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 903 | CONFIG_FRAME_POINTER=y | ||
| 904 | # CONFIG_DEBUG_USER is not set | ||
| 905 | |||
| 906 | # | ||
| 907 | # Security options | ||
| 908 | # | ||
| 909 | # CONFIG_KEYS is not set | ||
| 910 | # CONFIG_SECURITY is not set | ||
| 911 | # CONFIG_CRYPTO is not set | ||
| 912 | |||
| 913 | # | ||
| 914 | # Library routines | ||
| 915 | # | ||
| 916 | CONFIG_BITREVERSE=y | ||
| 917 | # CONFIG_CRC_CCITT is not set | ||
| 918 | # CONFIG_CRC16 is not set | ||
| 919 | # CONFIG_CRC_ITU_T is not set | ||
| 920 | CONFIG_CRC32=y | ||
| 921 | # CONFIG_CRC7 is not set | ||
| 922 | # CONFIG_LIBCRC32C is not set | ||
| 923 | CONFIG_ZLIB_INFLATE=y | ||
| 924 | CONFIG_ZLIB_DEFLATE=y | ||
| 925 | CONFIG_PLIST=y | ||
| 926 | CONFIG_HAS_IOMEM=y | ||
| 927 | CONFIG_HAS_IOPORT=y | ||
| 928 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/orion5x_defconfig b/arch/arm/configs/orion5x_defconfig index 9578b5d9f9c7..4017d83c9d2d 100644 --- a/arch/arm/configs/orion5x_defconfig +++ b/arch/arm/configs/orion5x_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 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-rc4 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 2 23:54:48 2008 | 4 | # Fri Aug 22 12:38:51 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| @@ -12,6 +12,7 @@ CONFIG_MMU=y | |||
| 12 | # CONFIG_NO_IOPORT is not set | 12 | # CONFIG_NO_IOPORT is not set |
| 13 | CONFIG_GENERIC_HARDIRQS=y | 13 | CONFIG_GENERIC_HARDIRQS=y |
| 14 | CONFIG_STACKTRACE_SUPPORT=y | 14 | CONFIG_STACKTRACE_SUPPORT=y |
| 15 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | 16 | CONFIG_LOCKDEP_SUPPORT=y |
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 17 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | 18 | CONFIG_HARDIRQS_SW_RESEND=y |
| @@ -23,6 +24,7 @@ CONFIG_GENERIC_HWEIGHT=y | |||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 24 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 24 | CONFIG_ARCH_SUPPORTS_AOUT=y | 25 | CONFIG_ARCH_SUPPORTS_AOUT=y |
| 25 | CONFIG_ZONE_DMA=y | 26 | CONFIG_ZONE_DMA=y |
| 27 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
| 26 | CONFIG_VECTORS_BASE=0xffff0000 | 28 | CONFIG_VECTORS_BASE=0xffff0000 |
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| @@ -56,7 +58,6 @@ CONFIG_SYSCTL=y | |||
| 56 | CONFIG_EMBEDDED=y | 58 | CONFIG_EMBEDDED=y |
| 57 | CONFIG_UID16=y | 59 | CONFIG_UID16=y |
| 58 | CONFIG_SYSCTL_SYSCALL=y | 60 | CONFIG_SYSCTL_SYSCALL=y |
| 59 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 60 | CONFIG_KALLSYMS=y | 61 | CONFIG_KALLSYMS=y |
| 61 | CONFIG_KALLSYMS_ALL=y | 62 | CONFIG_KALLSYMS_ALL=y |
| 62 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 63 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -83,11 +84,17 @@ CONFIG_PROFILING=y | |||
| 83 | CONFIG_OPROFILE=y | 84 | CONFIG_OPROFILE=y |
| 84 | CONFIG_HAVE_OPROFILE=y | 85 | CONFIG_HAVE_OPROFILE=y |
| 85 | CONFIG_KPROBES=y | 86 | CONFIG_KPROBES=y |
| 87 | # CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is not set | ||
| 86 | CONFIG_KRETPROBES=y | 88 | CONFIG_KRETPROBES=y |
| 89 | # CONFIG_HAVE_IOREMAP_PROT is not set | ||
| 87 | CONFIG_HAVE_KPROBES=y | 90 | CONFIG_HAVE_KPROBES=y |
| 88 | CONFIG_HAVE_KRETPROBES=y | 91 | CONFIG_HAVE_KRETPROBES=y |
| 92 | # CONFIG_HAVE_ARCH_TRACEHOOK is not set | ||
| 89 | # CONFIG_HAVE_DMA_ATTRS is not set | 93 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 94 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 95 | # CONFIG_HAVE_CLK is not set | ||
| 90 | CONFIG_PROC_PAGE_MONITOR=y | 96 | CONFIG_PROC_PAGE_MONITOR=y |
| 97 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | ||
| 91 | CONFIG_RT_MUTEXES=y | 98 | CONFIG_RT_MUTEXES=y |
| 92 | # CONFIG_TINY_SHMEM is not set | 99 | # CONFIG_TINY_SHMEM is not set |
| 93 | CONFIG_BASE_SMALL=0 | 100 | CONFIG_BASE_SMALL=0 |
| @@ -97,12 +104,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 97 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 104 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 98 | # CONFIG_MODVERSIONS is not set | 105 | # CONFIG_MODVERSIONS is not set |
| 99 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 106 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 100 | # CONFIG_KMOD is not set | 107 | CONFIG_KMOD=y |
| 101 | CONFIG_BLOCK=y | 108 | CONFIG_BLOCK=y |
| 102 | # CONFIG_LBD is not set | 109 | # CONFIG_LBD is not set |
| 103 | # CONFIG_BLK_DEV_IO_TRACE is not set | 110 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 104 | # CONFIG_LSF is not set | 111 | # CONFIG_LSF is not set |
| 105 | # CONFIG_BLK_DEV_BSG is not set | 112 | # CONFIG_BLK_DEV_BSG is not set |
| 113 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 106 | 114 | ||
| 107 | # | 115 | # |
| 108 | # IO Schedulers | 116 | # IO Schedulers |
| @@ -128,7 +136,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 128 | # CONFIG_ARCH_AT91 is not set | 136 | # CONFIG_ARCH_AT91 is not set |
| 129 | # CONFIG_ARCH_CLPS7500 is not set | 137 | # CONFIG_ARCH_CLPS7500 is not set |
| 130 | # CONFIG_ARCH_CLPS711X is not set | 138 | # CONFIG_ARCH_CLPS711X is not set |
| 131 | # CONFIG_ARCH_CO285 is not set | ||
| 132 | # CONFIG_ARCH_EBSA110 is not set | 139 | # CONFIG_ARCH_EBSA110 is not set |
| 133 | # CONFIG_ARCH_EP93XX is not set | 140 | # CONFIG_ARCH_EP93XX is not set |
| 134 | # CONFIG_ARCH_FOOTBRIDGE is not set | 141 | # CONFIG_ARCH_FOOTBRIDGE is not set |
| @@ -142,8 +149,11 @@ CONFIG_CLASSIC_RCU=y | |||
| 142 | # CONFIG_ARCH_IXP2000 is not set | 149 | # CONFIG_ARCH_IXP2000 is not set |
| 143 | # CONFIG_ARCH_IXP4XX is not set | 150 | # CONFIG_ARCH_IXP4XX is not set |
| 144 | # CONFIG_ARCH_L7200 is not set | 151 | # CONFIG_ARCH_L7200 is not set |
| 152 | # CONFIG_ARCH_KIRKWOOD is not set | ||
| 145 | # CONFIG_ARCH_KS8695 is not set | 153 | # CONFIG_ARCH_KS8695 is not set |
| 146 | # CONFIG_ARCH_NS9XXX is not set | 154 | # CONFIG_ARCH_NS9XXX is not set |
| 155 | # CONFIG_ARCH_LOKI is not set | ||
| 156 | # CONFIG_ARCH_MV78XX0 is not set | ||
| 147 | # CONFIG_ARCH_MXC is not set | 157 | # CONFIG_ARCH_MXC is not set |
| 148 | CONFIG_ARCH_ORION5X=y | 158 | CONFIG_ARCH_ORION5X=y |
| 149 | # CONFIG_ARCH_PNX4008 is not set | 159 | # CONFIG_ARCH_PNX4008 is not set |
| @@ -195,7 +205,7 @@ CONFIG_CPU_ABRT_EV5T=y | |||
| 195 | CONFIG_CPU_PABRT_NOIFAR=y | 205 | CONFIG_CPU_PABRT_NOIFAR=y |
| 196 | CONFIG_CPU_CACHE_VIVT=y | 206 | CONFIG_CPU_CACHE_VIVT=y |
| 197 | CONFIG_CPU_COPY_FEROCEON=y | 207 | CONFIG_CPU_COPY_FEROCEON=y |
| 198 | CONFIG_CPU_TLB_V4WBI=y | 208 | CONFIG_CPU_TLB_FEROCEON=y |
| 199 | CONFIG_CPU_CP15=y | 209 | CONFIG_CPU_CP15=y |
| 200 | CONFIG_CPU_CP15_MMU=y | 210 | CONFIG_CPU_CP15_MMU=y |
| 201 | 211 | ||
| @@ -280,10 +290,6 @@ CONFIG_BINFMT_ELF=y | |||
| 280 | # | 290 | # |
| 281 | # CONFIG_PM is not set | 291 | # CONFIG_PM is not set |
| 282 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 292 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 283 | |||
| 284 | # | ||
| 285 | # Networking | ||
| 286 | # | ||
| 287 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 288 | 294 | ||
| 289 | # | 295 | # |
| @@ -361,6 +367,7 @@ CONFIG_NET_PKTGEN=m | |||
| 361 | # | 367 | # |
| 362 | # CONFIG_CFG80211 is not set | 368 | # CONFIG_CFG80211 is not set |
| 363 | CONFIG_WIRELESS_EXT=y | 369 | CONFIG_WIRELESS_EXT=y |
| 370 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 364 | # CONFIG_MAC80211 is not set | 371 | # CONFIG_MAC80211 is not set |
| 365 | # CONFIG_IEEE80211 is not set | 372 | # CONFIG_IEEE80211 is not set |
| 366 | # CONFIG_RFKILL is not set | 373 | # CONFIG_RFKILL is not set |
| @@ -377,6 +384,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 377 | CONFIG_STANDALONE=y | 384 | CONFIG_STANDALONE=y |
| 378 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 385 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 379 | CONFIG_FW_LOADER=y | 386 | CONFIG_FW_LOADER=y |
| 387 | # CONFIG_FIRMWARE_IN_KERNEL is not set | ||
| 388 | CONFIG_EXTRA_FIRMWARE="" | ||
| 380 | # CONFIG_DEBUG_DRIVER is not set | 389 | # CONFIG_DEBUG_DRIVER is not set |
| 381 | # CONFIG_DEBUG_DEVRES is not set | 390 | # CONFIG_DEBUG_DEVRES is not set |
| 382 | # CONFIG_SYS_HYPERVISOR is not set | 391 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -499,6 +508,7 @@ CONFIG_MISC_DEVICES=y | |||
| 499 | # CONFIG_SGI_IOC4 is not set | 508 | # CONFIG_SGI_IOC4 is not set |
| 500 | # CONFIG_TIFM_CORE is not set | 509 | # CONFIG_TIFM_CORE is not set |
| 501 | # CONFIG_ENCLOSURE_SERVICES is not set | 510 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 511 | # CONFIG_HP_ILO is not set | ||
| 502 | CONFIG_HAVE_IDE=y | 512 | CONFIG_HAVE_IDE=y |
| 503 | # CONFIG_IDE is not set | 513 | # CONFIG_IDE is not set |
| 504 | 514 | ||
| @@ -575,6 +585,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 575 | # CONFIG_SCSI_NSP32 is not set | 585 | # CONFIG_SCSI_NSP32 is not set |
| 576 | # CONFIG_SCSI_DEBUG is not set | 586 | # CONFIG_SCSI_DEBUG is not set |
| 577 | # CONFIG_SCSI_SRP is not set | 587 | # CONFIG_SCSI_SRP is not set |
| 588 | # CONFIG_SCSI_DH is not set | ||
| 578 | CONFIG_ATA=y | 589 | CONFIG_ATA=y |
| 579 | # CONFIG_ATA_NONSTANDARD is not set | 590 | # CONFIG_ATA_NONSTANDARD is not set |
| 580 | CONFIG_SATA_PMP=y | 591 | CONFIG_SATA_PMP=y |
| @@ -641,11 +652,14 @@ CONFIG_SATA_MV=y | |||
| 641 | # | 652 | # |
| 642 | # IEEE 1394 (FireWire) support | 653 | # IEEE 1394 (FireWire) support |
| 643 | # | 654 | # |
| 655 | |||
| 656 | # | ||
| 657 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 658 | # | ||
| 644 | # CONFIG_FIREWIRE is not set | 659 | # CONFIG_FIREWIRE is not set |
| 645 | # CONFIG_IEEE1394 is not set | 660 | # CONFIG_IEEE1394 is not set |
| 646 | # CONFIG_I2O is not set | 661 | # CONFIG_I2O is not set |
| 647 | CONFIG_NETDEVICES=y | 662 | CONFIG_NETDEVICES=y |
| 648 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 649 | # CONFIG_DUMMY is not set | 663 | # CONFIG_DUMMY is not set |
| 650 | # CONFIG_BONDING is not set | 664 | # CONFIG_BONDING is not set |
| 651 | # CONFIG_MACVLAN is not set | 665 | # CONFIG_MACVLAN is not set |
| @@ -694,7 +708,6 @@ CONFIG_NETDEV_1000=y | |||
| 694 | # CONFIG_DL2K is not set | 708 | # CONFIG_DL2K is not set |
| 695 | # CONFIG_E1000 is not set | 709 | # CONFIG_E1000 is not set |
| 696 | # CONFIG_E1000E is not set | 710 | # CONFIG_E1000E is not set |
| 697 | # CONFIG_E1000E_ENABLED is not set | ||
| 698 | # CONFIG_IP1000 is not set | 711 | # CONFIG_IP1000 is not set |
| 699 | # CONFIG_IGB is not set | 712 | # CONFIG_IGB is not set |
| 700 | # CONFIG_NS83820 is not set | 713 | # CONFIG_NS83820 is not set |
| @@ -710,6 +723,7 @@ CONFIG_NETDEV_1000=y | |||
| 710 | CONFIG_MV643XX_ETH=y | 723 | CONFIG_MV643XX_ETH=y |
| 711 | # CONFIG_QLA3XXX is not set | 724 | # CONFIG_QLA3XXX is not set |
| 712 | # CONFIG_ATL1 is not set | 725 | # CONFIG_ATL1 is not set |
| 726 | # CONFIG_ATL1E is not set | ||
| 713 | # CONFIG_NETDEV_10000 is not set | 727 | # CONFIG_NETDEV_10000 is not set |
| 714 | # CONFIG_TR is not set | 728 | # CONFIG_TR is not set |
| 715 | 729 | ||
| @@ -757,7 +771,14 @@ CONFIG_INPUT_EVDEV=y | |||
| 757 | # | 771 | # |
| 758 | # Input Device Drivers | 772 | # Input Device Drivers |
| 759 | # | 773 | # |
| 760 | # CONFIG_INPUT_KEYBOARD is not set | 774 | CONFIG_INPUT_KEYBOARD=y |
| 775 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 776 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 777 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 778 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 779 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 780 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 781 | CONFIG_KEYBOARD_GPIO=y | ||
| 761 | # CONFIG_INPUT_MOUSE is not set | 782 | # CONFIG_INPUT_MOUSE is not set |
| 762 | # CONFIG_INPUT_JOYSTICK is not set | 783 | # CONFIG_INPUT_JOYSTICK is not set |
| 763 | # CONFIG_INPUT_TABLET is not set | 784 | # CONFIG_INPUT_TABLET is not set |
| @@ -808,44 +829,65 @@ CONFIG_DEVPORT=y | |||
| 808 | CONFIG_I2C=y | 829 | CONFIG_I2C=y |
| 809 | CONFIG_I2C_BOARDINFO=y | 830 | CONFIG_I2C_BOARDINFO=y |
| 810 | CONFIG_I2C_CHARDEV=y | 831 | CONFIG_I2C_CHARDEV=y |
| 832 | CONFIG_I2C_HELPER_AUTO=y | ||
| 811 | 833 | ||
| 812 | # | 834 | # |
| 813 | # I2C Hardware Bus support | 835 | # I2C Hardware Bus support |
| 814 | # | 836 | # |
| 837 | |||
| 838 | # | ||
| 839 | # PC SMBus host controller drivers | ||
| 840 | # | ||
| 815 | # CONFIG_I2C_ALI1535 is not set | 841 | # CONFIG_I2C_ALI1535 is not set |
| 816 | # CONFIG_I2C_ALI1563 is not set | 842 | # CONFIG_I2C_ALI1563 is not set |
| 817 | # CONFIG_I2C_ALI15X3 is not set | 843 | # CONFIG_I2C_ALI15X3 is not set |
| 818 | # CONFIG_I2C_AMD756 is not set | 844 | # CONFIG_I2C_AMD756 is not set |
| 819 | # CONFIG_I2C_AMD8111 is not set | 845 | # CONFIG_I2C_AMD8111 is not set |
| 820 | # CONFIG_I2C_GPIO is not set | ||
| 821 | # CONFIG_I2C_I801 is not set | 846 | # CONFIG_I2C_I801 is not set |
| 822 | # CONFIG_I2C_I810 is not set | 847 | # CONFIG_I2C_ISCH is not set |
| 823 | # CONFIG_I2C_PIIX4 is not set | 848 | # CONFIG_I2C_PIIX4 is not set |
| 824 | # CONFIG_I2C_NFORCE2 is not set | 849 | # CONFIG_I2C_NFORCE2 is not set |
| 825 | # CONFIG_I2C_OCORES is not set | ||
| 826 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 827 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 828 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 829 | # CONFIG_I2C_SIMTEC is not set | ||
| 830 | # CONFIG_I2C_SIS5595 is not set | 850 | # CONFIG_I2C_SIS5595 is not set |
| 831 | # CONFIG_I2C_SIS630 is not set | 851 | # CONFIG_I2C_SIS630 is not set |
| 832 | # CONFIG_I2C_SIS96X is not set | 852 | # CONFIG_I2C_SIS96X is not set |
| 833 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 834 | # CONFIG_I2C_STUB is not set | ||
| 835 | # CONFIG_I2C_TINY_USB is not set | ||
| 836 | # CONFIG_I2C_VIA is not set | 853 | # CONFIG_I2C_VIA is not set |
| 837 | # CONFIG_I2C_VIAPRO is not set | 854 | # CONFIG_I2C_VIAPRO is not set |
| 855 | |||
| 856 | # | ||
| 857 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 858 | # | ||
| 859 | # CONFIG_I2C_GPIO is not set | ||
| 860 | CONFIG_I2C_MV64XXX=y | ||
| 861 | # CONFIG_I2C_OCORES is not set | ||
| 862 | # CONFIG_I2C_SIMTEC is not set | ||
| 863 | |||
| 864 | # | ||
| 865 | # External I2C/SMBus adapter drivers | ||
| 866 | # | ||
| 867 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 868 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 869 | # CONFIG_I2C_TINY_USB is not set | ||
| 870 | |||
| 871 | # | ||
| 872 | # Graphics adapter I2C/DDC channel drivers | ||
| 873 | # | ||
| 838 | # CONFIG_I2C_VOODOO3 is not set | 874 | # CONFIG_I2C_VOODOO3 is not set |
| 875 | |||
| 876 | # | ||
| 877 | # Other I2C/SMBus bus drivers | ||
| 878 | # | ||
| 839 | # CONFIG_I2C_PCA_PLATFORM is not set | 879 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 840 | CONFIG_I2C_MV64XXX=y | 880 | # CONFIG_I2C_STUB is not set |
| 841 | 881 | ||
| 842 | # | 882 | # |
| 843 | # Miscellaneous I2C Chip support | 883 | # Miscellaneous I2C Chip support |
| 844 | # | 884 | # |
| 845 | # CONFIG_DS1682 is not set | 885 | # CONFIG_DS1682 is not set |
| 886 | # CONFIG_AT24 is not set | ||
| 846 | # CONFIG_SENSORS_EEPROM is not set | 887 | # CONFIG_SENSORS_EEPROM is not set |
| 847 | # CONFIG_SENSORS_PCF8574 is not set | 888 | # CONFIG_SENSORS_PCF8574 is not set |
| 848 | # CONFIG_PCF8575 is not set | 889 | # CONFIG_PCF8575 is not set |
| 890 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 849 | # CONFIG_SENSORS_PCF8591 is not set | 891 | # CONFIG_SENSORS_PCF8591 is not set |
| 850 | # CONFIG_SENSORS_MAX6875 is not set | 892 | # CONFIG_SENSORS_MAX6875 is not set |
| 851 | # CONFIG_SENSORS_TSL2550 is not set | 893 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -858,6 +900,7 @@ CONFIG_I2C_MV64XXX=y | |||
| 858 | # CONFIG_POWER_SUPPLY is not set | 900 | # CONFIG_POWER_SUPPLY is not set |
| 859 | CONFIG_HWMON=y | 901 | CONFIG_HWMON=y |
| 860 | # CONFIG_HWMON_VID is not set | 902 | # CONFIG_HWMON_VID is not set |
| 903 | # CONFIG_SENSORS_AD7414 is not set | ||
| 861 | # CONFIG_SENSORS_AD7418 is not set | 904 | # CONFIG_SENSORS_AD7418 is not set |
| 862 | # CONFIG_SENSORS_ADM1021 is not set | 905 | # CONFIG_SENSORS_ADM1021 is not set |
| 863 | # CONFIG_SENSORS_ADM1025 is not set | 906 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -877,7 +920,7 @@ CONFIG_HWMON=y | |||
| 877 | # CONFIG_SENSORS_GL520SM is not set | 920 | # CONFIG_SENSORS_GL520SM is not set |
| 878 | # CONFIG_SENSORS_IT87 is not set | 921 | # CONFIG_SENSORS_IT87 is not set |
| 879 | # CONFIG_SENSORS_LM63 is not set | 922 | # CONFIG_SENSORS_LM63 is not set |
| 880 | # CONFIG_SENSORS_LM75 is not set | 923 | CONFIG_SENSORS_LM75=y |
| 881 | # CONFIG_SENSORS_LM77 is not set | 924 | # CONFIG_SENSORS_LM77 is not set |
| 882 | # CONFIG_SENSORS_LM78 is not set | 925 | # CONFIG_SENSORS_LM78 is not set |
| 883 | # CONFIG_SENSORS_LM80 is not set | 926 | # CONFIG_SENSORS_LM80 is not set |
| @@ -921,9 +964,12 @@ CONFIG_SSB_POSSIBLE=y | |||
| 921 | # | 964 | # |
| 922 | # Multifunction device drivers | 965 | # Multifunction device drivers |
| 923 | # | 966 | # |
| 967 | # CONFIG_MFD_CORE is not set | ||
| 924 | # CONFIG_MFD_SM501 is not set | 968 | # CONFIG_MFD_SM501 is not set |
| 925 | # CONFIG_MFD_ASIC3 is not set | ||
| 926 | # CONFIG_HTC_PASIC3 is not set | 969 | # CONFIG_HTC_PASIC3 is not set |
| 970 | # CONFIG_MFD_TMIO is not set | ||
| 971 | # CONFIG_MFD_T7L66XB is not set | ||
| 972 | # CONFIG_MFD_TC6387XB is not set | ||
| 927 | 973 | ||
| 928 | # | 974 | # |
| 929 | # Multimedia devices | 975 | # Multimedia devices |
| @@ -954,10 +1000,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 954 | # Display device support | 1000 | # Display device support |
| 955 | # | 1001 | # |
| 956 | # CONFIG_DISPLAY_SUPPORT is not set | 1002 | # CONFIG_DISPLAY_SUPPORT is not set |
| 957 | |||
| 958 | # | ||
| 959 | # Sound | ||
| 960 | # | ||
| 961 | # CONFIG_SOUND is not set | 1003 | # CONFIG_SOUND is not set |
| 962 | CONFIG_HID_SUPPORT=y | 1004 | CONFIG_HID_SUPPORT=y |
| 963 | CONFIG_HID=y | 1005 | CONFIG_HID=y |
| @@ -988,6 +1030,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 988 | # CONFIG_USB_OTG is not set | 1030 | # CONFIG_USB_OTG is not set |
| 989 | # CONFIG_USB_OTG_WHITELIST is not set | 1031 | # CONFIG_USB_OTG_WHITELIST is not set |
| 990 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1032 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1033 | # CONFIG_USB_MON is not set | ||
| 991 | 1034 | ||
| 992 | # | 1035 | # |
| 993 | # USB Host Controller Drivers | 1036 | # USB Host Controller Drivers |
| @@ -1030,6 +1073,7 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1030 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1073 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1031 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1074 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1032 | # CONFIG_USB_STORAGE_KARMA is not set | 1075 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1076 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1033 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1077 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1034 | # CONFIG_USB_LIBUSUAL is not set | 1078 | # CONFIG_USB_LIBUSUAL is not set |
| 1035 | 1079 | ||
| @@ -1038,7 +1082,6 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1038 | # | 1082 | # |
| 1039 | # CONFIG_USB_MDC800 is not set | 1083 | # CONFIG_USB_MDC800 is not set |
| 1040 | # CONFIG_USB_MICROTEK is not set | 1084 | # CONFIG_USB_MICROTEK is not set |
| 1041 | # CONFIG_USB_MON is not set | ||
| 1042 | 1085 | ||
| 1043 | # | 1086 | # |
| 1044 | # USB port drivers | 1087 | # USB port drivers |
| @@ -1051,7 +1094,6 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1051 | # CONFIG_USB_EMI62 is not set | 1094 | # CONFIG_USB_EMI62 is not set |
| 1052 | # CONFIG_USB_EMI26 is not set | 1095 | # CONFIG_USB_EMI26 is not set |
| 1053 | # CONFIG_USB_ADUTUX is not set | 1096 | # CONFIG_USB_ADUTUX is not set |
| 1054 | # CONFIG_USB_AUERSWALD is not set | ||
| 1055 | # CONFIG_USB_RIO500 is not set | 1097 | # CONFIG_USB_RIO500 is not set |
| 1056 | # CONFIG_USB_LEGOTOWER is not set | 1098 | # CONFIG_USB_LEGOTOWER is not set |
| 1057 | # CONFIG_USB_LCD is not set | 1099 | # CONFIG_USB_LCD is not set |
| @@ -1077,7 +1119,9 @@ CONFIG_LEDS_CLASS=y | |||
| 1077 | # | 1119 | # |
| 1078 | # LED drivers | 1120 | # LED drivers |
| 1079 | # | 1121 | # |
| 1122 | # CONFIG_LEDS_PCA9532 is not set | ||
| 1080 | CONFIG_LEDS_GPIO=y | 1123 | CONFIG_LEDS_GPIO=y |
| 1124 | # CONFIG_LEDS_PCA955X is not set | ||
| 1081 | 1125 | ||
| 1082 | # | 1126 | # |
| 1083 | # LED Triggers | 1127 | # LED Triggers |
| @@ -1111,11 +1155,12 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1111 | CONFIG_RTC_DRV_RS5C372=y | 1155 | CONFIG_RTC_DRV_RS5C372=y |
| 1112 | # CONFIG_RTC_DRV_ISL1208 is not set | 1156 | # CONFIG_RTC_DRV_ISL1208 is not set |
| 1113 | # CONFIG_RTC_DRV_X1205 is not set | 1157 | # CONFIG_RTC_DRV_X1205 is not set |
| 1114 | # CONFIG_RTC_DRV_PCF8563 is not set | 1158 | CONFIG_RTC_DRV_PCF8563=y |
| 1115 | # CONFIG_RTC_DRV_PCF8583 is not set | 1159 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1116 | CONFIG_RTC_DRV_M41T80=y | 1160 | CONFIG_RTC_DRV_M41T80=y |
| 1117 | # CONFIG_RTC_DRV_M41T80_WDT is not set | 1161 | # CONFIG_RTC_DRV_M41T80_WDT is not set |
| 1118 | # CONFIG_RTC_DRV_S35390A is not set | 1162 | CONFIG_RTC_DRV_S35390A=y |
| 1163 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1119 | 1164 | ||
| 1120 | # | 1165 | # |
| 1121 | # SPI RTC drivers | 1166 | # SPI RTC drivers |
| @@ -1136,6 +1181,27 @@ CONFIG_RTC_DRV_M41T80=y | |||
| 1136 | # | 1181 | # |
| 1137 | # on-CPU RTC drivers | 1182 | # on-CPU RTC drivers |
| 1138 | # | 1183 | # |
| 1184 | CONFIG_DMADEVICES=y | ||
| 1185 | |||
| 1186 | # | ||
| 1187 | # DMA Devices | ||
| 1188 | # | ||
| 1189 | CONFIG_MV_XOR=y | ||
| 1190 | CONFIG_DMA_ENGINE=y | ||
| 1191 | |||
| 1192 | # | ||
| 1193 | # DMA Clients | ||
| 1194 | # | ||
| 1195 | # CONFIG_NET_DMA is not set | ||
| 1196 | # CONFIG_DMATEST is not set | ||
| 1197 | |||
| 1198 | # | ||
| 1199 | # Voltage and Current regulators | ||
| 1200 | # | ||
| 1201 | # CONFIG_REGULATOR is not set | ||
| 1202 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
| 1203 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
| 1204 | # CONFIG_REGULATOR_BQ24022 is not set | ||
| 1139 | # CONFIG_UIO is not set | 1205 | # CONFIG_UIO is not set |
| 1140 | 1206 | ||
| 1141 | # | 1207 | # |
| @@ -1215,6 +1281,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1215 | CONFIG_CRAMFS=y | 1281 | CONFIG_CRAMFS=y |
| 1216 | # CONFIG_VXFS_FS is not set | 1282 | # CONFIG_VXFS_FS is not set |
| 1217 | # CONFIG_MINIX_FS is not set | 1283 | # CONFIG_MINIX_FS is not set |
| 1284 | # CONFIG_OMFS_FS is not set | ||
| 1218 | # CONFIG_HPFS_FS is not set | 1285 | # CONFIG_HPFS_FS is not set |
| 1219 | # CONFIG_QNX4FS_FS is not set | 1286 | # CONFIG_QNX4FS_FS is not set |
| 1220 | # CONFIG_ROMFS_FS is not set | 1287 | # CONFIG_ROMFS_FS is not set |
| @@ -1225,13 +1292,12 @@ CONFIG_NFS_FS=y | |||
| 1225 | CONFIG_NFS_V3=y | 1292 | CONFIG_NFS_V3=y |
| 1226 | # CONFIG_NFS_V3_ACL is not set | 1293 | # CONFIG_NFS_V3_ACL is not set |
| 1227 | # CONFIG_NFS_V4 is not set | 1294 | # CONFIG_NFS_V4 is not set |
| 1228 | # CONFIG_NFSD is not set | ||
| 1229 | CONFIG_ROOT_NFS=y | 1295 | CONFIG_ROOT_NFS=y |
| 1296 | # CONFIG_NFSD is not set | ||
| 1230 | CONFIG_LOCKD=y | 1297 | CONFIG_LOCKD=y |
| 1231 | CONFIG_LOCKD_V4=y | 1298 | CONFIG_LOCKD_V4=y |
| 1232 | CONFIG_NFS_COMMON=y | 1299 | CONFIG_NFS_COMMON=y |
| 1233 | CONFIG_SUNRPC=y | 1300 | CONFIG_SUNRPC=y |
| 1234 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1235 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1301 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1236 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1302 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1237 | # CONFIG_SMB_FS is not set | 1303 | # CONFIG_SMB_FS is not set |
| @@ -1317,6 +1383,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1317 | CONFIG_DEBUG_KERNEL=y | 1383 | CONFIG_DEBUG_KERNEL=y |
| 1318 | # CONFIG_DEBUG_SHIRQ is not set | 1384 | # CONFIG_DEBUG_SHIRQ is not set |
| 1319 | CONFIG_DETECT_SOFTLOCKUP=y | 1385 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1386 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1387 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1320 | CONFIG_SCHED_DEBUG=y | 1388 | CONFIG_SCHED_DEBUG=y |
| 1321 | CONFIG_SCHEDSTATS=y | 1389 | CONFIG_SCHEDSTATS=y |
| 1322 | # CONFIG_TIMER_STATS is not set | 1390 | # CONFIG_TIMER_STATS is not set |
| @@ -1331,11 +1399,13 @@ CONFIG_DEBUG_PREEMPT=y | |||
| 1331 | # CONFIG_LOCK_STAT is not set | 1399 | # CONFIG_LOCK_STAT is not set |
| 1332 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1400 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1333 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1401 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1402 | CONFIG_STACKTRACE=y | ||
| 1334 | # CONFIG_DEBUG_KOBJECT is not set | 1403 | # CONFIG_DEBUG_KOBJECT is not set |
| 1335 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1404 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1336 | CONFIG_DEBUG_INFO=y | 1405 | CONFIG_DEBUG_INFO=y |
| 1337 | # CONFIG_DEBUG_VM is not set | 1406 | # CONFIG_DEBUG_VM is not set |
| 1338 | # CONFIG_DEBUG_WRITECOUNT is not set | 1407 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1408 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1339 | # CONFIG_DEBUG_LIST is not set | 1409 | # CONFIG_DEBUG_LIST is not set |
| 1340 | # CONFIG_DEBUG_SG is not set | 1410 | # CONFIG_DEBUG_SG is not set |
| 1341 | CONFIG_FRAME_POINTER=y | 1411 | CONFIG_FRAME_POINTER=y |
| @@ -1345,7 +1415,18 @@ CONFIG_FRAME_POINTER=y | |||
| 1345 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1415 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1346 | # CONFIG_LKDTM is not set | 1416 | # CONFIG_LKDTM is not set |
| 1347 | # CONFIG_FAULT_INJECTION is not set | 1417 | # CONFIG_FAULT_INJECTION is not set |
| 1418 | CONFIG_LATENCYTOP=y | ||
| 1419 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1420 | CONFIG_HAVE_FTRACE=y | ||
| 1421 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1422 | # CONFIG_FTRACE is not set | ||
| 1423 | # CONFIG_IRQSOFF_TRACER is not set | ||
| 1424 | # CONFIG_PREEMPT_TRACER is not set | ||
| 1425 | # CONFIG_SCHED_TRACER is not set | ||
| 1426 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1348 | # CONFIG_SAMPLES is not set | 1427 | # CONFIG_SAMPLES is not set |
| 1428 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1429 | # CONFIG_KGDB is not set | ||
| 1349 | CONFIG_DEBUG_USER=y | 1430 | CONFIG_DEBUG_USER=y |
| 1350 | CONFIG_DEBUG_ERRORS=y | 1431 | CONFIG_DEBUG_ERRORS=y |
| 1351 | # CONFIG_DEBUG_STACK_USAGE is not set | 1432 | # CONFIG_DEBUG_STACK_USAGE is not set |
| @@ -1358,6 +1439,7 @@ CONFIG_DEBUG_LL=y | |||
| 1358 | # CONFIG_KEYS is not set | 1439 | # CONFIG_KEYS is not set |
| 1359 | # CONFIG_SECURITY is not set | 1440 | # CONFIG_SECURITY is not set |
| 1360 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1441 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1442 | CONFIG_ASYNC_CORE=y | ||
| 1361 | CONFIG_CRYPTO=y | 1443 | CONFIG_CRYPTO=y |
| 1362 | 1444 | ||
| 1363 | # | 1445 | # |
| @@ -1403,6 +1485,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1403 | # CONFIG_CRYPTO_MD4 is not set | 1485 | # CONFIG_CRYPTO_MD4 is not set |
| 1404 | # CONFIG_CRYPTO_MD5 is not set | 1486 | # CONFIG_CRYPTO_MD5 is not set |
| 1405 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1487 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1488 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1489 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1490 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1491 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1406 | # CONFIG_CRYPTO_SHA1 is not set | 1492 | # CONFIG_CRYPTO_SHA1 is not set |
| 1407 | # CONFIG_CRYPTO_SHA256 is not set | 1493 | # CONFIG_CRYPTO_SHA256 is not set |
| 1408 | # CONFIG_CRYPTO_SHA512 is not set | 1494 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1444,6 +1530,7 @@ CONFIG_BITREVERSE=y | |||
| 1444 | # CONFIG_GENERIC_FIND_NEXT_BIT is not set | 1530 | # CONFIG_GENERIC_FIND_NEXT_BIT is not set |
| 1445 | # CONFIG_CRC_CCITT is not set | 1531 | # CONFIG_CRC_CCITT is not set |
| 1446 | # CONFIG_CRC16 is not set | 1532 | # CONFIG_CRC16 is not set |
| 1533 | CONFIG_CRC_T10DIF=y | ||
| 1447 | CONFIG_CRC_ITU_T=m | 1534 | CONFIG_CRC_ITU_T=m |
| 1448 | CONFIG_CRC32=y | 1535 | CONFIG_CRC32=y |
| 1449 | # CONFIG_CRC7 is not set | 1536 | # CONFIG_CRC7 is not set |
diff --git a/arch/arm/configs/palmte_defconfig b/arch/arm/configs/palmte_defconfig new file mode 100644 index 000000000000..40fc6a778e00 --- /dev/null +++ b/arch/arm/configs/palmte_defconfig | |||
| @@ -0,0 +1,761 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.22-rc1-omap1 | ||
| 4 | # Sat May 19 11:04:27 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # Code maturity level options | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | |||
| 35 | # | ||
| 36 | # General setup | ||
| 37 | # | ||
| 38 | CONFIG_LOCALVERSION="" | ||
| 39 | CONFIG_LOCALVERSION_AUTO=y | ||
| 40 | # CONFIG_SWAP is not set | ||
| 41 | CONFIG_SYSVIPC=y | ||
| 42 | # CONFIG_IPC_NS is not set | ||
| 43 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 44 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 46 | # CONFIG_UTS_NS is not set | ||
| 47 | # CONFIG_IKCONFIG is not set | ||
| 48 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 49 | CONFIG_SYSFS_DEPRECATED=y | ||
| 50 | # CONFIG_RELAY is not set | ||
| 51 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 52 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 53 | CONFIG_SYSCTL=y | ||
| 54 | # CONFIG_EMBEDDED is not set | ||
| 55 | CONFIG_UID16=y | ||
| 56 | CONFIG_SYSCTL_SYSCALL=y | ||
| 57 | CONFIG_KALLSYMS=y | ||
| 58 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 59 | CONFIG_HOTPLUG=y | ||
| 60 | CONFIG_PRINTK=y | ||
| 61 | CONFIG_BUG=y | ||
| 62 | CONFIG_ELF_CORE=y | ||
| 63 | CONFIG_BASE_FULL=y | ||
| 64 | CONFIG_FUTEX=y | ||
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | ||
| 67 | CONFIG_SIGNALFD=y | ||
| 68 | CONFIG_TIMERFD=y | ||
| 69 | CONFIG_EVENTFD=y | ||
| 70 | CONFIG_SHMEM=y | ||
| 71 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 72 | CONFIG_SLAB=y | ||
| 73 | # CONFIG_SLUB is not set | ||
| 74 | # CONFIG_SLOB is not set | ||
| 75 | CONFIG_RT_MUTEXES=y | ||
| 76 | # CONFIG_TINY_SHMEM is not set | ||
| 77 | CONFIG_BASE_SMALL=0 | ||
| 78 | |||
| 79 | # | ||
| 80 | # Loadable module support | ||
| 81 | # | ||
| 82 | # CONFIG_MODULES is not set | ||
| 83 | |||
| 84 | # | ||
| 85 | # Block layer | ||
| 86 | # | ||
| 87 | CONFIG_BLOCK=y | ||
| 88 | # CONFIG_LBD is not set | ||
| 89 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 90 | # CONFIG_LSF is not set | ||
| 91 | |||
| 92 | # | ||
| 93 | # IO Schedulers | ||
| 94 | # | ||
| 95 | CONFIG_IOSCHED_NOOP=y | ||
| 96 | CONFIG_IOSCHED_AS=y | ||
| 97 | # CONFIG_IOSCHED_DEADLINE is not set | ||
| 98 | # CONFIG_IOSCHED_CFQ is not set | ||
| 99 | CONFIG_DEFAULT_AS=y | ||
| 100 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 101 | # CONFIG_DEFAULT_CFQ is not set | ||
| 102 | # CONFIG_DEFAULT_NOOP is not set | ||
| 103 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 104 | |||
| 105 | # | ||
| 106 | # System Type | ||
| 107 | # | ||
| 108 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 109 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 110 | # CONFIG_ARCH_REALVIEW is not set | ||
| 111 | # CONFIG_ARCH_VERSATILE is not set | ||
| 112 | # CONFIG_ARCH_AT91 is not set | ||
| 113 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 114 | # CONFIG_ARCH_CLPS711X is not set | ||
| 115 | # CONFIG_ARCH_CO285 is not set | ||
| 116 | # CONFIG_ARCH_EBSA110 is not set | ||
| 117 | # CONFIG_ARCH_EP93XX is not set | ||
| 118 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 119 | # CONFIG_ARCH_NETX is not set | ||
| 120 | # CONFIG_ARCH_H720X is not set | ||
| 121 | # CONFIG_ARCH_IMX is not set | ||
| 122 | # CONFIG_ARCH_IOP13XX is not set | ||
| 123 | # CONFIG_ARCH_IOP32X is not set | ||
| 124 | # CONFIG_ARCH_IOP33X is not set | ||
| 125 | # CONFIG_ARCH_IXP23XX is not set | ||
| 126 | # CONFIG_ARCH_IXP2000 is not set | ||
| 127 | # CONFIG_ARCH_IXP4XX is not set | ||
| 128 | # CONFIG_ARCH_L7200 is not set | ||
| 129 | # CONFIG_ARCH_KS8695 is not set | ||
| 130 | # CONFIG_ARCH_NS9XXX is not set | ||
| 131 | # CONFIG_ARCH_PNX4008 is not set | ||
| 132 | # CONFIG_ARCH_PXA is not set | ||
| 133 | # CONFIG_ARCH_RPC is not set | ||
| 134 | # CONFIG_ARCH_SA1100 is not set | ||
| 135 | # CONFIG_ARCH_S3C2410 is not set | ||
| 136 | # CONFIG_ARCH_SHARK is not set | ||
| 137 | # CONFIG_ARCH_LH7A40X is not set | ||
| 138 | # CONFIG_ARCH_DAVINCI is not set | ||
| 139 | CONFIG_ARCH_OMAP=y | ||
| 140 | |||
| 141 | # | ||
| 142 | # TI OMAP Implementations | ||
| 143 | # | ||
| 144 | CONFIG_ARCH_OMAP1=y | ||
| 145 | # CONFIG_ARCH_OMAP2 is not set | ||
| 146 | |||
| 147 | # | ||
| 148 | # OMAP Feature Selections | ||
| 149 | # | ||
| 150 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 151 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 152 | CONFIG_OMAP_GPIO_SWITCH=y | ||
| 153 | CONFIG_OMAP_MUX=y | ||
| 154 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 155 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 156 | CONFIG_OMAP_MCBSP=y | ||
| 157 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 158 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 159 | CONFIG_OMAP_MPU_TIMER=y | ||
| 160 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 161 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 162 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 163 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 164 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 165 | # CONFIG_OMAP_DSP is not set | ||
| 166 | |||
| 167 | # | ||
| 168 | # OMAP Core Type | ||
| 169 | # | ||
| 170 | # CONFIG_ARCH_OMAP730 is not set | ||
| 171 | CONFIG_ARCH_OMAP15XX=y | ||
| 172 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 173 | |||
| 174 | # | ||
| 175 | # OMAP Board Type | ||
| 176 | # | ||
| 177 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 178 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 179 | CONFIG_MACH_OMAP_PALMTE=y | ||
| 180 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 181 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 182 | # CONFIG_MACH_SX1 is not set | ||
| 183 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 184 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 185 | |||
| 186 | # | ||
| 187 | # OMAP CPU Speed | ||
| 188 | # | ||
| 189 | CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | ||
| 190 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 191 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 192 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 193 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 194 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 195 | |||
| 196 | # | ||
| 197 | # Processor Type | ||
| 198 | # | ||
| 199 | CONFIG_CPU_32=y | ||
| 200 | CONFIG_CPU_ARM925T=y | ||
| 201 | CONFIG_CPU_32v4T=y | ||
| 202 | CONFIG_CPU_ABRT_EV4T=y | ||
| 203 | CONFIG_CPU_CACHE_V4WT=y | ||
| 204 | CONFIG_CPU_CACHE_VIVT=y | ||
| 205 | CONFIG_CPU_COPY_V4WB=y | ||
| 206 | CONFIG_CPU_TLB_V4WBI=y | ||
| 207 | CONFIG_CPU_CP15=y | ||
| 208 | CONFIG_CPU_CP15_MMU=y | ||
| 209 | |||
| 210 | # | ||
| 211 | # Processor Features | ||
| 212 | # | ||
| 213 | # CONFIG_ARM_THUMB is not set | ||
| 214 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 215 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 216 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 217 | # CONFIG_OUTER_CACHE is not set | ||
| 218 | |||
| 219 | # | ||
| 220 | # Bus support | ||
| 221 | # | ||
| 222 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 223 | |||
| 224 | # | ||
| 225 | # PCCARD (PCMCIA/CardBus) support | ||
| 226 | # | ||
| 227 | # CONFIG_PCCARD is not set | ||
| 228 | |||
| 229 | # | ||
| 230 | # Kernel Features | ||
| 231 | # | ||
| 232 | # CONFIG_TICK_ONESHOT is not set | ||
| 233 | # CONFIG_NO_HZ is not set | ||
| 234 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 235 | # CONFIG_PREEMPT is not set | ||
| 236 | CONFIG_HZ=100 | ||
| 237 | # CONFIG_AEABI is not set | ||
| 238 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 239 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 240 | CONFIG_FLATMEM_MANUAL=y | ||
| 241 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 242 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 243 | CONFIG_FLATMEM=y | ||
| 244 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 245 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 246 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 247 | # CONFIG_RESOURCES_64BIT is not set | ||
| 248 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 249 | # CONFIG_LEDS is not set | ||
| 250 | CONFIG_ALIGNMENT_TRAP=y | ||
| 251 | |||
| 252 | # | ||
| 253 | # Boot options | ||
| 254 | # | ||
| 255 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 256 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 257 | CONFIG_CMDLINE="" | ||
| 258 | # CONFIG_XIP_KERNEL is not set | ||
| 259 | # CONFIG_KEXEC is not set | ||
| 260 | |||
| 261 | # | ||
| 262 | # CPU Frequency scaling | ||
| 263 | # | ||
| 264 | # CONFIG_CPU_FREQ is not set | ||
| 265 | |||
| 266 | # | ||
| 267 | # Floating point emulation | ||
| 268 | # | ||
| 269 | |||
| 270 | # | ||
| 271 | # At least one emulation must be selected | ||
| 272 | # | ||
| 273 | CONFIG_FPE_NWFPE=y | ||
| 274 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 275 | # CONFIG_FPE_FASTFPE is not set | ||
| 276 | |||
| 277 | # | ||
| 278 | # Userspace binary formats | ||
| 279 | # | ||
| 280 | CONFIG_BINFMT_ELF=y | ||
| 281 | # CONFIG_BINFMT_AOUT is not set | ||
| 282 | # CONFIG_BINFMT_MISC is not set | ||
| 283 | # CONFIG_ARTHUR is not set | ||
| 284 | |||
| 285 | # | ||
| 286 | # Power management options | ||
| 287 | # | ||
| 288 | # CONFIG_PM is not set | ||
| 289 | |||
| 290 | # | ||
| 291 | # Networking | ||
| 292 | # | ||
| 293 | # CONFIG_NET is not set | ||
| 294 | |||
| 295 | # | ||
| 296 | # Device Drivers | ||
| 297 | # | ||
| 298 | |||
| 299 | # | ||
| 300 | # Generic Driver Options | ||
| 301 | # | ||
| 302 | # CONFIG_STANDALONE is not set | ||
| 303 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
| 304 | # CONFIG_FW_LOADER is not set | ||
| 305 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 306 | |||
| 307 | # | ||
| 308 | # Connector - unified userspace <-> kernelspace linker | ||
| 309 | # | ||
| 310 | # CONFIG_MTD is not set | ||
| 311 | |||
| 312 | # | ||
| 313 | # Parallel port support | ||
| 314 | # | ||
| 315 | # CONFIG_PARPORT is not set | ||
| 316 | |||
| 317 | # | ||
| 318 | # Plug and Play support | ||
| 319 | # | ||
| 320 | # CONFIG_PNPACPI is not set | ||
| 321 | |||
| 322 | # | ||
| 323 | # Block devices | ||
| 324 | # | ||
| 325 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 326 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 327 | # CONFIG_BLK_DEV_RAM is not set | ||
| 328 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 329 | |||
| 330 | # | ||
| 331 | # SCSI device support | ||
| 332 | # | ||
| 333 | # CONFIG_RAID_ATTRS is not set | ||
| 334 | # CONFIG_SCSI is not set | ||
| 335 | # CONFIG_SCSI_NETLINK is not set | ||
| 336 | # CONFIG_ATA is not set | ||
| 337 | |||
| 338 | # | ||
| 339 | # Multi-device support (RAID and LVM) | ||
| 340 | # | ||
| 341 | # CONFIG_MD is not set | ||
| 342 | |||
| 343 | # | ||
| 344 | # ISDN subsystem | ||
| 345 | # | ||
| 346 | |||
| 347 | # | ||
| 348 | # Input device support | ||
| 349 | # | ||
| 350 | CONFIG_INPUT=y | ||
| 351 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 352 | |||
| 353 | # | ||
| 354 | # Userland interfaces | ||
| 355 | # | ||
| 356 | CONFIG_INPUT_MOUSEDEV=y | ||
| 357 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
| 358 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=320 | ||
| 359 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=320 | ||
| 360 | # CONFIG_INPUT_JOYDEV is not set | ||
| 361 | # CONFIG_INPUT_TSDEV is not set | ||
| 362 | # CONFIG_INPUT_EVDEV is not set | ||
| 363 | # CONFIG_INPUT_EVBUG is not set | ||
| 364 | |||
| 365 | # | ||
| 366 | # Input Device Drivers | ||
| 367 | # | ||
| 368 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 369 | # CONFIG_INPUT_MOUSE is not set | ||
| 370 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 371 | # CONFIG_INPUT_TABLET is not set | ||
| 372 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 373 | # CONFIG_INPUT_MISC is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # Hardware I/O ports | ||
| 377 | # | ||
| 378 | # CONFIG_SERIO is not set | ||
| 379 | # CONFIG_GAMEPORT is not set | ||
| 380 | |||
| 381 | # | ||
| 382 | # Character devices | ||
| 383 | # | ||
| 384 | CONFIG_VT=y | ||
| 385 | CONFIG_VT_CONSOLE=y | ||
| 386 | CONFIG_HW_CONSOLE=y | ||
| 387 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 388 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 389 | |||
| 390 | # | ||
| 391 | # Serial drivers | ||
| 392 | # | ||
| 393 | # CONFIG_SERIAL_8250 is not set | ||
| 394 | |||
| 395 | # | ||
| 396 | # Non-8250 serial port support | ||
| 397 | # | ||
| 398 | CONFIG_UNIX98_PTYS=y | ||
| 399 | # CONFIG_LEGACY_PTYS is not set | ||
| 400 | |||
| 401 | # | ||
| 402 | # IPMI | ||
| 403 | # | ||
| 404 | # CONFIG_IPMI_HANDLER is not set | ||
| 405 | # CONFIG_WATCHDOG is not set | ||
| 406 | CONFIG_HW_RANDOM=y | ||
| 407 | # CONFIG_NVRAM is not set | ||
| 408 | CONFIG_OMAP_RTC=y | ||
| 409 | # CONFIG_R3964 is not set | ||
| 410 | # CONFIG_RAW_DRIVER is not set | ||
| 411 | |||
| 412 | # | ||
| 413 | # TPM devices | ||
| 414 | # | ||
| 415 | # CONFIG_TCG_TPM is not set | ||
| 416 | # CONFIG_I2C is not set | ||
| 417 | |||
| 418 | # | ||
| 419 | # SPI support | ||
| 420 | # | ||
| 421 | # CONFIG_SPI is not set | ||
| 422 | # CONFIG_SPI_MASTER is not set | ||
| 423 | |||
| 424 | # | ||
| 425 | # Dallas's 1-wire bus | ||
| 426 | # | ||
| 427 | # CONFIG_W1 is not set | ||
| 428 | # CONFIG_HWMON is not set | ||
| 429 | |||
| 430 | # | ||
| 431 | # Misc devices | ||
| 432 | # | ||
| 433 | # CONFIG_BLINK is not set | ||
| 434 | |||
| 435 | # | ||
| 436 | # Multifunction device drivers | ||
| 437 | # | ||
| 438 | # CONFIG_MFD_SM501 is not set | ||
| 439 | |||
| 440 | # | ||
| 441 | # LED devices | ||
| 442 | # | ||
| 443 | # CONFIG_NEW_LEDS is not set | ||
| 444 | |||
| 445 | # | ||
| 446 | # LED drivers | ||
| 447 | # | ||
| 448 | |||
| 449 | # | ||
| 450 | # LED Triggers | ||
| 451 | # | ||
| 452 | |||
| 453 | # | ||
| 454 | # Multimedia devices | ||
| 455 | # | ||
| 456 | # CONFIG_VIDEO_DEV is not set | ||
| 457 | CONFIG_DAB=y | ||
| 458 | |||
| 459 | # | ||
| 460 | # Graphics support | ||
| 461 | # | ||
| 462 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 463 | |||
| 464 | # | ||
| 465 | # Display device support | ||
| 466 | # | ||
| 467 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 468 | # CONFIG_VGASTATE is not set | ||
| 469 | CONFIG_FB=y | ||
| 470 | # CONFIG_FIRMWARE_EDID is not set | ||
| 471 | # CONFIG_FB_DDC is not set | ||
| 472 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 473 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 474 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 475 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 476 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 477 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 478 | # CONFIG_FB_SYS_FOPS is not set | ||
| 479 | CONFIG_FB_DEFERRED_IO=y | ||
| 480 | # CONFIG_FB_SVGALIB is not set | ||
| 481 | # CONFIG_FB_MACMODES is not set | ||
| 482 | # CONFIG_FB_BACKLIGHT is not set | ||
| 483 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 484 | # CONFIG_FB_TILEBLITTING is not set | ||
| 485 | |||
| 486 | # | ||
| 487 | # Frame buffer hardware drivers | ||
| 488 | # | ||
| 489 | # CONFIG_FB_S1D13XXX is not set | ||
| 490 | CONFIG_FB_OMAP=y | ||
| 491 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 492 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 493 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 494 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 495 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 496 | # CONFIG_FB_VIRTUAL is not set | ||
| 497 | |||
| 498 | # | ||
| 499 | # Console display driver support | ||
| 500 | # | ||
| 501 | # CONFIG_VGA_CONSOLE is not set | ||
| 502 | CONFIG_DUMMY_CONSOLE=y | ||
| 503 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 504 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 505 | # CONFIG_FONTS is not set | ||
| 506 | CONFIG_FONT_8x8=y | ||
| 507 | CONFIG_FONT_8x16=y | ||
| 508 | CONFIG_LOGO=y | ||
| 509 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 510 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 511 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 512 | |||
| 513 | # | ||
| 514 | # Sound | ||
| 515 | # | ||
| 516 | # CONFIG_SOUND is not set | ||
| 517 | |||
| 518 | # | ||
| 519 | # HID Devices | ||
| 520 | # | ||
| 521 | CONFIG_HID=y | ||
| 522 | # CONFIG_HID_DEBUG is not set | ||
| 523 | |||
| 524 | # | ||
| 525 | # USB support | ||
| 526 | # | ||
| 527 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 528 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 529 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 530 | # CONFIG_USB is not set | ||
| 531 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 532 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 533 | |||
| 534 | # | ||
| 535 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 536 | # | ||
| 537 | |||
| 538 | # | ||
| 539 | # USB Gadget Support | ||
| 540 | # | ||
| 541 | CONFIG_USB_GADGET=y | ||
| 542 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 543 | CONFIG_USB_GADGET_SELECTED=y | ||
| 544 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 545 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 546 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 547 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 548 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 549 | CONFIG_USB_GADGET_OMAP=y | ||
| 550 | CONFIG_USB_OMAP=y | ||
| 551 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 552 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 553 | # CONFIG_USB_GADGET_DUALSPEED is not set | ||
| 554 | CONFIG_USB_ZERO=y | ||
| 555 | # CONFIG_USB_ETH is not set | ||
| 556 | # CONFIG_USB_GADGETFS is not set | ||
| 557 | # CONFIG_USB_FILE_STORAGE is not set | ||
| 558 | # CONFIG_USB_G_SERIAL is not set | ||
| 559 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 560 | CONFIG_MMC=y | ||
| 561 | # CONFIG_MMC_DEBUG is not set | ||
| 562 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 563 | |||
| 564 | # | ||
| 565 | # MMC/SD Card Drivers | ||
| 566 | # | ||
| 567 | CONFIG_MMC_BLOCK=y | ||
| 568 | |||
| 569 | # | ||
| 570 | # MMC/SD Host Controller Drivers | ||
| 571 | # | ||
| 572 | CONFIG_MMC_OMAP=y | ||
| 573 | |||
| 574 | # | ||
| 575 | # Real Time Clock | ||
| 576 | # | ||
| 577 | CONFIG_RTC_LIB=y | ||
| 578 | # CONFIG_RTC_CLASS is not set | ||
| 579 | |||
| 580 | # | ||
| 581 | # CBUS support | ||
| 582 | # | ||
| 583 | # CONFIG_CBUS is not set | ||
| 584 | |||
| 585 | # | ||
| 586 | # File systems | ||
| 587 | # | ||
| 588 | CONFIG_EXT2_FS=y | ||
| 589 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 590 | # CONFIG_EXT2_FS_XIP is not set | ||
| 591 | # CONFIG_EXT3_FS is not set | ||
| 592 | # CONFIG_EXT4DEV_FS is not set | ||
| 593 | # CONFIG_REISERFS_FS is not set | ||
| 594 | # CONFIG_JFS_FS is not set | ||
| 595 | # CONFIG_FS_POSIX_ACL is not set | ||
| 596 | # CONFIG_XFS_FS is not set | ||
| 597 | # CONFIG_GFS2_FS is not set | ||
| 598 | # CONFIG_MINIX_FS is not set | ||
| 599 | # CONFIG_ROMFS_FS is not set | ||
| 600 | # CONFIG_INOTIFY is not set | ||
| 601 | # CONFIG_QUOTA is not set | ||
| 602 | CONFIG_DNOTIFY=y | ||
| 603 | # CONFIG_AUTOFS_FS is not set | ||
| 604 | # CONFIG_AUTOFS4_FS is not set | ||
| 605 | # CONFIG_FUSE_FS is not set | ||
| 606 | |||
| 607 | # | ||
| 608 | # CD-ROM/DVD Filesystems | ||
| 609 | # | ||
| 610 | # CONFIG_ISO9660_FS is not set | ||
| 611 | # CONFIG_UDF_FS is not set | ||
| 612 | |||
| 613 | # | ||
| 614 | # DOS/FAT/NT Filesystems | ||
| 615 | # | ||
| 616 | CONFIG_FAT_FS=y | ||
| 617 | CONFIG_MSDOS_FS=y | ||
| 618 | CONFIG_VFAT_FS=y | ||
| 619 | CONFIG_FAT_DEFAULT_CODEPAGE=850 | ||
| 620 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 621 | # CONFIG_NTFS_FS is not set | ||
| 622 | |||
| 623 | # | ||
| 624 | # Pseudo filesystems | ||
| 625 | # | ||
| 626 | CONFIG_PROC_FS=y | ||
| 627 | CONFIG_PROC_SYSCTL=y | ||
| 628 | CONFIG_SYSFS=y | ||
| 629 | CONFIG_TMPFS=y | ||
| 630 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 631 | # CONFIG_HUGETLB_PAGE is not set | ||
| 632 | CONFIG_RAMFS=y | ||
| 633 | # CONFIG_CONFIGFS_FS is not set | ||
| 634 | |||
| 635 | # | ||
| 636 | # Miscellaneous filesystems | ||
| 637 | # | ||
| 638 | # CONFIG_ADFS_FS is not set | ||
| 639 | # CONFIG_AFFS_FS is not set | ||
| 640 | # CONFIG_HFS_FS is not set | ||
| 641 | # CONFIG_HFSPLUS_FS is not set | ||
| 642 | # CONFIG_BEFS_FS is not set | ||
| 643 | # CONFIG_BFS_FS is not set | ||
| 644 | # CONFIG_EFS_FS is not set | ||
| 645 | CONFIG_CRAMFS=y | ||
| 646 | # CONFIG_VXFS_FS is not set | ||
| 647 | # CONFIG_HPFS_FS is not set | ||
| 648 | # CONFIG_QNX4FS_FS is not set | ||
| 649 | # CONFIG_SYSV_FS is not set | ||
| 650 | # CONFIG_UFS_FS is not set | ||
| 651 | |||
| 652 | # | ||
| 653 | # Partition Types | ||
| 654 | # | ||
| 655 | CONFIG_PARTITION_ADVANCED=y | ||
| 656 | # CONFIG_ACORN_PARTITION is not set | ||
| 657 | # CONFIG_OSF_PARTITION is not set | ||
| 658 | # CONFIG_AMIGA_PARTITION is not set | ||
| 659 | # CONFIG_ATARI_PARTITION is not set | ||
| 660 | # CONFIG_MAC_PARTITION is not set | ||
| 661 | CONFIG_MSDOS_PARTITION=y | ||
| 662 | # CONFIG_BSD_DISKLABEL is not set | ||
| 663 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 664 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 665 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 666 | # CONFIG_LDM_PARTITION is not set | ||
| 667 | # CONFIG_SGI_PARTITION is not set | ||
| 668 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 669 | # CONFIG_SUN_PARTITION is not set | ||
| 670 | # CONFIG_KARMA_PARTITION is not set | ||
| 671 | # CONFIG_EFI_PARTITION is not set | ||
| 672 | # CONFIG_SYSV68_PARTITION is not set | ||
| 673 | |||
| 674 | # | ||
| 675 | # Native Language Support | ||
| 676 | # | ||
| 677 | CONFIG_NLS=y | ||
| 678 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 679 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
| 680 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 681 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 682 | CONFIG_NLS_CODEPAGE_850=y | ||
| 683 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 684 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 685 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 686 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 687 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 688 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 689 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 690 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 691 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 692 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
| 693 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 694 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 695 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 696 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 697 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 698 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 699 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 700 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 701 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
| 702 | # CONFIG_NLS_ASCII is not set | ||
| 703 | CONFIG_NLS_ISO8859_1=y | ||
| 704 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 705 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 706 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 707 | # CONFIG_NLS_ISO8859_5 is not set | ||
| 708 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 709 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 710 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 711 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 712 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 713 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 714 | # CONFIG_NLS_KOI8_R is not set | ||
| 715 | # CONFIG_NLS_KOI8_U is not set | ||
| 716 | # CONFIG_NLS_UTF8 is not set | ||
| 717 | |||
| 718 | # | ||
| 719 | # Profiling support | ||
| 720 | # | ||
| 721 | # CONFIG_PROFILING is not set | ||
| 722 | |||
| 723 | # | ||
| 724 | # Kernel hacking | ||
| 725 | # | ||
| 726 | # CONFIG_PRINTK_TIME is not set | ||
| 727 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 728 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 729 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 730 | # CONFIG_DEBUG_FS is not set | ||
| 731 | # CONFIG_HEADERS_CHECK is not set | ||
| 732 | # CONFIG_DEBUG_KERNEL is not set | ||
| 733 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 734 | CONFIG_FRAME_POINTER=y | ||
| 735 | # CONFIG_DEBUG_USER is not set | ||
| 736 | |||
| 737 | # | ||
| 738 | # Security options | ||
| 739 | # | ||
| 740 | # CONFIG_KEYS is not set | ||
| 741 | # CONFIG_SECURITY is not set | ||
| 742 | |||
| 743 | # | ||
| 744 | # Cryptographic options | ||
| 745 | # | ||
| 746 | # CONFIG_CRYPTO is not set | ||
| 747 | |||
| 748 | # | ||
| 749 | # Library routines | ||
| 750 | # | ||
| 751 | CONFIG_BITREVERSE=y | ||
| 752 | CONFIG_CRC_CCITT=y | ||
| 753 | # CONFIG_CRC16 is not set | ||
| 754 | # CONFIG_CRC_ITU_T is not set | ||
| 755 | CONFIG_CRC32=y | ||
| 756 | # CONFIG_LIBCRC32C is not set | ||
| 757 | CONFIG_ZLIB_INFLATE=y | ||
| 758 | CONFIG_PLIST=y | ||
| 759 | CONFIG_HAS_IOMEM=y | ||
| 760 | CONFIG_HAS_IOPORT=y | ||
| 761 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/palmtt_defconfig b/arch/arm/configs/palmtt_defconfig new file mode 100644 index 000000000000..e54ced41217e --- /dev/null +++ b/arch/arm/configs/palmtt_defconfig | |||
| @@ -0,0 +1,844 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.19-rc3-omap1 | ||
| 4 | # Sun Oct 29 00:36:12 2006 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | # CONFIG_GENERIC_TIME is not set | ||
| 8 | CONFIG_MMU=y | ||
| 9 | CONFIG_GENERIC_HARDIRQS=y | ||
| 10 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 11 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 12 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 13 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 14 | CONFIG_GENERIC_HWEIGHT=y | ||
| 15 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 16 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 17 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 18 | |||
| 19 | # | ||
| 20 | # Code maturity level options | ||
| 21 | # | ||
| 22 | CONFIG_EXPERIMENTAL=y | ||
| 23 | CONFIG_BROKEN_ON_SMP=y | ||
| 24 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 25 | |||
| 26 | # | ||
| 27 | # General setup | ||
| 28 | # | ||
| 29 | CONFIG_LOCALVERSION="" | ||
| 30 | CONFIG_LOCALVERSION_AUTO=y | ||
| 31 | CONFIG_SWAP=y | ||
| 32 | CONFIG_SYSVIPC=y | ||
| 33 | # CONFIG_IPC_NS is not set | ||
| 34 | # CONFIG_POSIX_MQUEUE is not set | ||
| 35 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 36 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 37 | # CONFIG_TASKSTATS is not set | ||
| 38 | # CONFIG_UTS_NS is not set | ||
| 39 | # CONFIG_AUDIT is not set | ||
| 40 | # CONFIG_IKCONFIG is not set | ||
| 41 | # CONFIG_RELAY is not set | ||
| 42 | CONFIG_INITRAMFS_SOURCE="" | ||
| 43 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 44 | CONFIG_SYSCTL=y | ||
| 45 | # CONFIG_EMBEDDED is not set | ||
| 46 | CONFIG_UID16=y | ||
| 47 | # CONFIG_SYSCTL_SYSCALL is not set | ||
| 48 | CONFIG_KALLSYMS=y | ||
| 49 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 50 | CONFIG_HOTPLUG=y | ||
| 51 | CONFIG_PRINTK=y | ||
| 52 | CONFIG_BUG=y | ||
| 53 | CONFIG_ELF_CORE=y | ||
| 54 | CONFIG_BASE_FULL=y | ||
| 55 | CONFIG_FUTEX=y | ||
| 56 | CONFIG_EPOLL=y | ||
| 57 | CONFIG_SHMEM=y | ||
| 58 | CONFIG_SLAB=y | ||
| 59 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 60 | CONFIG_RT_MUTEXES=y | ||
| 61 | # CONFIG_TINY_SHMEM is not set | ||
| 62 | CONFIG_BASE_SMALL=0 | ||
| 63 | # CONFIG_SLOB is not set | ||
| 64 | |||
| 65 | # | ||
| 66 | # Loadable module support | ||
| 67 | # | ||
| 68 | # CONFIG_MODULES is not set | ||
| 69 | |||
| 70 | # | ||
| 71 | # Block layer | ||
| 72 | # | ||
| 73 | CONFIG_BLOCK=y | ||
| 74 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 75 | |||
| 76 | # | ||
| 77 | # IO Schedulers | ||
| 78 | # | ||
| 79 | CONFIG_IOSCHED_NOOP=y | ||
| 80 | # CONFIG_IOSCHED_AS is not set | ||
| 81 | # CONFIG_IOSCHED_DEADLINE is not set | ||
| 82 | # CONFIG_IOSCHED_CFQ is not set | ||
| 83 | # CONFIG_DEFAULT_AS is not set | ||
| 84 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 85 | # CONFIG_DEFAULT_CFQ is not set | ||
| 86 | CONFIG_DEFAULT_NOOP=y | ||
| 87 | CONFIG_DEFAULT_IOSCHED="noop" | ||
| 88 | |||
| 89 | # | ||
| 90 | # System Type | ||
| 91 | # | ||
| 92 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 93 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 94 | # CONFIG_ARCH_REALVIEW is not set | ||
| 95 | # CONFIG_ARCH_VERSATILE is not set | ||
| 96 | # CONFIG_ARCH_AT91 is not set | ||
| 97 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 98 | # CONFIG_ARCH_CLPS711X is not set | ||
| 99 | # CONFIG_ARCH_CO285 is not set | ||
| 100 | # CONFIG_ARCH_EBSA110 is not set | ||
| 101 | # CONFIG_ARCH_EP93XX is not set | ||
| 102 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 103 | # CONFIG_ARCH_NETX is not set | ||
| 104 | # CONFIG_ARCH_H720X is not set | ||
| 105 | # CONFIG_ARCH_IMX is not set | ||
| 106 | # CONFIG_ARCH_IOP32X is not set | ||
| 107 | # CONFIG_ARCH_IOP33X is not set | ||
| 108 | # CONFIG_ARCH_IXP4XX is not set | ||
| 109 | # CONFIG_ARCH_IXP2000 is not set | ||
| 110 | # CONFIG_ARCH_IXP23XX is not set | ||
| 111 | # CONFIG_ARCH_L7200 is not set | ||
| 112 | # CONFIG_ARCH_PNX4008 is not set | ||
| 113 | # CONFIG_ARCH_PXA is not set | ||
| 114 | # CONFIG_ARCH_RPC is not set | ||
| 115 | # CONFIG_ARCH_SA1100 is not set | ||
| 116 | # CONFIG_ARCH_S3C2410 is not set | ||
| 117 | # CONFIG_ARCH_SHARK is not set | ||
| 118 | # CONFIG_ARCH_LH7A40X is not set | ||
| 119 | CONFIG_ARCH_OMAP=y | ||
| 120 | |||
| 121 | # | ||
| 122 | # TI OMAP Implementations | ||
| 123 | # | ||
| 124 | CONFIG_ARCH_OMAP1=y | ||
| 125 | # CONFIG_ARCH_OMAP2 is not set | ||
| 126 | |||
| 127 | # | ||
| 128 | # OMAP Feature Selections | ||
| 129 | # | ||
| 130 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 131 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 132 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 133 | CONFIG_OMAP_MUX=y | ||
| 134 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 135 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 136 | CONFIG_OMAP_MCBSP=y | ||
| 137 | CONFIG_OMAP_MPU_TIMER=y | ||
| 138 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 139 | # CONFIG_OMAP_LL_DEBUG_UART1 is not set | ||
| 140 | CONFIG_OMAP_LL_DEBUG_UART2=y | ||
| 141 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 142 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 143 | CONFIG_OMAP_DSP=y | ||
| 144 | # CONFIG_OMAP_DSP_MBCMD_VERBOSE is not set | ||
| 145 | # CONFIG_OMAP_DSP_TASK_MULTIOPEN is not set | ||
| 146 | CONFIG_OMAP_DSP_FBEXPORT=y | ||
| 147 | |||
| 148 | # | ||
| 149 | # OMAP Core Type | ||
| 150 | # | ||
| 151 | # CONFIG_ARCH_OMAP730 is not set | ||
| 152 | CONFIG_ARCH_OMAP15XX=y | ||
| 153 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 154 | |||
| 155 | # | ||
| 156 | # OMAP Board Type | ||
| 157 | # | ||
| 158 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 159 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 160 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 161 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 162 | CONFIG_MACH_OMAP_PALMTT=y | ||
| 163 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 164 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 165 | |||
| 166 | # | ||
| 167 | # OMAP CPU Speed | ||
| 168 | # | ||
| 169 | CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | ||
| 170 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 171 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 172 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 173 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 174 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 175 | |||
| 176 | # | ||
| 177 | # Processor Type | ||
| 178 | # | ||
| 179 | CONFIG_CPU_32=y | ||
| 180 | CONFIG_CPU_ARM925T=y | ||
| 181 | CONFIG_CPU_32v4T=y | ||
| 182 | CONFIG_CPU_ABRT_EV4T=y | ||
| 183 | CONFIG_CPU_CACHE_V4WT=y | ||
| 184 | CONFIG_CPU_CACHE_VIVT=y | ||
| 185 | CONFIG_CPU_COPY_V4WB=y | ||
| 186 | CONFIG_CPU_TLB_V4WBI=y | ||
| 187 | CONFIG_CPU_CP15=y | ||
| 188 | CONFIG_CPU_CP15_MMU=y | ||
| 189 | |||
| 190 | # | ||
| 191 | # Processor Features | ||
| 192 | # | ||
| 193 | CONFIG_ARM_THUMB=y | ||
| 194 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 195 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 196 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 197 | |||
| 198 | # | ||
| 199 | # Bus support | ||
| 200 | # | ||
| 201 | |||
| 202 | # | ||
| 203 | # PCCARD (PCMCIA/CardBus) support | ||
| 204 | # | ||
| 205 | # CONFIG_PCCARD is not set | ||
| 206 | |||
| 207 | # | ||
| 208 | # Kernel Features | ||
| 209 | # | ||
| 210 | # CONFIG_PREEMPT is not set | ||
| 211 | # CONFIG_NO_IDLE_HZ is not set | ||
| 212 | CONFIG_HZ=100 | ||
| 213 | # CONFIG_AEABI is not set | ||
| 214 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 215 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 216 | CONFIG_FLATMEM_MANUAL=y | ||
| 217 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 218 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 219 | CONFIG_FLATMEM=y | ||
| 220 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 221 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 223 | # CONFIG_RESOURCES_64BIT is not set | ||
| 224 | # CONFIG_LEDS is not set | ||
| 225 | CONFIG_ALIGNMENT_TRAP=y | ||
| 226 | |||
| 227 | # | ||
| 228 | # Boot options | ||
| 229 | # | ||
| 230 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 231 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 232 | CONFIG_CMDLINE="root=/dev/mmcblk0p2 rw init=/init" | ||
| 233 | # CONFIG_XIP_KERNEL is not set | ||
| 234 | |||
| 235 | # | ||
| 236 | # CPU Frequency scaling | ||
| 237 | # | ||
| 238 | # CONFIG_CPU_FREQ is not set | ||
| 239 | |||
| 240 | # | ||
| 241 | # Floating point emulation | ||
| 242 | # | ||
| 243 | |||
| 244 | # | ||
| 245 | # At least one emulation must be selected | ||
| 246 | # | ||
| 247 | CONFIG_FPE_NWFPE=y | ||
| 248 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 249 | # CONFIG_FPE_FASTFPE is not set | ||
| 250 | |||
| 251 | # | ||
| 252 | # Userspace binary formats | ||
| 253 | # | ||
| 254 | CONFIG_BINFMT_ELF=y | ||
| 255 | # CONFIG_BINFMT_AOUT is not set | ||
| 256 | # CONFIG_BINFMT_MISC is not set | ||
| 257 | # CONFIG_ARTHUR is not set | ||
| 258 | |||
| 259 | # | ||
| 260 | # Power management options | ||
| 261 | # | ||
| 262 | # CONFIG_PM is not set | ||
| 263 | # CONFIG_APM is not set | ||
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | ||
| 269 | |||
| 270 | # | ||
| 271 | # Networking options | ||
| 272 | # | ||
| 273 | # CONFIG_NETDEBUG is not set | ||
| 274 | CONFIG_PACKET=y | ||
| 275 | # CONFIG_PACKET_MMAP is not set | ||
| 276 | CONFIG_UNIX=y | ||
| 277 | CONFIG_XFRM=y | ||
| 278 | # CONFIG_XFRM_USER is not set | ||
| 279 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 280 | CONFIG_NET_KEY=y | ||
| 281 | CONFIG_INET=y | ||
| 282 | # CONFIG_IP_MULTICAST is not set | ||
| 283 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 284 | CONFIG_IP_FIB_HASH=y | ||
| 285 | # CONFIG_IP_PNP is not set | ||
| 286 | # CONFIG_NET_IPIP is not set | ||
| 287 | # CONFIG_NET_IPGRE is not set | ||
| 288 | # CONFIG_ARPD is not set | ||
| 289 | # CONFIG_SYN_COOKIES is not set | ||
| 290 | # CONFIG_INET_AH is not set | ||
| 291 | # CONFIG_INET_ESP is not set | ||
| 292 | # CONFIG_INET_IPCOMP is not set | ||
| 293 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 294 | # CONFIG_INET_TUNNEL is not set | ||
| 295 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 296 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 297 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 298 | # CONFIG_INET_DIAG is not set | ||
| 299 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 300 | CONFIG_TCP_CONG_CUBIC=y | ||
| 301 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 302 | # CONFIG_IPV6 is not set | ||
| 303 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 304 | # CONFIG_INET6_TUNNEL is not set | ||
| 305 | # CONFIG_NETWORK_SECMARK is not set | ||
| 306 | # CONFIG_NETFILTER is not set | ||
| 307 | |||
| 308 | # | ||
| 309 | # DCCP Configuration (EXPERIMENTAL) | ||
| 310 | # | ||
| 311 | # CONFIG_IP_DCCP is not set | ||
| 312 | |||
| 313 | # | ||
| 314 | # SCTP Configuration (EXPERIMENTAL) | ||
| 315 | # | ||
| 316 | # CONFIG_IP_SCTP is not set | ||
| 317 | |||
| 318 | # | ||
| 319 | # TIPC Configuration (EXPERIMENTAL) | ||
| 320 | # | ||
| 321 | # CONFIG_TIPC is not set | ||
| 322 | # CONFIG_ATM is not set | ||
| 323 | # CONFIG_BRIDGE is not set | ||
| 324 | # CONFIG_VLAN_8021Q is not set | ||
| 325 | # CONFIG_DECNET is not set | ||
| 326 | # CONFIG_LLC2 is not set | ||
| 327 | # CONFIG_IPX is not set | ||
| 328 | # CONFIG_ATALK is not set | ||
| 329 | # CONFIG_X25 is not set | ||
| 330 | # CONFIG_LAPB is not set | ||
| 331 | # CONFIG_ECONET is not set | ||
| 332 | # CONFIG_WAN_ROUTER is not set | ||
| 333 | |||
| 334 | # | ||
| 335 | # QoS and/or fair queueing | ||
| 336 | # | ||
| 337 | # CONFIG_NET_SCHED is not set | ||
| 338 | |||
| 339 | # | ||
| 340 | # Network testing | ||
| 341 | # | ||
| 342 | # CONFIG_NET_PKTGEN is not set | ||
| 343 | # CONFIG_HAMRADIO is not set | ||
| 344 | # CONFIG_IRDA is not set | ||
| 345 | # CONFIG_BT is not set | ||
| 346 | # CONFIG_IEEE80211 is not set | ||
| 347 | |||
| 348 | # | ||
| 349 | # Device Drivers | ||
| 350 | # | ||
| 351 | |||
| 352 | # | ||
| 353 | # Generic Driver Options | ||
| 354 | # | ||
| 355 | CONFIG_STANDALONE=y | ||
| 356 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 357 | # CONFIG_FW_LOADER is not set | ||
| 358 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 359 | |||
| 360 | # | ||
| 361 | # Connector - unified userspace <-> kernelspace linker | ||
| 362 | # | ||
| 363 | # CONFIG_CONNECTOR is not set | ||
| 364 | |||
| 365 | # | ||
| 366 | # Memory Technology Devices (MTD) | ||
| 367 | # | ||
| 368 | # CONFIG_MTD is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # Parallel port support | ||
| 372 | # | ||
| 373 | # CONFIG_PARPORT is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # Plug and Play support | ||
| 377 | # | ||
| 378 | |||
| 379 | # | ||
| 380 | # Block devices | ||
| 381 | # | ||
| 382 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 383 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 384 | # CONFIG_BLK_DEV_NBD is not set | ||
| 385 | # CONFIG_BLK_DEV_RAM is not set | ||
| 386 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 387 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 388 | # CONFIG_ATA_OVER_ETH is not set | ||
| 389 | |||
| 390 | # | ||
| 391 | # SCSI device support | ||
| 392 | # | ||
| 393 | # CONFIG_RAID_ATTRS is not set | ||
| 394 | # CONFIG_SCSI is not set | ||
| 395 | # CONFIG_SCSI_NETLINK is not set | ||
| 396 | |||
| 397 | # | ||
| 398 | # Multi-device support (RAID and LVM) | ||
| 399 | # | ||
| 400 | # CONFIG_MD is not set | ||
| 401 | |||
| 402 | # | ||
| 403 | # Fusion MPT device support | ||
| 404 | # | ||
| 405 | # CONFIG_FUSION is not set | ||
| 406 | |||
| 407 | # | ||
| 408 | # IEEE 1394 (FireWire) support | ||
| 409 | # | ||
| 410 | |||
| 411 | # | ||
| 412 | # I2O device support | ||
| 413 | # | ||
| 414 | |||
| 415 | # | ||
| 416 | # Network device support | ||
| 417 | # | ||
| 418 | # CONFIG_NETDEVICES is not set | ||
| 419 | # CONFIG_NETPOLL is not set | ||
| 420 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 421 | |||
| 422 | # | ||
| 423 | # ISDN subsystem | ||
| 424 | # | ||
| 425 | # CONFIG_ISDN is not set | ||
| 426 | |||
| 427 | # | ||
| 428 | # Input device support | ||
| 429 | # | ||
| 430 | CONFIG_INPUT=y | ||
| 431 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 432 | |||
| 433 | # | ||
| 434 | # Userland interfaces | ||
| 435 | # | ||
| 436 | CONFIG_INPUT_MOUSEDEV=y | ||
| 437 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 438 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=320 | ||
| 439 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=320 | ||
| 440 | # CONFIG_INPUT_JOYDEV is not set | ||
| 441 | CONFIG_INPUT_TSDEV=y | ||
| 442 | CONFIG_INPUT_TSDEV_SCREEN_X=320 | ||
| 443 | CONFIG_INPUT_TSDEV_SCREEN_Y=320 | ||
| 444 | CONFIG_INPUT_EVDEV=y | ||
| 445 | # CONFIG_INPUT_EVBUG is not set | ||
| 446 | |||
| 447 | # | ||
| 448 | # Input Device Drivers | ||
| 449 | # | ||
| 450 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 451 | # CONFIG_INPUT_MOUSE is not set | ||
| 452 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 453 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 454 | CONFIG_TOUCHSCREEN_ADS7846=y | ||
| 455 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
| 456 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
| 457 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
| 458 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
| 459 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
| 460 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
| 461 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
| 462 | # CONFIG_TOUCHSCREEN_TSC2102 is not set | ||
| 463 | # CONFIG_INPUT_MISC is not set | ||
| 464 | |||
| 465 | # | ||
| 466 | # Hardware I/O ports | ||
| 467 | # | ||
| 468 | # CONFIG_SERIO is not set | ||
| 469 | # CONFIG_GAMEPORT is not set | ||
| 470 | |||
| 471 | # | ||
| 472 | # Character devices | ||
| 473 | # | ||
| 474 | CONFIG_VT=y | ||
| 475 | CONFIG_VT_CONSOLE=y | ||
| 476 | CONFIG_HW_CONSOLE=y | ||
| 477 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 478 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 479 | |||
| 480 | # | ||
| 481 | # Serial drivers | ||
| 482 | # | ||
| 483 | # CONFIG_SERIAL_8250 is not set | ||
| 484 | |||
| 485 | # | ||
| 486 | # Non-8250 serial port support | ||
| 487 | # | ||
| 488 | CONFIG_UNIX98_PTYS=y | ||
| 489 | CONFIG_LEGACY_PTYS=y | ||
| 490 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 491 | |||
| 492 | # | ||
| 493 | # IPMI | ||
| 494 | # | ||
| 495 | # CONFIG_IPMI_HANDLER is not set | ||
| 496 | |||
| 497 | # | ||
| 498 | # Watchdog Cards | ||
| 499 | # | ||
| 500 | # CONFIG_WATCHDOG is not set | ||
| 501 | CONFIG_HW_RANDOM=y | ||
| 502 | # CONFIG_NVRAM is not set | ||
| 503 | # CONFIG_OMAP_RTC is not set | ||
| 504 | # CONFIG_DTLK is not set | ||
| 505 | # CONFIG_R3964 is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # Ftape, the floppy tape device driver | ||
| 509 | # | ||
| 510 | # CONFIG_RAW_DRIVER is not set | ||
| 511 | |||
| 512 | # | ||
| 513 | # TPM devices | ||
| 514 | # | ||
| 515 | # CONFIG_TCG_TPM is not set | ||
| 516 | |||
| 517 | # | ||
| 518 | # I2C support | ||
| 519 | # | ||
| 520 | # CONFIG_I2C is not set | ||
| 521 | |||
| 522 | # | ||
| 523 | # SPI support | ||
| 524 | # | ||
| 525 | CONFIG_SPI=y | ||
| 526 | CONFIG_SPI_MASTER=y | ||
| 527 | |||
| 528 | # | ||
| 529 | # SPI Master Controller Drivers | ||
| 530 | # | ||
| 531 | CONFIG_SPI_BITBANG=y | ||
| 532 | CONFIG_SPI_OMAP_UWIRE=y | ||
| 533 | |||
| 534 | # | ||
| 535 | # SPI Protocol Masters | ||
| 536 | # | ||
| 537 | # CONFIG_TSC2102 is not set | ||
| 538 | |||
| 539 | # | ||
| 540 | # Dallas's 1-wire bus | ||
| 541 | # | ||
| 542 | # CONFIG_W1 is not set | ||
| 543 | |||
| 544 | # | ||
| 545 | # Hardware Monitoring support | ||
| 546 | # | ||
| 547 | CONFIG_HWMON=y | ||
| 548 | # CONFIG_HWMON_VID is not set | ||
| 549 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 550 | # CONFIG_SENSORS_F71805F is not set | ||
| 551 | # CONFIG_SENSORS_LM70 is not set | ||
| 552 | # CONFIG_SENSORS_VT1211 is not set | ||
| 553 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 554 | |||
| 555 | # | ||
| 556 | # Misc devices | ||
| 557 | # | ||
| 558 | # CONFIG_SGI_IOC4 is not set | ||
| 559 | # CONFIG_TIFM_CORE is not set | ||
| 560 | |||
| 561 | # | ||
| 562 | # LED devices | ||
| 563 | # | ||
| 564 | CONFIG_NEW_LEDS=y | ||
| 565 | CONFIG_LEDS_CLASS=y | ||
| 566 | |||
| 567 | # | ||
| 568 | # LED drivers | ||
| 569 | # | ||
| 570 | CONFIG_LEDS_OMAP=y | ||
| 571 | |||
| 572 | # | ||
| 573 | # LED Triggers | ||
| 574 | # | ||
| 575 | CONFIG_LEDS_TRIGGERS=y | ||
| 576 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
| 577 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
| 578 | |||
| 579 | # | ||
| 580 | # Multimedia devices | ||
| 581 | # | ||
| 582 | # CONFIG_VIDEO_DEV is not set | ||
| 583 | |||
| 584 | # | ||
| 585 | # Digital Video Broadcasting Devices | ||
| 586 | # | ||
| 587 | # CONFIG_DVB is not set | ||
| 588 | |||
| 589 | # | ||
| 590 | # Graphics support | ||
| 591 | # | ||
| 592 | CONFIG_FIRMWARE_EDID=y | ||
| 593 | CONFIG_FB=y | ||
| 594 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 595 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 596 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 597 | # CONFIG_FB_MACMODES is not set | ||
| 598 | # CONFIG_FB_BACKLIGHT is not set | ||
| 599 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 600 | # CONFIG_FB_TILEBLITTING is not set | ||
| 601 | # CONFIG_FB_S1D13XXX is not set | ||
| 602 | # CONFIG_FB_VIRTUAL is not set | ||
| 603 | CONFIG_FB_OMAP=y | ||
| 604 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 605 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 606 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 607 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 608 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 609 | |||
| 610 | # | ||
| 611 | # Console display driver support | ||
| 612 | # | ||
| 613 | # CONFIG_VGA_CONSOLE is not set | ||
| 614 | CONFIG_DUMMY_CONSOLE=y | ||
| 615 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 616 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 617 | # CONFIG_FONTS is not set | ||
| 618 | CONFIG_FONT_8x8=y | ||
| 619 | CONFIG_FONT_8x16=y | ||
| 620 | |||
| 621 | # | ||
| 622 | # Logo configuration | ||
| 623 | # | ||
| 624 | # CONFIG_LOGO is not set | ||
| 625 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
| 626 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | ||
| 627 | CONFIG_BACKLIGHT_DEVICE=y | ||
| 628 | CONFIG_LCD_CLASS_DEVICE=y | ||
| 629 | CONFIG_LCD_DEVICE=y | ||
| 630 | CONFIG_BACKLIGHT_OMAP=y | ||
| 631 | |||
| 632 | # | ||
| 633 | # Sound | ||
| 634 | # | ||
| 635 | # CONFIG_SOUND is not set | ||
| 636 | |||
| 637 | # | ||
| 638 | # USB support | ||
| 639 | # | ||
| 640 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 641 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 642 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 643 | # CONFIG_USB is not set | ||
| 644 | |||
| 645 | # | ||
| 646 | # Enable Host or Gadget support to see Inventra options | ||
| 647 | # | ||
| 648 | |||
| 649 | # | ||
| 650 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 651 | # | ||
| 652 | |||
| 653 | # | ||
| 654 | # USB Gadget Support | ||
| 655 | # | ||
| 656 | # CONFIG_USB_GADGET is not set | ||
| 657 | |||
| 658 | # | ||
| 659 | # MMC/SD Card support | ||
| 660 | # | ||
| 661 | # CONFIG_MMC is not set | ||
| 662 | |||
| 663 | # | ||
| 664 | # Real Time Clock | ||
| 665 | # | ||
| 666 | CONFIG_RTC_LIB=y | ||
| 667 | CONFIG_RTC_CLASS=y | ||
| 668 | CONFIG_RTC_HCTOSYS=y | ||
| 669 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 670 | # CONFIG_RTC_DEBUG is not set | ||
| 671 | |||
| 672 | # | ||
| 673 | # RTC interfaces | ||
| 674 | # | ||
| 675 | CONFIG_RTC_INTF_SYSFS=y | ||
| 676 | CONFIG_RTC_INTF_PROC=y | ||
| 677 | CONFIG_RTC_INTF_DEV=y | ||
| 678 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 679 | |||
| 680 | # | ||
| 681 | # RTC drivers | ||
| 682 | # | ||
| 683 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 684 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 685 | CONFIG_RTC_DRV_OMAP=y | ||
| 686 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 687 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 688 | # CONFIG_RTC_DRV_TEST is not set | ||
| 689 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 690 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 691 | |||
| 692 | # | ||
| 693 | # Synchronous Serial Interfaces (SSI) | ||
| 694 | # | ||
| 695 | # CONFIG_OMAP_UWIRE is not set | ||
| 696 | # CONFIG_OMAP_TSC2101 is not set | ||
| 697 | |||
| 698 | # | ||
| 699 | # CBUS support | ||
| 700 | # | ||
| 701 | # CONFIG_CBUS is not set | ||
| 702 | |||
| 703 | # | ||
| 704 | # File systems | ||
| 705 | # | ||
| 706 | CONFIG_EXT2_FS=y | ||
| 707 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 708 | # CONFIG_EXT2_FS_XIP is not set | ||
| 709 | # CONFIG_EXT3_FS is not set | ||
| 710 | # CONFIG_EXT4DEV_FS is not set | ||
| 711 | # CONFIG_REISERFS_FS is not set | ||
| 712 | # CONFIG_JFS_FS is not set | ||
| 713 | # CONFIG_FS_POSIX_ACL is not set | ||
| 714 | # CONFIG_XFS_FS is not set | ||
| 715 | # CONFIG_GFS2_FS is not set | ||
| 716 | # CONFIG_OCFS2_FS is not set | ||
| 717 | # CONFIG_MINIX_FS is not set | ||
| 718 | # CONFIG_ROMFS_FS is not set | ||
| 719 | # CONFIG_INOTIFY is not set | ||
| 720 | # CONFIG_QUOTA is not set | ||
| 721 | CONFIG_DNOTIFY=y | ||
| 722 | # CONFIG_AUTOFS_FS is not set | ||
| 723 | # CONFIG_AUTOFS4_FS is not set | ||
| 724 | # CONFIG_FUSE_FS is not set | ||
| 725 | |||
| 726 | # | ||
| 727 | # CD-ROM/DVD Filesystems | ||
| 728 | # | ||
| 729 | # CONFIG_ISO9660_FS is not set | ||
| 730 | # CONFIG_UDF_FS is not set | ||
| 731 | |||
| 732 | # | ||
| 733 | # DOS/FAT/NT Filesystems | ||
| 734 | # | ||
| 735 | # CONFIG_MSDOS_FS is not set | ||
| 736 | # CONFIG_VFAT_FS is not set | ||
| 737 | # CONFIG_NTFS_FS is not set | ||
| 738 | |||
| 739 | # | ||
| 740 | # Pseudo filesystems | ||
| 741 | # | ||
| 742 | CONFIG_PROC_FS=y | ||
| 743 | CONFIG_PROC_SYSCTL=y | ||
| 744 | CONFIG_SYSFS=y | ||
| 745 | # CONFIG_TMPFS is not set | ||
| 746 | # CONFIG_HUGETLB_PAGE is not set | ||
| 747 | CONFIG_RAMFS=y | ||
| 748 | # CONFIG_CONFIGFS_FS is not set | ||
| 749 | |||
| 750 | # | ||
| 751 | # Miscellaneous filesystems | ||
| 752 | # | ||
| 753 | # CONFIG_ADFS_FS is not set | ||
| 754 | # CONFIG_AFFS_FS is not set | ||
| 755 | # CONFIG_HFS_FS is not set | ||
| 756 | # CONFIG_HFSPLUS_FS is not set | ||
| 757 | # CONFIG_BEFS_FS is not set | ||
| 758 | # CONFIG_BFS_FS is not set | ||
| 759 | # CONFIG_EFS_FS is not set | ||
| 760 | # CONFIG_CRAMFS is not set | ||
| 761 | # CONFIG_VXFS_FS is not set | ||
| 762 | # CONFIG_HPFS_FS is not set | ||
| 763 | # CONFIG_QNX4FS_FS is not set | ||
| 764 | # CONFIG_SYSV_FS is not set | ||
| 765 | # CONFIG_UFS_FS is not set | ||
| 766 | |||
| 767 | # | ||
| 768 | # Network File Systems | ||
| 769 | # | ||
| 770 | # CONFIG_NFS_FS is not set | ||
| 771 | # CONFIG_NFSD is not set | ||
| 772 | # CONFIG_SMB_FS is not set | ||
| 773 | # CONFIG_CIFS is not set | ||
| 774 | # CONFIG_NCP_FS is not set | ||
| 775 | # CONFIG_CODA_FS is not set | ||
| 776 | # CONFIG_AFS_FS is not set | ||
| 777 | # CONFIG_9P_FS is not set | ||
| 778 | |||
| 779 | # | ||
| 780 | # Partition Types | ||
| 781 | # | ||
| 782 | CONFIG_PARTITION_ADVANCED=y | ||
| 783 | # CONFIG_ACORN_PARTITION is not set | ||
| 784 | # CONFIG_OSF_PARTITION is not set | ||
| 785 | # CONFIG_AMIGA_PARTITION is not set | ||
| 786 | # CONFIG_ATARI_PARTITION is not set | ||
| 787 | # CONFIG_MAC_PARTITION is not set | ||
| 788 | CONFIG_MSDOS_PARTITION=y | ||
| 789 | # CONFIG_BSD_DISKLABEL is not set | ||
| 790 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 791 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 792 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 793 | # CONFIG_LDM_PARTITION is not set | ||
| 794 | # CONFIG_SGI_PARTITION is not set | ||
| 795 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 796 | # CONFIG_SUN_PARTITION is not set | ||
| 797 | # CONFIG_KARMA_PARTITION is not set | ||
| 798 | # CONFIG_EFI_PARTITION is not set | ||
| 799 | |||
| 800 | # | ||
| 801 | # Native Language Support | ||
| 802 | # | ||
| 803 | # CONFIG_NLS is not set | ||
| 804 | |||
| 805 | # | ||
| 806 | # Profiling support | ||
| 807 | # | ||
| 808 | # CONFIG_PROFILING is not set | ||
| 809 | |||
| 810 | # | ||
| 811 | # Kernel hacking | ||
| 812 | # | ||
| 813 | # CONFIG_PRINTK_TIME is not set | ||
| 814 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
| 815 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 816 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 817 | # CONFIG_DEBUG_KERNEL is not set | ||
| 818 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 819 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 820 | # CONFIG_DEBUG_FS is not set | ||
| 821 | CONFIG_FRAME_POINTER=y | ||
| 822 | # CONFIG_UNWIND_INFO is not set | ||
| 823 | # CONFIG_HEADERS_CHECK is not set | ||
| 824 | # CONFIG_DEBUG_USER is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # Security options | ||
| 828 | # | ||
| 829 | # CONFIG_KEYS is not set | ||
| 830 | # CONFIG_SECURITY is not set | ||
| 831 | |||
| 832 | # | ||
| 833 | # Cryptographic options | ||
| 834 | # | ||
| 835 | # CONFIG_CRYPTO is not set | ||
| 836 | |||
| 837 | # | ||
| 838 | # Library routines | ||
| 839 | # | ||
| 840 | CONFIG_CRC_CCITT=y | ||
| 841 | CONFIG_CRC16=y | ||
| 842 | CONFIG_CRC32=y | ||
| 843 | CONFIG_LIBCRC32C=y | ||
| 844 | CONFIG_PLIST=y | ||
diff --git a/arch/arm/configs/palmz71_defconfig b/arch/arm/configs/palmz71_defconfig new file mode 100644 index 000000000000..6361922e71c1 --- /dev/null +++ b/arch/arm/configs/palmz71_defconfig | |||
| @@ -0,0 +1,891 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.22-rc1-omap1 | ||
| 4 | # Thu Jun 7 05:13:00 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # Code maturity level options | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 34 | |||
| 35 | # | ||
| 36 | # General setup | ||
| 37 | # | ||
| 38 | CONFIG_LOCALVERSION="-z71" | ||
| 39 | CONFIG_LOCALVERSION_AUTO=y | ||
| 40 | CONFIG_SWAP=y | ||
| 41 | CONFIG_SYSVIPC=y | ||
| 42 | # CONFIG_IPC_NS is not set | ||
| 43 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 44 | # CONFIG_POSIX_MQUEUE is not set | ||
| 45 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 46 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
| 47 | # CONFIG_TASKSTATS is not set | ||
| 48 | # CONFIG_UTS_NS is not set | ||
| 49 | # CONFIG_AUDIT is not set | ||
| 50 | # CONFIG_IKCONFIG is not set | ||
| 51 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | ||
| 53 | # CONFIG_RELAY is not set | ||
| 54 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 55 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 56 | CONFIG_SYSCTL=y | ||
| 57 | # CONFIG_EMBEDDED is not set | ||
| 58 | CONFIG_UID16=y | ||
| 59 | CONFIG_SYSCTL_SYSCALL=y | ||
| 60 | CONFIG_KALLSYMS=y | ||
| 61 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 62 | CONFIG_HOTPLUG=y | ||
| 63 | CONFIG_PRINTK=y | ||
| 64 | CONFIG_BUG=y | ||
| 65 | CONFIG_ELF_CORE=y | ||
| 66 | CONFIG_BASE_FULL=y | ||
| 67 | CONFIG_FUTEX=y | ||
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | ||
| 70 | CONFIG_SIGNALFD=y | ||
| 71 | CONFIG_TIMERFD=y | ||
| 72 | CONFIG_EVENTFD=y | ||
| 73 | CONFIG_SHMEM=y | ||
| 74 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 75 | CONFIG_SLAB=y | ||
| 76 | # CONFIG_SLUB is not set | ||
| 77 | # CONFIG_SLOB is not set | ||
| 78 | CONFIG_RT_MUTEXES=y | ||
| 79 | # CONFIG_TINY_SHMEM is not set | ||
| 80 | CONFIG_BASE_SMALL=0 | ||
| 81 | |||
| 82 | # | ||
| 83 | # Loadable module support | ||
| 84 | # | ||
| 85 | # CONFIG_MODULES is not set | ||
| 86 | |||
| 87 | # | ||
| 88 | # Block layer | ||
| 89 | # | ||
| 90 | CONFIG_BLOCK=y | ||
| 91 | # CONFIG_LBD is not set | ||
| 92 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 93 | # CONFIG_LSF is not set | ||
| 94 | |||
| 95 | # | ||
| 96 | # IO Schedulers | ||
| 97 | # | ||
| 98 | CONFIG_IOSCHED_NOOP=y | ||
| 99 | # CONFIG_IOSCHED_AS is not set | ||
| 100 | # CONFIG_IOSCHED_DEADLINE is not set | ||
| 101 | # CONFIG_IOSCHED_CFQ is not set | ||
| 102 | # CONFIG_DEFAULT_AS is not set | ||
| 103 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 104 | # CONFIG_DEFAULT_CFQ is not set | ||
| 105 | CONFIG_DEFAULT_NOOP=y | ||
| 106 | CONFIG_DEFAULT_IOSCHED="noop" | ||
| 107 | |||
| 108 | # | ||
| 109 | # System Type | ||
| 110 | # | ||
| 111 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 112 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 113 | # CONFIG_ARCH_REALVIEW is not set | ||
| 114 | # CONFIG_ARCH_VERSATILE is not set | ||
| 115 | # CONFIG_ARCH_AT91 is not set | ||
| 116 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 117 | # CONFIG_ARCH_CLPS711X is not set | ||
| 118 | # CONFIG_ARCH_CO285 is not set | ||
| 119 | # CONFIG_ARCH_EBSA110 is not set | ||
| 120 | # CONFIG_ARCH_EP93XX is not set | ||
| 121 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 122 | # CONFIG_ARCH_NETX is not set | ||
| 123 | # CONFIG_ARCH_H720X is not set | ||
| 124 | # CONFIG_ARCH_IMX is not set | ||
| 125 | # CONFIG_ARCH_IOP13XX is not set | ||
| 126 | # CONFIG_ARCH_IOP32X is not set | ||
| 127 | # CONFIG_ARCH_IOP33X is not set | ||
| 128 | # CONFIG_ARCH_IXP23XX is not set | ||
| 129 | # CONFIG_ARCH_IXP2000 is not set | ||
| 130 | # CONFIG_ARCH_IXP4XX is not set | ||
| 131 | # CONFIG_ARCH_L7200 is not set | ||
| 132 | # CONFIG_ARCH_KS8695 is not set | ||
| 133 | # CONFIG_ARCH_NS9XXX is not set | ||
| 134 | # CONFIG_ARCH_PNX4008 is not set | ||
| 135 | # CONFIG_ARCH_PXA is not set | ||
| 136 | # CONFIG_ARCH_RPC is not set | ||
| 137 | # CONFIG_ARCH_SA1100 is not set | ||
| 138 | # CONFIG_ARCH_S3C2410 is not set | ||
| 139 | # CONFIG_ARCH_SHARK is not set | ||
| 140 | # CONFIG_ARCH_LH7A40X is not set | ||
| 141 | # CONFIG_ARCH_DAVINCI is not set | ||
| 142 | CONFIG_ARCH_OMAP=y | ||
| 143 | |||
| 144 | # | ||
| 145 | # TI OMAP Implementations | ||
| 146 | # | ||
| 147 | CONFIG_ARCH_OMAP1=y | ||
| 148 | # CONFIG_ARCH_OMAP2 is not set | ||
| 149 | |||
| 150 | # | ||
| 151 | # OMAP Feature Selections | ||
| 152 | # | ||
| 153 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 154 | # CONFIG_OMAP_BOOT_TAG is not set | ||
| 155 | # CONFIG_OMAP_GPIO_SWITCH is not set | ||
| 156 | CONFIG_OMAP_MUX=y | ||
| 157 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 158 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 159 | CONFIG_OMAP_MCBSP=y | ||
| 160 | # CONFIG_OMAP_MMU_FWK is not set | ||
| 161 | # CONFIG_OMAP_MBOX_FWK is not set | ||
| 162 | CONFIG_OMAP_MPU_TIMER=y | ||
| 163 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 164 | CONFIG_OMAP_LL_DEBUG_UART1=y | ||
| 165 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 166 | # CONFIG_OMAP_LL_DEBUG_UART3 is not set | ||
| 167 | # CONFIG_OMAP_LL_DEBUG_LCD is not set | ||
| 168 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 169 | # CONFIG_OMAP_DSP is not set | ||
| 170 | |||
| 171 | # | ||
| 172 | # OMAP Core Type | ||
| 173 | # | ||
| 174 | # CONFIG_ARCH_OMAP730 is not set | ||
| 175 | CONFIG_ARCH_OMAP15XX=y | ||
| 176 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 177 | |||
| 178 | # | ||
| 179 | # OMAP Board Type | ||
| 180 | # | ||
| 181 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 182 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 183 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 184 | CONFIG_MACH_OMAP_PALMZ71=y | ||
| 185 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 186 | # CONFIG_MACH_SX1 is not set | ||
| 187 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 188 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 189 | |||
| 190 | # | ||
| 191 | # OMAP CPU Speed | ||
| 192 | # | ||
| 193 | CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | ||
| 194 | # CONFIG_OMAP_ARM_168MHZ is not set | ||
| 195 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 196 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 197 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 198 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 199 | |||
| 200 | # | ||
| 201 | # Processor Type | ||
| 202 | # | ||
| 203 | CONFIG_CPU_32=y | ||
| 204 | CONFIG_CPU_ARM925T=y | ||
| 205 | CONFIG_CPU_32v4T=y | ||
| 206 | CONFIG_CPU_ABRT_EV4T=y | ||
| 207 | CONFIG_CPU_CACHE_V4WT=y | ||
| 208 | CONFIG_CPU_CACHE_VIVT=y | ||
| 209 | CONFIG_CPU_COPY_V4WB=y | ||
| 210 | CONFIG_CPU_TLB_V4WBI=y | ||
| 211 | CONFIG_CPU_CP15=y | ||
| 212 | CONFIG_CPU_CP15_MMU=y | ||
| 213 | |||
| 214 | # | ||
| 215 | # Processor Features | ||
| 216 | # | ||
| 217 | # CONFIG_ARM_THUMB is not set | ||
| 218 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 219 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 220 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 221 | # CONFIG_OUTER_CACHE is not set | ||
| 222 | |||
| 223 | # | ||
| 224 | # Bus support | ||
| 225 | # | ||
| 226 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 227 | |||
| 228 | # | ||
| 229 | # PCCARD (PCMCIA/CardBus) support | ||
| 230 | # | ||
| 231 | # CONFIG_PCCARD is not set | ||
| 232 | |||
| 233 | # | ||
| 234 | # Kernel Features | ||
| 235 | # | ||
| 236 | # CONFIG_TICK_ONESHOT is not set | ||
| 237 | # CONFIG_NO_HZ is not set | ||
| 238 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 239 | # CONFIG_PREEMPT is not set | ||
| 240 | CONFIG_HZ=100 | ||
| 241 | # CONFIG_AEABI is not set | ||
| 242 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 243 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 244 | CONFIG_FLATMEM_MANUAL=y | ||
| 245 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 246 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 247 | CONFIG_FLATMEM=y | ||
| 248 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 249 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 250 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 251 | # CONFIG_RESOURCES_64BIT is not set | ||
| 252 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 253 | # CONFIG_LEDS is not set | ||
| 254 | CONFIG_ALIGNMENT_TRAP=y | ||
| 255 | |||
| 256 | # | ||
| 257 | # Boot options | ||
| 258 | # | ||
| 259 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 260 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 261 | CONFIG_CMDLINE="" | ||
| 262 | # CONFIG_XIP_KERNEL is not set | ||
| 263 | # CONFIG_KEXEC is not set | ||
| 264 | |||
| 265 | # | ||
| 266 | # CPU Frequency scaling | ||
| 267 | # | ||
| 268 | # CONFIG_CPU_FREQ is not set | ||
| 269 | |||
| 270 | # | ||
| 271 | # Floating point emulation | ||
| 272 | # | ||
| 273 | |||
| 274 | # | ||
| 275 | # At least one emulation must be selected | ||
| 276 | # | ||
| 277 | CONFIG_FPE_NWFPE=y | ||
| 278 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 279 | # CONFIG_FPE_FASTFPE is not set | ||
| 280 | |||
| 281 | # | ||
| 282 | # Userspace binary formats | ||
| 283 | # | ||
| 284 | CONFIG_BINFMT_ELF=y | ||
| 285 | # CONFIG_BINFMT_AOUT is not set | ||
| 286 | # CONFIG_BINFMT_MISC is not set | ||
| 287 | # CONFIG_ARTHUR is not set | ||
| 288 | |||
| 289 | # | ||
| 290 | # Power management options | ||
| 291 | # | ||
| 292 | # CONFIG_PM is not set | ||
| 293 | |||
| 294 | # | ||
| 295 | # Networking | ||
| 296 | # | ||
| 297 | CONFIG_NET=y | ||
| 298 | |||
| 299 | # | ||
| 300 | # Networking options | ||
| 301 | # | ||
| 302 | CONFIG_PACKET=y | ||
| 303 | # CONFIG_PACKET_MMAP is not set | ||
| 304 | CONFIG_UNIX=y | ||
| 305 | CONFIG_XFRM=y | ||
| 306 | # CONFIG_XFRM_USER is not set | ||
| 307 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 308 | # CONFIG_XFRM_MIGRATE is not set | ||
| 309 | CONFIG_NET_KEY=y | ||
| 310 | # CONFIG_NET_KEY_MIGRATE is not set | ||
| 311 | CONFIG_INET=y | ||
| 312 | # CONFIG_IP_MULTICAST is not set | ||
| 313 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 314 | CONFIG_IP_FIB_HASH=y | ||
| 315 | # CONFIG_IP_PNP is not set | ||
| 316 | # CONFIG_NET_IPIP is not set | ||
| 317 | # CONFIG_NET_IPGRE is not set | ||
| 318 | # CONFIG_ARPD is not set | ||
| 319 | # CONFIG_SYN_COOKIES is not set | ||
| 320 | # CONFIG_INET_AH is not set | ||
| 321 | # CONFIG_INET_ESP is not set | ||
| 322 | # CONFIG_INET_IPCOMP is not set | ||
| 323 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 324 | # CONFIG_INET_TUNNEL is not set | ||
| 325 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 326 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 327 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 328 | # CONFIG_INET_DIAG is not set | ||
| 329 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 330 | CONFIG_TCP_CONG_CUBIC=y | ||
| 331 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 332 | # CONFIG_TCP_MD5SIG is not set | ||
| 333 | # CONFIG_IPV6 is not set | ||
| 334 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 335 | # CONFIG_INET6_TUNNEL is not set | ||
| 336 | # CONFIG_NETWORK_SECMARK is not set | ||
| 337 | # CONFIG_NETFILTER is not set | ||
| 338 | |||
| 339 | # | ||
| 340 | # DCCP Configuration (EXPERIMENTAL) | ||
| 341 | # | ||
| 342 | # CONFIG_IP_DCCP is not set | ||
| 343 | |||
| 344 | # | ||
| 345 | # SCTP Configuration (EXPERIMENTAL) | ||
| 346 | # | ||
| 347 | # CONFIG_IP_SCTP is not set | ||
| 348 | |||
| 349 | # | ||
| 350 | # TIPC Configuration (EXPERIMENTAL) | ||
| 351 | # | ||
| 352 | # CONFIG_TIPC is not set | ||
| 353 | # CONFIG_ATM is not set | ||
| 354 | # CONFIG_BRIDGE is not set | ||
| 355 | # CONFIG_VLAN_8021Q is not set | ||
| 356 | # CONFIG_DECNET is not set | ||
| 357 | # CONFIG_LLC2 is not set | ||
| 358 | # CONFIG_IPX is not set | ||
| 359 | # CONFIG_ATALK is not set | ||
| 360 | # CONFIG_X25 is not set | ||
| 361 | # CONFIG_LAPB is not set | ||
| 362 | # CONFIG_ECONET is not set | ||
| 363 | # CONFIG_WAN_ROUTER is not set | ||
| 364 | |||
| 365 | # | ||
| 366 | # QoS and/or fair queueing | ||
| 367 | # | ||
| 368 | # CONFIG_NET_SCHED is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # Network testing | ||
| 372 | # | ||
| 373 | # CONFIG_NET_PKTGEN is not set | ||
| 374 | # CONFIG_HAMRADIO is not set | ||
| 375 | # CONFIG_IRDA is not set | ||
| 376 | # CONFIG_BT is not set | ||
| 377 | # CONFIG_AF_RXRPC is not set | ||
| 378 | |||
| 379 | # | ||
| 380 | # Wireless | ||
| 381 | # | ||
| 382 | # CONFIG_CFG80211 is not set | ||
| 383 | # CONFIG_WIRELESS_EXT is not set | ||
| 384 | # CONFIG_MAC80211 is not set | ||
| 385 | # CONFIG_IEEE80211 is not set | ||
| 386 | # CONFIG_RFKILL is not set | ||
| 387 | |||
| 388 | # | ||
| 389 | # Device Drivers | ||
| 390 | # | ||
| 391 | |||
| 392 | # | ||
| 393 | # Generic Driver Options | ||
| 394 | # | ||
| 395 | CONFIG_STANDALONE=y | ||
| 396 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 397 | # CONFIG_FW_LOADER is not set | ||
| 398 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 399 | |||
| 400 | # | ||
| 401 | # Connector - unified userspace <-> kernelspace linker | ||
| 402 | # | ||
| 403 | # CONFIG_CONNECTOR is not set | ||
| 404 | # CONFIG_MTD is not set | ||
| 405 | |||
| 406 | # | ||
| 407 | # Parallel port support | ||
| 408 | # | ||
| 409 | # CONFIG_PARPORT is not set | ||
| 410 | |||
| 411 | # | ||
| 412 | # Plug and Play support | ||
| 413 | # | ||
| 414 | # CONFIG_PNPACPI is not set | ||
| 415 | |||
| 416 | # | ||
| 417 | # Block devices | ||
| 418 | # | ||
| 419 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 420 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 421 | # CONFIG_BLK_DEV_NBD is not set | ||
| 422 | # CONFIG_BLK_DEV_RAM is not set | ||
| 423 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 424 | # CONFIG_ATA_OVER_ETH is not set | ||
| 425 | |||
| 426 | # | ||
| 427 | # SCSI device support | ||
| 428 | # | ||
| 429 | # CONFIG_RAID_ATTRS is not set | ||
| 430 | # CONFIG_SCSI is not set | ||
| 431 | # CONFIG_SCSI_NETLINK is not set | ||
| 432 | # CONFIG_ATA is not set | ||
| 433 | |||
| 434 | # | ||
| 435 | # Multi-device support (RAID and LVM) | ||
| 436 | # | ||
| 437 | # CONFIG_MD is not set | ||
| 438 | |||
| 439 | # | ||
| 440 | # Network device support | ||
| 441 | # | ||
| 442 | # CONFIG_NETDEVICES is not set | ||
| 443 | # CONFIG_NETPOLL is not set | ||
| 444 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 445 | |||
| 446 | # | ||
| 447 | # ISDN subsystem | ||
| 448 | # | ||
| 449 | # CONFIG_ISDN is not set | ||
| 450 | |||
| 451 | # | ||
| 452 | # Input device support | ||
| 453 | # | ||
| 454 | CONFIG_INPUT=y | ||
| 455 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 456 | |||
| 457 | # | ||
| 458 | # Userland interfaces | ||
| 459 | # | ||
| 460 | CONFIG_INPUT_MOUSEDEV=y | ||
| 461 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 462 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=320 | ||
| 463 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=320 | ||
| 464 | # CONFIG_INPUT_JOYDEV is not set | ||
| 465 | CONFIG_INPUT_TSDEV=y | ||
| 466 | CONFIG_INPUT_TSDEV_SCREEN_X=320 | ||
| 467 | CONFIG_INPUT_TSDEV_SCREEN_Y=320 | ||
| 468 | # CONFIG_INPUT_EVDEV is not set | ||
| 469 | # CONFIG_INPUT_EVBUG is not set | ||
| 470 | |||
| 471 | # | ||
| 472 | # Input Device Drivers | ||
| 473 | # | ||
| 474 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 475 | # CONFIG_INPUT_MOUSE is not set | ||
| 476 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 477 | # CONFIG_INPUT_TABLET is not set | ||
| 478 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 479 | CONFIG_TOUCHSCREEN_ADS7846=y | ||
| 480 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
| 481 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
| 482 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
| 483 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
| 484 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
| 485 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
| 486 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
| 487 | # CONFIG_TOUCHSCREEN_UCB1400 is not set | ||
| 488 | # CONFIG_TOUCHSCREEN_TSC210X is not set | ||
| 489 | # CONFIG_TOUCHSCREEN_TSC2046 is not set | ||
| 490 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set | ||
| 491 | # CONFIG_INPUT_MISC is not set | ||
| 492 | |||
| 493 | # | ||
| 494 | # Hardware I/O ports | ||
| 495 | # | ||
| 496 | # CONFIG_SERIO is not set | ||
| 497 | # CONFIG_GAMEPORT is not set | ||
| 498 | |||
| 499 | # | ||
| 500 | # Character devices | ||
| 501 | # | ||
| 502 | CONFIG_VT=y | ||
| 503 | CONFIG_VT_CONSOLE=y | ||
| 504 | CONFIG_HW_CONSOLE=y | ||
| 505 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 506 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 507 | |||
| 508 | # | ||
| 509 | # Serial drivers | ||
| 510 | # | ||
| 511 | CONFIG_SERIAL_8250=y | ||
| 512 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 513 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 514 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 515 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 516 | |||
| 517 | # | ||
| 518 | # Non-8250 serial port support | ||
| 519 | # | ||
| 520 | CONFIG_SERIAL_CORE=y | ||
| 521 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 522 | CONFIG_UNIX98_PTYS=y | ||
| 523 | CONFIG_LEGACY_PTYS=y | ||
| 524 | CONFIG_LEGACY_PTY_COUNT=16 | ||
| 525 | |||
| 526 | # | ||
| 527 | # IPMI | ||
| 528 | # | ||
| 529 | # CONFIG_IPMI_HANDLER is not set | ||
| 530 | # CONFIG_WATCHDOG is not set | ||
| 531 | CONFIG_HW_RANDOM=y | ||
| 532 | # CONFIG_NVRAM is not set | ||
| 533 | # CONFIG_R3964 is not set | ||
| 534 | # CONFIG_RAW_DRIVER is not set | ||
| 535 | |||
| 536 | # | ||
| 537 | # TPM devices | ||
| 538 | # | ||
| 539 | # CONFIG_TCG_TPM is not set | ||
| 540 | # CONFIG_I2C is not set | ||
| 541 | |||
| 542 | # | ||
| 543 | # SPI support | ||
| 544 | # | ||
| 545 | CONFIG_SPI=y | ||
| 546 | CONFIG_SPI_MASTER=y | ||
| 547 | |||
| 548 | # | ||
| 549 | # SPI Master Controller Drivers | ||
| 550 | # | ||
| 551 | CONFIG_SPI_BITBANG=y | ||
| 552 | CONFIG_SPI_OMAP_UWIRE=y | ||
| 553 | |||
| 554 | # | ||
| 555 | # SPI Protocol Masters | ||
| 556 | # | ||
| 557 | # CONFIG_SPI_AT25 is not set | ||
| 558 | # CONFIG_SPI_TSC2101 is not set | ||
| 559 | # CONFIG_SPI_TSC2102 is not set | ||
| 560 | # CONFIG_SPI_TSC210X is not set | ||
| 561 | # CONFIG_SPI_TSC2301 is not set | ||
| 562 | # CONFIG_SPI_SPIDEV is not set | ||
| 563 | |||
| 564 | # | ||
| 565 | # Dallas's 1-wire bus | ||
| 566 | # | ||
| 567 | # CONFIG_W1 is not set | ||
| 568 | CONFIG_HWMON=y | ||
| 569 | # CONFIG_HWMON_VID is not set | ||
| 570 | # CONFIG_SENSORS_ABITUGURU is not set | ||
| 571 | # CONFIG_SENSORS_F71805F is not set | ||
| 572 | # CONFIG_SENSORS_LM70 is not set | ||
| 573 | # CONFIG_SENSORS_PC87427 is not set | ||
| 574 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 575 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 576 | # CONFIG_SENSORS_VT1211 is not set | ||
| 577 | # CONFIG_SENSORS_W83627HF is not set | ||
| 578 | # CONFIG_SENSORS_TSC210X is not set | ||
| 579 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
| 580 | |||
| 581 | # | ||
| 582 | # Misc devices | ||
| 583 | # | ||
| 584 | # CONFIG_BLINK is not set | ||
| 585 | |||
| 586 | # | ||
| 587 | # Multifunction device drivers | ||
| 588 | # | ||
| 589 | # CONFIG_MFD_SM501 is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # LED devices | ||
| 593 | # | ||
| 594 | # CONFIG_NEW_LEDS is not set | ||
| 595 | |||
| 596 | # | ||
| 597 | # LED drivers | ||
| 598 | # | ||
| 599 | |||
| 600 | # | ||
| 601 | # LED Triggers | ||
| 602 | # | ||
| 603 | |||
| 604 | # | ||
| 605 | # Multimedia devices | ||
| 606 | # | ||
| 607 | # CONFIG_VIDEO_DEV is not set | ||
| 608 | # CONFIG_DVB_CORE is not set | ||
| 609 | CONFIG_DAB=y | ||
| 610 | |||
| 611 | # | ||
| 612 | # Graphics support | ||
| 613 | # | ||
| 614 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
| 615 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | ||
| 616 | CONFIG_LCD_CLASS_DEVICE=y | ||
| 617 | CONFIG_BACKLIGHT_OMAP=y | ||
| 618 | |||
| 619 | # | ||
| 620 | # Display device support | ||
| 621 | # | ||
| 622 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 623 | # CONFIG_VGASTATE is not set | ||
| 624 | CONFIG_FB=y | ||
| 625 | CONFIG_FIRMWARE_EDID=y | ||
| 626 | # CONFIG_FB_DDC is not set | ||
| 627 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 628 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 629 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 630 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 631 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 632 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 633 | # CONFIG_FB_SYS_FOPS is not set | ||
| 634 | CONFIG_FB_DEFERRED_IO=y | ||
| 635 | # CONFIG_FB_SVGALIB is not set | ||
| 636 | # CONFIG_FB_MACMODES is not set | ||
| 637 | # CONFIG_FB_BACKLIGHT is not set | ||
| 638 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 639 | # CONFIG_FB_TILEBLITTING is not set | ||
| 640 | |||
| 641 | # | ||
| 642 | # Frame buffer hardware drivers | ||
| 643 | # | ||
| 644 | # CONFIG_FB_S1D13XXX is not set | ||
| 645 | CONFIG_FB_OMAP=y | ||
| 646 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 647 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 648 | # CONFIG_FB_OMAP_BOOTLOADER_INIT is not set | ||
| 649 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 650 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 651 | # CONFIG_FB_VIRTUAL is not set | ||
| 652 | |||
| 653 | # | ||
| 654 | # Console display driver support | ||
| 655 | # | ||
| 656 | # CONFIG_VGA_CONSOLE is not set | ||
| 657 | CONFIG_DUMMY_CONSOLE=y | ||
| 658 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 659 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 660 | # CONFIG_FONTS is not set | ||
| 661 | CONFIG_FONT_8x8=y | ||
| 662 | CONFIG_FONT_8x16=y | ||
| 663 | # CONFIG_LOGO is not set | ||
| 664 | |||
| 665 | # | ||
| 666 | # Sound | ||
| 667 | # | ||
| 668 | # CONFIG_SOUND is not set | ||
| 669 | |||
| 670 | # | ||
| 671 | # HID Devices | ||
| 672 | # | ||
| 673 | CONFIG_HID=y | ||
| 674 | # CONFIG_HID_DEBUG is not set | ||
| 675 | |||
| 676 | # | ||
| 677 | # USB support | ||
| 678 | # | ||
| 679 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 680 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 681 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 682 | # CONFIG_USB is not set | ||
| 683 | |||
| 684 | # | ||
| 685 | # Enable Host or Gadget support to see Inventra options | ||
| 686 | # | ||
| 687 | |||
| 688 | # | ||
| 689 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 690 | # | ||
| 691 | |||
| 692 | # | ||
| 693 | # USB Gadget Support | ||
| 694 | # | ||
| 695 | # CONFIG_USB_GADGET is not set | ||
| 696 | CONFIG_MMC=y | ||
| 697 | # CONFIG_MMC_DEBUG is not set | ||
| 698 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 699 | |||
| 700 | # | ||
| 701 | # MMC/SD Card Drivers | ||
| 702 | # | ||
| 703 | CONFIG_MMC_BLOCK=y | ||
| 704 | |||
| 705 | # | ||
| 706 | # MMC/SD Host Controller Drivers | ||
| 707 | # | ||
| 708 | CONFIG_MMC_OMAP=y | ||
| 709 | |||
| 710 | # | ||
| 711 | # Real Time Clock | ||
| 712 | # | ||
| 713 | CONFIG_RTC_LIB=y | ||
| 714 | CONFIG_RTC_CLASS=y | ||
| 715 | CONFIG_RTC_HCTOSYS=y | ||
| 716 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 717 | # CONFIG_RTC_DEBUG is not set | ||
| 718 | |||
| 719 | # | ||
| 720 | # RTC interfaces | ||
| 721 | # | ||
| 722 | CONFIG_RTC_INTF_SYSFS=y | ||
| 723 | CONFIG_RTC_INTF_PROC=y | ||
| 724 | CONFIG_RTC_INTF_DEV=y | ||
| 725 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 726 | # CONFIG_RTC_DRV_TEST is not set | ||
| 727 | |||
| 728 | # | ||
| 729 | # I2C RTC drivers | ||
| 730 | # | ||
| 731 | |||
| 732 | # | ||
| 733 | # SPI RTC drivers | ||
| 734 | # | ||
| 735 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 736 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 737 | |||
| 738 | # | ||
| 739 | # Platform RTC drivers | ||
| 740 | # | ||
| 741 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 742 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 743 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 744 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 745 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 746 | |||
| 747 | # | ||
| 748 | # on-CPU RTC drivers | ||
| 749 | # | ||
| 750 | CONFIG_RTC_DRV_OMAP=y | ||
| 751 | |||
| 752 | # | ||
| 753 | # CBUS support | ||
| 754 | # | ||
| 755 | # CONFIG_CBUS is not set | ||
| 756 | |||
| 757 | # | ||
| 758 | # File systems | ||
| 759 | # | ||
| 760 | CONFIG_EXT2_FS=y | ||
| 761 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 762 | # CONFIG_EXT2_FS_XIP is not set | ||
| 763 | # CONFIG_EXT3_FS is not set | ||
| 764 | # CONFIG_EXT4DEV_FS is not set | ||
| 765 | # CONFIG_REISERFS_FS is not set | ||
| 766 | # CONFIG_JFS_FS is not set | ||
| 767 | # CONFIG_FS_POSIX_ACL is not set | ||
| 768 | # CONFIG_XFS_FS is not set | ||
| 769 | # CONFIG_GFS2_FS is not set | ||
| 770 | # CONFIG_OCFS2_FS is not set | ||
| 771 | # CONFIG_MINIX_FS is not set | ||
| 772 | # CONFIG_ROMFS_FS is not set | ||
| 773 | # CONFIG_INOTIFY is not set | ||
| 774 | # CONFIG_QUOTA is not set | ||
| 775 | CONFIG_DNOTIFY=y | ||
| 776 | # CONFIG_AUTOFS_FS is not set | ||
| 777 | # CONFIG_AUTOFS4_FS is not set | ||
| 778 | # CONFIG_FUSE_FS is not set | ||
| 779 | |||
| 780 | # | ||
| 781 | # CD-ROM/DVD Filesystems | ||
| 782 | # | ||
| 783 | # CONFIG_ISO9660_FS is not set | ||
| 784 | # CONFIG_UDF_FS is not set | ||
| 785 | |||
| 786 | # | ||
| 787 | # DOS/FAT/NT Filesystems | ||
| 788 | # | ||
| 789 | # CONFIG_MSDOS_FS is not set | ||
| 790 | # CONFIG_VFAT_FS is not set | ||
| 791 | # CONFIG_NTFS_FS is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # Pseudo filesystems | ||
| 795 | # | ||
| 796 | CONFIG_PROC_FS=y | ||
| 797 | CONFIG_PROC_SYSCTL=y | ||
| 798 | CONFIG_SYSFS=y | ||
| 799 | # CONFIG_TMPFS is not set | ||
| 800 | # CONFIG_HUGETLB_PAGE is not set | ||
| 801 | CONFIG_RAMFS=y | ||
| 802 | # CONFIG_CONFIGFS_FS is not set | ||
| 803 | |||
| 804 | # | ||
| 805 | # Miscellaneous filesystems | ||
| 806 | # | ||
| 807 | # CONFIG_ADFS_FS is not set | ||
| 808 | # CONFIG_AFFS_FS is not set | ||
| 809 | # CONFIG_HFS_FS is not set | ||
| 810 | # CONFIG_HFSPLUS_FS is not set | ||
| 811 | # CONFIG_BEFS_FS is not set | ||
| 812 | # CONFIG_BFS_FS is not set | ||
| 813 | # CONFIG_EFS_FS is not set | ||
| 814 | # CONFIG_CRAMFS is not set | ||
| 815 | # CONFIG_VXFS_FS is not set | ||
| 816 | # CONFIG_HPFS_FS is not set | ||
| 817 | # CONFIG_QNX4FS_FS is not set | ||
| 818 | # CONFIG_SYSV_FS is not set | ||
| 819 | # CONFIG_UFS_FS is not set | ||
| 820 | |||
| 821 | # | ||
| 822 | # Network File Systems | ||
| 823 | # | ||
| 824 | # CONFIG_NFS_FS is not set | ||
| 825 | # CONFIG_NFSD is not set | ||
| 826 | # CONFIG_SMB_FS is not set | ||
| 827 | # CONFIG_CIFS is not set | ||
| 828 | # CONFIG_NCP_FS is not set | ||
| 829 | # CONFIG_CODA_FS is not set | ||
| 830 | # CONFIG_AFS_FS is not set | ||
| 831 | # CONFIG_9P_FS is not set | ||
| 832 | |||
| 833 | # | ||
| 834 | # Partition Types | ||
| 835 | # | ||
| 836 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 837 | CONFIG_MSDOS_PARTITION=y | ||
| 838 | |||
| 839 | # | ||
| 840 | # Native Language Support | ||
| 841 | # | ||
| 842 | # CONFIG_NLS is not set | ||
| 843 | |||
| 844 | # | ||
| 845 | # Distributed Lock Manager | ||
| 846 | # | ||
| 847 | # CONFIG_DLM is not set | ||
| 848 | |||
| 849 | # | ||
| 850 | # Profiling support | ||
| 851 | # | ||
| 852 | # CONFIG_PROFILING is not set | ||
| 853 | |||
| 854 | # | ||
| 855 | # Kernel hacking | ||
| 856 | # | ||
| 857 | # CONFIG_PRINTK_TIME is not set | ||
| 858 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 859 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 860 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 861 | # CONFIG_DEBUG_FS is not set | ||
| 862 | # CONFIG_HEADERS_CHECK is not set | ||
| 863 | # CONFIG_DEBUG_KERNEL is not set | ||
| 864 | CONFIG_DEBUG_BUGVERBOSE=y | ||
| 865 | CONFIG_FRAME_POINTER=y | ||
| 866 | # CONFIG_DEBUG_USER is not set | ||
| 867 | |||
| 868 | # | ||
| 869 | # Security options | ||
| 870 | # | ||
| 871 | # CONFIG_KEYS is not set | ||
| 872 | # CONFIG_SECURITY is not set | ||
| 873 | |||
| 874 | # | ||
| 875 | # Cryptographic options | ||
| 876 | # | ||
| 877 | # CONFIG_CRYPTO is not set | ||
| 878 | |||
| 879 | # | ||
| 880 | # Library routines | ||
| 881 | # | ||
| 882 | CONFIG_BITREVERSE=y | ||
| 883 | CONFIG_CRC_CCITT=y | ||
| 884 | CONFIG_CRC16=y | ||
| 885 | # CONFIG_CRC_ITU_T is not set | ||
| 886 | CONFIG_CRC32=y | ||
| 887 | CONFIG_LIBCRC32C=y | ||
| 888 | CONFIG_PLIST=y | ||
| 889 | CONFIG_HAS_IOMEM=y | ||
| 890 | CONFIG_HAS_IOPORT=y | ||
| 891 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/configs/sx1_defconfig b/arch/arm/configs/sx1_defconfig new file mode 100644 index 000000000000..853dcdd9f2e0 --- /dev/null +++ b/arch/arm/configs/sx1_defconfig | |||
| @@ -0,0 +1,1118 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.22-rc1-omap1 | ||
| 4 | # Thu Jun 7 05:16:10 2007 | ||
| 5 | # | ||
| 6 | CONFIG_ARM=y | ||
| 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
| 8 | CONFIG_GENERIC_GPIO=y | ||
| 9 | CONFIG_GENERIC_TIME=y | ||
| 10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 11 | CONFIG_MMU=y | ||
| 12 | # CONFIG_NO_IOPORT is not set | ||
| 13 | CONFIG_GENERIC_HARDIRQS=y | ||
| 14 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 15 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
| 18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 22 | CONFIG_GENERIC_HWEIGHT=y | ||
| 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 24 | CONFIG_ZONE_DMA=y | ||
| 25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 27 | |||
| 28 | # | ||
| 29 | # Code maturity level options | ||
| 30 | # | ||
| 31 | CONFIG_EXPERIMENTAL=y | ||
| 32 | CONFIG_BROKEN_ON_SMP=y | ||
| 33 | CONFIG_LOCK_KERNEL=y | ||
| 34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 35 | |||
| 36 | # | ||
| 37 | # General setup | ||
| 38 | # | ||
| 39 | CONFIG_LOCALVERSION="" | ||
| 40 | CONFIG_LOCALVERSION_AUTO=y | ||
| 41 | CONFIG_SWAP=y | ||
| 42 | CONFIG_SYSVIPC=y | ||
| 43 | # CONFIG_IPC_NS is not set | ||
| 44 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 45 | CONFIG_POSIX_MQUEUE=y | ||
| 46 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 47 | # CONFIG_TASKSTATS is not set | ||
| 48 | # CONFIG_UTS_NS is not set | ||
| 49 | # CONFIG_AUDIT is not set | ||
| 50 | CONFIG_IKCONFIG=y | ||
| 51 | # CONFIG_IKCONFIG_PROC is not set | ||
| 52 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 53 | CONFIG_SYSFS_DEPRECATED=y | ||
| 54 | # CONFIG_RELAY is not set | ||
| 55 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 56 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 57 | CONFIG_SYSCTL=y | ||
| 58 | CONFIG_EMBEDDED=y | ||
| 59 | CONFIG_UID16=y | ||
| 60 | CONFIG_SYSCTL_SYSCALL=y | ||
| 61 | # CONFIG_KALLSYMS is not set | ||
| 62 | CONFIG_HOTPLUG=y | ||
| 63 | CONFIG_PRINTK=y | ||
| 64 | CONFIG_BUG=y | ||
| 65 | # CONFIG_ELF_CORE is not set | ||
| 66 | # CONFIG_BASE_FULL is not set | ||
| 67 | CONFIG_FUTEX=y | ||
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | ||
| 70 | CONFIG_SIGNALFD=y | ||
| 71 | CONFIG_TIMERFD=y | ||
| 72 | CONFIG_EVENTFD=y | ||
| 73 | # CONFIG_SHMEM is not set | ||
| 74 | # CONFIG_VM_EVENT_COUNTERS is not set | ||
| 75 | # CONFIG_SLAB is not set | ||
| 76 | # CONFIG_SLUB is not set | ||
| 77 | CONFIG_SLOB=y | ||
| 78 | CONFIG_RT_MUTEXES=y | ||
| 79 | CONFIG_TINY_SHMEM=y | ||
| 80 | CONFIG_BASE_SMALL=1 | ||
| 81 | |||
| 82 | # | ||
| 83 | # Loadable module support | ||
| 84 | # | ||
| 85 | CONFIG_MODULES=y | ||
| 86 | CONFIG_MODULE_UNLOAD=y | ||
| 87 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 88 | # CONFIG_MODVERSIONS is not set | ||
| 89 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 90 | CONFIG_KMOD=y | ||
| 91 | |||
| 92 | # | ||
| 93 | # Block layer | ||
| 94 | # | ||
| 95 | CONFIG_BLOCK=y | ||
| 96 | # CONFIG_LBD is not set | ||
| 97 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 98 | # CONFIG_LSF is not set | ||
| 99 | |||
| 100 | # | ||
| 101 | # IO Schedulers | ||
| 102 | # | ||
| 103 | CONFIG_IOSCHED_NOOP=y | ||
| 104 | # CONFIG_IOSCHED_AS is not set | ||
| 105 | CONFIG_IOSCHED_DEADLINE=y | ||
| 106 | # CONFIG_IOSCHED_CFQ is not set | ||
| 107 | # CONFIG_DEFAULT_AS is not set | ||
| 108 | CONFIG_DEFAULT_DEADLINE=y | ||
| 109 | # CONFIG_DEFAULT_CFQ is not set | ||
| 110 | # CONFIG_DEFAULT_NOOP is not set | ||
| 111 | CONFIG_DEFAULT_IOSCHED="deadline" | ||
| 112 | |||
| 113 | # | ||
| 114 | # System Type | ||
| 115 | # | ||
| 116 | # CONFIG_ARCH_AAEC2000 is not set | ||
| 117 | # CONFIG_ARCH_INTEGRATOR is not set | ||
| 118 | # CONFIG_ARCH_REALVIEW is not set | ||
| 119 | # CONFIG_ARCH_VERSATILE is not set | ||
| 120 | # CONFIG_ARCH_AT91 is not set | ||
| 121 | # CONFIG_ARCH_CLPS7500 is not set | ||
| 122 | # CONFIG_ARCH_CLPS711X is not set | ||
| 123 | # CONFIG_ARCH_CO285 is not set | ||
| 124 | # CONFIG_ARCH_EBSA110 is not set | ||
| 125 | # CONFIG_ARCH_EP93XX is not set | ||
| 126 | # CONFIG_ARCH_FOOTBRIDGE is not set | ||
| 127 | # CONFIG_ARCH_NETX is not set | ||
| 128 | # CONFIG_ARCH_H720X is not set | ||
| 129 | # CONFIG_ARCH_IMX is not set | ||
| 130 | # CONFIG_ARCH_IOP13XX is not set | ||
| 131 | # CONFIG_ARCH_IOP32X is not set | ||
| 132 | # CONFIG_ARCH_IOP33X is not set | ||
| 133 | # CONFIG_ARCH_IXP23XX is not set | ||
| 134 | # CONFIG_ARCH_IXP2000 is not set | ||
| 135 | # CONFIG_ARCH_IXP4XX is not set | ||
| 136 | # CONFIG_ARCH_L7200 is not set | ||
| 137 | # CONFIG_ARCH_KS8695 is not set | ||
| 138 | # CONFIG_ARCH_NS9XXX is not set | ||
| 139 | # CONFIG_ARCH_PNX4008 is not set | ||
| 140 | # CONFIG_ARCH_PXA is not set | ||
| 141 | # CONFIG_ARCH_RPC is not set | ||
| 142 | # CONFIG_ARCH_SA1100 is not set | ||
| 143 | # CONFIG_ARCH_S3C2410 is not set | ||
| 144 | # CONFIG_ARCH_SHARK is not set | ||
| 145 | # CONFIG_ARCH_LH7A40X is not set | ||
| 146 | # CONFIG_ARCH_DAVINCI is not set | ||
| 147 | CONFIG_ARCH_OMAP=y | ||
| 148 | |||
| 149 | # | ||
| 150 | # TI OMAP Implementations | ||
| 151 | # | ||
| 152 | CONFIG_ARCH_OMAP1=y | ||
| 153 | # CONFIG_ARCH_OMAP2 is not set | ||
| 154 | |||
| 155 | # | ||
| 156 | # OMAP Feature Selections | ||
| 157 | # | ||
| 158 | # CONFIG_OMAP_RESET_CLOCKS is not set | ||
| 159 | CONFIG_OMAP_BOOT_TAG=y | ||
| 160 | # CONFIG_OMAP_BOOT_REASON is not set | ||
| 161 | # CONFIG_OMAP_COMPONENT_VERSION is not set | ||
| 162 | CONFIG_OMAP_GPIO_SWITCH=y | ||
| 163 | CONFIG_OMAP_MUX=y | ||
| 164 | # CONFIG_OMAP_MUX_DEBUG is not set | ||
| 165 | CONFIG_OMAP_MUX_WARNINGS=y | ||
| 166 | CONFIG_OMAP_MCBSP=y | ||
| 167 | CONFIG_OMAP_MMU_FWK=y | ||
| 168 | CONFIG_OMAP_MBOX_FWK=y | ||
| 169 | CONFIG_OMAP_MPU_TIMER=y | ||
| 170 | # CONFIG_OMAP_32K_TIMER is not set | ||
| 171 | # CONFIG_OMAP_LL_DEBUG_UART1 is not set | ||
| 172 | # CONFIG_OMAP_LL_DEBUG_UART2 is not set | ||
| 173 | CONFIG_OMAP_LL_DEBUG_UART3=y | ||
| 174 | # CONFIG_OMAP_LL_DEBUG_LCD is not set | ||
| 175 | CONFIG_OMAP_SERIAL_WAKE=y | ||
| 176 | CONFIG_OMAP_DSP=y | ||
| 177 | # CONFIG_OMAP_DSP_MBCMD_VERBOSE is not set | ||
| 178 | # CONFIG_OMAP_DSP_TASK_MULTIOPEN is not set | ||
| 179 | # CONFIG_OMAP_DSP_FBEXPORT is not set | ||
| 180 | |||
| 181 | # | ||
| 182 | # OMAP Core Type | ||
| 183 | # | ||
| 184 | # CONFIG_ARCH_OMAP730 is not set | ||
| 185 | CONFIG_ARCH_OMAP15XX=y | ||
| 186 | # CONFIG_ARCH_OMAP16XX is not set | ||
| 187 | |||
| 188 | # | ||
| 189 | # OMAP Board Type | ||
| 190 | # | ||
| 191 | # CONFIG_MACH_OMAP_INNOVATOR is not set | ||
| 192 | # CONFIG_MACH_VOICEBLUE is not set | ||
| 193 | # CONFIG_MACH_OMAP_PALMTE is not set | ||
| 194 | # CONFIG_MACH_OMAP_PALMZ71 is not set | ||
| 195 | # CONFIG_MACH_OMAP_PALMTT is not set | ||
| 196 | CONFIG_MACH_SX1=y | ||
| 197 | # CONFIG_MACH_AMS_DELTA is not set | ||
| 198 | # CONFIG_MACH_OMAP_GENERIC is not set | ||
| 199 | |||
| 200 | # | ||
| 201 | # OMAP CPU Speed | ||
| 202 | # | ||
| 203 | # CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER is not set | ||
| 204 | CONFIG_OMAP_ARM_168MHZ=y | ||
| 205 | # CONFIG_OMAP_ARM_150MHZ is not set | ||
| 206 | # CONFIG_OMAP_ARM_120MHZ is not set | ||
| 207 | # CONFIG_OMAP_ARM_60MHZ is not set | ||
| 208 | # CONFIG_OMAP_ARM_30MHZ is not set | ||
| 209 | |||
| 210 | # | ||
| 211 | # Processor Type | ||
| 212 | # | ||
| 213 | CONFIG_CPU_32=y | ||
| 214 | CONFIG_CPU_ARM925T=y | ||
| 215 | CONFIG_CPU_32v4T=y | ||
| 216 | CONFIG_CPU_ABRT_EV4T=y | ||
| 217 | CONFIG_CPU_CACHE_V4WT=y | ||
| 218 | CONFIG_CPU_CACHE_VIVT=y | ||
| 219 | CONFIG_CPU_COPY_V4WB=y | ||
| 220 | CONFIG_CPU_TLB_V4WBI=y | ||
| 221 | CONFIG_CPU_CP15=y | ||
| 222 | CONFIG_CPU_CP15_MMU=y | ||
| 223 | |||
| 224 | # | ||
| 225 | # Processor Features | ||
| 226 | # | ||
| 227 | CONFIG_ARM_THUMB=y | ||
| 228 | # CONFIG_CPU_ICACHE_DISABLE is not set | ||
| 229 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
| 230 | # CONFIG_CPU_DCACHE_WRITETHROUGH is not set | ||
| 231 | # CONFIG_OUTER_CACHE is not set | ||
| 232 | |||
| 233 | # | ||
| 234 | # Bus support | ||
| 235 | # | ||
| 236 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 237 | |||
| 238 | # | ||
| 239 | # PCCARD (PCMCIA/CardBus) support | ||
| 240 | # | ||
| 241 | # CONFIG_PCCARD is not set | ||
| 242 | |||
| 243 | # | ||
| 244 | # Kernel Features | ||
| 245 | # | ||
| 246 | # CONFIG_TICK_ONESHOT is not set | ||
| 247 | # CONFIG_NO_HZ is not set | ||
| 248 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 249 | CONFIG_PREEMPT=y | ||
| 250 | CONFIG_HZ=100 | ||
| 251 | # CONFIG_AEABI is not set | ||
| 252 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
| 253 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 254 | CONFIG_FLATMEM_MANUAL=y | ||
| 255 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 256 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 257 | CONFIG_FLATMEM=y | ||
| 258 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 259 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 260 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | ||
| 261 | # CONFIG_RESOURCES_64BIT is not set | ||
| 262 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 263 | # CONFIG_LEDS is not set | ||
| 264 | CONFIG_ALIGNMENT_TRAP=y | ||
| 265 | |||
| 266 | # | ||
| 267 | # Boot options | ||
| 268 | # | ||
| 269 | CONFIG_ZBOOT_ROM_TEXT=0x0 | ||
| 270 | CONFIG_ZBOOT_ROM_BSS=0x0 | ||
| 271 | CONFIG_CMDLINE="" | ||
| 272 | # CONFIG_XIP_KERNEL is not set | ||
| 273 | # CONFIG_KEXEC is not set | ||
| 274 | |||
| 275 | # | ||
| 276 | # CPU Frequency scaling | ||
| 277 | # | ||
| 278 | # CONFIG_CPU_FREQ is not set | ||
| 279 | |||
| 280 | # | ||
| 281 | # Floating point emulation | ||
| 282 | # | ||
| 283 | |||
| 284 | # | ||
| 285 | # At least one emulation must be selected | ||
| 286 | # | ||
| 287 | CONFIG_FPE_NWFPE=y | ||
| 288 | # CONFIG_FPE_NWFPE_XP is not set | ||
| 289 | # CONFIG_FPE_FASTFPE is not set | ||
| 290 | |||
| 291 | # | ||
| 292 | # Userspace binary formats | ||
| 293 | # | ||
| 294 | CONFIG_BINFMT_ELF=y | ||
| 295 | # CONFIG_BINFMT_AOUT is not set | ||
| 296 | CONFIG_BINFMT_MISC=y | ||
| 297 | # CONFIG_ARTHUR is not set | ||
| 298 | |||
| 299 | # | ||
| 300 | # Power management options | ||
| 301 | # | ||
| 302 | # CONFIG_PM is not set | ||
| 303 | |||
| 304 | # | ||
| 305 | # Networking | ||
| 306 | # | ||
| 307 | CONFIG_NET=y | ||
| 308 | |||
| 309 | # | ||
| 310 | # Networking options | ||
| 311 | # | ||
| 312 | CONFIG_PACKET=y | ||
| 313 | CONFIG_PACKET_MMAP=y | ||
| 314 | CONFIG_UNIX=y | ||
| 315 | # CONFIG_NET_KEY is not set | ||
| 316 | CONFIG_INET=y | ||
| 317 | # CONFIG_IP_MULTICAST is not set | ||
| 318 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 319 | CONFIG_IP_FIB_HASH=y | ||
| 320 | CONFIG_IP_PNP=y | ||
| 321 | # CONFIG_IP_PNP_DHCP is not set | ||
| 322 | # CONFIG_IP_PNP_BOOTP is not set | ||
| 323 | # CONFIG_IP_PNP_RARP is not set | ||
| 324 | # CONFIG_NET_IPIP is not set | ||
| 325 | # CONFIG_NET_IPGRE is not set | ||
| 326 | # CONFIG_ARPD is not set | ||
| 327 | # CONFIG_SYN_COOKIES is not set | ||
| 328 | # CONFIG_INET_AH is not set | ||
| 329 | # CONFIG_INET_ESP is not set | ||
| 330 | # CONFIG_INET_IPCOMP is not set | ||
| 331 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 332 | # CONFIG_INET_TUNNEL is not set | ||
| 333 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 334 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 335 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 336 | # CONFIG_INET_DIAG is not set | ||
| 337 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 338 | CONFIG_TCP_CONG_CUBIC=y | ||
| 339 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 340 | # CONFIG_TCP_MD5SIG is not set | ||
| 341 | # CONFIG_IPV6 is not set | ||
| 342 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 343 | # CONFIG_INET6_TUNNEL is not set | ||
| 344 | # CONFIG_NETWORK_SECMARK is not set | ||
| 345 | # CONFIG_NETFILTER is not set | ||
| 346 | |||
| 347 | # | ||
| 348 | # DCCP Configuration (EXPERIMENTAL) | ||
| 349 | # | ||
| 350 | # CONFIG_IP_DCCP is not set | ||
| 351 | |||
| 352 | # | ||
| 353 | # SCTP Configuration (EXPERIMENTAL) | ||
| 354 | # | ||
| 355 | # CONFIG_IP_SCTP is not set | ||
| 356 | |||
| 357 | # | ||
| 358 | # TIPC Configuration (EXPERIMENTAL) | ||
| 359 | # | ||
| 360 | # CONFIG_TIPC is not set | ||
| 361 | # CONFIG_ATM is not set | ||
| 362 | # CONFIG_BRIDGE is not set | ||
| 363 | # CONFIG_VLAN_8021Q is not set | ||
| 364 | # CONFIG_DECNET is not set | ||
| 365 | # CONFIG_LLC2 is not set | ||
| 366 | # CONFIG_IPX is not set | ||
| 367 | # CONFIG_ATALK is not set | ||
| 368 | # CONFIG_X25 is not set | ||
| 369 | # CONFIG_LAPB is not set | ||
| 370 | # CONFIG_ECONET is not set | ||
| 371 | # CONFIG_WAN_ROUTER is not set | ||
| 372 | |||
| 373 | # | ||
| 374 | # QoS and/or fair queueing | ||
| 375 | # | ||
| 376 | # CONFIG_NET_SCHED is not set | ||
| 377 | |||
| 378 | # | ||
| 379 | # Network testing | ||
| 380 | # | ||
| 381 | # CONFIG_NET_PKTGEN is not set | ||
| 382 | # CONFIG_HAMRADIO is not set | ||
| 383 | # CONFIG_IRDA is not set | ||
| 384 | # CONFIG_BT is not set | ||
| 385 | # CONFIG_AF_RXRPC is not set | ||
| 386 | |||
| 387 | # | ||
| 388 | # Wireless | ||
| 389 | # | ||
| 390 | # CONFIG_CFG80211 is not set | ||
| 391 | # CONFIG_WIRELESS_EXT is not set | ||
| 392 | # CONFIG_MAC80211 is not set | ||
| 393 | # CONFIG_IEEE80211 is not set | ||
| 394 | # CONFIG_RFKILL is not set | ||
| 395 | |||
| 396 | # | ||
| 397 | # Device Drivers | ||
| 398 | # | ||
| 399 | |||
| 400 | # | ||
| 401 | # Generic Driver Options | ||
| 402 | # | ||
| 403 | CONFIG_STANDALONE=y | ||
| 404 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 405 | # CONFIG_FW_LOADER is not set | ||
| 406 | # CONFIG_DEBUG_DRIVER is not set | ||
| 407 | # CONFIG_DEBUG_DEVRES is not set | ||
| 408 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 409 | |||
| 410 | # | ||
| 411 | # Connector - unified userspace <-> kernelspace linker | ||
| 412 | # | ||
| 413 | CONFIG_CONNECTOR=y | ||
| 414 | # CONFIG_PROC_EVENTS is not set | ||
| 415 | # CONFIG_MTD is not set | ||
| 416 | |||
| 417 | # | ||
| 418 | # Parallel port support | ||
| 419 | # | ||
| 420 | # CONFIG_PARPORT is not set | ||
| 421 | |||
| 422 | # | ||
| 423 | # Plug and Play support | ||
| 424 | # | ||
| 425 | # CONFIG_PNPACPI is not set | ||
| 426 | |||
| 427 | # | ||
| 428 | # Block devices | ||
| 429 | # | ||
| 430 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 431 | CONFIG_BLK_DEV_LOOP=m | ||
| 432 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 433 | # CONFIG_BLK_DEV_NBD is not set | ||
| 434 | CONFIG_BLK_DEV_RAM=m | ||
| 435 | CONFIG_BLK_DEV_RAM_COUNT=2 | ||
| 436 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
| 437 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
| 438 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 439 | # CONFIG_ATA_OVER_ETH is not set | ||
| 440 | |||
| 441 | # | ||
| 442 | # SCSI device support | ||
| 443 | # | ||
| 444 | # CONFIG_RAID_ATTRS is not set | ||
| 445 | # CONFIG_SCSI is not set | ||
| 446 | # CONFIG_SCSI_NETLINK is not set | ||
| 447 | # CONFIG_ATA is not set | ||
| 448 | |||
| 449 | # | ||
| 450 | # Multi-device support (RAID and LVM) | ||
| 451 | # | ||
| 452 | # CONFIG_MD is not set | ||
| 453 | |||
| 454 | # | ||
| 455 | # Network device support | ||
| 456 | # | ||
| 457 | CONFIG_NETDEVICES=y | ||
| 458 | # CONFIG_DUMMY is not set | ||
| 459 | # CONFIG_BONDING is not set | ||
| 460 | # CONFIG_EQUALIZER is not set | ||
| 461 | # CONFIG_TUN is not set | ||
| 462 | CONFIG_PHYLIB=y | ||
| 463 | |||
| 464 | # | ||
| 465 | # MII PHY device drivers | ||
| 466 | # | ||
| 467 | # CONFIG_MARVELL_PHY is not set | ||
| 468 | # CONFIG_DAVICOM_PHY is not set | ||
| 469 | # CONFIG_QSEMI_PHY is not set | ||
| 470 | # CONFIG_LXT_PHY is not set | ||
| 471 | # CONFIG_CICADA_PHY is not set | ||
| 472 | # CONFIG_VITESSE_PHY is not set | ||
| 473 | # CONFIG_SMSC_PHY is not set | ||
| 474 | # CONFIG_BROADCOM_PHY is not set | ||
| 475 | # CONFIG_FIXED_PHY is not set | ||
| 476 | |||
| 477 | # | ||
| 478 | # Ethernet (10 or 100Mbit) | ||
| 479 | # | ||
| 480 | CONFIG_NET_ETHERNET=y | ||
| 481 | CONFIG_MII=y | ||
| 482 | # CONFIG_SMC91X is not set | ||
| 483 | # CONFIG_DM9000 is not set | ||
| 484 | CONFIG_NETDEV_1000=y | ||
| 485 | CONFIG_NETDEV_10000=y | ||
| 486 | |||
| 487 | # | ||
| 488 | # Token Ring devices | ||
| 489 | # | ||
| 490 | |||
| 491 | # | ||
| 492 | # Wireless LAN | ||
| 493 | # | ||
| 494 | # CONFIG_WLAN_PRE80211 is not set | ||
| 495 | # CONFIG_WLAN_80211 is not set | ||
| 496 | # CONFIG_WAN is not set | ||
| 497 | # CONFIG_PPP is not set | ||
| 498 | # CONFIG_SLIP is not set | ||
| 499 | # CONFIG_SHAPER is not set | ||
| 500 | # CONFIG_NETCONSOLE is not set | ||
| 501 | # CONFIG_NETPOLL is not set | ||
| 502 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 503 | |||
| 504 | # | ||
| 505 | # ISDN subsystem | ||
| 506 | # | ||
| 507 | # CONFIG_ISDN is not set | ||
| 508 | |||
| 509 | # | ||
| 510 | # Input device support | ||
| 511 | # | ||
| 512 | CONFIG_INPUT=y | ||
| 513 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 514 | |||
| 515 | # | ||
| 516 | # Userland interfaces | ||
| 517 | # | ||
| 518 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 519 | # CONFIG_INPUT_JOYDEV is not set | ||
| 520 | # CONFIG_INPUT_TSDEV is not set | ||
| 521 | CONFIG_INPUT_EVDEV=y | ||
| 522 | # CONFIG_INPUT_EVBUG is not set | ||
| 523 | |||
| 524 | # | ||
| 525 | # Input Device Drivers | ||
| 526 | # | ||
| 527 | CONFIG_INPUT_KEYBOARD=y | ||
| 528 | # CONFIG_KEYBOARD_ATKBD is not set | ||
| 529 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 530 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 531 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 532 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 533 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 534 | CONFIG_KEYBOARD_OMAP=y | ||
| 535 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 536 | # CONFIG_INPUT_MOUSE is not set | ||
| 537 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 538 | # CONFIG_INPUT_TABLET is not set | ||
| 539 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 540 | # CONFIG_INPUT_MISC is not set | ||
| 541 | |||
| 542 | # | ||
| 543 | # Hardware I/O ports | ||
| 544 | # | ||
| 545 | # CONFIG_SERIO is not set | ||
| 546 | # CONFIG_GAMEPORT is not set | ||
| 547 | |||
| 548 | # | ||
| 549 | # Character devices | ||
| 550 | # | ||
| 551 | CONFIG_VT=y | ||
| 552 | CONFIG_VT_CONSOLE=y | ||
| 553 | CONFIG_HW_CONSOLE=y | ||
| 554 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 555 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 556 | |||
| 557 | # | ||
| 558 | # Serial drivers | ||
| 559 | # | ||
| 560 | CONFIG_SERIAL_8250=y | ||
| 561 | # CONFIG_SERIAL_8250_CONSOLE is not set | ||
| 562 | CONFIG_SERIAL_8250_NR_UARTS=3 | ||
| 563 | CONFIG_SERIAL_8250_RUNTIME_UARTS=3 | ||
| 564 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 565 | |||
| 566 | # | ||
| 567 | # Non-8250 serial port support | ||
| 568 | # | ||
| 569 | CONFIG_SERIAL_CORE=y | ||
| 570 | CONFIG_UNIX98_PTYS=y | ||
| 571 | # CONFIG_LEGACY_PTYS is not set | ||
| 572 | |||
| 573 | # | ||
| 574 | # IPMI | ||
| 575 | # | ||
| 576 | # CONFIG_IPMI_HANDLER is not set | ||
| 577 | # CONFIG_WATCHDOG is not set | ||
| 578 | # CONFIG_HW_RANDOM is not set | ||
| 579 | # CONFIG_NVRAM is not set | ||
| 580 | # CONFIG_R3964 is not set | ||
| 581 | # CONFIG_RAW_DRIVER is not set | ||
| 582 | |||
| 583 | # | ||
| 584 | # TPM devices | ||
| 585 | # | ||
| 586 | # CONFIG_TCG_TPM is not set | ||
| 587 | CONFIG_I2C=y | ||
| 588 | CONFIG_I2C_BOARDINFO=y | ||
| 589 | CONFIG_I2C_CHARDEV=y | ||
| 590 | |||
| 591 | # | ||
| 592 | # I2C Algorithms | ||
| 593 | # | ||
| 594 | # CONFIG_I2C_ALGOBIT is not set | ||
| 595 | # CONFIG_I2C_ALGOPCF is not set | ||
| 596 | # CONFIG_I2C_ALGOPCA is not set | ||
| 597 | |||
| 598 | # | ||
| 599 | # I2C Hardware Bus support | ||
| 600 | # | ||
| 601 | # CONFIG_I2C_GPIO is not set | ||
| 602 | # CONFIG_I2C_OCORES is not set | ||
| 603 | CONFIG_I2C_OMAP=y | ||
| 604 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 605 | # CONFIG_I2C_SIMTEC is not set | ||
| 606 | # CONFIG_I2C_STUB is not set | ||
| 607 | |||
| 608 | # | ||
| 609 | # Miscellaneous I2C Chip support | ||
| 610 | # | ||
| 611 | # CONFIG_SENSORS_DS1337 is not set | ||
| 612 | # CONFIG_SENSORS_DS1374 is not set | ||
| 613 | # CONFIG_SENSORS_EEPROM is not set | ||
| 614 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 615 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 616 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 617 | # CONFIG_TPS65010 is not set | ||
| 618 | # CONFIG_SENSORS_TLV320AIC23 is not set | ||
| 619 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 620 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 621 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 622 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 623 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 624 | |||
| 625 | # | ||
| 626 | # SPI support | ||
| 627 | # | ||
| 628 | # CONFIG_SPI is not set | ||
| 629 | # CONFIG_SPI_MASTER is not set | ||
| 630 | |||
| 631 | # | ||
| 632 | # Dallas's 1-wire bus | ||
| 633 | # | ||
| 634 | # CONFIG_W1 is not set | ||
| 635 | # CONFIG_HWMON is not set | ||
| 636 | |||
| 637 | # | ||
| 638 | # Misc devices | ||
| 639 | # | ||
| 640 | # CONFIG_BLINK is not set | ||
| 641 | |||
| 642 | # | ||
| 643 | # Multifunction device drivers | ||
| 644 | # | ||
| 645 | # CONFIG_MFD_SM501 is not set | ||
| 646 | |||
| 647 | # | ||
| 648 | # LED devices | ||
| 649 | # | ||
| 650 | # CONFIG_NEW_LEDS is not set | ||
| 651 | |||
| 652 | # | ||
| 653 | # LED drivers | ||
| 654 | # | ||
| 655 | |||
| 656 | # | ||
| 657 | # LED Triggers | ||
| 658 | # | ||
| 659 | |||
| 660 | # | ||
| 661 | # Multimedia devices | ||
| 662 | # | ||
| 663 | # CONFIG_VIDEO_DEV is not set | ||
| 664 | # CONFIG_DVB_CORE is not set | ||
| 665 | CONFIG_DAB=y | ||
| 666 | |||
| 667 | # | ||
| 668 | # Graphics support | ||
| 669 | # | ||
| 670 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 671 | |||
| 672 | # | ||
| 673 | # Display device support | ||
| 674 | # | ||
| 675 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 676 | # CONFIG_VGASTATE is not set | ||
| 677 | CONFIG_FB=y | ||
| 678 | # CONFIG_FIRMWARE_EDID is not set | ||
| 679 | # CONFIG_FB_DDC is not set | ||
| 680 | # CONFIG_FB_CFB_FILLRECT is not set | ||
| 681 | # CONFIG_FB_CFB_COPYAREA is not set | ||
| 682 | # CONFIG_FB_CFB_IMAGEBLIT is not set | ||
| 683 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 684 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 685 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 686 | # CONFIG_FB_SYS_FOPS is not set | ||
| 687 | CONFIG_FB_DEFERRED_IO=y | ||
| 688 | # CONFIG_FB_SVGALIB is not set | ||
| 689 | # CONFIG_FB_MACMODES is not set | ||
| 690 | # CONFIG_FB_BACKLIGHT is not set | ||
| 691 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 692 | # CONFIG_FB_TILEBLITTING is not set | ||
| 693 | |||
| 694 | # | ||
| 695 | # Frame buffer hardware drivers | ||
| 696 | # | ||
| 697 | # CONFIG_FB_S1D13XXX is not set | ||
| 698 | CONFIG_FB_OMAP=y | ||
| 699 | # CONFIG_FB_OMAP_LCDC_EXTERNAL is not set | ||
| 700 | # CONFIG_FB_OMAP_LCD_MIPID is not set | ||
| 701 | CONFIG_FB_OMAP_BOOTLOADER_INIT=y | ||
| 702 | CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE=2 | ||
| 703 | # CONFIG_FB_OMAP_DMA_TUNE is not set | ||
| 704 | # CONFIG_FB_VIRTUAL is not set | ||
| 705 | |||
| 706 | # | ||
| 707 | # Console display driver support | ||
| 708 | # | ||
| 709 | # CONFIG_VGA_CONSOLE is not set | ||
| 710 | CONFIG_DUMMY_CONSOLE=y | ||
| 711 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 712 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 713 | CONFIG_FONTS=y | ||
| 714 | # CONFIG_FONT_8x8 is not set | ||
| 715 | # CONFIG_FONT_8x16 is not set | ||
| 716 | # CONFIG_FONT_6x11 is not set | ||
| 717 | # CONFIG_FONT_7x14 is not set | ||
| 718 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 719 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 720 | CONFIG_FONT_MINI_4x6=y | ||
| 721 | # CONFIG_FONT_CLEAN_4x6 is not set | ||
| 722 | # CONFIG_FONT_CLEAN_5x8 is not set | ||
| 723 | # CONFIG_FONT_SUN8x16 is not set | ||
| 724 | # CONFIG_FONT_SUN12x22 is not set | ||
| 725 | # CONFIG_FONT_10x18 is not set | ||
| 726 | CONFIG_LOGO=y | ||
| 727 | # CONFIG_LOGO_LINUX_MONO is not set | ||
| 728 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
| 729 | CONFIG_LOGO_LINUX_CLUT224=y | ||
| 730 | |||
| 731 | # | ||
| 732 | # Sound | ||
| 733 | # | ||
| 734 | CONFIG_SOUND=y | ||
| 735 | |||
| 736 | # | ||
| 737 | # Advanced Linux Sound Architecture | ||
| 738 | # | ||
| 739 | CONFIG_SND=y | ||
| 740 | CONFIG_SND_TIMER=y | ||
| 741 | CONFIG_SND_PCM=y | ||
| 742 | # CONFIG_SND_SEQUENCER is not set | ||
| 743 | CONFIG_SND_OSSEMUL=y | ||
| 744 | CONFIG_SND_MIXER_OSS=y | ||
| 745 | CONFIG_SND_PCM_OSS=y | ||
| 746 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
| 747 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 748 | # CONFIG_SND_SUPPORT_OLD_API is not set | ||
| 749 | # CONFIG_SND_VERBOSE_PROCFS is not set | ||
| 750 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
| 751 | # CONFIG_SND_DEBUG is not set | ||
| 752 | |||
| 753 | # | ||
| 754 | # Generic devices | ||
| 755 | # | ||
| 756 | # CONFIG_SND_DUMMY is not set | ||
| 757 | # CONFIG_SND_MTPAV is not set | ||
| 758 | # CONFIG_SND_SERIAL_U16550 is not set | ||
| 759 | # CONFIG_SND_MPU401 is not set | ||
| 760 | |||
| 761 | # | ||
| 762 | # ALSA ARM devices | ||
| 763 | # | ||
| 764 | # CONFIG_SND_OMAP_AIC23 is not set | ||
| 765 | # CONFIG_SND_OMAP_TSC2101 is not set | ||
| 766 | CONFIG_SND_SX1=y | ||
| 767 | # CONFIG_SND_OMAP_TSC2102 is not set | ||
| 768 | # CONFIG_SND_OMAP24XX_EAC is not set | ||
| 769 | |||
| 770 | # | ||
| 771 | # System on Chip audio support | ||
| 772 | # | ||
| 773 | # CONFIG_SND_SOC is not set | ||
| 774 | |||
| 775 | # | ||
| 776 | # Open Sound System | ||
| 777 | # | ||
| 778 | # CONFIG_SOUND_PRIME is not set | ||
| 779 | |||
| 780 | # | ||
| 781 | # HID Devices | ||
| 782 | # | ||
| 783 | CONFIG_HID=y | ||
| 784 | # CONFIG_HID_DEBUG is not set | ||
| 785 | |||
| 786 | # | ||
| 787 | # USB support | ||
| 788 | # | ||
| 789 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 790 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 791 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 792 | # CONFIG_USB is not set | ||
| 793 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 794 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 795 | |||
| 796 | # | ||
| 797 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 798 | # | ||
| 799 | |||
| 800 | # | ||
| 801 | # USB Gadget Support | ||
| 802 | # | ||
| 803 | CONFIG_USB_GADGET=y | ||
| 804 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 805 | CONFIG_USB_GADGET_SELECTED=y | ||
| 806 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 807 | # CONFIG_USB_GADGET_NET2280 is not set | ||
| 808 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 809 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 810 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 811 | CONFIG_USB_GADGET_OMAP=y | ||
| 812 | CONFIG_USB_OMAP=y | ||
| 813 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 814 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 815 | # CONFIG_USB_GADGET_DUALSPEED is not set | ||
| 816 | # CONFIG_USB_ZERO is not set | ||
| 817 | CONFIG_USB_ETH=y | ||
| 818 | CONFIG_USB_ETH_RNDIS=y | ||
| 819 | # CONFIG_USB_GADGETFS is not set | ||
| 820 | # CONFIG_USB_FILE_STORAGE is not set | ||
| 821 | # CONFIG_USB_G_SERIAL is not set | ||
| 822 | # CONFIG_USB_MIDI_GADGET is not set | ||
| 823 | CONFIG_MMC=y | ||
| 824 | # CONFIG_MMC_DEBUG is not set | ||
| 825 | # CONFIG_MMC_UNSAFE_RESUME is not set | ||
| 826 | |||
| 827 | # | ||
| 828 | # MMC/SD Card Drivers | ||
| 829 | # | ||
| 830 | CONFIG_MMC_BLOCK=y | ||
| 831 | |||
| 832 | # | ||
| 833 | # MMC/SD Host Controller Drivers | ||
| 834 | # | ||
| 835 | CONFIG_MMC_OMAP=y | ||
| 836 | |||
| 837 | # | ||
| 838 | # Real Time Clock | ||
| 839 | # | ||
| 840 | CONFIG_RTC_LIB=y | ||
| 841 | CONFIG_RTC_CLASS=y | ||
| 842 | CONFIG_RTC_HCTOSYS=y | ||
| 843 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 844 | # CONFIG_RTC_DEBUG is not set | ||
| 845 | |||
| 846 | # | ||
| 847 | # RTC interfaces | ||
| 848 | # | ||
| 849 | CONFIG_RTC_INTF_SYSFS=y | ||
| 850 | CONFIG_RTC_INTF_PROC=y | ||
| 851 | CONFIG_RTC_INTF_DEV=y | ||
| 852 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 853 | # CONFIG_RTC_DRV_TEST is not set | ||
| 854 | |||
| 855 | # | ||
| 856 | # I2C RTC drivers | ||
| 857 | # | ||
| 858 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 859 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 860 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 861 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 862 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 863 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 864 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 865 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 866 | |||
| 867 | # | ||
| 868 | # SPI RTC drivers | ||
| 869 | # | ||
| 870 | |||
| 871 | # | ||
| 872 | # Platform RTC drivers | ||
| 873 | # | ||
| 874 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 875 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 876 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 877 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 878 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 879 | |||
| 880 | # | ||
| 881 | # on-CPU RTC drivers | ||
| 882 | # | ||
| 883 | CONFIG_RTC_DRV_OMAP=y | ||
| 884 | |||
| 885 | # | ||
| 886 | # CBUS support | ||
| 887 | # | ||
| 888 | # CONFIG_CBUS is not set | ||
| 889 | |||
| 890 | # | ||
| 891 | # File systems | ||
| 892 | # | ||
| 893 | CONFIG_EXT2_FS=y | ||
| 894 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 895 | # CONFIG_EXT2_FS_XIP is not set | ||
| 896 | # CONFIG_EXT3_FS is not set | ||
| 897 | # CONFIG_EXT4DEV_FS is not set | ||
| 898 | # CONFIG_REISERFS_FS is not set | ||
| 899 | # CONFIG_JFS_FS is not set | ||
| 900 | # CONFIG_FS_POSIX_ACL is not set | ||
| 901 | # CONFIG_XFS_FS is not set | ||
| 902 | # CONFIG_GFS2_FS is not set | ||
| 903 | # CONFIG_OCFS2_FS is not set | ||
| 904 | # CONFIG_MINIX_FS is not set | ||
| 905 | # CONFIG_ROMFS_FS is not set | ||
| 906 | CONFIG_INOTIFY=y | ||
| 907 | CONFIG_INOTIFY_USER=y | ||
| 908 | # CONFIG_QUOTA is not set | ||
| 909 | # CONFIG_DNOTIFY is not set | ||
| 910 | # CONFIG_AUTOFS_FS is not set | ||
| 911 | # CONFIG_AUTOFS4_FS is not set | ||
| 912 | # CONFIG_FUSE_FS is not set | ||
| 913 | |||
| 914 | # | ||
| 915 | # CD-ROM/DVD Filesystems | ||
| 916 | # | ||
| 917 | # CONFIG_ISO9660_FS is not set | ||
| 918 | # CONFIG_UDF_FS is not set | ||
| 919 | |||
| 920 | # | ||
| 921 | # DOS/FAT/NT Filesystems | ||
| 922 | # | ||
| 923 | CONFIG_FAT_FS=y | ||
| 924 | CONFIG_MSDOS_FS=y | ||
| 925 | CONFIG_VFAT_FS=y | ||
| 926 | CONFIG_FAT_DEFAULT_CODEPAGE=866 | ||
| 927 | CONFIG_FAT_DEFAULT_IOCHARSET="koi8-r" | ||
| 928 | # CONFIG_NTFS_FS is not set | ||
| 929 | |||
| 930 | # | ||
| 931 | # Pseudo filesystems | ||
| 932 | # | ||
| 933 | CONFIG_PROC_FS=y | ||
| 934 | CONFIG_PROC_SYSCTL=y | ||
| 935 | CONFIG_SYSFS=y | ||
| 936 | CONFIG_TMPFS=y | ||
| 937 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 938 | # CONFIG_HUGETLB_PAGE is not set | ||
| 939 | CONFIG_RAMFS=y | ||
| 940 | # CONFIG_CONFIGFS_FS is not set | ||
| 941 | |||
| 942 | # | ||
| 943 | # Miscellaneous filesystems | ||
| 944 | # | ||
| 945 | # CONFIG_ADFS_FS is not set | ||
| 946 | # CONFIG_AFFS_FS is not set | ||
| 947 | # CONFIG_HFS_FS is not set | ||
| 948 | # CONFIG_HFSPLUS_FS is not set | ||
| 949 | # CONFIG_BEFS_FS is not set | ||
| 950 | # CONFIG_BFS_FS is not set | ||
| 951 | # CONFIG_EFS_FS is not set | ||
| 952 | CONFIG_CRAMFS=y | ||
| 953 | # CONFIG_VXFS_FS is not set | ||
| 954 | # CONFIG_HPFS_FS is not set | ||
| 955 | # CONFIG_QNX4FS_FS is not set | ||
| 956 | # CONFIG_SYSV_FS is not set | ||
| 957 | # CONFIG_UFS_FS is not set | ||
| 958 | |||
| 959 | # | ||
| 960 | # Network File Systems | ||
| 961 | # | ||
| 962 | CONFIG_NFS_FS=y | ||
| 963 | # CONFIG_NFS_V3 is not set | ||
| 964 | # CONFIG_NFS_V4 is not set | ||
| 965 | # CONFIG_NFS_DIRECTIO is not set | ||
| 966 | # CONFIG_NFSD is not set | ||
| 967 | CONFIG_ROOT_NFS=y | ||
| 968 | CONFIG_LOCKD=y | ||
| 969 | CONFIG_NFS_COMMON=y | ||
| 970 | CONFIG_SUNRPC=y | ||
| 971 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 972 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 973 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 974 | # CONFIG_SMB_FS is not set | ||
| 975 | # CONFIG_CIFS is not set | ||
| 976 | # CONFIG_NCP_FS is not set | ||
| 977 | # CONFIG_CODA_FS is not set | ||
| 978 | # CONFIG_AFS_FS is not set | ||
| 979 | # CONFIG_9P_FS is not set | ||
| 980 | |||
| 981 | # | ||
| 982 | # Partition Types | ||
| 983 | # | ||
| 984 | CONFIG_PARTITION_ADVANCED=y | ||
| 985 | # CONFIG_ACORN_PARTITION is not set | ||
| 986 | # CONFIG_OSF_PARTITION is not set | ||
| 987 | # CONFIG_AMIGA_PARTITION is not set | ||
| 988 | # CONFIG_ATARI_PARTITION is not set | ||
| 989 | # CONFIG_MAC_PARTITION is not set | ||
| 990 | CONFIG_MSDOS_PARTITION=y | ||
| 991 | # CONFIG_BSD_DISKLABEL is not set | ||
| 992 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 993 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 994 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 995 | # CONFIG_LDM_PARTITION is not set | ||
| 996 | # CONFIG_SGI_PARTITION is not set | ||
| 997 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 998 | # CONFIG_SUN_PARTITION is not set | ||
| 999 | # CONFIG_KARMA_PARTITION is not set | ||
| 1000 | # CONFIG_EFI_PARTITION is not set | ||
| 1001 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1002 | |||
| 1003 | # | ||
| 1004 | # Native Language Support | ||
| 1005 | # | ||
| 1006 | CONFIG_NLS=y | ||
| 1007 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1008 | CONFIG_NLS_CODEPAGE_437=y | ||
| 1009 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
| 1010 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
| 1011 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
| 1012 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
| 1013 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
| 1014 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
| 1015 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
| 1016 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
| 1017 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
| 1018 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
| 1019 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
| 1020 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
| 1021 | CONFIG_NLS_CODEPAGE_866=y | ||
| 1022 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
| 1023 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
| 1024 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
| 1025 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
| 1026 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
| 1027 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
| 1028 | # CONFIG_NLS_ISO8859_8 is not set | ||
| 1029 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
| 1030 | CONFIG_NLS_CODEPAGE_1251=y | ||
| 1031 | # CONFIG_NLS_ASCII is not set | ||
| 1032 | CONFIG_NLS_ISO8859_1=y | ||
| 1033 | # CONFIG_NLS_ISO8859_2 is not set | ||
| 1034 | # CONFIG_NLS_ISO8859_3 is not set | ||
| 1035 | # CONFIG_NLS_ISO8859_4 is not set | ||
| 1036 | CONFIG_NLS_ISO8859_5=y | ||
| 1037 | # CONFIG_NLS_ISO8859_6 is not set | ||
| 1038 | # CONFIG_NLS_ISO8859_7 is not set | ||
| 1039 | # CONFIG_NLS_ISO8859_9 is not set | ||
| 1040 | # CONFIG_NLS_ISO8859_13 is not set | ||
| 1041 | # CONFIG_NLS_ISO8859_14 is not set | ||
| 1042 | # CONFIG_NLS_ISO8859_15 is not set | ||
| 1043 | CONFIG_NLS_KOI8_R=y | ||
| 1044 | # CONFIG_NLS_KOI8_U is not set | ||
| 1045 | CONFIG_NLS_UTF8=y | ||
| 1046 | |||
| 1047 | # | ||
| 1048 | # Distributed Lock Manager | ||
| 1049 | # | ||
| 1050 | # CONFIG_DLM is not set | ||
| 1051 | |||
| 1052 | # | ||
| 1053 | # Profiling support | ||
| 1054 | # | ||
| 1055 | CONFIG_PROFILING=y | ||
| 1056 | CONFIG_OPROFILE=y | ||
| 1057 | |||
| 1058 | # | ||
| 1059 | # Kernel hacking | ||
| 1060 | # | ||
| 1061 | # CONFIG_PRINTK_TIME is not set | ||
| 1062 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
| 1063 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 1064 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1065 | # CONFIG_DEBUG_FS is not set | ||
| 1066 | # CONFIG_HEADERS_CHECK is not set | ||
| 1067 | CONFIG_DEBUG_KERNEL=y | ||
| 1068 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 1069 | # CONFIG_DETECT_SOFTLOCKUP is not set | ||
| 1070 | # CONFIG_SCHEDSTATS is not set | ||
| 1071 | # CONFIG_TIMER_STATS is not set | ||
| 1072 | CONFIG_DEBUG_PREEMPT=y | ||
| 1073 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1074 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1075 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1076 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1077 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1078 | # CONFIG_PROVE_LOCKING is not set | ||
| 1079 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
| 1080 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1081 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1082 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 1083 | # CONFIG_DEBUG_INFO is not set | ||
| 1084 | # CONFIG_DEBUG_VM is not set | ||
| 1085 | # CONFIG_DEBUG_LIST is not set | ||
| 1086 | CONFIG_FRAME_POINTER=y | ||
| 1087 | CONFIG_FORCED_INLINING=y | ||
| 1088 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1089 | # CONFIG_FAULT_INJECTION is not set | ||
| 1090 | # CONFIG_DEBUG_USER is not set | ||
| 1091 | # CONFIG_DEBUG_ERRORS is not set | ||
| 1092 | # CONFIG_DEBUG_LL is not set | ||
| 1093 | |||
| 1094 | # | ||
| 1095 | # Security options | ||
| 1096 | # | ||
| 1097 | # CONFIG_KEYS is not set | ||
| 1098 | # CONFIG_SECURITY is not set | ||
| 1099 | |||
| 1100 | # | ||
| 1101 | # Cryptographic options | ||
| 1102 | # | ||
| 1103 | # CONFIG_CRYPTO is not set | ||
| 1104 | |||
| 1105 | # | ||
| 1106 | # Library routines | ||
| 1107 | # | ||
| 1108 | CONFIG_BITREVERSE=y | ||
| 1109 | CONFIG_CRC_CCITT=y | ||
| 1110 | CONFIG_CRC16=y | ||
| 1111 | # CONFIG_CRC_ITU_T is not set | ||
| 1112 | CONFIG_CRC32=y | ||
| 1113 | CONFIG_LIBCRC32C=y | ||
| 1114 | CONFIG_ZLIB_INFLATE=y | ||
| 1115 | CONFIG_PLIST=y | ||
| 1116 | CONFIG_HAS_IOMEM=y | ||
| 1117 | CONFIG_HAS_IOPORT=y | ||
| 1118 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/include/asm/byteorder.h b/arch/arm/include/asm/byteorder.h index 4fbfb22f65a0..d04a7a2bc2e9 100644 --- a/arch/arm/include/asm/byteorder.h +++ b/arch/arm/include/asm/byteorder.h | |||
| @@ -18,7 +18,15 @@ | |||
| 18 | #include <linux/compiler.h> | 18 | #include <linux/compiler.h> |
| 19 | #include <asm/types.h> | 19 | #include <asm/types.h> |
| 20 | 20 | ||
| 21 | static inline __attribute_const__ __u32 ___arch__swab32(__u32 x) | 21 | #ifdef __ARMEB__ |
| 22 | # define __BIG_ENDIAN | ||
| 23 | #else | ||
| 24 | # define __LITTLE_ENDIAN | ||
| 25 | #endif | ||
| 26 | |||
| 27 | #define __SWAB_64_THRU_32__ | ||
| 28 | |||
| 29 | static inline __attribute_const__ __u32 __arch_swab32(__u32 x) | ||
| 22 | { | 30 | { |
| 23 | __u32 t; | 31 | __u32 t; |
| 24 | 32 | ||
| @@ -40,19 +48,8 @@ static inline __attribute_const__ __u32 ___arch__swab32(__u32 x) | |||
| 40 | 48 | ||
| 41 | return x; | 49 | return x; |
| 42 | } | 50 | } |
| 51 | #define __arch_swab32 __arch_swab32 | ||
| 43 | 52 | ||
| 44 | #define __arch__swab32(x) ___arch__swab32(x) | 53 | #include <linux/byteorder.h> |
| 45 | |||
| 46 | #if !defined(__STRICT_ANSI__) || defined(__KERNEL__) | ||
| 47 | # define __BYTEORDER_HAS_U64__ | ||
| 48 | # define __SWAB_64_THRU_32__ | ||
| 49 | #endif | ||
| 50 | |||
| 51 | #ifdef __ARMEB__ | ||
| 52 | #include <linux/byteorder/big_endian.h> | ||
| 53 | #else | ||
| 54 | #include <linux/byteorder/little_endian.h> | ||
| 55 | #endif | ||
| 56 | 54 | ||
| 57 | #endif | 55 | #endif |
| 58 | |||
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h index 45329fca1b64..7b95d2058395 100644 --- a/arch/arm/include/asm/dma-mapping.h +++ b/arch/arm/include/asm/dma-mapping.h | |||
| @@ -3,11 +3,48 @@ | |||
| 3 | 3 | ||
| 4 | #ifdef __KERNEL__ | 4 | #ifdef __KERNEL__ |
| 5 | 5 | ||
| 6 | #include <linux/mm.h> /* need struct page */ | 6 | #include <linux/mm_types.h> |
| 7 | |||
| 8 | #include <linux/scatterlist.h> | 7 | #include <linux/scatterlist.h> |
| 9 | 8 | ||
| 10 | #include <asm-generic/dma-coherent.h> | 9 | #include <asm-generic/dma-coherent.h> |
| 10 | #include <asm/memory.h> | ||
| 11 | |||
| 12 | /* | ||
| 13 | * page_to_dma/dma_to_virt/virt_to_dma are architecture private functions | ||
| 14 | * used internally by the DMA-mapping API to provide DMA addresses. They | ||
| 15 | * must not be used by drivers. | ||
| 16 | */ | ||
| 17 | #ifndef __arch_page_to_dma | ||
| 18 | static inline dma_addr_t page_to_dma(struct device *dev, struct page *page) | ||
| 19 | { | ||
| 20 | return (dma_addr_t)__virt_to_bus((unsigned long)page_address(page)); | ||
| 21 | } | ||
| 22 | |||
| 23 | static inline void *dma_to_virt(struct device *dev, dma_addr_t addr) | ||
| 24 | { | ||
| 25 | return (void *)__bus_to_virt(addr); | ||
| 26 | } | ||
| 27 | |||
| 28 | static inline dma_addr_t virt_to_dma(struct device *dev, void *addr) | ||
| 29 | { | ||
| 30 | return (dma_addr_t)__virt_to_bus((unsigned long)(addr)); | ||
| 31 | } | ||
| 32 | #else | ||
| 33 | static inline dma_addr_t page_to_dma(struct device *dev, struct page *page) | ||
| 34 | { | ||
| 35 | return __arch_page_to_dma(dev, page); | ||
| 36 | } | ||
| 37 | |||
| 38 | static inline void *dma_to_virt(struct device *dev, dma_addr_t addr) | ||
| 39 | { | ||
| 40 | return __arch_dma_to_virt(dev, addr); | ||
| 41 | } | ||
| 42 | |||
| 43 | static inline dma_addr_t virt_to_dma(struct device *dev, void *addr) | ||
| 44 | { | ||
| 45 | return __arch_virt_to_dma(dev, addr); | ||
| 46 | } | ||
| 47 | #endif | ||
| 11 | 48 | ||
| 12 | /* | 49 | /* |
| 13 | * DMA-consistent mapping functions. These allocate/free a region of | 50 | * DMA-consistent mapping functions. These allocate/free a region of |
| @@ -169,7 +206,7 @@ dma_map_single(struct device *dev, void *cpu_addr, size_t size, | |||
| 169 | if (!arch_is_coherent()) | 206 | if (!arch_is_coherent()) |
| 170 | dma_cache_maint(cpu_addr, size, dir); | 207 | dma_cache_maint(cpu_addr, size, dir); |
| 171 | 208 | ||
| 172 | return virt_to_dma(dev, (unsigned long)cpu_addr); | 209 | return virt_to_dma(dev, cpu_addr); |
| 173 | } | 210 | } |
| 174 | #else | 211 | #else |
| 175 | extern dma_addr_t dma_map_single(struct device *,void *, size_t, enum dma_data_direction); | 212 | extern dma_addr_t dma_map_single(struct device *,void *, size_t, enum dma_data_direction); |
| @@ -195,7 +232,7 @@ dma_map_page(struct device *dev, struct page *page, | |||
| 195 | unsigned long offset, size_t size, | 232 | unsigned long offset, size_t size, |
| 196 | enum dma_data_direction dir) | 233 | enum dma_data_direction dir) |
| 197 | { | 234 | { |
| 198 | return dma_map_single(dev, page_address(page) + offset, size, (int)dir); | 235 | return dma_map_single(dev, page_address(page) + offset, size, dir); |
| 199 | } | 236 | } |
| 200 | 237 | ||
| 201 | /** | 238 | /** |
| @@ -241,7 +278,7 @@ static inline void | |||
| 241 | dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size, | 278 | dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size, |
| 242 | enum dma_data_direction dir) | 279 | enum dma_data_direction dir) |
| 243 | { | 280 | { |
| 244 | dma_unmap_single(dev, handle, size, (int)dir); | 281 | dma_unmap_single(dev, handle, size, dir); |
| 245 | } | 282 | } |
| 246 | 283 | ||
| 247 | /** | 284 | /** |
| @@ -314,11 +351,12 @@ extern void dma_unmap_sg(struct device *, struct scatterlist *, int, enum dma_da | |||
| 314 | 351 | ||
| 315 | 352 | ||
| 316 | /** | 353 | /** |
| 317 | * dma_sync_single_for_cpu | 354 | * dma_sync_single_range_for_cpu |
| 318 | * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices | 355 | * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices |
| 319 | * @handle: DMA address of buffer | 356 | * @handle: DMA address of buffer |
| 320 | * @size: size of buffer to map | 357 | * @offset: offset of region to start sync |
| 321 | * @dir: DMA transfer direction | 358 | * @size: size of region to sync |
| 359 | * @dir: DMA transfer direction (same as passed to dma_map_single) | ||
| 322 | * | 360 | * |
| 323 | * Make physical memory consistent for a single streaming mode DMA | 361 | * Make physical memory consistent for a single streaming mode DMA |
| 324 | * translation after a transfer. | 362 | * translation after a transfer. |
| @@ -332,25 +370,41 @@ extern void dma_unmap_sg(struct device *, struct scatterlist *, int, enum dma_da | |||
| 332 | */ | 370 | */ |
| 333 | #ifndef CONFIG_DMABOUNCE | 371 | #ifndef CONFIG_DMABOUNCE |
| 334 | static inline void | 372 | static inline void |
| 335 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t handle, size_t size, | 373 | dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t handle, |
| 336 | enum dma_data_direction dir) | 374 | unsigned long offset, size_t size, |
| 375 | enum dma_data_direction dir) | ||
| 337 | { | 376 | { |
| 338 | if (!arch_is_coherent()) | 377 | if (!arch_is_coherent()) |
| 339 | dma_cache_maint((void *)dma_to_virt(dev, handle), size, dir); | 378 | dma_cache_maint(dma_to_virt(dev, handle) + offset, size, dir); |
| 340 | } | 379 | } |
| 341 | 380 | ||
| 342 | static inline void | 381 | static inline void |
| 343 | dma_sync_single_for_device(struct device *dev, dma_addr_t handle, size_t size, | 382 | dma_sync_single_range_for_device(struct device *dev, dma_addr_t handle, |
| 344 | enum dma_data_direction dir) | 383 | unsigned long offset, size_t size, |
| 384 | enum dma_data_direction dir) | ||
| 345 | { | 385 | { |
| 346 | if (!arch_is_coherent()) | 386 | if (!arch_is_coherent()) |
| 347 | dma_cache_maint((void *)dma_to_virt(dev, handle), size, dir); | 387 | dma_cache_maint(dma_to_virt(dev, handle) + offset, size, dir); |
| 348 | } | 388 | } |
| 349 | #else | 389 | #else |
| 350 | extern void dma_sync_single_for_cpu(struct device*, dma_addr_t, size_t, enum dma_data_direction); | 390 | extern void dma_sync_single_range_for_cpu(struct device *, dma_addr_t, unsigned long, size_t, enum dma_data_direction); |
| 351 | extern void dma_sync_single_for_device(struct device*, dma_addr_t, size_t, enum dma_data_direction); | 391 | extern void dma_sync_single_range_for_device(struct device *, dma_addr_t, unsigned long, size_t, enum dma_data_direction); |
| 352 | #endif | 392 | #endif |
| 353 | 393 | ||
| 394 | static inline void | ||
| 395 | dma_sync_single_for_cpu(struct device *dev, dma_addr_t handle, size_t size, | ||
| 396 | enum dma_data_direction dir) | ||
| 397 | { | ||
| 398 | dma_sync_single_range_for_cpu(dev, handle, 0, size, dir); | ||
| 399 | } | ||
| 400 | |||
| 401 | static inline void | ||
| 402 | dma_sync_single_for_device(struct device *dev, dma_addr_t handle, size_t size, | ||
| 403 | enum dma_data_direction dir) | ||
| 404 | { | ||
| 405 | dma_sync_single_range_for_device(dev, handle, 0, size, dir); | ||
| 406 | } | ||
| 407 | |||
| 354 | 408 | ||
| 355 | /** | 409 | /** |
| 356 | * dma_sync_sg_for_cpu | 410 | * dma_sync_sg_for_cpu |
diff --git a/arch/arm/include/asm/kexec.h b/arch/arm/include/asm/kexec.h index c8986bb99ed5..df15a0dc228e 100644 --- a/arch/arm/include/asm/kexec.h +++ b/arch/arm/include/asm/kexec.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | /* Maximum address we can use for the control code buffer */ | 10 | /* Maximum address we can use for the control code buffer */ |
| 11 | #define KEXEC_CONTROL_MEMORY_LIMIT (-1UL) | 11 | #define KEXEC_CONTROL_MEMORY_LIMIT (-1UL) |
| 12 | 12 | ||
| 13 | #define KEXEC_CONTROL_CODE_SIZE 4096 | 13 | #define KEXEC_CONTROL_PAGE_SIZE 4096 |
| 14 | 14 | ||
| 15 | #define KEXEC_ARCH KEXEC_ARCH_ARM | 15 | #define KEXEC_ARCH KEXEC_ARCH_ARM |
| 16 | 16 | ||
diff --git a/arch/arm/include/asm/memory.h b/arch/arm/include/asm/memory.h index 1e070a2b561a..bf7c737c9226 100644 --- a/arch/arm/include/asm/memory.h +++ b/arch/arm/include/asm/memory.h | |||
| @@ -150,6 +150,14 @@ | |||
| 150 | #endif | 150 | #endif |
| 151 | 151 | ||
| 152 | /* | 152 | /* |
| 153 | * Amount of memory reserved for the vmalloc() area, and minimum | ||
| 154 | * address for vmalloc mappings. | ||
| 155 | */ | ||
| 156 | extern unsigned long vmalloc_reserve; | ||
| 157 | |||
| 158 | #define VMALLOC_MIN (void *)(VMALLOC_END - vmalloc_reserve) | ||
| 159 | |||
| 160 | /* | ||
| 153 | * PFNs are used to describe any physical page; this means | 161 | * PFNs are used to describe any physical page; this means |
| 154 | * PFN 0 == physical address 0. | 162 | * PFN 0 == physical address 0. |
| 155 | * | 163 | * |
| @@ -306,20 +314,6 @@ static inline __deprecated void *bus_to_virt(unsigned long x) | |||
| 306 | #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) | 314 | #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) |
| 307 | 315 | ||
| 308 | /* | 316 | /* |
| 309 | * Optional device DMA address remapping. Do _not_ use directly! | ||
| 310 | * We should really eliminate virt_to_bus() here - it's deprecated. | ||
| 311 | */ | ||
| 312 | #ifndef __arch_page_to_dma | ||
| 313 | #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page))) | ||
| 314 | #define dma_to_virt(dev, addr) ((void *)__bus_to_virt(addr)) | ||
| 315 | #define virt_to_dma(dev, addr) ((dma_addr_t)__virt_to_bus((unsigned long)(addr))) | ||
| 316 | #else | ||
| 317 | #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page)) | ||
| 318 | #define dma_to_virt(dev, addr) (__arch_dma_to_virt(dev, addr)) | ||
| 319 | #define virt_to_dma(dev, addr) (__arch_virt_to_dma(dev, addr)) | ||
| 320 | #endif | ||
| 321 | |||
| 322 | /* | ||
| 323 | * Optional coherency support. Currently used only by selected | 317 | * Optional coherency support. Currently used only by selected |
| 324 | * Intel XSC3-based systems. | 318 | * Intel XSC3-based systems. |
| 325 | */ | 319 | */ |
diff --git a/arch/arm/include/asm/mtd-xip.h b/arch/arm/include/asm/mtd-xip.h index 4225372a26f3..d8fbe2d9b8b9 100644 --- a/arch/arm/include/asm/mtd-xip.h +++ b/arch/arm/include/asm/mtd-xip.h | |||
| @@ -10,8 +10,6 @@ | |||
| 10 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
| 13 | * | ||
| 14 | * $Id: xip.h,v 1.2 2004/12/01 15:49:10 nico Exp $ | ||
| 15 | */ | 13 | */ |
| 16 | 14 | ||
| 17 | #ifndef __ARM_MTD_XIP_H__ | 15 | #ifndef __ARM_MTD_XIP_H__ |
diff --git a/arch/arm/include/asm/processor.h b/arch/arm/include/asm/processor.h index b01d5e7e3d5a..517a4d6ffc74 100644 --- a/arch/arm/include/asm/processor.h +++ b/arch/arm/include/asm/processor.h | |||
| @@ -112,9 +112,9 @@ extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); | |||
| 112 | static inline void prefetch(const void *ptr) | 112 | static inline void prefetch(const void *ptr) |
| 113 | { | 113 | { |
| 114 | __asm__ __volatile__( | 114 | __asm__ __volatile__( |
| 115 | "pld\t%0" | 115 | "pld\t%a0" |
| 116 | : | 116 | : |
| 117 | : "o" (*(char *)ptr) | 117 | : "p" (ptr) |
| 118 | : "cc"); | 118 | : "cc"); |
| 119 | } | 119 | } |
| 120 | 120 | ||
diff --git a/arch/arm/include/asm/tlbflush.h b/arch/arm/include/asm/tlbflush.h index 0d0d40f1b599..b543a054a17e 100644 --- a/arch/arm/include/asm/tlbflush.h +++ b/arch/arm/include/asm/tlbflush.h | |||
| @@ -54,6 +54,7 @@ | |||
| 54 | * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction | 54 | * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction |
| 55 | * fr - Feroceon (v4wbi with non-outer-cacheable page table walks) | 55 | * fr - Feroceon (v4wbi with non-outer-cacheable page table walks) |
| 56 | * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction | 56 | * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction |
| 57 | * v7wbi - identical to v6wbi | ||
| 57 | */ | 58 | */ |
| 58 | #undef _TLB | 59 | #undef _TLB |
| 59 | #undef MULTI_TLB | 60 | #undef MULTI_TLB |
| @@ -266,14 +267,16 @@ extern struct cpu_tlb_fns cpu_tlb; | |||
| 266 | v4wbi_possible_flags | \ | 267 | v4wbi_possible_flags | \ |
| 267 | fr_possible_flags | \ | 268 | fr_possible_flags | \ |
| 268 | v4wb_possible_flags | \ | 269 | v4wb_possible_flags | \ |
| 269 | v6wbi_possible_flags) | 270 | v6wbi_possible_flags | \ |
| 271 | v7wbi_possible_flags) | ||
| 270 | 272 | ||
| 271 | #define always_tlb_flags (v3_always_flags & \ | 273 | #define always_tlb_flags (v3_always_flags & \ |
| 272 | v4_always_flags & \ | 274 | v4_always_flags & \ |
| 273 | v4wbi_always_flags & \ | 275 | v4wbi_always_flags & \ |
| 274 | fr_always_flags & \ | 276 | fr_always_flags & \ |
| 275 | v4wb_always_flags & \ | 277 | v4wb_always_flags & \ |
| 276 | v6wbi_always_flags) | 278 | v6wbi_always_flags & \ |
| 279 | v7wbi_always_flags) | ||
| 277 | 280 | ||
| 278 | #define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f))) | 281 | #define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f))) |
| 279 | 282 | ||
diff --git a/arch/arm/include/asm/unistd.h b/arch/arm/include/asm/unistd.h index f95fbb2fcb5f..010618487cf1 100644 --- a/arch/arm/include/asm/unistd.h +++ b/arch/arm/include/asm/unistd.h | |||
| @@ -381,6 +381,12 @@ | |||
| 381 | #define __NR_fallocate (__NR_SYSCALL_BASE+352) | 381 | #define __NR_fallocate (__NR_SYSCALL_BASE+352) |
| 382 | #define __NR_timerfd_settime (__NR_SYSCALL_BASE+353) | 382 | #define __NR_timerfd_settime (__NR_SYSCALL_BASE+353) |
| 383 | #define __NR_timerfd_gettime (__NR_SYSCALL_BASE+354) | 383 | #define __NR_timerfd_gettime (__NR_SYSCALL_BASE+354) |
| 384 | #define __NR_signalfd4 (__NR_SYSCALL_BASE+355) | ||
| 385 | #define __NR_eventfd2 (__NR_SYSCALL_BASE+356) | ||
| 386 | #define __NR_epoll_create1 (__NR_SYSCALL_BASE+357) | ||
| 387 | #define __NR_dup3 (__NR_SYSCALL_BASE+358) | ||
| 388 | #define __NR_pipe2 (__NR_SYSCALL_BASE+359) | ||
| 389 | #define __NR_inotify_init1 (__NR_SYSCALL_BASE+360) | ||
| 384 | 390 | ||
| 385 | /* | 391 | /* |
| 386 | * The following SWIs are ARM private. | 392 | * The following SWIs are ARM private. |
diff --git a/arch/arm/kernel/.gitignore b/arch/arm/kernel/.gitignore new file mode 100644 index 000000000000..c5f676c3c224 --- /dev/null +++ b/arch/arm/kernel/.gitignore | |||
| @@ -0,0 +1 @@ | |||
| vmlinux.lds | |||
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index 30a67a5a40a8..09a061cb7838 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S | |||
| @@ -262,10 +262,10 @@ | |||
| 262 | /* 250 */ CALL(sys_epoll_create) | 262 | /* 250 */ CALL(sys_epoll_create) |
| 263 | CALL(ABI(sys_epoll_ctl, sys_oabi_epoll_ctl)) | 263 | CALL(ABI(sys_epoll_ctl, sys_oabi_epoll_ctl)) |
| 264 | CALL(ABI(sys_epoll_wait, sys_oabi_epoll_wait)) | 264 | CALL(ABI(sys_epoll_wait, sys_oabi_epoll_wait)) |
| 265 | CALL(sys_remap_file_pages) | 265 | CALL(sys_remap_file_pages) |
| 266 | CALL(sys_ni_syscall) /* sys_set_thread_area */ | 266 | CALL(sys_ni_syscall) /* sys_set_thread_area */ |
| 267 | /* 255 */ CALL(sys_ni_syscall) /* sys_get_thread_area */ | 267 | /* 255 */ CALL(sys_ni_syscall) /* sys_get_thread_area */ |
| 268 | CALL(sys_set_tid_address) | 268 | CALL(sys_set_tid_address) |
| 269 | CALL(sys_timer_create) | 269 | CALL(sys_timer_create) |
| 270 | CALL(sys_timer_settime) | 270 | CALL(sys_timer_settime) |
| 271 | CALL(sys_timer_gettime) | 271 | CALL(sys_timer_gettime) |
| @@ -364,6 +364,12 @@ | |||
| 364 | CALL(sys_fallocate) | 364 | CALL(sys_fallocate) |
| 365 | CALL(sys_timerfd_settime) | 365 | CALL(sys_timerfd_settime) |
| 366 | CALL(sys_timerfd_gettime) | 366 | CALL(sys_timerfd_gettime) |
| 367 | /* 355 */ CALL(sys_signalfd4) | ||
| 368 | CALL(sys_eventfd2) | ||
| 369 | CALL(sys_epoll_create1) | ||
| 370 | CALL(sys_dup3) | ||
| 371 | CALL(sys_pipe2) | ||
| 372 | /* 360 */ CALL(sys_inotify_init1) | ||
| 367 | #ifndef syscalls_counted | 373 | #ifndef syscalls_counted |
| 368 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls | 374 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls |
| 369 | #define syscalls_counted | 375 | #define syscalls_counted |
diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index db8f54a3451f..fae5beb3c3d6 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c | |||
| @@ -71,7 +71,7 @@ void machine_kexec(struct kimage *image) | |||
| 71 | 71 | ||
| 72 | 72 | ||
| 73 | flush_icache_range((unsigned long) reboot_code_buffer, | 73 | flush_icache_range((unsigned long) reboot_code_buffer, |
| 74 | (unsigned long) reboot_code_buffer + KEXEC_CONTROL_CODE_SIZE); | 74 | (unsigned long) reboot_code_buffer + KEXEC_CONTROL_PAGE_SIZE); |
| 75 | printk(KERN_INFO "Bye!\n"); | 75 | printk(KERN_INFO "Bye!\n"); |
| 76 | 76 | ||
| 77 | cpu_proc_fin(); | 77 | cpu_proc_fin(); |
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 38f0e7940a13..2ca7038b67a7 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
| @@ -81,6 +81,8 @@ EXPORT_SYMBOL(system_serial_high); | |||
| 81 | unsigned int elf_hwcap; | 81 | unsigned int elf_hwcap; |
| 82 | EXPORT_SYMBOL(elf_hwcap); | 82 | EXPORT_SYMBOL(elf_hwcap); |
| 83 | 83 | ||
| 84 | unsigned long __initdata vmalloc_reserve = 128 << 20; | ||
| 85 | |||
| 84 | 86 | ||
| 85 | #ifdef MULTI_CPU | 87 | #ifdef MULTI_CPU |
| 86 | struct processor processor; | 88 | struct processor processor; |
| @@ -501,6 +503,17 @@ static void __init early_mem(char **p) | |||
| 501 | __early_param("mem=", early_mem); | 503 | __early_param("mem=", early_mem); |
| 502 | 504 | ||
| 503 | /* | 505 | /* |
| 506 | * vmalloc=size forces the vmalloc area to be exactly 'size' | ||
| 507 | * bytes. This can be used to increase (or decrease) the vmalloc | ||
| 508 | * area - the default is 128m. | ||
| 509 | */ | ||
| 510 | static void __init early_vmalloc(char **arg) | ||
| 511 | { | ||
| 512 | vmalloc_reserve = memparse(*arg, arg); | ||
| 513 | } | ||
| 514 | __early_param("vmalloc=", early_vmalloc); | ||
| 515 | |||
| 516 | /* | ||
| 504 | * Initial parsing of the command line. | 517 | * Initial parsing of the command line. |
| 505 | */ | 518 | */ |
| 506 | static void __init parse_cmdline(char **cmdline_p, char *from) | 519 | static void __init parse_cmdline(char **cmdline_p, char *from) |
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index 7277aef83098..872f1f8fbb57 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
| @@ -288,14 +288,28 @@ void unregister_undef_hook(struct undef_hook *hook) | |||
| 288 | spin_unlock_irqrestore(&undef_lock, flags); | 288 | spin_unlock_irqrestore(&undef_lock, flags); |
| 289 | } | 289 | } |
| 290 | 290 | ||
| 291 | static int call_undef_hook(struct pt_regs *regs, unsigned int instr) | ||
| 292 | { | ||
| 293 | struct undef_hook *hook; | ||
| 294 | unsigned long flags; | ||
| 295 | int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL; | ||
| 296 | |||
| 297 | spin_lock_irqsave(&undef_lock, flags); | ||
| 298 | list_for_each_entry(hook, &undef_hook, node) | ||
| 299 | if ((instr & hook->instr_mask) == hook->instr_val && | ||
| 300 | (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val) | ||
| 301 | fn = hook->fn; | ||
| 302 | spin_unlock_irqrestore(&undef_lock, flags); | ||
| 303 | |||
| 304 | return fn ? fn(regs, instr) : 1; | ||
| 305 | } | ||
| 306 | |||
| 291 | asmlinkage void __exception do_undefinstr(struct pt_regs *regs) | 307 | asmlinkage void __exception do_undefinstr(struct pt_regs *regs) |
| 292 | { | 308 | { |
| 293 | unsigned int correction = thumb_mode(regs) ? 2 : 4; | 309 | unsigned int correction = thumb_mode(regs) ? 2 : 4; |
| 294 | unsigned int instr; | 310 | unsigned int instr; |
| 295 | struct undef_hook *hook; | ||
| 296 | siginfo_t info; | 311 | siginfo_t info; |
| 297 | void __user *pc; | 312 | void __user *pc; |
| 298 | unsigned long flags; | ||
| 299 | 313 | ||
| 300 | /* | 314 | /* |
| 301 | * According to the ARM ARM, PC is 2 or 4 bytes ahead, | 315 | * According to the ARM ARM, PC is 2 or 4 bytes ahead, |
| @@ -325,17 +339,8 @@ asmlinkage void __exception do_undefinstr(struct pt_regs *regs) | |||
| 325 | } | 339 | } |
| 326 | #endif | 340 | #endif |
| 327 | 341 | ||
| 328 | spin_lock_irqsave(&undef_lock, flags); | 342 | if (call_undef_hook(regs, instr) == 0) |
| 329 | list_for_each_entry(hook, &undef_hook, node) { | 343 | return; |
| 330 | if ((instr & hook->instr_mask) == hook->instr_val && | ||
| 331 | (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val) { | ||
| 332 | if (hook->fn(regs, instr) == 0) { | ||
| 333 | spin_unlock_irqrestore(&undef_lock, flags); | ||
| 334 | return; | ||
| 335 | } | ||
| 336 | } | ||
| 337 | } | ||
| 338 | spin_unlock_irqrestore(&undef_lock, flags); | ||
| 339 | 344 | ||
| 340 | #ifdef CONFIG_DEBUG_USER | 345 | #ifdef CONFIG_DEBUG_USER |
| 341 | if (user_debug & UDBG_UNDEFINED) { | 346 | if (user_debug & UDBG_UNDEFINED) { |
diff --git a/arch/arm/lib/sha1.S b/arch/arm/lib/sha1.S index ff6ece487ffc..67c2bf4774b7 100644 --- a/arch/arm/lib/sha1.S +++ b/arch/arm/lib/sha1.S | |||
| @@ -29,7 +29,7 @@ ENTRY(sha_transform) | |||
| 29 | stmfd sp!, {r4 - r8, lr} | 29 | stmfd sp!, {r4 - r8, lr} |
| 30 | 30 | ||
| 31 | @ for (i = 0; i < 16; i++) | 31 | @ for (i = 0; i < 16; i++) |
| 32 | @ W[i] = be32_to_cpu(in[i]); */ | 32 | @ W[i] = be32_to_cpu(in[i]); |
| 33 | 33 | ||
| 34 | #ifdef __ARMEB__ | 34 | #ifdef __ARMEB__ |
| 35 | mov r4, r0 | 35 | mov r4, r0 |
diff --git a/arch/arm/mach-footbridge/cats-pci.c b/arch/arm/mach-footbridge/cats-pci.c index 35eb232a649a..ae3e1c8c7583 100644 --- a/arch/arm/mach-footbridge/cats-pci.c +++ b/arch/arm/mach-footbridge/cats-pci.c | |||
| @@ -18,6 +18,9 @@ static int irqmap_cats[] __initdata = { IRQ_PCI, IRQ_IN0, IRQ_IN1, IRQ_IN3 }; | |||
| 18 | 18 | ||
| 19 | static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 19 | static int __init cats_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
| 20 | { | 20 | { |
| 21 | if (dev->irq >= 255) | ||
| 22 | return -1; /* not a valid interrupt. */ | ||
| 23 | |||
| 21 | if (dev->irq >= 128) | 24 | if (dev->irq >= 128) |
| 22 | return dev->irq & 0x1f; | 25 | return dev->irq & 0x1f; |
| 23 | 26 | ||
diff --git a/arch/arm/mach-footbridge/time.c b/arch/arm/mach-footbridge/time.c index fd9a7c11d62d..004819ea85c8 100644 --- a/arch/arm/mach-footbridge/time.c +++ b/arch/arm/mach-footbridge/time.c | |||
| @@ -49,12 +49,12 @@ static unsigned long __init get_isa_cmos_time(void) | |||
| 49 | } while (sec != CMOS_READ(RTC_SECONDS)); | 49 | } while (sec != CMOS_READ(RTC_SECONDS)); |
| 50 | 50 | ||
| 51 | if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { | 51 | if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { |
| 52 | BCD_TO_BIN(sec); | 52 | sec = bcd2bin(sec); |
| 53 | BCD_TO_BIN(min); | 53 | min = bcd2bin(min); |
| 54 | BCD_TO_BIN(hour); | 54 | hour = bcd2bin(hour); |
| 55 | BCD_TO_BIN(day); | 55 | day = bcd2bin(day); |
| 56 | BCD_TO_BIN(mon); | 56 | mon = bcd2bin(mon); |
| 57 | BCD_TO_BIN(year); | 57 | year = bcd2bin(year); |
| 58 | } | 58 | } |
| 59 | if ((year += 1900) < 1970) | 59 | if ((year += 1900) < 1970) |
| 60 | year += 100; | 60 | year += 100; |
| @@ -76,7 +76,7 @@ static int set_isa_cmos_time(void) | |||
| 76 | 76 | ||
| 77 | cmos_minutes = CMOS_READ(RTC_MINUTES); | 77 | cmos_minutes = CMOS_READ(RTC_MINUTES); |
| 78 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) | 78 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) |
| 79 | BCD_TO_BIN(cmos_minutes); | 79 | cmos_minutes = bcd2bin(cmos_minutes); |
| 80 | 80 | ||
| 81 | /* | 81 | /* |
| 82 | * since we're only adjusting minutes and seconds, | 82 | * since we're only adjusting minutes and seconds, |
| @@ -92,8 +92,8 @@ static int set_isa_cmos_time(void) | |||
| 92 | 92 | ||
| 93 | if (abs(real_minutes - cmos_minutes) < 30) { | 93 | if (abs(real_minutes - cmos_minutes) < 30) { |
| 94 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { | 94 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { |
| 95 | BIN_TO_BCD(real_seconds); | 95 | real_seconds = bin2bcd(real_seconds); |
| 96 | BIN_TO_BCD(real_minutes); | 96 | real_minutes = bin2bcd(real_minutes); |
| 97 | } | 97 | } |
| 98 | CMOS_WRITE(real_seconds,RTC_SECONDS); | 98 | CMOS_WRITE(real_seconds,RTC_SECONDS); |
| 99 | CMOS_WRITE(real_minutes,RTC_MINUTES); | 99 | CMOS_WRITE(real_minutes,RTC_MINUTES); |
diff --git a/arch/arm/mach-integrator/cpu.c b/arch/arm/mach-integrator/cpu.c index ce5ea7c26675..7c49d55e6b27 100644 --- a/arch/arm/mach-integrator/cpu.c +++ b/arch/arm/mach-integrator/cpu.c | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2002 Deep Blue Solutions Ltd. | 4 | * Copyright (C) 2001-2002 Deep Blue Solutions Ltd. |
| 5 | * | 5 | * |
| 6 | * $Id: cpu.c,v 1.6 2002/07/18 13:58:51 rmk Exp $ | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
diff --git a/arch/arm/mach-integrator/impd1.c b/arch/arm/mach-integrator/impd1.c index 0a7b3267c8d8..3c8383dbe9e6 100644 --- a/arch/arm/mach-integrator/impd1.c +++ b/arch/arm/mach-integrator/impd1.c | |||
| @@ -405,7 +405,7 @@ static int impd1_probe(struct lm_device *dev) | |||
| 405 | 405 | ||
| 406 | ret = amba_device_register(d, &dev->resource); | 406 | ret = amba_device_register(d, &dev->resource); |
| 407 | if (ret) { | 407 | if (ret) { |
| 408 | dev_err(&d->dev, "unable to register device: %d\n"); | 408 | dev_err(&d->dev, "unable to register device: %d\n", ret); |
| 409 | kfree(d); | 409 | kfree(d); |
| 410 | } | 410 | } |
| 411 | } | 411 | } |
diff --git a/arch/arm/mach-integrator/include/mach/platform.h b/arch/arm/mach-integrator/include/mach/platform.h index 83c4c1ceb411..028b87839c0f 100644 --- a/arch/arm/mach-integrator/include/mach/platform.h +++ b/arch/arm/mach-integrator/include/mach/platform.h | |||
| @@ -26,8 +26,6 @@ | |||
| 26 | * NOTE: This is a multi-hosted header file for use with uHAL and | 26 | * NOTE: This is a multi-hosted header file for use with uHAL and |
| 27 | * supported debuggers. | 27 | * supported debuggers. |
| 28 | * | 28 | * |
| 29 | * $Id: platform.s,v 1.32 2000/02/18 10:51:39 asims Exp $ | ||
| 30 | * | ||
| 31 | * ***********************************************************************/ | 29 | * ***********************************************************************/ |
| 32 | 30 | ||
| 33 | #ifndef __address_h | 31 | #ifndef __address_h |
diff --git a/arch/arm/mach-ixp4xx/fsg-setup.c b/arch/arm/mach-ixp4xx/fsg-setup.c index 0db3a909ae61..501dfdcc39fe 100644 --- a/arch/arm/mach-ixp4xx/fsg-setup.c +++ b/arch/arm/mach-ixp4xx/fsg-setup.c | |||
| @@ -64,7 +64,7 @@ static struct platform_device fsg_i2c_gpio = { | |||
| 64 | 64 | ||
| 65 | static struct i2c_board_info __initdata fsg_i2c_board_info [] = { | 65 | static struct i2c_board_info __initdata fsg_i2c_board_info [] = { |
| 66 | { | 66 | { |
| 67 | I2C_BOARD_INFO("rtc-isl1208", 0x6f), | 67 | I2C_BOARD_INFO("isl1208", 0x6f), |
| 68 | }, | 68 | }, |
| 69 | }; | 69 | }; |
| 70 | 70 | ||
| @@ -179,7 +179,6 @@ static void __init fsg_init(void) | |||
| 179 | { | 179 | { |
| 180 | DECLARE_MAC_BUF(mac_buf); | 180 | DECLARE_MAC_BUF(mac_buf); |
| 181 | uint8_t __iomem *f; | 181 | uint8_t __iomem *f; |
| 182 | int i; | ||
| 183 | 182 | ||
| 184 | ixp4xx_sys_init(); | 183 | ixp4xx_sys_init(); |
| 185 | 184 | ||
| @@ -228,6 +227,7 @@ static void __init fsg_init(void) | |||
| 228 | f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000); | 227 | f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000); |
| 229 | if (f) { | 228 | if (f) { |
| 230 | #ifdef __ARMEB__ | 229 | #ifdef __ARMEB__ |
| 230 | int i; | ||
| 231 | for (i = 0; i < 6; i++) { | 231 | for (i = 0; i < 6; i++) { |
| 232 | fsg_plat_eth[0].hwaddr[i] = readb(f + 0x3C0422 + i); | 232 | fsg_plat_eth[0].hwaddr[i] = readb(f + 0x3C0422 + i); |
| 233 | fsg_plat_eth[1].hwaddr[i] = readb(f + 0x3C043B + i); | 233 | fsg_plat_eth[1].hwaddr[i] = readb(f + 0x3C043B + i); |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index 0e509b8ad56e..189f16f3619d 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
| @@ -15,15 +15,17 @@ | |||
| 15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
| 16 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
| 17 | #include <linux/ata_platform.h> | 17 | #include <linux/ata_platform.h> |
| 18 | #include <linux/spi/orion_spi.h> | ||
| 18 | #include <asm/page.h> | 19 | #include <asm/page.h> |
| 19 | #include <asm/timex.h> | 20 | #include <asm/timex.h> |
| 20 | #include <asm/mach/map.h> | 21 | #include <asm/mach/map.h> |
| 21 | #include <asm/mach/time.h> | 22 | #include <asm/mach/time.h> |
| 22 | #include <mach/kirkwood.h> | 23 | #include <mach/kirkwood.h> |
| 23 | #include <asm/plat-orion/cache-feroceon-l2.h> | 24 | #include <plat/cache-feroceon-l2.h> |
| 24 | #include <asm/plat-orion/ehci-orion.h> | 25 | #include <plat/ehci-orion.h> |
| 25 | #include <asm/plat-orion/orion_nand.h> | 26 | #include <plat/mv_xor.h> |
| 26 | #include <asm/plat-orion/time.h> | 27 | #include <plat/orion_nand.h> |
| 28 | #include <plat/time.h> | ||
| 27 | #include "common.h" | 29 | #include "common.h" |
| 28 | 30 | ||
| 29 | /***************************************************************************** | 31 | /***************************************************************************** |
| @@ -196,6 +198,37 @@ void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data) | |||
| 196 | 198 | ||
| 197 | 199 | ||
| 198 | /***************************************************************************** | 200 | /***************************************************************************** |
| 201 | * SPI | ||
| 202 | ****************************************************************************/ | ||
| 203 | static struct orion_spi_info kirkwood_spi_plat_data = { | ||
| 204 | .tclk = KIRKWOOD_TCLK, | ||
| 205 | }; | ||
| 206 | |||
| 207 | static struct resource kirkwood_spi_resources[] = { | ||
| 208 | { | ||
| 209 | .start = SPI_PHYS_BASE, | ||
| 210 | .end = SPI_PHYS_BASE + SZ_512 - 1, | ||
| 211 | .flags = IORESOURCE_MEM, | ||
| 212 | }, | ||
| 213 | }; | ||
| 214 | |||
| 215 | static struct platform_device kirkwood_spi = { | ||
| 216 | .name = "orion_spi", | ||
| 217 | .id = 0, | ||
| 218 | .resource = kirkwood_spi_resources, | ||
| 219 | .dev = { | ||
| 220 | .platform_data = &kirkwood_spi_plat_data, | ||
| 221 | }, | ||
| 222 | .num_resources = ARRAY_SIZE(kirkwood_spi_resources), | ||
| 223 | }; | ||
| 224 | |||
| 225 | void __init kirkwood_spi_init() | ||
| 226 | { | ||
| 227 | platform_device_register(&kirkwood_spi); | ||
| 228 | } | ||
| 229 | |||
| 230 | |||
| 231 | /***************************************************************************** | ||
| 199 | * UART0 | 232 | * UART0 |
| 200 | ****************************************************************************/ | 233 | ****************************************************************************/ |
| 201 | static struct plat_serial8250_port kirkwood_uart0_data[] = { | 234 | static struct plat_serial8250_port kirkwood_uart0_data[] = { |
| @@ -284,6 +317,212 @@ void __init kirkwood_uart1_init(void) | |||
| 284 | 317 | ||
| 285 | 318 | ||
| 286 | /***************************************************************************** | 319 | /***************************************************************************** |
| 320 | * XOR | ||
| 321 | ****************************************************************************/ | ||
| 322 | static struct mv_xor_platform_shared_data kirkwood_xor_shared_data = { | ||
| 323 | .dram = &kirkwood_mbus_dram_info, | ||
| 324 | }; | ||
| 325 | |||
| 326 | static u64 kirkwood_xor_dmamask = DMA_32BIT_MASK; | ||
| 327 | |||
| 328 | |||
| 329 | /***************************************************************************** | ||
| 330 | * XOR0 | ||
| 331 | ****************************************************************************/ | ||
| 332 | static struct resource kirkwood_xor0_shared_resources[] = { | ||
| 333 | { | ||
| 334 | .name = "xor 0 low", | ||
| 335 | .start = XOR0_PHYS_BASE, | ||
| 336 | .end = XOR0_PHYS_BASE + 0xff, | ||
| 337 | .flags = IORESOURCE_MEM, | ||
| 338 | }, { | ||
| 339 | .name = "xor 0 high", | ||
| 340 | .start = XOR0_HIGH_PHYS_BASE, | ||
| 341 | .end = XOR0_HIGH_PHYS_BASE + 0xff, | ||
| 342 | .flags = IORESOURCE_MEM, | ||
| 343 | }, | ||
| 344 | }; | ||
| 345 | |||
| 346 | static struct platform_device kirkwood_xor0_shared = { | ||
| 347 | .name = MV_XOR_SHARED_NAME, | ||
| 348 | .id = 0, | ||
| 349 | .dev = { | ||
| 350 | .platform_data = &kirkwood_xor_shared_data, | ||
| 351 | }, | ||
| 352 | .num_resources = ARRAY_SIZE(kirkwood_xor0_shared_resources), | ||
| 353 | .resource = kirkwood_xor0_shared_resources, | ||
| 354 | }; | ||
| 355 | |||
| 356 | static struct resource kirkwood_xor00_resources[] = { | ||
| 357 | [0] = { | ||
| 358 | .start = IRQ_KIRKWOOD_XOR_00, | ||
| 359 | .end = IRQ_KIRKWOOD_XOR_00, | ||
| 360 | .flags = IORESOURCE_IRQ, | ||
| 361 | }, | ||
| 362 | }; | ||
| 363 | |||
| 364 | static struct mv_xor_platform_data kirkwood_xor00_data = { | ||
| 365 | .shared = &kirkwood_xor0_shared, | ||
| 366 | .hw_id = 0, | ||
| 367 | .pool_size = PAGE_SIZE, | ||
| 368 | }; | ||
| 369 | |||
| 370 | static struct platform_device kirkwood_xor00_channel = { | ||
| 371 | .name = MV_XOR_NAME, | ||
| 372 | .id = 0, | ||
| 373 | .num_resources = ARRAY_SIZE(kirkwood_xor00_resources), | ||
| 374 | .resource = kirkwood_xor00_resources, | ||
| 375 | .dev = { | ||
| 376 | .dma_mask = &kirkwood_xor_dmamask, | ||
| 377 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 378 | .platform_data = (void *)&kirkwood_xor00_data, | ||
| 379 | }, | ||
| 380 | }; | ||
| 381 | |||
| 382 | static struct resource kirkwood_xor01_resources[] = { | ||
| 383 | [0] = { | ||
| 384 | .start = IRQ_KIRKWOOD_XOR_01, | ||
| 385 | .end = IRQ_KIRKWOOD_XOR_01, | ||
| 386 | .flags = IORESOURCE_IRQ, | ||
| 387 | }, | ||
| 388 | }; | ||
| 389 | |||
| 390 | static struct mv_xor_platform_data kirkwood_xor01_data = { | ||
| 391 | .shared = &kirkwood_xor0_shared, | ||
| 392 | .hw_id = 1, | ||
| 393 | .pool_size = PAGE_SIZE, | ||
| 394 | }; | ||
| 395 | |||
| 396 | static struct platform_device kirkwood_xor01_channel = { | ||
| 397 | .name = MV_XOR_NAME, | ||
| 398 | .id = 1, | ||
| 399 | .num_resources = ARRAY_SIZE(kirkwood_xor01_resources), | ||
| 400 | .resource = kirkwood_xor01_resources, | ||
| 401 | .dev = { | ||
| 402 | .dma_mask = &kirkwood_xor_dmamask, | ||
| 403 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 404 | .platform_data = (void *)&kirkwood_xor01_data, | ||
| 405 | }, | ||
| 406 | }; | ||
| 407 | |||
| 408 | void __init kirkwood_xor0_init(void) | ||
| 409 | { | ||
| 410 | platform_device_register(&kirkwood_xor0_shared); | ||
| 411 | |||
| 412 | /* | ||
| 413 | * two engines can't do memset simultaneously, this limitation | ||
| 414 | * satisfied by removing memset support from one of the engines. | ||
| 415 | */ | ||
| 416 | dma_cap_set(DMA_MEMCPY, kirkwood_xor00_data.cap_mask); | ||
| 417 | dma_cap_set(DMA_XOR, kirkwood_xor00_data.cap_mask); | ||
| 418 | platform_device_register(&kirkwood_xor00_channel); | ||
| 419 | |||
| 420 | dma_cap_set(DMA_MEMCPY, kirkwood_xor01_data.cap_mask); | ||
| 421 | dma_cap_set(DMA_MEMSET, kirkwood_xor01_data.cap_mask); | ||
| 422 | dma_cap_set(DMA_XOR, kirkwood_xor01_data.cap_mask); | ||
| 423 | platform_device_register(&kirkwood_xor01_channel); | ||
| 424 | } | ||
| 425 | |||
| 426 | |||
| 427 | /***************************************************************************** | ||
| 428 | * XOR1 | ||
| 429 | ****************************************************************************/ | ||
| 430 | static struct resource kirkwood_xor1_shared_resources[] = { | ||
| 431 | { | ||
| 432 | .name = "xor 1 low", | ||
| 433 | .start = XOR1_PHYS_BASE, | ||
| 434 | .end = XOR1_PHYS_BASE + 0xff, | ||
| 435 | .flags = IORESOURCE_MEM, | ||
| 436 | }, { | ||
| 437 | .name = "xor 1 high", | ||
| 438 | .start = XOR1_HIGH_PHYS_BASE, | ||
| 439 | .end = XOR1_HIGH_PHYS_BASE + 0xff, | ||
| 440 | .flags = IORESOURCE_MEM, | ||
| 441 | }, | ||
| 442 | }; | ||
| 443 | |||
| 444 | static struct platform_device kirkwood_xor1_shared = { | ||
| 445 | .name = MV_XOR_SHARED_NAME, | ||
| 446 | .id = 1, | ||
| 447 | .dev = { | ||
| 448 | .platform_data = &kirkwood_xor_shared_data, | ||
| 449 | }, | ||
| 450 | .num_resources = ARRAY_SIZE(kirkwood_xor1_shared_resources), | ||
| 451 | .resource = kirkwood_xor1_shared_resources, | ||
| 452 | }; | ||
| 453 | |||
| 454 | static struct resource kirkwood_xor10_resources[] = { | ||
| 455 | [0] = { | ||
| 456 | .start = IRQ_KIRKWOOD_XOR_10, | ||
| 457 | .end = IRQ_KIRKWOOD_XOR_10, | ||
| 458 | .flags = IORESOURCE_IRQ, | ||
| 459 | }, | ||
| 460 | }; | ||
| 461 | |||
| 462 | static struct mv_xor_platform_data kirkwood_xor10_data = { | ||
| 463 | .shared = &kirkwood_xor1_shared, | ||
| 464 | .hw_id = 0, | ||
| 465 | .pool_size = PAGE_SIZE, | ||
| 466 | }; | ||
| 467 | |||
| 468 | static struct platform_device kirkwood_xor10_channel = { | ||
| 469 | .name = MV_XOR_NAME, | ||
| 470 | .id = 2, | ||
| 471 | .num_resources = ARRAY_SIZE(kirkwood_xor10_resources), | ||
| 472 | .resource = kirkwood_xor10_resources, | ||
| 473 | .dev = { | ||
| 474 | .dma_mask = &kirkwood_xor_dmamask, | ||
| 475 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 476 | .platform_data = (void *)&kirkwood_xor10_data, | ||
| 477 | }, | ||
| 478 | }; | ||
| 479 | |||
| 480 | static struct resource kirkwood_xor11_resources[] = { | ||
| 481 | [0] = { | ||
| 482 | .start = IRQ_KIRKWOOD_XOR_11, | ||
| 483 | .end = IRQ_KIRKWOOD_XOR_11, | ||
| 484 | .flags = IORESOURCE_IRQ, | ||
| 485 | }, | ||
| 486 | }; | ||
| 487 | |||
| 488 | static struct mv_xor_platform_data kirkwood_xor11_data = { | ||
| 489 | .shared = &kirkwood_xor1_shared, | ||
| 490 | .hw_id = 1, | ||
| 491 | .pool_size = PAGE_SIZE, | ||
| 492 | }; | ||
| 493 | |||
| 494 | static struct platform_device kirkwood_xor11_channel = { | ||
| 495 | .name = MV_XOR_NAME, | ||
| 496 | .id = 3, | ||
| 497 | .num_resources = ARRAY_SIZE(kirkwood_xor11_resources), | ||
| 498 | .resource = kirkwood_xor11_resources, | ||
| 499 | .dev = { | ||
| 500 | .dma_mask = &kirkwood_xor_dmamask, | ||
| 501 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 502 | .platform_data = (void *)&kirkwood_xor11_data, | ||
| 503 | }, | ||
| 504 | }; | ||
| 505 | |||
| 506 | void __init kirkwood_xor1_init(void) | ||
| 507 | { | ||
| 508 | platform_device_register(&kirkwood_xor1_shared); | ||
| 509 | |||
| 510 | /* | ||
| 511 | * two engines can't do memset simultaneously, this limitation | ||
| 512 | * satisfied by removing memset support from one of the engines. | ||
| 513 | */ | ||
| 514 | dma_cap_set(DMA_MEMCPY, kirkwood_xor10_data.cap_mask); | ||
| 515 | dma_cap_set(DMA_XOR, kirkwood_xor10_data.cap_mask); | ||
| 516 | platform_device_register(&kirkwood_xor10_channel); | ||
| 517 | |||
| 518 | dma_cap_set(DMA_MEMCPY, kirkwood_xor11_data.cap_mask); | ||
| 519 | dma_cap_set(DMA_MEMSET, kirkwood_xor11_data.cap_mask); | ||
| 520 | dma_cap_set(DMA_XOR, kirkwood_xor11_data.cap_mask); | ||
| 521 | platform_device_register(&kirkwood_xor11_channel); | ||
| 522 | } | ||
| 523 | |||
| 524 | |||
| 525 | /***************************************************************************** | ||
| 287 | * Time handling | 526 | * Time handling |
| 288 | ****************************************************************************/ | 527 | ****************************************************************************/ |
| 289 | static void kirkwood_timer_init(void) | 528 | static void kirkwood_timer_init(void) |
diff --git a/arch/arm/mach-kirkwood/common.h b/arch/arm/mach-kirkwood/common.h index 5dee2f6b40a5..69cd113af03a 100644 --- a/arch/arm/mach-kirkwood/common.h +++ b/arch/arm/mach-kirkwood/common.h | |||
| @@ -33,8 +33,11 @@ void kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data); | |||
| 33 | void kirkwood_pcie_init(void); | 33 | void kirkwood_pcie_init(void); |
| 34 | void kirkwood_rtc_init(void); | 34 | void kirkwood_rtc_init(void); |
| 35 | void kirkwood_sata_init(struct mv_sata_platform_data *sata_data); | 35 | void kirkwood_sata_init(struct mv_sata_platform_data *sata_data); |
| 36 | void kirkwood_spi_init(void); | ||
| 36 | void kirkwood_uart0_init(void); | 37 | void kirkwood_uart0_init(void); |
| 37 | void kirkwood_uart1_init(void); | 38 | void kirkwood_uart1_init(void); |
| 39 | void kirkwood_xor0_init(void); | ||
| 40 | void kirkwood_xor1_init(void); | ||
| 38 | 41 | ||
| 39 | extern struct sys_timer kirkwood_timer; | 42 | extern struct sys_timer kirkwood_timer; |
| 40 | 43 | ||
diff --git a/arch/arm/mach-kirkwood/include/mach/kirkwood.h b/arch/arm/mach-kirkwood/include/mach/kirkwood.h index d1336b41f0fb..5c69992295e8 100644 --- a/arch/arm/mach-kirkwood/include/mach/kirkwood.h +++ b/arch/arm/mach-kirkwood/include/mach/kirkwood.h | |||
| @@ -88,6 +88,15 @@ | |||
| 88 | 88 | ||
| 89 | #define USB_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x50000) | 89 | #define USB_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x50000) |
| 90 | 90 | ||
| 91 | #define XOR0_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x60800) | ||
| 92 | #define XOR0_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x60800) | ||
| 93 | #define XOR1_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x60900) | ||
| 94 | #define XOR1_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x60900) | ||
| 95 | #define XOR0_HIGH_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x60A00) | ||
| 96 | #define XOR0_HIGH_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x60A00) | ||
| 97 | #define XOR1_HIGH_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x60B00) | ||
| 98 | #define XOR1_HIGH_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x60B00) | ||
| 99 | |||
| 91 | #define GE00_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x70000) | 100 | #define GE00_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x70000) |
| 92 | #define GE01_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x74000) | 101 | #define GE01_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x74000) |
| 93 | 102 | ||
diff --git a/arch/arm/mach-kirkwood/irq.c b/arch/arm/mach-kirkwood/irq.c index 302bb2cf6669..5790643ffe07 100644 --- a/arch/arm/mach-kirkwood/irq.c +++ b/arch/arm/mach-kirkwood/irq.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
| 14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
| 15 | #include <asm/plat-orion/irq.h> | 15 | #include <plat/irq.h> |
| 16 | #include "common.h" | 16 | #include "common.h" |
| 17 | 17 | ||
| 18 | void __init kirkwood_init_irq(void) | 18 | void __init kirkwood_init_irq(void) |
diff --git a/arch/arm/mach-kirkwood/pcie.c b/arch/arm/mach-kirkwood/pcie.c index 8282d0ff84bf..2195fa31f6b7 100644 --- a/arch/arm/mach-kirkwood/pcie.c +++ b/arch/arm/mach-kirkwood/pcie.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
| 13 | #include <linux/mbus.h> | 13 | #include <linux/mbus.h> |
| 14 | #include <asm/mach/pci.h> | 14 | #include <asm/mach/pci.h> |
| 15 | #include <asm/plat-orion/pcie.h> | 15 | #include <plat/pcie.h> |
| 16 | #include "common.h" | 16 | #include "common.h" |
| 17 | 17 | ||
| 18 | 18 | ||
diff --git a/arch/arm/mach-kirkwood/rd88f6192-nas-setup.c b/arch/arm/mach-kirkwood/rd88f6192-nas-setup.c index 182230a5d198..a3012d445971 100644 --- a/arch/arm/mach-kirkwood/rd88f6192-nas-setup.c +++ b/arch/arm/mach-kirkwood/rd88f6192-nas-setup.c | |||
| @@ -18,6 +18,9 @@ | |||
| 18 | #include <linux/timer.h> | 18 | #include <linux/timer.h> |
| 19 | #include <linux/ata_platform.h> | 19 | #include <linux/ata_platform.h> |
| 20 | #include <linux/mv643xx_eth.h> | 20 | #include <linux/mv643xx_eth.h> |
| 21 | #include <linux/spi/flash.h> | ||
| 22 | #include <linux/spi/spi.h> | ||
| 23 | #include <linux/spi/orion_spi.h> | ||
| 21 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
| 22 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
| 23 | #include <asm/mach/pci.h> | 26 | #include <asm/mach/pci.h> |
| @@ -34,6 +37,21 @@ static struct mv_sata_platform_data rd88f6192_sata_data = { | |||
| 34 | .n_ports = 2, | 37 | .n_ports = 2, |
| 35 | }; | 38 | }; |
| 36 | 39 | ||
| 40 | static const struct flash_platform_data rd88F6192_spi_slave_data = { | ||
| 41 | .type = "m25p128", | ||
| 42 | }; | ||
| 43 | |||
| 44 | static struct spi_board_info __initdata rd88F6192_spi_slave_info[] = { | ||
| 45 | { | ||
| 46 | .modalias = "m25p80", | ||
| 47 | .platform_data = &rd88F6192_spi_slave_data, | ||
| 48 | .irq = -1, | ||
| 49 | .max_speed_hz = 20000000, | ||
| 50 | .bus_num = 0, | ||
| 51 | .chip_select = 0, | ||
| 52 | }, | ||
| 53 | }; | ||
| 54 | |||
| 37 | static void __init rd88f6192_init(void) | 55 | static void __init rd88f6192_init(void) |
| 38 | { | 56 | { |
| 39 | /* | 57 | /* |
| @@ -45,7 +63,12 @@ static void __init rd88f6192_init(void) | |||
| 45 | kirkwood_ge00_init(&rd88f6192_ge00_data); | 63 | kirkwood_ge00_init(&rd88f6192_ge00_data); |
| 46 | kirkwood_rtc_init(); | 64 | kirkwood_rtc_init(); |
| 47 | kirkwood_sata_init(&rd88f6192_sata_data); | 65 | kirkwood_sata_init(&rd88f6192_sata_data); |
| 66 | spi_register_board_info(rd88F6192_spi_slave_info, | ||
| 67 | ARRAY_SIZE(rd88F6192_spi_slave_info)); | ||
| 68 | kirkwood_spi_init(); | ||
| 48 | kirkwood_uart0_init(); | 69 | kirkwood_uart0_init(); |
| 70 | kirkwood_xor0_init(); | ||
| 71 | kirkwood_xor1_init(); | ||
| 49 | } | 72 | } |
| 50 | 73 | ||
| 51 | static int __init rd88f6192_pci_init(void) | 74 | static int __init rd88f6192_pci_init(void) |
diff --git a/arch/arm/mach-kirkwood/rd88f6281-setup.c b/arch/arm/mach-kirkwood/rd88f6281-setup.c index d8a43018c7d3..d96487a0f18b 100644 --- a/arch/arm/mach-kirkwood/rd88f6281-setup.c +++ b/arch/arm/mach-kirkwood/rd88f6281-setup.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include <asm/mach/arch.h> | 23 | #include <asm/mach/arch.h> |
| 24 | #include <asm/mach/pci.h> | 24 | #include <asm/mach/pci.h> |
| 25 | #include <mach/kirkwood.h> | 25 | #include <mach/kirkwood.h> |
| 26 | #include <asm/plat-orion/orion_nand.h> | 26 | #include <plat/orion_nand.h> |
| 27 | #include "common.h" | 27 | #include "common.h" |
| 28 | 28 | ||
| 29 | static struct mtd_partition rd88f6281_nand_parts[] = { | 29 | static struct mtd_partition rd88f6281_nand_parts[] = { |
diff --git a/arch/arm/mach-lh7a40x/include/mach/ssp.h b/arch/arm/mach-lh7a40x/include/mach/ssp.h index 132b1c4d5ce6..509916182e34 100644 --- a/arch/arm/mach-lh7a40x/include/mach/ssp.h +++ b/arch/arm/mach-lh7a40x/include/mach/ssp.h | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | /* ssp.h | 1 | /* ssp.h |
| 2 | $Id$ | ||
| 3 | 2 | ||
| 4 | written by Marc Singer | 3 | written by Marc Singer |
| 5 | 6 Dec 2004 | 4 | 6 Dec 2004 |
diff --git a/arch/arm/mach-lh7a40x/lcd-panel.h b/arch/arm/mach-lh7a40x/lcd-panel.h index df6e38ed425b..a7f5027b2f78 100644 --- a/arch/arm/mach-lh7a40x/lcd-panel.h +++ b/arch/arm/mach-lh7a40x/lcd-panel.h | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | /* lcd-panel.h | 1 | /* lcd-panel.h |
| 2 | $Id$ | ||
| 3 | 2 | ||
| 4 | written by Marc Singer | 3 | written by Marc Singer |
| 5 | 18 Jul 2005 | 4 | 18 Jul 2005 |
diff --git a/arch/arm/mach-loki/common.c b/arch/arm/mach-loki/common.c index e20cdbca1ebe..c0d2d9d12e74 100644 --- a/arch/arm/mach-loki/common.c +++ b/arch/arm/mach-loki/common.c | |||
| @@ -19,8 +19,8 @@ | |||
| 19 | #include <asm/mach/map.h> | 19 | #include <asm/mach/map.h> |
| 20 | #include <asm/mach/time.h> | 20 | #include <asm/mach/time.h> |
| 21 | #include <mach/loki.h> | 21 | #include <mach/loki.h> |
| 22 | #include <asm/plat-orion/orion_nand.h> | 22 | #include <plat/orion_nand.h> |
| 23 | #include <asm/plat-orion/time.h> | 23 | #include <plat/time.h> |
| 24 | #include "common.h" | 24 | #include "common.h" |
| 25 | 25 | ||
| 26 | /***************************************************************************** | 26 | /***************************************************************************** |
diff --git a/arch/arm/mach-loki/irq.c b/arch/arm/mach-loki/irq.c index d839af91fe03..5a487930cb2f 100644 --- a/arch/arm/mach-loki/irq.c +++ b/arch/arm/mach-loki/irq.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
| 14 | #include <asm/io.h> | 14 | #include <asm/io.h> |
| 15 | #include <asm/plat-orion/irq.h> | 15 | #include <plat/irq.h> |
| 16 | #include "common.h" | 16 | #include "common.h" |
| 17 | 17 | ||
| 18 | void __init loki_init_irq(void) | 18 | void __init loki_init_irq(void) |
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index e633f9cb239f..953a26c469cb 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
| @@ -18,10 +18,10 @@ | |||
| 18 | #include <asm/mach/map.h> | 18 | #include <asm/mach/map.h> |
| 19 | #include <asm/mach/time.h> | 19 | #include <asm/mach/time.h> |
| 20 | #include <mach/mv78xx0.h> | 20 | #include <mach/mv78xx0.h> |
| 21 | #include <asm/plat-orion/cache-feroceon-l2.h> | 21 | #include <plat/cache-feroceon-l2.h> |
| 22 | #include <asm/plat-orion/ehci-orion.h> | 22 | #include <plat/ehci-orion.h> |
| 23 | #include <asm/plat-orion/orion_nand.h> | 23 | #include <plat/orion_nand.h> |
| 24 | #include <asm/plat-orion/time.h> | 24 | #include <plat/time.h> |
| 25 | #include "common.h" | 25 | #include "common.h" |
| 26 | 26 | ||
| 27 | 27 | ||
diff --git a/arch/arm/mach-mv78xx0/irq.c b/arch/arm/mach-mv78xx0/irq.c index 3198abf54c90..28248d37b999 100644 --- a/arch/arm/mach-mv78xx0/irq.c +++ b/arch/arm/mach-mv78xx0/irq.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/pci.h> | 13 | #include <linux/pci.h> |
| 14 | #include <mach/mv78xx0.h> | 14 | #include <mach/mv78xx0.h> |
| 15 | #include <asm/plat-orion/irq.h> | 15 | #include <plat/irq.h> |
| 16 | #include "common.h" | 16 | #include "common.h" |
| 17 | 17 | ||
| 18 | void __init mv78xx0_init_irq(void) | 18 | void __init mv78xx0_init_irq(void) |
diff --git a/arch/arm/mach-mv78xx0/pcie.c b/arch/arm/mach-mv78xx0/pcie.c index b78e1443159f..430ea84d587d 100644 --- a/arch/arm/mach-mv78xx0/pcie.c +++ b/arch/arm/mach-mv78xx0/pcie.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
| 13 | #include <linux/mbus.h> | 13 | #include <linux/mbus.h> |
| 14 | #include <asm/mach/pci.h> | 14 | #include <asm/mach/pci.h> |
| 15 | #include <asm/plat-orion/pcie.h> | 15 | #include <plat/pcie.h> |
| 16 | #include "common.h" | 16 | #include "common.h" |
| 17 | 17 | ||
| 18 | struct pcie_port { | 18 | struct pcie_port { |
diff --git a/arch/arm/mach-omap2/board-2430sdp.c b/arch/arm/mach-omap2/board-2430sdp.c index d4d6385cad7c..b72ca13b3acb 100644 --- a/arch/arm/mach-omap2/board-2430sdp.c +++ b/arch/arm/mach-omap2/board-2430sdp.c | |||
| @@ -103,7 +103,7 @@ static struct resource sdp2430_smc91x_resources[] = { | |||
| 103 | [1] = { | 103 | [1] = { |
| 104 | .start = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ), | 104 | .start = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ), |
| 105 | .end = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ), | 105 | .end = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ), |
| 106 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, | 106 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
| 107 | }, | 107 | }, |
| 108 | }; | 108 | }; |
| 109 | 109 | ||
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 168eeacaa4c0..7b11e552bc5a 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
| @@ -26,9 +26,10 @@ | |||
| 26 | #include <asm/mach/time.h> | 26 | #include <asm/mach/time.h> |
| 27 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
| 28 | #include <mach/orion5x.h> | 28 | #include <mach/orion5x.h> |
| 29 | #include <asm/plat-orion/ehci-orion.h> | 29 | #include <plat/ehci-orion.h> |
| 30 | #include <asm/plat-orion/orion_nand.h> | 30 | #include <plat/mv_xor.h> |
| 31 | #include <asm/plat-orion/time.h> | 31 | #include <plat/orion_nand.h> |
| 32 | #include <plat/time.h> | ||
| 32 | #include "common.h" | 33 | #include "common.h" |
| 33 | 34 | ||
| 34 | /***************************************************************************** | 35 | /***************************************************************************** |
| @@ -355,6 +356,103 @@ void __init orion5x_uart1_init(void) | |||
| 355 | 356 | ||
| 356 | 357 | ||
| 357 | /***************************************************************************** | 358 | /***************************************************************************** |
| 359 | * XOR engine | ||
| 360 | ****************************************************************************/ | ||
| 361 | static struct resource orion5x_xor_shared_resources[] = { | ||
| 362 | { | ||
| 363 | .name = "xor low", | ||
| 364 | .start = ORION5X_XOR_PHYS_BASE, | ||
| 365 | .end = ORION5X_XOR_PHYS_BASE + 0xff, | ||
| 366 | .flags = IORESOURCE_MEM, | ||
| 367 | }, { | ||
| 368 | .name = "xor high", | ||
| 369 | .start = ORION5X_XOR_PHYS_BASE + 0x200, | ||
| 370 | .end = ORION5X_XOR_PHYS_BASE + 0x2ff, | ||
| 371 | .flags = IORESOURCE_MEM, | ||
| 372 | }, | ||
| 373 | }; | ||
| 374 | |||
| 375 | static struct platform_device orion5x_xor_shared = { | ||
| 376 | .name = MV_XOR_SHARED_NAME, | ||
| 377 | .id = 0, | ||
| 378 | .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources), | ||
| 379 | .resource = orion5x_xor_shared_resources, | ||
| 380 | }; | ||
| 381 | |||
| 382 | static u64 orion5x_xor_dmamask = DMA_32BIT_MASK; | ||
| 383 | |||
| 384 | static struct resource orion5x_xor0_resources[] = { | ||
| 385 | [0] = { | ||
| 386 | .start = IRQ_ORION5X_XOR0, | ||
| 387 | .end = IRQ_ORION5X_XOR0, | ||
| 388 | .flags = IORESOURCE_IRQ, | ||
| 389 | }, | ||
| 390 | }; | ||
| 391 | |||
| 392 | static struct mv_xor_platform_data orion5x_xor0_data = { | ||
| 393 | .shared = &orion5x_xor_shared, | ||
| 394 | .hw_id = 0, | ||
| 395 | .pool_size = PAGE_SIZE, | ||
| 396 | }; | ||
| 397 | |||
| 398 | static struct platform_device orion5x_xor0_channel = { | ||
| 399 | .name = MV_XOR_NAME, | ||
| 400 | .id = 0, | ||
| 401 | .num_resources = ARRAY_SIZE(orion5x_xor0_resources), | ||
| 402 | .resource = orion5x_xor0_resources, | ||
| 403 | .dev = { | ||
| 404 | .dma_mask = &orion5x_xor_dmamask, | ||
| 405 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 406 | .platform_data = (void *)&orion5x_xor0_data, | ||
| 407 | }, | ||
| 408 | }; | ||
| 409 | |||
| 410 | static struct resource orion5x_xor1_resources[] = { | ||
| 411 | [0] = { | ||
| 412 | .start = IRQ_ORION5X_XOR1, | ||
| 413 | .end = IRQ_ORION5X_XOR1, | ||
| 414 | .flags = IORESOURCE_IRQ, | ||
| 415 | }, | ||
| 416 | }; | ||
| 417 | |||
| 418 | static struct mv_xor_platform_data orion5x_xor1_data = { | ||
| 419 | .shared = &orion5x_xor_shared, | ||
| 420 | .hw_id = 1, | ||
| 421 | .pool_size = PAGE_SIZE, | ||
| 422 | }; | ||
| 423 | |||
| 424 | static struct platform_device orion5x_xor1_channel = { | ||
| 425 | .name = MV_XOR_NAME, | ||
| 426 | .id = 1, | ||
| 427 | .num_resources = ARRAY_SIZE(orion5x_xor1_resources), | ||
| 428 | .resource = orion5x_xor1_resources, | ||
| 429 | .dev = { | ||
| 430 | .dma_mask = &orion5x_xor_dmamask, | ||
| 431 | .coherent_dma_mask = DMA_64BIT_MASK, | ||
| 432 | .platform_data = (void *)&orion5x_xor1_data, | ||
| 433 | }, | ||
| 434 | }; | ||
| 435 | |||
| 436 | void __init orion5x_xor_init(void) | ||
| 437 | { | ||
| 438 | platform_device_register(&orion5x_xor_shared); | ||
| 439 | |||
| 440 | /* | ||
| 441 | * two engines can't do memset simultaneously, this limitation | ||
| 442 | * satisfied by removing memset support from one of the engines. | ||
| 443 | */ | ||
| 444 | dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask); | ||
| 445 | dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask); | ||
| 446 | platform_device_register(&orion5x_xor0_channel); | ||
| 447 | |||
| 448 | dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask); | ||
| 449 | dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask); | ||
| 450 | dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask); | ||
| 451 | platform_device_register(&orion5x_xor1_channel); | ||
| 452 | } | ||
| 453 | |||
| 454 | |||
| 455 | /***************************************************************************** | ||
| 358 | * Time handling | 456 | * Time handling |
| 359 | ****************************************************************************/ | 457 | ****************************************************************************/ |
| 360 | static void orion5x_timer_init(void) | 458 | static void orion5x_timer_init(void) |
| @@ -382,6 +480,8 @@ static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name) | |||
| 382 | *dev_name = "MV88F5281-D2"; | 480 | *dev_name = "MV88F5281-D2"; |
| 383 | } else if (*rev == MV88F5281_REV_D1) { | 481 | } else if (*rev == MV88F5281_REV_D1) { |
| 384 | *dev_name = "MV88F5281-D1"; | 482 | *dev_name = "MV88F5281-D1"; |
| 483 | } else if (*rev == MV88F5281_REV_D0) { | ||
| 484 | *dev_name = "MV88F5281-D0"; | ||
| 385 | } else { | 485 | } else { |
| 386 | *dev_name = "MV88F5281-Rev-Unsupported"; | 486 | *dev_name = "MV88F5281-Rev-Unsupported"; |
| 387 | } | 487 | } |
| @@ -416,6 +516,15 @@ void __init orion5x_init(void) | |||
| 416 | * Setup Orion address map | 516 | * Setup Orion address map |
| 417 | */ | 517 | */ |
| 418 | orion5x_setup_cpu_mbus_bridge(); | 518 | orion5x_setup_cpu_mbus_bridge(); |
| 519 | |||
| 520 | /* | ||
| 521 | * Don't issue "Wait for Interrupt" instruction if we are | ||
| 522 | * running on D0 5281 silicon. | ||
| 523 | */ | ||
| 524 | if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) { | ||
| 525 | printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n"); | ||
| 526 | disable_hlt(); | ||
| 527 | } | ||
| 419 | } | 528 | } |
| 420 | 529 | ||
| 421 | /* | 530 | /* |
diff --git a/arch/arm/mach-orion5x/common.h b/arch/arm/mach-orion5x/common.h index f72cf0e77544..0bd195551a27 100644 --- a/arch/arm/mach-orion5x/common.h +++ b/arch/arm/mach-orion5x/common.h | |||
| @@ -32,6 +32,7 @@ void orion5x_i2c_init(void); | |||
| 32 | void orion5x_sata_init(struct mv_sata_platform_data *sata_data); | 32 | void orion5x_sata_init(struct mv_sata_platform_data *sata_data); |
| 33 | void orion5x_uart0_init(void); | 33 | void orion5x_uart0_init(void); |
| 34 | void orion5x_uart1_init(void); | 34 | void orion5x_uart1_init(void); |
| 35 | void orion5x_xor_init(void); | ||
| 35 | 36 | ||
| 36 | /* | 37 | /* |
| 37 | * PCIe/PCI functions. | 38 | * PCIe/PCI functions. |
| @@ -40,6 +41,7 @@ struct pci_bus; | |||
| 40 | struct pci_sys_data; | 41 | struct pci_sys_data; |
| 41 | 42 | ||
| 42 | void orion5x_pcie_id(u32 *dev, u32 *rev); | 43 | void orion5x_pcie_id(u32 *dev, u32 *rev); |
| 44 | void orion5x_pci_disable(void); | ||
| 43 | void orion5x_pci_set_cardbus_mode(void); | 45 | void orion5x_pci_set_cardbus_mode(void); |
| 44 | int orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys); | 46 | int orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys); |
| 45 | struct pci_bus *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys); | 47 | struct pci_bus *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys); |
diff --git a/arch/arm/mach-orion5x/db88f5281-setup.c b/arch/arm/mach-orion5x/db88f5281-setup.c index 48ce6d0e0020..ff13e9060b18 100644 --- a/arch/arm/mach-orion5x/db88f5281-setup.c +++ b/arch/arm/mach-orion5x/db88f5281-setup.c | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
| 26 | #include <asm/mach/pci.h> | 26 | #include <asm/mach/pci.h> |
| 27 | #include <mach/orion5x.h> | 27 | #include <mach/orion5x.h> |
| 28 | #include <asm/plat-orion/orion_nand.h> | 28 | #include <plat/orion_nand.h> |
| 29 | #include "common.h" | 29 | #include "common.h" |
| 30 | #include "mpp.h" | 30 | #include "mpp.h" |
| 31 | 31 | ||
diff --git a/arch/arm/mach-orion5x/dns323-setup.c b/arch/arm/mach-orion5x/dns323-setup.c index 1a1d84b80a65..b38c65ccfb15 100644 --- a/arch/arm/mach-orion5x/dns323-setup.c +++ b/arch/arm/mach-orion5x/dns323-setup.c | |||
| @@ -245,12 +245,8 @@ static struct orion5x_mpp_mode dns323_mpp_modes[] __initdata = { | |||
| 245 | static struct i2c_board_info __initdata dns323_i2c_devices[] = { | 245 | static struct i2c_board_info __initdata dns323_i2c_devices[] = { |
| 246 | { | 246 | { |
| 247 | I2C_BOARD_INFO("g760a", 0x3e), | 247 | I2C_BOARD_INFO("g760a", 0x3e), |
| 248 | #if 0 | ||
| 249 | /* this entry requires the new-style driver model lm75 driver, | ||
| 250 | * for the meantime "insmod lm75.ko force_lm75=0,0x48" is needed */ | ||
| 251 | }, { | 248 | }, { |
| 252 | I2C_BOARD_INFO("g751", 0x48), | 249 | I2C_BOARD_INFO("lm75", 0x48), |
| 253 | #endif | ||
| 254 | }, { | 250 | }, { |
| 255 | I2C_BOARD_INFO("m41t80", 0x68), | 251 | I2C_BOARD_INFO("m41t80", 0x68), |
| 256 | }, | 252 | }, |
diff --git a/arch/arm/mach-orion5x/include/mach/orion5x.h b/arch/arm/mach-orion5x/include/mach/orion5x.h index f52a7d65bec2..61eb74a88862 100644 --- a/arch/arm/mach-orion5x/include/mach/orion5x.h +++ b/arch/arm/mach-orion5x/include/mach/orion5x.h | |||
| @@ -73,6 +73,7 @@ | |||
| 73 | #define MV88F5182_REV_A2 2 | 73 | #define MV88F5182_REV_A2 2 |
| 74 | /* Orion-2 (88F5281) */ | 74 | /* Orion-2 (88F5281) */ |
| 75 | #define MV88F5281_DEV_ID 0x5281 | 75 | #define MV88F5281_DEV_ID 0x5281 |
| 76 | #define MV88F5281_REV_D0 4 | ||
| 76 | #define MV88F5281_REV_D1 5 | 77 | #define MV88F5281_REV_D1 5 |
| 77 | #define MV88F5281_REV_D2 6 | 78 | #define MV88F5281_REV_D2 6 |
| 78 | 79 | ||
| @@ -105,6 +106,10 @@ | |||
| 105 | #define ORION5X_USB0_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x50000) | 106 | #define ORION5X_USB0_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x50000) |
| 106 | #define ORION5X_USB0_REG(x) (ORION5X_USB0_VIRT_BASE | (x)) | 107 | #define ORION5X_USB0_REG(x) (ORION5X_USB0_VIRT_BASE | (x)) |
| 107 | 108 | ||
| 109 | #define ORION5X_XOR_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x60900) | ||
| 110 | #define ORION5X_XOR_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x60900) | ||
| 111 | #define ORION5X_XOR_REG(x) (ORION5X_XOR_VIRT_BASE | (x)) | ||
| 112 | |||
| 108 | #define ORION5X_ETH_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x70000) | 113 | #define ORION5X_ETH_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x70000) |
| 109 | #define ORION5X_ETH_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x70000) | 114 | #define ORION5X_ETH_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x70000) |
| 110 | #define ORION5X_ETH_REG(x) (ORION5X_ETH_VIRT_BASE | (x)) | 115 | #define ORION5X_ETH_REG(x) (ORION5X_ETH_VIRT_BASE | (x)) |
diff --git a/arch/arm/mach-orion5x/irq.c b/arch/arm/mach-orion5x/irq.c index cc2a017fd2a9..2545ff9e5830 100644 --- a/arch/arm/mach-orion5x/irq.c +++ b/arch/arm/mach-orion5x/irq.c | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include <asm/gpio.h> | 16 | #include <asm/gpio.h> |
| 17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
| 18 | #include <mach/orion5x.h> | 18 | #include <mach/orion5x.h> |
| 19 | #include <asm/plat-orion/irq.h> | 19 | #include <plat/irq.h> |
| 20 | #include "common.h" | 20 | #include "common.h" |
| 21 | 21 | ||
| 22 | /***************************************************************************** | 22 | /***************************************************************************** |
diff --git a/arch/arm/mach-orion5x/kurobox_pro-setup.c b/arch/arm/mach-orion5x/kurobox_pro-setup.c index 0caaaac74bc1..e321ec331839 100644 --- a/arch/arm/mach-orion5x/kurobox_pro-setup.c +++ b/arch/arm/mach-orion5x/kurobox_pro-setup.c | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
| 26 | #include <asm/mach/pci.h> | 26 | #include <asm/mach/pci.h> |
| 27 | #include <mach/orion5x.h> | 27 | #include <mach/orion5x.h> |
| 28 | #include <asm/plat-orion/orion_nand.h> | 28 | #include <plat/orion_nand.h> |
| 29 | #include "common.h" | 29 | #include "common.h" |
| 30 | #include "mpp.h" | 30 | #include "mpp.h" |
| 31 | 31 | ||
| @@ -146,8 +146,10 @@ static struct hw_pci kurobox_pro_pci __initdata = { | |||
| 146 | 146 | ||
| 147 | static int __init kurobox_pro_pci_init(void) | 147 | static int __init kurobox_pro_pci_init(void) |
| 148 | { | 148 | { |
| 149 | if (machine_is_kurobox_pro()) | 149 | if (machine_is_kurobox_pro()) { |
| 150 | orion5x_pci_disable(); | ||
| 150 | pci_common_init(&kurobox_pro_pci); | 151 | pci_common_init(&kurobox_pro_pci); |
| 152 | } | ||
| 151 | 153 | ||
| 152 | return 0; | 154 | return 0; |
| 153 | } | 155 | } |
| @@ -356,6 +358,7 @@ static void __init kurobox_pro_init(void) | |||
| 356 | orion5x_sata_init(&kurobox_pro_sata_data); | 358 | orion5x_sata_init(&kurobox_pro_sata_data); |
| 357 | orion5x_uart0_init(); | 359 | orion5x_uart0_init(); |
| 358 | orion5x_uart1_init(); | 360 | orion5x_uart1_init(); |
| 361 | orion5x_xor_init(); | ||
| 359 | 362 | ||
| 360 | orion5x_setup_dev_boot_win(KUROBOX_PRO_NOR_BOOT_BASE, | 363 | orion5x_setup_dev_boot_win(KUROBOX_PRO_NOR_BOOT_BASE, |
| 361 | KUROBOX_PRO_NOR_BOOT_SIZE); | 364 | KUROBOX_PRO_NOR_BOOT_SIZE); |
diff --git a/arch/arm/mach-orion5x/mss2-setup.c b/arch/arm/mach-orion5x/mss2-setup.c index 4403cc963d66..53ff1893b883 100644 --- a/arch/arm/mach-orion5x/mss2-setup.c +++ b/arch/arm/mach-orion5x/mss2-setup.c | |||
| @@ -239,6 +239,7 @@ static void __init mss2_init(void) | |||
| 239 | orion5x_i2c_init(); | 239 | orion5x_i2c_init(); |
| 240 | orion5x_sata_init(&mss2_sata_data); | 240 | orion5x_sata_init(&mss2_sata_data); |
| 241 | orion5x_uart0_init(); | 241 | orion5x_uart0_init(); |
| 242 | orion5x_xor_init(); | ||
| 242 | 243 | ||
| 243 | orion5x_setup_dev_boot_win(MSS2_NOR_BOOT_BASE, MSS2_NOR_BOOT_SIZE); | 244 | orion5x_setup_dev_boot_win(MSS2_NOR_BOOT_BASE, MSS2_NOR_BOOT_SIZE); |
| 244 | platform_device_register(&mss2_nor_flash); | 245 | platform_device_register(&mss2_nor_flash); |
diff --git a/arch/arm/mach-orion5x/mv2120-setup.c b/arch/arm/mach-orion5x/mv2120-setup.c index 67b2c0df615f..978d4d599396 100644 --- a/arch/arm/mach-orion5x/mv2120-setup.c +++ b/arch/arm/mach-orion5x/mv2120-setup.c | |||
| @@ -203,6 +203,7 @@ static void __init mv2120_init(void) | |||
| 203 | orion5x_i2c_init(); | 203 | orion5x_i2c_init(); |
| 204 | orion5x_sata_init(&mv2120_sata_data); | 204 | orion5x_sata_init(&mv2120_sata_data); |
| 205 | orion5x_uart0_init(); | 205 | orion5x_uart0_init(); |
| 206 | orion5x_xor_init(); | ||
| 206 | 207 | ||
| 207 | orion5x_setup_dev_boot_win(MV2120_NOR_BOOT_BASE, MV2120_NOR_BOOT_SIZE); | 208 | orion5x_setup_dev_boot_win(MV2120_NOR_BOOT_BASE, MV2120_NOR_BOOT_SIZE); |
| 208 | platform_device_register(&mv2120_nor_flash); | 209 | platform_device_register(&mv2120_nor_flash); |
diff --git a/arch/arm/mach-orion5x/pci.c b/arch/arm/mach-orion5x/pci.c index 256a4f680935..a7b7d77b1b09 100644 --- a/arch/arm/mach-orion5x/pci.c +++ b/arch/arm/mach-orion5x/pci.c | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include <linux/pci.h> | 14 | #include <linux/pci.h> |
| 15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
| 16 | #include <asm/mach/pci.h> | 16 | #include <asm/mach/pci.h> |
| 17 | #include <asm/plat-orion/pcie.h> | 17 | #include <plat/pcie.h> |
| 18 | #include "common.h" | 18 | #include "common.h" |
| 19 | 19 | ||
| 20 | /***************************************************************************** | 20 | /***************************************************************************** |
| @@ -541,6 +541,13 @@ static void __devinit rc_pci_fixup(struct pci_dev *dev) | |||
| 541 | } | 541 | } |
| 542 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_ANY_ID, rc_pci_fixup); | 542 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_ANY_ID, rc_pci_fixup); |
| 543 | 543 | ||
| 544 | static int orion5x_pci_disabled __initdata; | ||
| 545 | |||
| 546 | void __init orion5x_pci_disable(void) | ||
| 547 | { | ||
| 548 | orion5x_pci_disabled = 1; | ||
| 549 | } | ||
| 550 | |||
| 544 | void __init orion5x_pci_set_cardbus_mode(void) | 551 | void __init orion5x_pci_set_cardbus_mode(void) |
| 545 | { | 552 | { |
| 546 | orion5x_pci_cardbus_mode = 1; | 553 | orion5x_pci_cardbus_mode = 1; |
| @@ -553,7 +560,7 @@ int __init orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys) | |||
| 553 | if (nr == 0) { | 560 | if (nr == 0) { |
| 554 | orion_pcie_set_local_bus_nr(PCIE_BASE, sys->busnr); | 561 | orion_pcie_set_local_bus_nr(PCIE_BASE, sys->busnr); |
| 555 | ret = pcie_setup(sys); | 562 | ret = pcie_setup(sys); |
| 556 | } else if (nr == 1) { | 563 | } else if (nr == 1 && !orion5x_pci_disabled) { |
| 557 | orion5x_pci_set_bus_nr(sys->busnr); | 564 | orion5x_pci_set_bus_nr(sys->busnr); |
| 558 | ret = pci_setup(sys); | 565 | ret = pci_setup(sys); |
| 559 | } | 566 | } |
| @@ -567,7 +574,7 @@ struct pci_bus __init *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys | |||
| 567 | 574 | ||
| 568 | if (nr == 0) { | 575 | if (nr == 0) { |
| 569 | bus = pci_scan_bus(sys->busnr, &pcie_ops, sys); | 576 | bus = pci_scan_bus(sys->busnr, &pcie_ops, sys); |
| 570 | } else if (nr == 1) { | 577 | } else if (nr == 1 && !orion5x_pci_disabled) { |
| 571 | bus = pci_scan_bus(sys->busnr, &pci_ops, sys); | 578 | bus = pci_scan_bus(sys->busnr, &pci_ops, sys); |
| 572 | } else { | 579 | } else { |
| 573 | bus = NULL; | 580 | bus = NULL; |
| @@ -584,7 +591,7 @@ int __init orion5x_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | |||
| 584 | /* | 591 | /* |
| 585 | * PCIe endpoint? | 592 | * PCIe endpoint? |
| 586 | */ | 593 | */ |
| 587 | if (bus < orion5x_pci_local_bus_nr()) | 594 | if (orion5x_pci_disabled || bus < orion5x_pci_local_bus_nr()) |
| 588 | return IRQ_ORION5X_PCIE0_INT; | 595 | return IRQ_ORION5X_PCIE0_INT; |
| 589 | 596 | ||
| 590 | return -1; | 597 | return -1; |
diff --git a/arch/arm/mach-orion5x/rd88f5182-setup.c b/arch/arm/mach-orion5x/rd88f5182-setup.c index 8771cb76f0dc..4c3bcd76ac85 100644 --- a/arch/arm/mach-orion5x/rd88f5182-setup.c +++ b/arch/arm/mach-orion5x/rd88f5182-setup.c | |||
| @@ -292,6 +292,7 @@ static void __init rd88f5182_init(void) | |||
| 292 | orion5x_i2c_init(); | 292 | orion5x_i2c_init(); |
| 293 | orion5x_sata_init(&rd88f5182_sata_data); | 293 | orion5x_sata_init(&rd88f5182_sata_data); |
| 294 | orion5x_uart0_init(); | 294 | orion5x_uart0_init(); |
| 295 | orion5x_xor_init(); | ||
| 295 | 296 | ||
| 296 | orion5x_setup_dev_boot_win(RD88F5182_NOR_BOOT_BASE, | 297 | orion5x_setup_dev_boot_win(RD88F5182_NOR_BOOT_BASE, |
| 297 | RD88F5182_NOR_BOOT_SIZE); | 298 | RD88F5182_NOR_BOOT_SIZE); |
diff --git a/arch/arm/mach-orion5x/ts209-setup.c b/arch/arm/mach-orion5x/ts209-setup.c index 809132de31d2..9d6890514199 100644 --- a/arch/arm/mach-orion5x/ts209-setup.c +++ b/arch/arm/mach-orion5x/ts209-setup.c | |||
| @@ -207,12 +207,12 @@ static struct i2c_board_info __initdata qnap_ts209_i2c_rtc = { | |||
| 207 | 207 | ||
| 208 | static struct gpio_keys_button qnap_ts209_buttons[] = { | 208 | static struct gpio_keys_button qnap_ts209_buttons[] = { |
| 209 | { | 209 | { |
| 210 | .code = KEY_RESTART, | 210 | .code = KEY_COPY, |
| 211 | .gpio = QNAP_TS209_GPIO_KEY_MEDIA, | 211 | .gpio = QNAP_TS209_GPIO_KEY_MEDIA, |
| 212 | .desc = "USB Copy Button", | 212 | .desc = "USB Copy Button", |
| 213 | .active_low = 1, | 213 | .active_low = 1, |
| 214 | }, { | 214 | }, { |
| 215 | .code = KEY_POWER, | 215 | .code = KEY_RESTART, |
| 216 | .gpio = QNAP_TS209_GPIO_KEY_RESET, | 216 | .gpio = QNAP_TS209_GPIO_KEY_RESET, |
| 217 | .desc = "Reset Button", | 217 | .desc = "Reset Button", |
| 218 | .active_low = 1, | 218 | .active_low = 1, |
| @@ -287,6 +287,10 @@ static void __init qnap_ts209_init(void) | |||
| 287 | /* | 287 | /* |
| 288 | * Configure peripherals. | 288 | * Configure peripherals. |
| 289 | */ | 289 | */ |
| 290 | orion5x_setup_dev_boot_win(QNAP_TS209_NOR_BOOT_BASE, | ||
| 291 | QNAP_TS209_NOR_BOOT_SIZE); | ||
| 292 | platform_device_register(&qnap_ts209_nor_flash); | ||
| 293 | |||
| 290 | orion5x_ehci0_init(); | 294 | orion5x_ehci0_init(); |
| 291 | orion5x_ehci1_init(); | 295 | orion5x_ehci1_init(); |
| 292 | qnap_tsx09_find_mac_addr(QNAP_TS209_NOR_BOOT_BASE + | 296 | qnap_tsx09_find_mac_addr(QNAP_TS209_NOR_BOOT_BASE + |
| @@ -296,10 +300,8 @@ static void __init qnap_ts209_init(void) | |||
| 296 | orion5x_i2c_init(); | 300 | orion5x_i2c_init(); |
| 297 | orion5x_sata_init(&qnap_ts209_sata_data); | 301 | orion5x_sata_init(&qnap_ts209_sata_data); |
| 298 | orion5x_uart0_init(); | 302 | orion5x_uart0_init(); |
| 299 | 303 | orion5x_uart1_init(); | |
| 300 | orion5x_setup_dev_boot_win(QNAP_TS209_NOR_BOOT_BASE, | 304 | orion5x_xor_init(); |
| 301 | QNAP_TS209_NOR_BOOT_SIZE); | ||
| 302 | platform_device_register(&qnap_ts209_nor_flash); | ||
| 303 | 305 | ||
| 304 | platform_device_register(&qnap_ts209_button_device); | 306 | platform_device_register(&qnap_ts209_button_device); |
| 305 | 307 | ||
diff --git a/arch/arm/mach-orion5x/ts409-setup.c b/arch/arm/mach-orion5x/ts409-setup.c index 6053e76ac967..d85588ac7ef8 100644 --- a/arch/arm/mach-orion5x/ts409-setup.c +++ b/arch/arm/mach-orion5x/ts409-setup.c | |||
| @@ -3,6 +3,9 @@ | |||
| 3 | * | 3 | * |
| 4 | * Maintainer: Sylver Bruneau <sylver.bruneau@gmail.com> | 4 | * Maintainer: Sylver Bruneau <sylver.bruneau@gmail.com> |
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2008 Sylver Bruneau <sylver.bruneau@gmail.com> | ||
| 7 | * Copyright (C) 2008 Martin Michlmayr <tbm@cyrius.com> | ||
| 8 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version | 11 | * as published by the Free Software Foundation; either version |
| @@ -16,6 +19,7 @@ | |||
| 16 | #include <linux/irq.h> | 19 | #include <linux/irq.h> |
| 17 | #include <linux/mtd/physmap.h> | 20 | #include <linux/mtd/physmap.h> |
| 18 | #include <linux/mv643xx_eth.h> | 21 | #include <linux/mv643xx_eth.h> |
| 22 | #include <linux/leds.h> | ||
| 19 | #include <linux/gpio_keys.h> | 23 | #include <linux/gpio_keys.h> |
| 20 | #include <linux/input.h> | 24 | #include <linux/input.h> |
| 21 | #include <linux/i2c.h> | 25 | #include <linux/i2c.h> |
| @@ -162,16 +166,59 @@ static struct i2c_board_info __initdata qnap_ts409_i2c_rtc = { | |||
| 162 | I2C_BOARD_INFO("s35390a", 0x30), | 166 | I2C_BOARD_INFO("s35390a", 0x30), |
| 163 | }; | 167 | }; |
| 164 | 168 | ||
| 169 | /***************************************************************************** | ||
| 170 | * LEDs attached to GPIO | ||
| 171 | ****************************************************************************/ | ||
| 172 | |||
| 173 | static struct gpio_led ts409_led_pins[] = { | ||
| 174 | { | ||
| 175 | .name = "ts409:red:sata1", | ||
| 176 | .gpio = 4, | ||
| 177 | .active_low = 1, | ||
| 178 | }, { | ||
| 179 | .name = "ts409:red:sata2", | ||
| 180 | .gpio = 5, | ||
| 181 | .active_low = 1, | ||
| 182 | }, { | ||
| 183 | .name = "ts409:red:sata3", | ||
| 184 | .gpio = 6, | ||
| 185 | .active_low = 1, | ||
| 186 | }, { | ||
| 187 | .name = "ts409:red:sata4", | ||
| 188 | .gpio = 7, | ||
| 189 | .active_low = 1, | ||
| 190 | }, | ||
| 191 | }; | ||
| 192 | |||
| 193 | static struct gpio_led_platform_data ts409_led_data = { | ||
| 194 | .leds = ts409_led_pins, | ||
| 195 | .num_leds = ARRAY_SIZE(ts409_led_pins), | ||
| 196 | }; | ||
| 197 | |||
| 198 | static struct platform_device ts409_leds = { | ||
| 199 | .name = "leds-gpio", | ||
| 200 | .id = -1, | ||
| 201 | .dev = { | ||
| 202 | .platform_data = &ts409_led_data, | ||
| 203 | }, | ||
| 204 | }; | ||
| 205 | |||
| 165 | /**************************************************************************** | 206 | /**************************************************************************** |
| 166 | * GPIO Attached Keys | 207 | * GPIO Attached Keys |
| 167 | * Power button is attached to the PIC microcontroller | 208 | * Power button is attached to the PIC microcontroller |
| 168 | ****************************************************************************/ | 209 | ****************************************************************************/ |
| 169 | 210 | ||
| 211 | #define QNAP_TS409_GPIO_KEY_RESET 14 | ||
| 170 | #define QNAP_TS409_GPIO_KEY_MEDIA 15 | 212 | #define QNAP_TS409_GPIO_KEY_MEDIA 15 |
| 171 | 213 | ||
| 172 | static struct gpio_keys_button qnap_ts409_buttons[] = { | 214 | static struct gpio_keys_button qnap_ts409_buttons[] = { |
| 173 | { | 215 | { |
| 174 | .code = KEY_RESTART, | 216 | .code = KEY_RESTART, |
| 217 | .gpio = QNAP_TS409_GPIO_KEY_RESET, | ||
| 218 | .desc = "Reset Button", | ||
| 219 | .active_low = 1, | ||
| 220 | }, { | ||
| 221 | .code = KEY_COPY, | ||
| 175 | .gpio = QNAP_TS409_GPIO_KEY_MEDIA, | 222 | .gpio = QNAP_TS409_GPIO_KEY_MEDIA, |
| 176 | .desc = "USB Copy Button", | 223 | .desc = "USB Copy Button", |
| 177 | .active_low = 1, | 224 | .active_low = 1, |
| @@ -231,6 +278,10 @@ static void __init qnap_ts409_init(void) | |||
| 231 | /* | 278 | /* |
| 232 | * Configure peripherals. | 279 | * Configure peripherals. |
| 233 | */ | 280 | */ |
| 281 | orion5x_setup_dev_boot_win(QNAP_TS409_NOR_BOOT_BASE, | ||
| 282 | QNAP_TS409_NOR_BOOT_SIZE); | ||
| 283 | platform_device_register(&qnap_ts409_nor_flash); | ||
| 284 | |||
| 234 | orion5x_ehci0_init(); | 285 | orion5x_ehci0_init(); |
| 235 | qnap_tsx09_find_mac_addr(QNAP_TS409_NOR_BOOT_BASE + | 286 | qnap_tsx09_find_mac_addr(QNAP_TS409_NOR_BOOT_BASE + |
| 236 | qnap_ts409_partitions[5].offset, | 287 | qnap_ts409_partitions[5].offset, |
| @@ -238,10 +289,7 @@ static void __init qnap_ts409_init(void) | |||
| 238 | orion5x_eth_init(&qnap_tsx09_eth_data); | 289 | orion5x_eth_init(&qnap_tsx09_eth_data); |
| 239 | orion5x_i2c_init(); | 290 | orion5x_i2c_init(); |
| 240 | orion5x_uart0_init(); | 291 | orion5x_uart0_init(); |
| 241 | 292 | orion5x_uart1_init(); | |
| 242 | orion5x_setup_dev_boot_win(QNAP_TS409_NOR_BOOT_BASE, | ||
| 243 | QNAP_TS409_NOR_BOOT_SIZE); | ||
| 244 | platform_device_register(&qnap_ts409_nor_flash); | ||
| 245 | 293 | ||
| 246 | platform_device_register(&qnap_ts409_button_device); | 294 | platform_device_register(&qnap_ts409_button_device); |
| 247 | 295 | ||
| @@ -255,6 +303,7 @@ static void __init qnap_ts409_init(void) | |||
| 255 | if (qnap_ts409_i2c_rtc.irq == 0) | 303 | if (qnap_ts409_i2c_rtc.irq == 0) |
| 256 | pr_warning("qnap_ts409_init: failed to get RTC IRQ\n"); | 304 | pr_warning("qnap_ts409_init: failed to get RTC IRQ\n"); |
| 257 | i2c_register_board_info(0, &qnap_ts409_i2c_rtc, 1); | 305 | i2c_register_board_info(0, &qnap_ts409_i2c_rtc, 1); |
| 306 | platform_device_register(&ts409_leds); | ||
| 258 | 307 | ||
| 259 | /* register tsx09 specific power-off method */ | 308 | /* register tsx09 specific power-off method */ |
| 260 | pm_power_off = qnap_tsx09_power_off; | 309 | pm_power_off = qnap_tsx09_power_off; |
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c index 014916a28fdc..ae0a5dccd2a1 100644 --- a/arch/arm/mach-orion5x/ts78xx-setup.c +++ b/arch/arm/mach-orion5x/ts78xx-setup.c | |||
| @@ -256,6 +256,7 @@ static void __init ts78xx_init(void) | |||
| 256 | orion5x_sata_init(&ts78xx_sata_data); | 256 | orion5x_sata_init(&ts78xx_sata_data); |
| 257 | orion5x_uart0_init(); | 257 | orion5x_uart0_init(); |
| 258 | orion5x_uart1_init(); | 258 | orion5x_uart1_init(); |
| 259 | orion5x_xor_init(); | ||
| 259 | 260 | ||
| 260 | orion5x_setup_dev_boot_win(TS78XX_NOR_BOOT_BASE, | 261 | orion5x_setup_dev_boot_win(TS78XX_NOR_BOOT_BASE, |
| 261 | TS78XX_NOR_BOOT_SIZE); | 262 | TS78XX_NOR_BOOT_SIZE); |
diff --git a/arch/arm/mach-pxa/clock.c b/arch/arm/mach-pxa/clock.c index c01eea88f787..ca8e20538157 100644 --- a/arch/arm/mach-pxa/clock.c +++ b/arch/arm/mach-pxa/clock.c | |||
| @@ -125,3 +125,28 @@ void clks_register(struct clk *clks, size_t num) | |||
| 125 | list_add(&clks[i].node, &clocks); | 125 | list_add(&clks[i].node, &clocks); |
| 126 | mutex_unlock(&clocks_mutex); | 126 | mutex_unlock(&clocks_mutex); |
| 127 | } | 127 | } |
| 128 | |||
| 129 | int clk_add_alias(char *alias, struct device *alias_dev, char *id, | ||
| 130 | struct device *dev) | ||
| 131 | { | ||
| 132 | struct clk *r = clk_lookup(dev, id); | ||
| 133 | struct clk *new; | ||
| 134 | |||
| 135 | if (!r) | ||
| 136 | return -ENODEV; | ||
| 137 | |||
| 138 | new = kzalloc(sizeof(struct clk), GFP_KERNEL); | ||
| 139 | |||
| 140 | if (!new) | ||
| 141 | return -ENOMEM; | ||
| 142 | |||
| 143 | new->name = alias; | ||
| 144 | new->dev = alias_dev; | ||
| 145 | new->other = r; | ||
| 146 | |||
| 147 | mutex_lock(&clocks_mutex); | ||
| 148 | list_add(&new->node, &clocks); | ||
| 149 | mutex_unlock(&clocks_mutex); | ||
| 150 | |||
| 151 | return 0; | ||
| 152 | } | ||
diff --git a/arch/arm/mach-pxa/clock.h b/arch/arm/mach-pxa/clock.h index 1ec8f9178aaf..73be795fe3bf 100644 --- a/arch/arm/mach-pxa/clock.h +++ b/arch/arm/mach-pxa/clock.h | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | #include <linux/list.h> | ||
| 2 | |||
| 1 | struct clk; | 3 | struct clk; |
| 2 | 4 | ||
| 3 | struct clkops { | 5 | struct clkops { |
| @@ -86,3 +88,6 @@ extern void clk_pxa3xx_cken_disable(struct clk *); | |||
| 86 | #endif | 88 | #endif |
| 87 | 89 | ||
| 88 | void clks_register(struct clk *clks, size_t num); | 90 | void clks_register(struct clk *clks, size_t num); |
| 91 | int clk_add_alias(char *alias, struct device *alias_dev, char *id, | ||
| 92 | struct device *dev); | ||
| 93 | |||
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 123a950db466..e703a8d209e2 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
| @@ -38,6 +38,7 @@ | |||
| 38 | #include <mach/pxa-regs.h> | 38 | #include <mach/pxa-regs.h> |
| 39 | #include <mach/pxa2xx-regs.h> | 39 | #include <mach/pxa2xx-regs.h> |
| 40 | #include <mach/pxa2xx-gpio.h> | 40 | #include <mach/pxa2xx-gpio.h> |
| 41 | #include <mach/i2c.h> | ||
| 41 | #include <mach/irda.h> | 42 | #include <mach/irda.h> |
| 42 | #include <mach/mmc.h> | 43 | #include <mach/mmc.h> |
| 43 | #include <mach/udc.h> | 44 | #include <mach/udc.h> |
| @@ -532,6 +533,7 @@ static void __init corgi_init(void) | |||
| 532 | pxa_set_udc_info(&udc_info); | 533 | pxa_set_udc_info(&udc_info); |
| 533 | pxa_set_mci_info(&corgi_mci_platform_data); | 534 | pxa_set_mci_info(&corgi_mci_platform_data); |
| 534 | pxa_set_ficp_info(&corgi_ficp_platform_data); | 535 | pxa_set_ficp_info(&corgi_ficp_platform_data); |
| 536 | pxa_set_i2c_info(NULL); | ||
| 535 | 537 | ||
| 536 | platform_scoop_config = &corgi_pcmcia_config; | 538 | platform_scoop_config = &corgi_pcmcia_config; |
| 537 | 539 | ||
diff --git a/arch/arm/mach-pxa/eseries.c b/arch/arm/mach-pxa/eseries.c index 03942450885b..001a252bd514 100644 --- a/arch/arm/mach-pxa/eseries.c +++ b/arch/arm/mach-pxa/eseries.c | |||
| @@ -10,18 +10,78 @@ | |||
| 10 | * | 10 | * |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <linux/kernel.h> | ||
| 13 | #include <linux/init.h> | 14 | #include <linux/init.h> |
| 14 | 15 | ||
| 15 | #include <asm/setup.h> | 16 | #include <asm/setup.h> |
| 16 | #include <asm/mach/arch.h> | 17 | #include <asm/mach/arch.h> |
| 17 | #include <mach/hardware.h> | ||
| 18 | #include <asm/mach-types.h> | 18 | #include <asm/mach-types.h> |
| 19 | 19 | ||
| 20 | #include <mach/mfp-pxa25x.h> | ||
| 21 | #include <mach/hardware.h> | ||
| 22 | |||
| 20 | #include "generic.h" | 23 | #include "generic.h" |
| 21 | 24 | ||
| 25 | static unsigned long e740_pin_config[] __initdata = { | ||
| 26 | /* Chip selects */ | ||
| 27 | GPIO15_nCS_1, /* CS1 - Flash */ | ||
| 28 | GPIO79_nCS_3, /* CS3 - IMAGEON */ | ||
| 29 | GPIO80_nCS_4, /* CS4 - TMIO */ | ||
| 30 | |||
| 31 | /* Clocks */ | ||
| 32 | GPIO12_32KHz, | ||
| 33 | |||
| 34 | /* BTUART */ | ||
| 35 | GPIO42_BTUART_RXD, | ||
| 36 | GPIO43_BTUART_TXD, | ||
| 37 | GPIO44_BTUART_CTS, | ||
| 38 | GPIO45_GPIO, /* Used by TMIO for #SUSPEND */ | ||
| 39 | |||
| 40 | /* PC Card */ | ||
| 41 | GPIO8_GPIO, /* CD0 */ | ||
| 42 | GPIO44_GPIO, /* CD1 */ | ||
| 43 | GPIO11_GPIO, /* IRQ0 */ | ||
| 44 | GPIO6_GPIO, /* IRQ1 */ | ||
| 45 | GPIO27_GPIO, /* RST0 */ | ||
| 46 | GPIO24_GPIO, /* RST1 */ | ||
| 47 | GPIO20_GPIO, /* PWR0 */ | ||
| 48 | GPIO23_GPIO, /* PWR1 */ | ||
| 49 | GPIO48_nPOE, | ||
| 50 | GPIO49_nPWE, | ||
| 51 | GPIO50_nPIOR, | ||
| 52 | GPIO51_nPIOW, | ||
| 53 | GPIO52_nPCE_1, | ||
| 54 | GPIO53_nPCE_2, | ||
| 55 | GPIO54_nPSKTSEL, | ||
| 56 | GPIO55_nPREG, | ||
| 57 | GPIO56_nPWAIT, | ||
| 58 | GPIO57_nIOIS16, | ||
| 59 | |||
| 60 | /* wakeup */ | ||
| 61 | GPIO0_GPIO | WAKEUP_ON_EDGE_RISE, | ||
| 62 | }; | ||
| 63 | |||
| 64 | static unsigned long e400_pin_config[] __initdata = { | ||
| 65 | /* Chip selects */ | ||
| 66 | GPIO15_nCS_1, /* CS1 - Flash */ | ||
| 67 | GPIO80_nCS_4, /* CS4 - TMIO */ | ||
| 68 | |||
| 69 | /* Clocks */ | ||
| 70 | GPIO12_32KHz, | ||
| 71 | |||
| 72 | /* BTUART */ | ||
| 73 | GPIO42_BTUART_RXD, | ||
| 74 | GPIO43_BTUART_TXD, | ||
| 75 | GPIO44_BTUART_CTS, | ||
| 76 | GPIO45_GPIO, /* Used by TMIO for #SUSPEND */ | ||
| 77 | |||
| 78 | /* wakeup */ | ||
| 79 | GPIO0_GPIO | WAKEUP_ON_EDGE_RISE, | ||
| 80 | }; | ||
| 81 | |||
| 22 | /* Only e800 has 128MB RAM */ | 82 | /* Only e800 has 128MB RAM */ |
| 23 | static void __init eseries_fixup(struct machine_desc *desc, | 83 | static void __init eseries_fixup(struct machine_desc *desc, |
| 24 | struct tag *tags, char **cmdline, struct meminfo *mi) | 84 | struct tag *tags, char **cmdline, struct meminfo *mi) |
| 25 | { | 85 | { |
| 26 | mi->nr_banks=1; | 86 | mi->nr_banks=1; |
| 27 | mi->bank[0].start = 0xa0000000; | 87 | mi->bank[0].start = 0xa0000000; |
| @@ -32,83 +92,95 @@ static void __init eseries_fixup(struct machine_desc *desc, | |||
| 32 | mi->bank[0].size = (64*1024*1024); | 92 | mi->bank[0].size = (64*1024*1024); |
| 33 | } | 93 | } |
| 34 | 94 | ||
| 95 | static void __init e740_init(void) | ||
| 96 | { | ||
| 97 | pxa2xx_mfp_config(ARRAY_AND_SIZE(e740_pin_config)); | ||
| 98 | } | ||
| 99 | |||
| 100 | static void __init e400_init(void) | ||
| 101 | { | ||
| 102 | pxa2xx_mfp_config(ARRAY_AND_SIZE(e400_pin_config)); | ||
| 103 | } | ||
| 104 | |||
| 35 | /* e-series machine definitions */ | 105 | /* e-series machine definitions */ |
| 36 | 106 | ||
| 37 | #ifdef CONFIG_MACH_E330 | 107 | #ifdef CONFIG_MACH_E330 |
| 38 | MACHINE_START(E330, "Toshiba e330") | 108 | MACHINE_START(E330, "Toshiba e330") |
| 39 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 109 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 40 | .phys_io = 0x40000000, | 110 | .phys_io = 0x40000000, |
| 41 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 111 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 42 | .boot_params = 0xa0000100, | 112 | .boot_params = 0xa0000100, |
| 43 | .map_io = pxa_map_io, | 113 | .map_io = pxa_map_io, |
| 44 | .init_irq = pxa25x_init_irq, | 114 | .init_irq = pxa25x_init_irq, |
| 45 | .fixup = eseries_fixup, | 115 | .fixup = eseries_fixup, |
| 46 | .timer = &pxa_timer, | 116 | .timer = &pxa_timer, |
| 47 | MACHINE_END | 117 | MACHINE_END |
| 48 | #endif | 118 | #endif |
| 49 | 119 | ||
| 50 | #ifdef CONFIG_MACH_E350 | 120 | #ifdef CONFIG_MACH_E350 |
| 51 | MACHINE_START(E350, "Toshiba e350") | 121 | MACHINE_START(E350, "Toshiba e350") |
| 52 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 122 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 53 | .phys_io = 0x40000000, | 123 | .phys_io = 0x40000000, |
| 54 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 124 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 55 | .boot_params = 0xa0000100, | 125 | .boot_params = 0xa0000100, |
| 56 | .map_io = pxa_map_io, | 126 | .map_io = pxa_map_io, |
| 57 | .init_irq = pxa25x_init_irq, | 127 | .init_irq = pxa25x_init_irq, |
| 58 | .fixup = eseries_fixup, | 128 | .fixup = eseries_fixup, |
| 59 | .timer = &pxa_timer, | 129 | .timer = &pxa_timer, |
| 60 | MACHINE_END | 130 | MACHINE_END |
| 61 | #endif | 131 | #endif |
| 62 | 132 | ||
| 63 | #ifdef CONFIG_MACH_E740 | 133 | #ifdef CONFIG_MACH_E740 |
| 64 | MACHINE_START(E740, "Toshiba e740") | 134 | MACHINE_START(E740, "Toshiba e740") |
| 65 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 135 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 66 | .phys_io = 0x40000000, | 136 | .phys_io = 0x40000000, |
| 67 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 137 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 68 | .boot_params = 0xa0000100, | 138 | .boot_params = 0xa0000100, |
| 69 | .map_io = pxa_map_io, | 139 | .map_io = pxa_map_io, |
| 70 | .init_irq = pxa25x_init_irq, | 140 | .init_irq = pxa25x_init_irq, |
| 71 | .fixup = eseries_fixup, | 141 | .fixup = eseries_fixup, |
| 72 | .timer = &pxa_timer, | 142 | .init_machine = e740_init, |
| 143 | .timer = &pxa_timer, | ||
| 73 | MACHINE_END | 144 | MACHINE_END |
| 74 | #endif | 145 | #endif |
| 75 | 146 | ||
| 76 | #ifdef CONFIG_MACH_E750 | 147 | #ifdef CONFIG_MACH_E750 |
| 77 | MACHINE_START(E750, "Toshiba e750") | 148 | MACHINE_START(E750, "Toshiba e750") |
| 78 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 149 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 79 | .phys_io = 0x40000000, | 150 | .phys_io = 0x40000000, |
| 80 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 151 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 81 | .boot_params = 0xa0000100, | 152 | .boot_params = 0xa0000100, |
| 82 | .map_io = pxa_map_io, | 153 | .map_io = pxa_map_io, |
| 83 | .init_irq = pxa25x_init_irq, | 154 | .init_irq = pxa25x_init_irq, |
| 84 | .fixup = eseries_fixup, | 155 | .fixup = eseries_fixup, |
| 85 | .timer = &pxa_timer, | 156 | .timer = &pxa_timer, |
| 86 | MACHINE_END | 157 | MACHINE_END |
| 87 | #endif | 158 | #endif |
| 88 | 159 | ||
| 89 | #ifdef CONFIG_MACH_E400 | 160 | #ifdef CONFIG_MACH_E400 |
| 90 | MACHINE_START(E400, "Toshiba e400") | 161 | MACHINE_START(E400, "Toshiba e400") |
| 91 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 162 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 92 | .phys_io = 0x40000000, | 163 | .phys_io = 0x40000000, |
| 93 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 164 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 94 | .boot_params = 0xa0000100, | 165 | .boot_params = 0xa0000100, |
| 95 | .map_io = pxa_map_io, | 166 | .map_io = pxa_map_io, |
| 96 | .init_irq = pxa25x_init_irq, | 167 | .init_irq = pxa25x_init_irq, |
| 97 | .fixup = eseries_fixup, | 168 | .fixup = eseries_fixup, |
| 98 | .timer = &pxa_timer, | 169 | .init_machine = e400_init, |
| 170 | .timer = &pxa_timer, | ||
| 99 | MACHINE_END | 171 | MACHINE_END |
| 100 | #endif | 172 | #endif |
| 101 | 173 | ||
| 102 | #ifdef CONFIG_MACH_E800 | 174 | #ifdef CONFIG_MACH_E800 |
| 103 | MACHINE_START(E800, "Toshiba e800") | 175 | MACHINE_START(E800, "Toshiba e800") |
| 104 | /* Maintainer: Ian Molton (spyro@f2s.com) */ | 176 | /* Maintainer: Ian Molton (spyro@f2s.com) */ |
| 105 | .phys_io = 0x40000000, | 177 | .phys_io = 0x40000000, |
| 106 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 178 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
| 107 | .boot_params = 0xa0000100, | 179 | .boot_params = 0xa0000100, |
| 108 | .map_io = pxa_map_io, | 180 | .map_io = pxa_map_io, |
| 109 | .init_irq = pxa25x_init_irq, | 181 | .init_irq = pxa25x_init_irq, |
| 110 | .fixup = eseries_fixup, | 182 | .fixup = eseries_fixup, |
| 111 | .timer = &pxa_timer, | 183 | .timer = &pxa_timer, |
| 112 | MACHINE_END | 184 | MACHINE_END |
| 113 | #endif | 185 | #endif |
| 114 | 186 | ||
diff --git a/arch/arm/mach-pxa/include/mach/irqs.h b/arch/arm/mach-pxa/include/mach/irqs.h index 32772bc6925c..108b5db9b2af 100644 --- a/arch/arm/mach-pxa/include/mach/irqs.h +++ b/arch/arm/mach-pxa/include/mach/irqs.h | |||
| @@ -183,6 +183,7 @@ | |||
| 183 | defined(CONFIG_MACH_TOSA) || \ | 183 | defined(CONFIG_MACH_TOSA) || \ |
| 184 | defined(CONFIG_MACH_MAINSTONE) || \ | 184 | defined(CONFIG_MACH_MAINSTONE) || \ |
| 185 | defined(CONFIG_MACH_PCM027) || \ | 185 | defined(CONFIG_MACH_PCM027) || \ |
| 186 | defined(CONFIG_ARCH_PXA_ESERIES) || \ | ||
| 186 | defined(CONFIG_MACH_MAGICIAN) | 187 | defined(CONFIG_MACH_MAGICIAN) |
| 187 | #define NR_IRQS (IRQ_BOARD_END) | 188 | #define NR_IRQS (IRQ_BOARD_END) |
| 188 | #elif defined(CONFIG_MACH_ZYLONITE) | 189 | #elif defined(CONFIG_MACH_ZYLONITE) |
diff --git a/arch/arm/mach-pxa/include/mach/mtd-xip.h b/arch/arm/mach-pxa/include/mach/mtd-xip.h index 351f32f13ce4..4d452fcb1508 100644 --- a/arch/arm/mach-pxa/include/mach/mtd-xip.h +++ b/arch/arm/mach-pxa/include/mach/mtd-xip.h | |||
| @@ -10,8 +10,6 @@ | |||
| 10 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
| 13 | * | ||
| 14 | * $Id: xip.h,v 1.2 2004/12/01 15:49:10 nico Exp $ | ||
| 15 | */ | 13 | */ |
| 16 | 14 | ||
| 17 | #ifndef __ARCH_PXA_MTD_XIP_H__ | 15 | #ifndef __ARCH_PXA_MTD_XIP_H__ |
diff --git a/arch/arm/mach-pxa/include/mach/poodle.h b/arch/arm/mach-pxa/include/mach/poodle.h index 8956afe8195e..67debc47e8c6 100644 --- a/arch/arm/mach-pxa/include/mach/poodle.h +++ b/arch/arm/mach-pxa/include/mach/poodle.h | |||
| @@ -70,6 +70,12 @@ | |||
| 70 | #define POODLE_SCOOP_IO_DIR ( POODLE_SCOOP_VPEN | POODLE_SCOOP_HS_OUT ) | 70 | #define POODLE_SCOOP_IO_DIR ( POODLE_SCOOP_VPEN | POODLE_SCOOP_HS_OUT ) |
| 71 | #define POODLE_SCOOP_IO_OUT ( 0 ) | 71 | #define POODLE_SCOOP_IO_OUT ( 0 ) |
| 72 | 72 | ||
| 73 | #define POODLE_LOCOMO_GPIO_AMP_ON LOCOMO_GPIO(8) | ||
| 74 | #define POODLE_LOCOMO_GPIO_MUTE_L LOCOMO_GPIO(10) | ||
| 75 | #define POODLE_LOCOMO_GPIO_MUTE_R LOCOMO_GPIO(11) | ||
| 76 | #define POODLE_LOCOMO_GPIO_232VCC_ON LOCOMO_GPIO(12) | ||
| 77 | #define POODLE_LOCOMO_GPIO_JK_B LOCOMO_GPIO(13) | ||
| 78 | |||
| 73 | extern struct platform_device poodle_locomo_device; | 79 | extern struct platform_device poodle_locomo_device; |
| 74 | 80 | ||
| 75 | #endif /* __ASM_ARCH_POODLE_H */ | 81 | #endif /* __ASM_ARCH_POODLE_H */ |
diff --git a/arch/arm/mach-pxa/include/mach/pxafb.h b/arch/arm/mach-pxa/include/mach/pxafb.h index 65447549616f..8e591118371e 100644 --- a/arch/arm/mach-pxa/include/mach/pxafb.h +++ b/arch/arm/mach-pxa/include/mach/pxafb.h | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | * bits 10-17 : for AC Bias Pin Frequency | 28 | * bits 10-17 : for AC Bias Pin Frequency |
| 29 | * bit 18 : for output enable polarity | 29 | * bit 18 : for output enable polarity |
| 30 | * bit 19 : for pixel clock edge | 30 | * bit 19 : for pixel clock edge |
| 31 | * bit 20 : for output pixel format when base is RGBT16 | ||
| 31 | */ | 32 | */ |
| 32 | #define LCD_CONN_TYPE(_x) ((_x) & 0x0f) | 33 | #define LCD_CONN_TYPE(_x) ((_x) & 0x0f) |
| 33 | #define LCD_CONN_WIDTH(_x) (((_x) >> 4) & 0x1f) | 34 | #define LCD_CONN_WIDTH(_x) (((_x) >> 4) & 0x1f) |
| @@ -53,10 +54,11 @@ | |||
| 53 | #define LCD_SMART_PANEL_18BPP ((18 << 4) | LCD_TYPE_SMART_PANEL) | 54 | #define LCD_SMART_PANEL_18BPP ((18 << 4) | LCD_TYPE_SMART_PANEL) |
| 54 | 55 | ||
| 55 | #define LCD_AC_BIAS_FREQ(x) (((x) & 0xff) << 10) | 56 | #define LCD_AC_BIAS_FREQ(x) (((x) & 0xff) << 10) |
| 56 | #define LCD_BIAS_ACTIVE_HIGH (0 << 17) | 57 | #define LCD_BIAS_ACTIVE_HIGH (0 << 18) |
| 57 | #define LCD_BIAS_ACTIVE_LOW (1 << 17) | 58 | #define LCD_BIAS_ACTIVE_LOW (1 << 18) |
| 58 | #define LCD_PCLK_EDGE_RISE (0 << 18) | 59 | #define LCD_PCLK_EDGE_RISE (0 << 19) |
| 59 | #define LCD_PCLK_EDGE_FALL (1 << 18) | 60 | #define LCD_PCLK_EDGE_FALL (1 << 19) |
| 61 | #define LCD_ALTERNATE_MAPPING (1 << 20) | ||
| 60 | 62 | ||
| 61 | /* | 63 | /* |
| 62 | * This structure describes the machine which we are running on. | 64 | * This structure describes the machine which we are running on. |
diff --git a/arch/arm/mach-pxa/lubbock.c b/arch/arm/mach-pxa/lubbock.c index bb9e09208b9f..4ffdff2d9ff1 100644 --- a/arch/arm/mach-pxa/lubbock.c +++ b/arch/arm/mach-pxa/lubbock.c | |||
| @@ -52,6 +52,7 @@ | |||
| 52 | #include <mach/mmc.h> | 52 | #include <mach/mmc.h> |
| 53 | 53 | ||
| 54 | #include "generic.h" | 54 | #include "generic.h" |
| 55 | #include "clock.h" | ||
| 55 | #include "devices.h" | 56 | #include "devices.h" |
| 56 | 57 | ||
| 57 | static unsigned long lubbock_pin_config[] __initdata = { | 58 | static unsigned long lubbock_pin_config[] __initdata = { |
| @@ -485,6 +486,7 @@ static void __init lubbock_init(void) | |||
| 485 | 486 | ||
| 486 | pxa2xx_mfp_config(ARRAY_AND_SIZE(lubbock_pin_config)); | 487 | pxa2xx_mfp_config(ARRAY_AND_SIZE(lubbock_pin_config)); |
| 487 | 488 | ||
| 489 | clk_add_alias("SA1111_CLK", NULL, "GPIO11_CLK", NULL); | ||
| 488 | pxa_set_udc_info(&udc_info); | 490 | pxa_set_udc_info(&udc_info); |
| 489 | set_pxa_fb_info(&sharp_lm8v31); | 491 | set_pxa_fb_info(&sharp_lm8v31); |
| 490 | pxa_set_mci_info(&lubbock_mci_platform_data); | 492 | pxa_set_mci_info(&lubbock_mci_platform_data); |
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index 055ec63d768c..3f5f484549b3 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #include <mach/pxa2xx-gpio.h> | 36 | #include <mach/pxa2xx-gpio.h> |
| 37 | #include <mach/mmc.h> | 37 | #include <mach/mmc.h> |
| 38 | #include <mach/udc.h> | 38 | #include <mach/udc.h> |
| 39 | #include <mach/i2c.h> | ||
| 39 | #include <mach/irda.h> | 40 | #include <mach/irda.h> |
| 40 | #include <mach/poodle.h> | 41 | #include <mach/poodle.h> |
| 41 | #include <mach/pxafb.h> | 42 | #include <mach/pxafb.h> |
| @@ -387,6 +388,7 @@ static void __init poodle_init(void) | |||
| 387 | pxa_set_udc_info(&udc_info); | 388 | pxa_set_udc_info(&udc_info); |
| 388 | pxa_set_mci_info(&poodle_mci_platform_data); | 389 | pxa_set_mci_info(&poodle_mci_platform_data); |
| 389 | pxa_set_ficp_info(&poodle_ficp_platform_data); | 390 | pxa_set_ficp_info(&poodle_ficp_platform_data); |
| 391 | pxa_set_i2c_info(NULL); | ||
| 390 | 392 | ||
| 391 | platform_scoop_config = &poodle_pcmcia_config; | 393 | platform_scoop_config = &poodle_pcmcia_config; |
| 392 | 394 | ||
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 9e5d8a8c6424..305452b56e91 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
| @@ -166,8 +166,7 @@ static struct clk pxa25x_hwuart_clk = | |||
| 166 | ; | 166 | ; |
| 167 | 167 | ||
| 168 | /* | 168 | /* |
| 169 | * PXA 2xx clock declarations. Order is important (see aliases below) | 169 | * PXA 2xx clock declarations. |
| 170 | * Please be careful not to disrupt the ordering. | ||
| 171 | */ | 170 | */ |
| 172 | static struct clk pxa25x_clks[] = { | 171 | static struct clk pxa25x_clks[] = { |
| 173 | INIT_CK("LCDCLK", LCD, &clk_pxa25x_lcd_ops, &pxa_device_fb.dev), | 172 | INIT_CK("LCDCLK", LCD, &clk_pxa25x_lcd_ops, &pxa_device_fb.dev), |
| @@ -194,11 +193,6 @@ static struct clk pxa25x_clks[] = { | |||
| 194 | INIT_CKEN("FICPCLK", FICP, 47923000, 0, NULL), | 193 | INIT_CKEN("FICPCLK", FICP, 47923000, 0, NULL), |
| 195 | }; | 194 | }; |
| 196 | 195 | ||
| 197 | static struct clk pxa2xx_clk_aliases[] = { | ||
| 198 | INIT_CKOTHER("GPIO7_CLK", &pxa25x_clks[4], NULL), | ||
| 199 | INIT_CKOTHER("SA1111_CLK", &pxa25x_clks[5], NULL), | ||
| 200 | }; | ||
| 201 | |||
| 202 | #ifdef CONFIG_PM | 196 | #ifdef CONFIG_PM |
| 203 | 197 | ||
| 204 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x | 198 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x |
| @@ -375,8 +369,6 @@ static int __init pxa25x_init(void) | |||
| 375 | if (cpu_is_pxa255()) | 369 | if (cpu_is_pxa255()) |
| 376 | ret = platform_device_register(&pxa_device_hwuart); | 370 | ret = platform_device_register(&pxa_device_hwuart); |
| 377 | 371 | ||
| 378 | clks_register(pxa2xx_clk_aliases, ARRAY_SIZE(pxa2xx_clk_aliases)); | ||
| 379 | |||
| 380 | return ret; | 372 | return ret; |
| 381 | } | 373 | } |
| 382 | 374 | ||
diff --git a/arch/arm/mach-pxa/pxa300.c b/arch/arm/mach-pxa/pxa300.c index 494fc1f032db..9adc7fc4618a 100644 --- a/arch/arm/mach-pxa/pxa300.c +++ b/arch/arm/mach-pxa/pxa300.c | |||
| @@ -90,7 +90,9 @@ static struct clk common_clks[] = { | |||
| 90 | }; | 90 | }; |
| 91 | 91 | ||
| 92 | static struct clk pxa310_clks[] = { | 92 | static struct clk pxa310_clks[] = { |
| 93 | #ifdef CONFIG_CPU_PXA310 | ||
| 93 | PXA3xx_CKEN("MMCCLK", MMC3, 19500000, 0, &pxa3xx_device_mci3.dev), | 94 | PXA3xx_CKEN("MMCCLK", MMC3, 19500000, 0, &pxa3xx_device_mci3.dev), |
| 95 | #endif | ||
| 94 | }; | 96 | }; |
| 95 | 97 | ||
| 96 | static int __init pxa300_init(void) | 98 | static int __init pxa300_init(void) |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index cd39005c98ff..b569f3b4cf3a 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | #include <mach/pxa2xx-gpio.h> | 40 | #include <mach/pxa2xx-gpio.h> |
| 41 | #include <mach/pxa27x-udc.h> | 41 | #include <mach/pxa27x-udc.h> |
| 42 | #include <mach/reset.h> | 42 | #include <mach/reset.h> |
| 43 | #include <mach/i2c.h> | ||
| 43 | #include <mach/irda.h> | 44 | #include <mach/irda.h> |
| 44 | #include <mach/mmc.h> | 45 | #include <mach/mmc.h> |
| 45 | #include <mach/ohci.h> | 46 | #include <mach/ohci.h> |
| @@ -574,6 +575,7 @@ static void __init common_init(void) | |||
| 574 | pxa_set_ficp_info(&spitz_ficp_platform_data); | 575 | pxa_set_ficp_info(&spitz_ficp_platform_data); |
| 575 | set_pxa_fb_parent(&spitzssp_device.dev); | 576 | set_pxa_fb_parent(&spitzssp_device.dev); |
| 576 | set_pxa_fb_info(&spitz_pxafb_info); | 577 | set_pxa_fb_info(&spitz_pxafb_info); |
| 578 | pxa_set_i2c_info(NULL); | ||
| 577 | } | 579 | } |
| 578 | 580 | ||
| 579 | #if defined(CONFIG_MACH_SPITZ) || defined(CONFIG_MACH_BORZOI) | 581 | #if defined(CONFIG_MACH_SPITZ) || defined(CONFIG_MACH_BORZOI) |
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-clock.h b/arch/arm/mach-s3c2410/include/mach/regs-clock.h index d583688458a4..b3f90aa78076 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-clock.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-clock.h | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #ifndef __ASM_ARM_REGS_CLOCK | 13 | #ifndef __ASM_ARM_REGS_CLOCK |
| 14 | #define __ASM_ARM_REGS_CLOCK "$Id: clock.h,v 1.4 2003/04/30 14:50:51 ben Exp $" | 14 | #define __ASM_ARM_REGS_CLOCK |
| 15 | 15 | ||
| 16 | #define S3C2410_CLKREG(x) ((x) + S3C24XX_VA_CLKPWR) | 16 | #define S3C2410_CLKREG(x) ((x) + S3C24XX_VA_CLKPWR) |
| 17 | 17 | ||
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-gpio.h b/arch/arm/mach-s3c2410/include/mach/regs-gpio.h index 30bec027f5fa..528080ceac44 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-gpio.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-gpio.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | #ifndef __ASM_ARCH_REGS_GPIO_H | 14 | #ifndef __ASM_ARCH_REGS_GPIO_H |
| 15 | #define __ASM_ARCH_REGS_GPIO_H "$Id: gpio.h,v 1.5 2003/05/19 12:51:08 ben Exp $" | 15 | #define __ASM_ARCH_REGS_GPIO_H |
| 16 | 16 | ||
| 17 | #define S3C2410_GPIONO(bank,offset) ((bank) + (offset)) | 17 | #define S3C2410_GPIONO(bank,offset) ((bank) + (offset)) |
| 18 | 18 | ||
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-irq.h b/arch/arm/mach-s3c2410/include/mach/regs-irq.h index b057c06d167a..de86ee8812bd 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-irq.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-irq.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | 11 | ||
| 12 | #ifndef ___ASM_ARCH_REGS_IRQ_H | 12 | #ifndef ___ASM_ARCH_REGS_IRQ_H |
| 13 | #define ___ASM_ARCH_REGS_IRQ_H "$Id: irq.h,v 1.3 2003/03/25 21:29:06 ben Exp $" | 13 | #define ___ASM_ARCH_REGS_IRQ_H |
| 14 | 14 | ||
| 15 | /* interrupt controller */ | 15 | /* interrupt controller */ |
| 16 | 16 | ||
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-lcd.h b/arch/arm/mach-s3c2410/include/mach/regs-lcd.h index 893b8742f954..ee8f040aff5f 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-lcd.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-lcd.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | 11 | ||
| 12 | #ifndef ___ASM_ARCH_REGS_LCD_H | 12 | #ifndef ___ASM_ARCH_REGS_LCD_H |
| 13 | #define ___ASM_ARCH_REGS_LCD_H "$Id: lcd.h,v 1.3 2003/06/26 13:25:06 ben Exp $" | 13 | #define ___ASM_ARCH_REGS_LCD_H |
| 14 | 14 | ||
| 15 | #define S3C2410_LCDREG(x) (x) | 15 | #define S3C2410_LCDREG(x) (x) |
| 16 | 16 | ||
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-mem.h b/arch/arm/mach-s3c2410/include/mach/regs-mem.h index f9926abd5cde..57759804e2fa 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-mem.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-mem.h | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #ifndef __ASM_ARM_MEMREGS_H | 13 | #ifndef __ASM_ARM_MEMREGS_H |
| 14 | #define __ASM_ARM_MEMREGS_H "$Id: regs.h,v 1.8 2003/05/01 15:55:41 ben Exp $" | 14 | #define __ASM_ARM_MEMREGS_H |
| 15 | 15 | ||
| 16 | #ifndef S3C2410_MEMREG | 16 | #ifndef S3C2410_MEMREG |
| 17 | #define S3C2410_MEMREG(x) (S3C24XX_VA_MEMCTRL + (x)) | 17 | #define S3C2410_MEMREG(x) (S3C24XX_VA_MEMCTRL + (x)) |
diff --git a/arch/arm/mach-s3c2410/include/mach/regs-s3c2443-clock.h b/arch/arm/mach-s3c2410/include/mach/regs-s3c2443-clock.h index 7dd458363a51..6026d091a2fe 100644 --- a/arch/arm/mach-s3c2410/include/mach/regs-s3c2443-clock.h +++ b/arch/arm/mach-s3c2410/include/mach/regs-s3c2443-clock.h | |||
| @@ -48,11 +48,11 @@ | |||
| 48 | #define S3C2443_CLKSRC_I2S_EPLLREF3 (3<<14) | 48 | #define S3C2443_CLKSRC_I2S_EPLLREF3 (3<<14) |
| 49 | #define S3C2443_CLKSRC_I2S_MASK (3<<14) | 49 | #define S3C2443_CLKSRC_I2S_MASK (3<<14) |
| 50 | 50 | ||
| 51 | #define S3C2443_CLKSRC_EPLLREF_XTAL (2<<8) | 51 | #define S3C2443_CLKSRC_EPLLREF_XTAL (2<<7) |
| 52 | #define S3C2443_CLKSRC_EPLLREF_EXTCLK (3<<8) | 52 | #define S3C2443_CLKSRC_EPLLREF_EXTCLK (3<<7) |
| 53 | #define S3C2443_CLKSRC_EPLLREF_MPLLREF (0<<8) | 53 | #define S3C2443_CLKSRC_EPLLREF_MPLLREF (0<<7) |
| 54 | #define S3C2443_CLKSRC_EPLLREF_MPLLREF2 (1<<8) | 54 | #define S3C2443_CLKSRC_EPLLREF_MPLLREF2 (1<<7) |
| 55 | #define S3C2443_CLKSRC_EPLLREF_MASK (3<<8) | 55 | #define S3C2443_CLKSRC_EPLLREF_MASK (3<<7) |
| 56 | 56 | ||
| 57 | #define S3C2443_CLKSRC_ESYSCLK_EPLL (1<<6) | 57 | #define S3C2443_CLKSRC_ESYSCLK_EPLL (1<<6) |
| 58 | #define S3C2443_CLKSRC_MSYSCLK_MPLL (1<<4) | 58 | #define S3C2443_CLKSRC_MSYSCLK_MPLL (1<<4) |
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index fb1e78e28e50..24c6334fac89 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c | |||
| @@ -562,7 +562,7 @@ static struct platform_device *bast_devices[] __initdata = { | |||
| 562 | &bast_sio, | 562 | &bast_sio, |
| 563 | }; | 563 | }; |
| 564 | 564 | ||
| 565 | static struct clk *bast_clocks[] = { | 565 | static struct clk *bast_clocks[] __initdata = { |
| 566 | &s3c24xx_dclk0, | 566 | &s3c24xx_dclk0, |
| 567 | &s3c24xx_dclk1, | 567 | &s3c24xx_dclk1, |
| 568 | &s3c24xx_clkout0, | 568 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2410/mach-smdk2410.c b/arch/arm/mach-s3c2410/mach-smdk2410.c index c9040080727e..b88939d72282 100644 --- a/arch/arm/mach-s3c2410/mach-smdk2410.c +++ b/arch/arm/mach-s3c2410/mach-smdk2410.c | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | * Copyright (C) 2004 by FS Forth-Systeme GmbH | 5 | * Copyright (C) 2004 by FS Forth-Systeme GmbH |
| 6 | * All rights reserved. | 6 | * All rights reserved. |
| 7 | * | 7 | * |
| 8 | * $Id: mach-smdk2410.c,v 1.1 2004/05/11 14:15:38 mpietrek Exp $ | ||
| 9 | * @Author: Jonas Dietsche | 8 | * @Author: Jonas Dietsche |
| 10 | * | 9 | * |
| 11 | * This program is free software; you can redistribute it and/or | 10 | * This program is free software; you can redistribute it and/or |
diff --git a/arch/arm/mach-s3c2410/mach-vr1000.c b/arch/arm/mach-s3c2410/mach-vr1000.c index 12cbca68f57d..fbc0213d5485 100644 --- a/arch/arm/mach-s3c2410/mach-vr1000.c +++ b/arch/arm/mach-s3c2410/mach-vr1000.c | |||
| @@ -344,7 +344,7 @@ static struct platform_device *vr1000_devices[] __initdata = { | |||
| 344 | &vr1000_led3, | 344 | &vr1000_led3, |
| 345 | }; | 345 | }; |
| 346 | 346 | ||
| 347 | static struct clk *vr1000_clocks[] = { | 347 | static struct clk *vr1000_clocks[] __initdata = { |
| 348 | &s3c24xx_dclk0, | 348 | &s3c24xx_dclk0, |
| 349 | &s3c24xx_dclk1, | 349 | &s3c24xx_dclk1, |
| 350 | &s3c24xx_clkout0, | 350 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2410/nor-simtec.c b/arch/arm/mach-s3c2410/nor-simtec.c index b2ae237042a5..598d130633dc 100644 --- a/arch/arm/mach-s3c2410/nor-simtec.c +++ b/arch/arm/mach-s3c2410/nor-simtec.c | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | #include <mach/bast-map.h> | 30 | #include <mach/bast-map.h> |
| 31 | #include <mach/bast-cpld.h> | 31 | #include <mach/bast-cpld.h> |
| 32 | 32 | ||
| 33 | #include "nor-simtec.h" | ||
| 33 | 34 | ||
| 34 | static void simtec_nor_vpp(struct map_info *map, int vpp) | 35 | static void simtec_nor_vpp(struct map_info *map, int vpp) |
| 35 | { | 36 | { |
| @@ -50,7 +51,7 @@ static void simtec_nor_vpp(struct map_info *map, int vpp) | |||
| 50 | local_irq_restore(flags); | 51 | local_irq_restore(flags); |
| 51 | } | 52 | } |
| 52 | 53 | ||
| 53 | struct physmap_flash_data simtec_nor_pdata = { | 54 | static struct physmap_flash_data simtec_nor_pdata = { |
| 54 | .width = 2, | 55 | .width = 2, |
| 55 | .set_vpp = simtec_nor_vpp, | 56 | .set_vpp = simtec_nor_vpp, |
| 56 | .nr_parts = 0, | 57 | .nr_parts = 0, |
diff --git a/arch/arm/mach-s3c2412/mach-jive.c b/arch/arm/mach-s3c2412/mach-jive.c index 30f613a79bfe..ad980a1690c2 100644 --- a/arch/arm/mach-s3c2412/mach-jive.c +++ b/arch/arm/mach-s3c2412/mach-jive.c | |||
| @@ -26,9 +26,6 @@ | |||
| 26 | 26 | ||
| 27 | #include <linux/spi/spi.h> | 27 | #include <linux/spi/spi.h> |
| 28 | 28 | ||
| 29 | #include <linux/mtd/mtd.h> | ||
| 30 | #include <linux/mtd/partitions.h> | ||
| 31 | |||
| 32 | #include <asm/mach/arch.h> | 29 | #include <asm/mach/arch.h> |
| 33 | #include <asm/mach/map.h> | 30 | #include <asm/mach/map.h> |
| 34 | #include <asm/mach/irq.h> | 31 | #include <asm/mach/irq.h> |
| @@ -398,7 +395,7 @@ static void jive_lcd_spi_chipselect(struct s3c2410_spigpio_info *spi, int cs) | |||
| 398 | } | 395 | } |
| 399 | 396 | ||
| 400 | static struct s3c2410_spigpio_info jive_lcd_spi = { | 397 | static struct s3c2410_spigpio_info jive_lcd_spi = { |
| 401 | .bus_num = 0, | 398 | .bus_num = 1, |
| 402 | .pin_clk = S3C2410_GPG8, | 399 | .pin_clk = S3C2410_GPG8, |
| 403 | .pin_mosi = S3C2410_GPB8, | 400 | .pin_mosi = S3C2410_GPB8, |
| 404 | .chip_select = jive_lcd_spi_chipselect, | 401 | .chip_select = jive_lcd_spi_chipselect, |
diff --git a/arch/arm/mach-s3c2440/mach-anubis.c b/arch/arm/mach-s3c2440/mach-anubis.c index 265c77dec9d7..441f4bc09472 100644 --- a/arch/arm/mach-s3c2440/mach-anubis.c +++ b/arch/arm/mach-s3c2440/mach-anubis.c | |||
| @@ -414,7 +414,7 @@ static struct platform_device *anubis_devices[] __initdata = { | |||
| 414 | &anubis_device_sm501, | 414 | &anubis_device_sm501, |
| 415 | }; | 415 | }; |
| 416 | 416 | ||
| 417 | static struct clk *anubis_clocks[] = { | 417 | static struct clk *anubis_clocks[] __initdata = { |
| 418 | &s3c24xx_dclk0, | 418 | &s3c24xx_dclk0, |
| 419 | &s3c24xx_dclk1, | 419 | &s3c24xx_dclk1, |
| 420 | &s3c24xx_clkout0, | 420 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index d2ee0cd148c6..8b83f93b6102 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
| @@ -341,7 +341,7 @@ static struct platform_device *osiris_devices[] __initdata = { | |||
| 341 | &osiris_pcmcia, | 341 | &osiris_pcmcia, |
| 342 | }; | 342 | }; |
| 343 | 343 | ||
| 344 | static struct clk *osiris_clocks[] = { | 344 | static struct clk *osiris_clocks[] __initdata = { |
| 345 | &s3c24xx_dclk0, | 345 | &s3c24xx_dclk0, |
| 346 | &s3c24xx_dclk1, | 346 | &s3c24xx_dclk1, |
| 347 | &s3c24xx_clkout0, | 347 | &s3c24xx_clkout0, |
diff --git a/arch/arm/mach-sa1100/cpu-sa1110.c b/arch/arm/mach-sa1100/cpu-sa1110.c index 39d38c801736..029dbfbbafcf 100644 --- a/arch/arm/mach-sa1100/cpu-sa1110.c +++ b/arch/arm/mach-sa1100/cpu-sa1110.c | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001 Russell King | 4 | * Copyright (C) 2001 Russell King |
| 5 | * | 5 | * |
| 6 | * $Id: cpu-sa1110.c,v 1.9 2002/07/06 16:53:18 rmk Exp $ | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
diff --git a/arch/arm/mach-sa1100/include/mach/mtd-xip.h b/arch/arm/mach-sa1100/include/mach/mtd-xip.h index 80cfdac2b944..eaa09e86ad16 100644 --- a/arch/arm/mach-sa1100/include/mach/mtd-xip.h +++ b/arch/arm/mach-sa1100/include/mach/mtd-xip.h | |||
| @@ -10,8 +10,6 @@ | |||
| 10 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
| 13 | * | ||
| 14 | * $Id: xip.h,v 1.2 2004/12/01 15:49:10 nico Exp $ | ||
| 15 | */ | 13 | */ |
| 16 | 14 | ||
| 17 | #ifndef __ARCH_SA1100_MTD_XIP_H__ | 15 | #ifndef __ARCH_SA1100_MTD_XIP_H__ |
diff --git a/arch/arm/mm/cache-feroceon-l2.c b/arch/arm/mm/cache-feroceon-l2.c index 20eec4ba173f..7b5a25d81576 100644 --- a/arch/arm/mm/cache-feroceon-l2.c +++ b/arch/arm/mm/cache-feroceon-l2.c | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | 14 | ||
| 15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
| 16 | #include <asm/cacheflush.h> | 16 | #include <asm/cacheflush.h> |
| 17 | #include <asm/plat-orion/cache-feroceon-l2.h> | 17 | #include <plat/cache-feroceon-l2.h> |
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | /* | 20 | /* |
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 2d6d682c206a..25d9a11eb617 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
| @@ -568,6 +568,55 @@ void __init iotable_init(struct map_desc *io_desc, int nr) | |||
| 568 | create_mapping(io_desc + i); | 568 | create_mapping(io_desc + i); |
| 569 | } | 569 | } |
| 570 | 570 | ||
| 571 | static int __init check_membank_valid(struct membank *mb) | ||
| 572 | { | ||
| 573 | /* | ||
| 574 | * Check whether this memory region has non-zero size. | ||
| 575 | */ | ||
| 576 | if (mb->size == 0) | ||
| 577 | return 0; | ||
| 578 | |||
| 579 | /* | ||
| 580 | * Check whether this memory region would entirely overlap | ||
| 581 | * the vmalloc area. | ||
| 582 | */ | ||
| 583 | if (phys_to_virt(mb->start) >= VMALLOC_MIN) { | ||
| 584 | printk(KERN_NOTICE "Ignoring RAM at %.8lx-%.8lx " | ||
| 585 | "(vmalloc region overlap).\n", | ||
| 586 | mb->start, mb->start + mb->size - 1); | ||
| 587 | return 0; | ||
| 588 | } | ||
| 589 | |||
| 590 | /* | ||
| 591 | * Check whether this memory region would partially overlap | ||
| 592 | * the vmalloc area. | ||
| 593 | */ | ||
| 594 | if (phys_to_virt(mb->start + mb->size) < phys_to_virt(mb->start) || | ||
| 595 | phys_to_virt(mb->start + mb->size) > VMALLOC_MIN) { | ||
| 596 | unsigned long newsize = VMALLOC_MIN - phys_to_virt(mb->start); | ||
| 597 | |||
| 598 | printk(KERN_NOTICE "Truncating RAM at %.8lx-%.8lx " | ||
| 599 | "to -%.8lx (vmalloc region overlap).\n", | ||
| 600 | mb->start, mb->start + mb->size - 1, | ||
| 601 | mb->start + newsize - 1); | ||
| 602 | mb->size = newsize; | ||
| 603 | } | ||
| 604 | |||
| 605 | return 1; | ||
| 606 | } | ||
| 607 | |||
| 608 | static void __init sanity_check_meminfo(struct meminfo *mi) | ||
| 609 | { | ||
| 610 | int i; | ||
| 611 | int j; | ||
| 612 | |||
| 613 | for (i = 0, j = 0; i < mi->nr_banks; i++) { | ||
| 614 | if (check_membank_valid(&mi->bank[i])) | ||
| 615 | mi->bank[j++] = mi->bank[i]; | ||
| 616 | } | ||
| 617 | mi->nr_banks = j; | ||
| 618 | } | ||
| 619 | |||
| 571 | static inline void prepare_page_table(struct meminfo *mi) | 620 | static inline void prepare_page_table(struct meminfo *mi) |
| 572 | { | 621 | { |
| 573 | unsigned long addr; | 622 | unsigned long addr; |
| @@ -753,6 +802,7 @@ void __init paging_init(struct meminfo *mi, struct machine_desc *mdesc) | |||
| 753 | void *zero_page; | 802 | void *zero_page; |
| 754 | 803 | ||
| 755 | build_mem_type_table(); | 804 | build_mem_type_table(); |
| 805 | sanity_check_meminfo(mi); | ||
| 756 | prepare_page_table(mi); | 806 | prepare_page_table(mi); |
| 757 | bootmem_init(mi); | 807 | bootmem_init(mi); |
| 758 | devicemaps_init(mdesc); | 808 | devicemaps_init(mdesc); |
diff --git a/arch/arm/mm/proc-arm940.S b/arch/arm/mm/proc-arm940.S index 1a3d63df8e90..551244d5ca19 100644 --- a/arch/arm/mm/proc-arm940.S +++ b/arch/arm/mm/proc-arm940.S | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <asm/pgtable-hwdef.h> | 15 | #include <asm/pgtable-hwdef.h> |
| 16 | #include <asm/pgtable.h> | 16 | #include <asm/pgtable.h> |
| 17 | #include <asm/ptrace.h> | 17 | #include <asm/ptrace.h> |
| 18 | #include "proc-macros.S" | ||
| 18 | 19 | ||
| 19 | /* ARM940T has a 4KB DCache comprising 256 lines of 4 words */ | 20 | /* ARM940T has a 4KB DCache comprising 256 lines of 4 words */ |
| 20 | #define CACHE_DLINESIZE 16 | 21 | #define CACHE_DLINESIZE 16 |
diff --git a/arch/arm/mm/proc-arm946.S b/arch/arm/mm/proc-arm946.S index 82d579ac9b98..6168c6160dee 100644 --- a/arch/arm/mm/proc-arm946.S +++ b/arch/arm/mm/proc-arm946.S | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <asm/pgtable-hwdef.h> | 17 | #include <asm/pgtable-hwdef.h> |
| 18 | #include <asm/pgtable.h> | 18 | #include <asm/pgtable.h> |
| 19 | #include <asm/ptrace.h> | 19 | #include <asm/ptrace.h> |
| 20 | #include "proc-macros.S" | ||
| 20 | 21 | ||
| 21 | /* | 22 | /* |
| 22 | * ARM946E-S is synthesizable to have 0KB to 1MB sized D-Cache, | 23 | * ARM946E-S is synthesizable to have 0KB to 1MB sized D-Cache, |
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index 23a070599993..197974defbe4 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. | 11 | * published by the Free Software Foundation. |
| 12 | */ | 12 | */ |
| 13 | #include <linux/version.h> | ||
| 14 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
| 15 | #include <linux/init.h> | 14 | #include <linux/init.h> |
| 16 | #include <linux/module.h> | 15 | #include <linux/module.h> |
diff --git a/arch/arm/plat-omap/include/mach/memory.h b/arch/arm/plat-omap/include/mach/memory.h index 037486c5f4a4..a325caf80d04 100644 --- a/arch/arm/plat-omap/include/mach/memory.h +++ b/arch/arm/plat-omap/include/mach/memory.h | |||
| @@ -76,13 +76,14 @@ | |||
| 76 | (dma_addr_t)virt_to_lbus(page_address(page)) : \ | 76 | (dma_addr_t)virt_to_lbus(page_address(page)) : \ |
| 77 | (dma_addr_t)__virt_to_bus(page_address(page));}) | 77 | (dma_addr_t)__virt_to_bus(page_address(page));}) |
| 78 | 78 | ||
| 79 | #define __arch_dma_to_virt(dev, addr) ({is_lbus_device(dev) ? \ | 79 | #define __arch_dma_to_virt(dev, addr) ({ (void *) (is_lbus_device(dev) ? \ |
| 80 | lbus_to_virt(addr) : \ | 80 | lbus_to_virt(addr) : \ |
| 81 | __bus_to_virt(addr);}) | 81 | __bus_to_virt(addr)); }) |
| 82 | 82 | ||
| 83 | #define __arch_virt_to_dma(dev, addr) ({is_lbus_device(dev) ? \ | 83 | #define __arch_virt_to_dma(dev, addr) ({ unsigned long __addr = (unsigned long)(addr); \ |
| 84 | virt_to_lbus(addr) : \ | 84 | (dma_addr_t) (is_lbus_device(dev) ? \ |
| 85 | __virt_to_bus(addr);}) | 85 | virt_to_lbus(__addr) : \ |
| 86 | __virt_to_bus(__addr)); }) | ||
| 86 | 87 | ||
| 87 | #endif /* CONFIG_ARCH_OMAP15XX */ | 88 | #endif /* CONFIG_ARCH_OMAP15XX */ |
| 88 | 89 | ||
diff --git a/arch/arm/plat-orion/include/plat/cache-feroceon-l2.h b/arch/arm/plat-orion/include/plat/cache-feroceon-l2.h new file mode 100644 index 000000000000..06f982d55697 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/cache-feroceon-l2.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/cache-feroceon-l2.h | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Marvell Semiconductor | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | extern void __init feroceon_l2_init(int l2_wt_override); | ||
diff --git a/arch/arm/plat-orion/include/plat/ehci-orion.h b/arch/arm/plat-orion/include/plat/ehci-orion.h new file mode 100644 index 000000000000..64343051095a --- /dev/null +++ b/arch/arm/plat-orion/include/plat/ehci-orion.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/ehci-orion.h | ||
| 3 | * | ||
| 4 | * This file is licensed under the terms of the GNU General Public | ||
| 5 | * License version 2. This program is licensed "as is" without any | ||
| 6 | * warranty of any kind, whether express or implied. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef __PLAT_EHCI_ORION_H | ||
| 10 | #define __PLAT_EHCI_ORION_H | ||
| 11 | |||
| 12 | #include <linux/mbus.h> | ||
| 13 | |||
| 14 | struct orion_ehci_data { | ||
| 15 | struct mbus_dram_target_info *dram; | ||
| 16 | }; | ||
| 17 | |||
| 18 | |||
| 19 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/irq.h b/arch/arm/plat-orion/include/plat/irq.h new file mode 100644 index 000000000000..f05eeab94968 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/irq.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/irq.h | ||
| 3 | * | ||
| 4 | * Marvell Orion SoC IRQ handling. | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __PLAT_IRQ_H | ||
| 12 | #define __PLAT_IRQ_H | ||
| 13 | |||
| 14 | void orion_irq_init(unsigned int irq_start, void __iomem *maskaddr); | ||
| 15 | |||
| 16 | |||
| 17 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/mv_xor.h b/arch/arm/plat-orion/include/plat/mv_xor.h new file mode 100644 index 000000000000..bd5f3bdb4ae3 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/mv_xor.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/mv_xor.h | ||
| 3 | * | ||
| 4 | * Marvell XOR platform device data definition file. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef __PLAT_MV_XOR_H | ||
| 8 | #define __PLAT_MV_XOR_H | ||
| 9 | |||
| 10 | #include <linux/dmaengine.h> | ||
| 11 | #include <linux/mbus.h> | ||
| 12 | |||
| 13 | #define MV_XOR_SHARED_NAME "mv_xor_shared" | ||
| 14 | #define MV_XOR_NAME "mv_xor" | ||
| 15 | |||
| 16 | struct mbus_dram_target_info; | ||
| 17 | |||
| 18 | struct mv_xor_platform_shared_data { | ||
| 19 | struct mbus_dram_target_info *dram; | ||
| 20 | }; | ||
| 21 | |||
| 22 | struct mv_xor_platform_data { | ||
| 23 | struct platform_device *shared; | ||
| 24 | int hw_id; | ||
| 25 | dma_cap_mask_t cap_mask; | ||
| 26 | size_t pool_size; | ||
| 27 | }; | ||
| 28 | |||
| 29 | |||
| 30 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/orion_nand.h b/arch/arm/plat-orion/include/plat/orion_nand.h new file mode 100644 index 000000000000..d6a4cfa37785 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/orion_nand.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/orion_nand.h | ||
| 3 | * | ||
| 4 | * This file is licensed under the terms of the GNU General Public | ||
| 5 | * License version 2. This program is licensed "as is" without any | ||
| 6 | * warranty of any kind, whether express or implied. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef __PLAT_ORION_NAND_H | ||
| 10 | #define __PLAT_ORION_NAND_H | ||
| 11 | |||
| 12 | /* | ||
| 13 | * Device bus NAND private data | ||
| 14 | */ | ||
| 15 | struct orion_nand_data { | ||
| 16 | struct mtd_partition *parts; | ||
| 17 | u32 nr_parts; | ||
| 18 | u8 ale; /* address line number connected to ALE */ | ||
| 19 | u8 cle; /* address line number connected to CLE */ | ||
| 20 | u8 width; /* buswidth */ | ||
| 21 | u8 chip_delay; | ||
| 22 | }; | ||
| 23 | |||
| 24 | |||
| 25 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/pcie.h b/arch/arm/plat-orion/include/plat/pcie.h new file mode 100644 index 000000000000..3ebfef72b4e7 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/pcie.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/pcie.h | ||
| 3 | * | ||
| 4 | * Marvell Orion SoC PCIe handling. | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __PLAT_PCIE_H | ||
| 12 | #define __PLAT_PCIE_H | ||
| 13 | |||
| 14 | u32 orion_pcie_dev_id(void __iomem *base); | ||
| 15 | u32 orion_pcie_rev(void __iomem *base); | ||
| 16 | int orion_pcie_link_up(void __iomem *base); | ||
| 17 | int orion_pcie_x4_mode(void __iomem *base); | ||
| 18 | int orion_pcie_get_local_bus_nr(void __iomem *base); | ||
| 19 | void orion_pcie_set_local_bus_nr(void __iomem *base, int nr); | ||
| 20 | void orion_pcie_setup(void __iomem *base, | ||
| 21 | struct mbus_dram_target_info *dram); | ||
| 22 | int orion_pcie_rd_conf(void __iomem *base, struct pci_bus *bus, | ||
| 23 | u32 devfn, int where, int size, u32 *val); | ||
| 24 | int orion_pcie_rd_conf_tlp(void __iomem *base, struct pci_bus *bus, | ||
| 25 | u32 devfn, int where, int size, u32 *val); | ||
| 26 | int orion_pcie_rd_conf_wa(void __iomem *wa_base, struct pci_bus *bus, | ||
| 27 | u32 devfn, int where, int size, u32 *val); | ||
| 28 | int orion_pcie_wr_conf(void __iomem *base, struct pci_bus *bus, | ||
| 29 | u32 devfn, int where, int size, u32 val); | ||
| 30 | |||
| 31 | |||
| 32 | #endif | ||
diff --git a/arch/arm/plat-orion/include/plat/time.h b/arch/arm/plat-orion/include/plat/time.h new file mode 100644 index 000000000000..c06ca35f3613 --- /dev/null +++ b/arch/arm/plat-orion/include/plat/time.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/plat-orion/include/plat/time.h | ||
| 3 | * | ||
| 4 | * Marvell Orion SoC time handling. | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __PLAT_TIME_H | ||
| 12 | #define __PLAT_TIME_H | ||
| 13 | |||
| 14 | void orion_time_init(unsigned int irq, unsigned int tclk); | ||
| 15 | |||
| 16 | |||
| 17 | #endif | ||
diff --git a/arch/arm/plat-orion/irq.c b/arch/arm/plat-orion/irq.c index fe66a1835169..3f9d34fc738c 100644 --- a/arch/arm/plat-orion/irq.c +++ b/arch/arm/plat-orion/irq.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
| 14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
| 15 | #include <asm/plat-orion/irq.h> | 15 | #include <plat/irq.h> |
| 16 | 16 | ||
| 17 | static void orion_irq_mask(u32 irq) | 17 | static void orion_irq_mask(u32 irq) |
| 18 | { | 18 | { |
diff --git a/arch/arm/plat-orion/pcie.c b/arch/arm/plat-orion/pcie.c index ca32c60e14d7..883902fead89 100644 --- a/arch/arm/plat-orion/pcie.c +++ b/arch/arm/plat-orion/pcie.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
| 13 | #include <linux/mbus.h> | 13 | #include <linux/mbus.h> |
| 14 | #include <asm/mach/pci.h> | 14 | #include <asm/mach/pci.h> |
| 15 | #include <asm/plat-orion/pcie.h> | 15 | #include <plat/pcie.h> |
| 16 | 16 | ||
| 17 | /* | 17 | /* |
| 18 | * PCIe unit register offsets. | 18 | * PCIe unit register offsets. |
diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/plat-s3c24xx/cpu.c index 6d60f0476bb8..89ce60eabd5b 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/plat-s3c24xx/cpu.c | |||
| @@ -169,9 +169,7 @@ static struct map_desc s3c_iodesc[] __initdata = { | |||
| 169 | IODESC_ENT(UART) | 169 | IODESC_ENT(UART) |
| 170 | }; | 170 | }; |
| 171 | 171 | ||
| 172 | 172 | static struct cpu_table * __init s3c_lookup_cpu(unsigned long idcode) | |
| 173 | static struct cpu_table * | ||
| 174 | s3c_lookup_cpu(unsigned long idcode) | ||
| 175 | { | 173 | { |
| 176 | struct cpu_table *tab; | 174 | struct cpu_table *tab; |
| 177 | int count; | 175 | int count; |
diff --git a/arch/arm/plat-s3c24xx/gpiolib.c b/arch/arm/plat-s3c24xx/gpiolib.c index 849f8469714a..3caec6bad3eb 100644 --- a/arch/arm/plat-s3c24xx/gpiolib.c +++ b/arch/arm/plat-s3c24xx/gpiolib.c | |||
| @@ -39,7 +39,7 @@ static inline struct s3c24xx_gpio_chip *to_s3c_chip(struct gpio_chip *gpc) | |||
| 39 | * drivers themsevles. | 39 | * drivers themsevles. |
| 40 | */ | 40 | */ |
| 41 | 41 | ||
| 42 | int s3c24xx_gpiolib_input(struct gpio_chip *chip, unsigned offset) | 42 | static int s3c24xx_gpiolib_input(struct gpio_chip *chip, unsigned offset) |
| 43 | { | 43 | { |
| 44 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); | 44 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); |
| 45 | void __iomem *base = ourchip->base; | 45 | void __iomem *base = ourchip->base; |
| @@ -58,7 +58,7 @@ int s3c24xx_gpiolib_input(struct gpio_chip *chip, unsigned offset) | |||
| 58 | return 0; | 58 | return 0; |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | int s3c24xx_gpiolib_output(struct gpio_chip *chip, | 61 | static int s3c24xx_gpiolib_output(struct gpio_chip *chip, |
| 62 | unsigned offset, int value) | 62 | unsigned offset, int value) |
| 63 | { | 63 | { |
| 64 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); | 64 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); |
| @@ -86,7 +86,8 @@ int s3c24xx_gpiolib_output(struct gpio_chip *chip, | |||
| 86 | return 0; | 86 | return 0; |
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | void s3c24xx_gpiolib_set(struct gpio_chip *chip, unsigned offset, int value) | 89 | static void s3c24xx_gpiolib_set(struct gpio_chip *chip, |
| 90 | unsigned offset, int value) | ||
| 90 | { | 91 | { |
| 91 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); | 92 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); |
| 92 | void __iomem *base = ourchip->base; | 93 | void __iomem *base = ourchip->base; |
| @@ -104,7 +105,7 @@ void s3c24xx_gpiolib_set(struct gpio_chip *chip, unsigned offset, int value) | |||
| 104 | local_irq_restore(flags); | 105 | local_irq_restore(flags); |
| 105 | } | 106 | } |
| 106 | 107 | ||
| 107 | int s3c24xx_gpiolib_get(struct gpio_chip *chip, unsigned offset) | 108 | static int s3c24xx_gpiolib_get(struct gpio_chip *chip, unsigned offset) |
| 108 | { | 109 | { |
| 109 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); | 110 | struct s3c24xx_gpio_chip *ourchip = to_s3c_chip(chip); |
| 110 | unsigned long val; | 111 | unsigned long val; |
| @@ -150,8 +151,7 @@ static int s3c24xx_gpiolib_banka_output(struct gpio_chip *chip, | |||
| 150 | return 0; | 151 | return 0; |
| 151 | } | 152 | } |
| 152 | 153 | ||
| 153 | 154 | static struct s3c24xx_gpio_chip gpios[] = { | |
| 154 | struct s3c24xx_gpio_chip gpios[] = { | ||
| 155 | [0] = { | 155 | [0] = { |
| 156 | .base = S3C24XX_GPIO_BASE(S3C2410_GPA0), | 156 | .base = S3C24XX_GPIO_BASE(S3C2410_GPA0), |
| 157 | .chip = { | 157 | .chip = { |
diff --git a/arch/arm/plat-s3c24xx/pwm-clock.c b/arch/arm/plat-s3c24xx/pwm-clock.c index ccfdc9d7ae4b..306cc9c6f9ef 100644 --- a/arch/arm/plat-s3c24xx/pwm-clock.c +++ b/arch/arm/plat-s3c24xx/pwm-clock.c | |||
| @@ -89,7 +89,7 @@ static unsigned long clk_pwm_scaler_getrate(struct clk *clk) | |||
| 89 | 89 | ||
| 90 | /* TODO - add set rate calls. */ | 90 | /* TODO - add set rate calls. */ |
| 91 | 91 | ||
| 92 | struct clk clk_timer_scaler[] = { | 92 | static struct clk clk_timer_scaler[] = { |
| 93 | [0] = { | 93 | [0] = { |
| 94 | .name = "pwm-scaler0", | 94 | .name = "pwm-scaler0", |
| 95 | .id = -1, | 95 | .id = -1, |
| @@ -102,7 +102,7 @@ struct clk clk_timer_scaler[] = { | |||
| 102 | }, | 102 | }, |
| 103 | }; | 103 | }; |
| 104 | 104 | ||
| 105 | struct clk clk_timer_tclk[] = { | 105 | static struct clk clk_timer_tclk[] = { |
| 106 | [0] = { | 106 | [0] = { |
| 107 | .name = "pwm-tclk0", | 107 | .name = "pwm-tclk0", |
| 108 | .id = -1, | 108 | .id = -1, |
| @@ -232,7 +232,7 @@ static int clk_pwm_tdiv_set_rate(struct clk *clk, unsigned long rate) | |||
| 232 | return 0; | 232 | return 0; |
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | struct pwm_tdiv_clk clk_timer_tdiv[] = { | 235 | static struct pwm_tdiv_clk clk_timer_tdiv[] = { |
| 236 | [0] = { | 236 | [0] = { |
| 237 | .clk = { | 237 | .clk = { |
| 238 | .name = "pwm-tdiv", | 238 | .name = "pwm-tdiv", |
diff --git a/arch/arm/plat-s3c24xx/pwm.c b/arch/arm/plat-s3c24xx/pwm.c index 18c4bdc49a05..7a92c938542a 100644 --- a/arch/arm/plat-s3c24xx/pwm.c +++ b/arch/arm/plat-s3c24xx/pwm.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
| 20 | #include <linux/pwm.h> | 20 | #include <linux/pwm.h> |
| 21 | 21 | ||
| 22 | #include <asm/plat-s3c24xx/devs.h> | ||
| 22 | #include <asm/plat-s3c/regs-timer.h> | 23 | #include <asm/plat-s3c/regs-timer.h> |
| 23 | 24 | ||
| 24 | struct pwm_device { | 25 | struct pwm_device { |
| @@ -38,7 +39,7 @@ struct pwm_device { | |||
| 38 | unsigned char pwm_id; | 39 | unsigned char pwm_id; |
| 39 | }; | 40 | }; |
| 40 | 41 | ||
| 41 | #define pwm_dbg(_pwm, msg...) dev_info(&(_pwm)->pdev->dev, msg) | 42 | #define pwm_dbg(_pwm, msg...) dev_dbg(&(_pwm)->pdev->dev, msg) |
| 42 | 43 | ||
| 43 | static struct clk *clk_scaler[2]; | 44 | static struct clk *clk_scaler[2]; |
| 44 | 45 | ||
| @@ -168,7 +169,7 @@ void pwm_disable(struct pwm_device *pwm) | |||
| 168 | 169 | ||
| 169 | EXPORT_SYMBOL(pwm_disable); | 170 | EXPORT_SYMBOL(pwm_disable); |
| 170 | 171 | ||
| 171 | unsigned long pwm_calc_tin(struct pwm_device *pwm, unsigned long freq) | 172 | static unsigned long pwm_calc_tin(struct pwm_device *pwm, unsigned long freq) |
| 172 | { | 173 | { |
| 173 | unsigned long tin_parent_rate; | 174 | unsigned long tin_parent_rate; |
| 174 | unsigned int div; | 175 | unsigned int div; |
diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 8b8f564c3aa2..56281c030a7b 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | # | 12 | # |
| 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new | 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new |
| 14 | # | 14 | # |
| 15 | # Last update: Sun Jul 13 12:04:05 2008 | 15 | # Last update: Wed Aug 13 21:56:02 2008 |
| 16 | # | 16 | # |
| 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number | 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number |
| 18 | # | 18 | # |
| @@ -843,7 +843,7 @@ borzoi MACH_BORZOI BORZOI 831 | |||
| 843 | gecko MACH_GECKO GECKO 832 | 843 | gecko MACH_GECKO GECKO 832 |
| 844 | ds101 MACH_DS101 DS101 833 | 844 | ds101 MACH_DS101 DS101 833 |
| 845 | omap_palmtt2 MACH_OMAP_PALMTT2 OMAP_PALMTT2 834 | 845 | omap_palmtt2 MACH_OMAP_PALMTT2 OMAP_PALMTT2 834 |
| 846 | xscale_palmld MACH_XSCALE_PALMLD XSCALE_PALMLD 835 | 846 | palmld MACH_PALMLD PALMLD 835 |
| 847 | cc9c MACH_CC9C CC9C 836 | 847 | cc9c MACH_CC9C CC9C 836 |
| 848 | sbc1670 MACH_SBC1670 SBC1670 837 | 848 | sbc1670 MACH_SBC1670 SBC1670 837 |
| 849 | ixdp28x5 MACH_IXDP28X5 IXDP28X5 838 | 849 | ixdp28x5 MACH_IXDP28X5 IXDP28X5 838 |
| @@ -852,7 +852,7 @@ ml696k MACH_ML696K ML696K 840 | |||
| 852 | arcom_zeus MACH_ARCOM_ZEUS ARCOM_ZEUS 841 | 852 | arcom_zeus MACH_ARCOM_ZEUS ARCOM_ZEUS 841 |
| 853 | osiris MACH_OSIRIS OSIRIS 842 | 853 | osiris MACH_OSIRIS OSIRIS 842 |
| 854 | maestro MACH_MAESTRO MAESTRO 843 | 854 | maestro MACH_MAESTRO MAESTRO 843 |
| 855 | tunge2 MACH_TUNGE2 TUNGE2 844 | 855 | palmte2 MACH_PALMTE2 PALMTE2 844 |
| 856 | ixbbm MACH_IXBBM IXBBM 845 | 856 | ixbbm MACH_IXBBM IXBBM 845 |
| 857 | mx27ads MACH_MX27ADS MX27ADS 846 | 857 | mx27ads MACH_MX27ADS MX27ADS 846 |
| 858 | ax8004 MACH_AX8004 AX8004 847 | 858 | ax8004 MACH_AX8004 AX8004 847 |
| @@ -916,7 +916,7 @@ nxdb500 MACH_NXDB500 NXDB500 905 | |||
| 916 | apf9328 MACH_APF9328 APF9328 906 | 916 | apf9328 MACH_APF9328 APF9328 906 |
| 917 | omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907 | 917 | omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907 |
| 918 | omap_twip MACH_OMAP_TWIP OMAP_TWIP 908 | 918 | omap_twip MACH_OMAP_TWIP OMAP_TWIP 908 |
| 919 | palmtreo650 MACH_PALMTREO650 PALMTREO650 909 | 919 | palmt650 MACH_PALMT650 PALMT650 909 |
| 920 | acumen MACH_ACUMEN ACUMEN 910 | 920 | acumen MACH_ACUMEN ACUMEN 910 |
| 921 | xp100 MACH_XP100 XP100 911 | 921 | xp100 MACH_XP100 XP100 911 |
| 922 | fs2410 MACH_FS2410 FS2410 912 | 922 | fs2410 MACH_FS2410 FS2410 912 |
| @@ -1096,7 +1096,7 @@ atc6 MACH_ATC6 ATC6 1086 | |||
| 1096 | multmdw MACH_MULTMDW MULTMDW 1087 | 1096 | multmdw MACH_MULTMDW MULTMDW 1087 |
| 1097 | mba2440 MACH_MBA2440 MBA2440 1088 | 1097 | mba2440 MACH_MBA2440 MBA2440 1088 |
| 1098 | ecsd MACH_ECSD ECSD 1089 | 1098 | ecsd MACH_ECSD ECSD 1089 |
| 1099 | zire31 MACH_ZIRE31 ZIRE31 1090 | 1099 | palmz31 MACH_PALMZ31 PALMZ31 1090 |
| 1100 | fsg MACH_FSG FSG 1091 | 1100 | fsg MACH_FSG FSG 1091 |
| 1101 | razor101 MACH_RAZOR101 RAZOR101 1092 | 1101 | razor101 MACH_RAZOR101 RAZOR101 1092 |
| 1102 | opera_tdm MACH_OPERA_TDM OPERA_TDM 1093 | 1102 | opera_tdm MACH_OPERA_TDM OPERA_TDM 1093 |
| @@ -1810,7 +1810,7 @@ kriss_sensor MACH_KRISS_SENSOR KRISS_SENSOR 1819 | |||
| 1810 | pilz_pmi5 MACH_PILZ_PMI5 PILZ_PMI5 1820 | 1810 | pilz_pmi5 MACH_PILZ_PMI5 PILZ_PMI5 1820 |
| 1811 | jade MACH_JADE JADE 1821 | 1811 | jade MACH_JADE JADE 1821 |
| 1812 | ks8695_softplc MACH_KS8695_SOFTPLC KS8695_SOFTPLC 1822 | 1812 | ks8695_softplc MACH_KS8695_SOFTPLC KS8695_SOFTPLC 1822 |
| 1813 | gprisc4 MACH_GPRISC4 GPRISC4 1823 | 1813 | gprisc3 MACH_GPRISC4 GPRISC4 1823 |
| 1814 | stamp9260 MACH_STAMP9260 STAMP9260 1824 | 1814 | stamp9260 MACH_STAMP9260 STAMP9260 1824 |
| 1815 | smdk6430 MACH_SMDK6430 SMDK6430 1825 | 1815 | smdk6430 MACH_SMDK6430 SMDK6430 1825 |
| 1816 | smdkc100 MACH_SMDKC100 SMDKC100 1826 | 1816 | smdkc100 MACH_SMDKC100 SMDKC100 1826 |
| @@ -1820,3 +1820,44 @@ deister_eyecam MACH_DEISTER_EYECAM DEISTER_EYECAM 1829 | |||
| 1820 | at91sam9m10ek MACH_AT91SAM9M10EK AT91SAM9M10EK 1830 | 1820 | at91sam9m10ek MACH_AT91SAM9M10EK AT91SAM9M10EK 1830 |
| 1821 | linkstation_produo MACH_LINKSTATION_PRODUO LINKSTATION_PRODUO 1831 | 1821 | linkstation_produo MACH_LINKSTATION_PRODUO LINKSTATION_PRODUO 1831 |
| 1822 | hit_b0 MACH_HIT_B0 HIT_B0 1832 | 1822 | hit_b0 MACH_HIT_B0 HIT_B0 1832 |
| 1823 | adx_rmu MACH_ADX_RMU ADX_RMU 1833 | ||
| 1824 | xg_cpe_main MACH_XG_CPE_MAIN XG_CPE_MAIN 1834 | ||
| 1825 | edb9407a MACH_EDB9407A EDB9407A 1835 | ||
| 1826 | dtb9608 MACH_DTB9608 DTB9608 1836 | ||
| 1827 | em104v1 MACH_EM104V1 EM104V1 1837 | ||
| 1828 | demo MACH_DEMO DEMO 1838 | ||
| 1829 | logi9260 MACH_LOGI9260 LOGI9260 1839 | ||
| 1830 | mx31_exm32 MACH_MX31_EXM32 MX31_EXM32 1840 | ||
| 1831 | usb_a9g20 MACH_USB_A9G20 USB_A9G20 1841 | ||
| 1832 | picproje2008 MACH_PICPROJE2008 PICPROJE2008 1842 | ||
| 1833 | cs_e9315 MACH_CS_E9315 CS_E9315 1843 | ||
| 1834 | qil_a9g20 MACH_QIL_A9G20 QIL_A9G20 1844 | ||
| 1835 | sha_pon020 MACH_SHA_PON020 SHA_PON020 1845 | ||
| 1836 | nad MACH_NAD NAD 1846 | ||
| 1837 | sbc35_a9260 MACH_SBC35_A9260 SBC35_A9260 1847 | ||
| 1838 | sbc35_a9g20 MACH_SBC35_A9G20 SBC35_A9G20 1848 | ||
| 1839 | davinci_beginning MACH_DAVINCI_BEGINNING DAVINCI_BEGINNING 1849 | ||
| 1840 | uwc MACH_UWC UWC 1850 | ||
| 1841 | mxlads MACH_MXLADS MXLADS 1851 | ||
| 1842 | htcnike MACH_HTCNIKE HTCNIKE 1852 | ||
| 1843 | deister_pxa270 MACH_DEISTER_PXA270 DEISTER_PXA270 1853 | ||
| 1844 | cme9210js MACH_CME9210JS CME9210JS 1854 | ||
| 1845 | cc9p9360 MACH_CC9P9360 CC9P9360 1855 | ||
| 1846 | mocha MACH_MOCHA MOCHA 1856 | ||
| 1847 | wapd170ag MACH_WAPD170AG WAPD170AG 1857 | ||
| 1848 | linkstation_mini MACH_LINKSTATION_MINI LINKSTATION_MINI 1858 | ||
| 1849 | afeb9260 MACH_AFEB9260 AFEB9260 1859 | ||
| 1850 | w90x900 MACH_W90X900 W90X900 1860 | ||
| 1851 | w90x700 MACH_W90X700 W90X700 1861 | ||
| 1852 | kt300ip MACH_KT300IP KT300IP 1862 | ||
| 1853 | kt300ip_g20 MACH_KT300IP_G20 KT300IP_G20 1863 | ||
| 1854 | srcm MACH_SRCM SRCM 1864 | ||
| 1855 | wlnx_9260 MACH_WLNX_9260 WLNX_9260 1865 | ||
| 1856 | openmoko_gta03 MACH_OPENMOKO_GTA03 OPENMOKO_GTA03 1866 | ||
| 1857 | osprey2 MACH_OSPREY2 OSPREY2 1867 | ||
| 1858 | kbio9260 MACH_KBIO9260 KBIO9260 1868 | ||
| 1859 | ginza MACH_GINZA GINZA 1869 | ||
| 1860 | a636n MACH_A636N A636N 1870 | ||
| 1861 | imx27ipcam MACH_IMX27IPCAM IMX27IPCAM 1871 | ||
| 1862 | nenoc MACH_NEMOC NEMOC 1872 | ||
| 1863 | geneva MACH_GENEVA GENEVA 1873 | ||
