Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6

* git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6:
avr32: update default configurations for ATNGW100, ATSTK1002 and ATSTK1006
avr32: add default configurations for ATNGW100 mkII and EVKLCD10X
avr32: add support for ATNGW100 mkII board
avr32: convert to asm-generic/hardirq.h
avr32: add two new at91 to cpu.h definition
avr32: clean up linker script using standard macros.
avr32: MRMT: correct setup of SPI slaves
avr32: function for independently setting up SPI slaves
avr32: re-instate MCI WP/CD pin assignments for ATNGW100

+6398 -728
+11 -2
arch/avr32/Kconfig
··· 112 112 bool 113 113 select CPU_AT32AP700X 114 114 115 + # AP700X boards 116 + config BOARD_ATNGW100_COMMON 117 + bool 118 + select CPU_AT32AP7000 119 + 115 120 choice 116 121 prompt "AVR32 board type" 117 122 default BOARD_ATSTK1000 ··· 124 119 config BOARD_ATSTK1000 125 120 bool "ATSTK1000 evaluation board" 126 121 127 - config BOARD_ATNGW100 122 + config BOARD_ATNGW100_MKI 128 123 bool "ATNGW100 Network Gateway" 129 - select CPU_AT32AP7000 124 + select BOARD_ATNGW100_COMMON 125 + 126 + config BOARD_ATNGW100_MKII 127 + bool "ATNGW100 mkII Network Gateway" 128 + select BOARD_ATNGW100_COMMON 130 129 131 130 config BOARD_HAMMERHEAD 132 131 bool "Hammerhead board"
+1 -1
arch/avr32/Makefile
··· 32 32 head-y += arch/avr32/kernel/head.o 33 33 core-y += $(machdirs) 34 34 core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/ 35 - core-$(CONFIG_BOARD_ATNGW100) += arch/avr32/boards/atngw100/ 35 + core-$(CONFIG_BOARD_ATNGW100_COMMON) += arch/avr32/boards/atngw100/ 36 36 core-$(CONFIG_BOARD_HAMMERHEAD) += arch/avr32/boards/hammerhead/ 37 37 core-$(CONFIG_BOARD_FAVR_32) += arch/avr32/boards/favr-32/ 38 38 core-$(CONFIG_BOARD_MERISC) += arch/avr32/boards/merisc/
+16 -9
arch/avr32/boards/atngw100/Kconfig
··· 1 1 # NGW100 customization 2 2 3 - if BOARD_ATNGW100 3 + if BOARD_ATNGW100_COMMON 4 + 5 + config BOARD_ATNGW100_MKII_LCD 6 + bool "Enable ATNGW100 mkII LCD interface" 7 + depends on BOARD_ATNGW100_MKII 8 + help 9 + This enables the LCD controller (LCDC) in the AT32AP7000. Since the 10 + LCDC is multiplexed with MACB1 (LAN) Ethernet port, only one can be 11 + enabled at a time. 12 + 13 + This choice enables the LCDC and disables the MACB1 interface marked 14 + LAN on the PCB. 4 15 5 16 choice 6 17 prompt "Select an NGW100 add-on board to support" ··· 22 11 23 12 config BOARD_ATNGW100_EVKLCD10X 24 13 bool "EVKLCD10X addon board" 14 + depends on BOARD_ATNGW100_MKI || BOARD_ATNGW100_MKII_LCD 25 15 help 26 16 This enables support for the EVKLCD100 (QVGA) or EVKLCD101 (VGA) 27 - addon board for the NGW100. By enabling this the LCD controller and 28 - AC97 controller is added as platform devices. 29 - 30 - This choice disables the detect pin and the write-protect pin for the 31 - MCI platform device, since it conflicts with the LCD platform device. 32 - The MCI pins can be reenabled by editing the "add device function" but 33 - this may break the setup for other displays that use these pins. 17 + addon board for the NGW100 and NGW100 mkII. By enabling this the LCD 18 + controller and AC97 controller is added as platform devices. 34 19 35 20 config BOARD_ATNGW100_MRMT 36 21 bool "Mediama RMT1/2 add-on board" ··· 62 55 source "arch/avr32/boards/atngw100/Kconfig_mrmt" 63 56 endif 64 57 65 - endif # BOARD_ATNGW100 58 + endif # BOARD_ATNGW100_COMMON
+6 -1
arch/avr32/boards/atngw100/evklcd10x.c
··· 164 164 165 165 at32_add_device_lcdc(0, &atevklcd10x_lcdc_data, 166 166 fbmem_start, fbmem_size, 167 - ATMEL_LCDC_ALT_18BIT | ATMEL_LCDC_PE_DVAL); 167 + #ifdef CONFIG_BOARD_ATNGW100_MKII 168 + ATMEL_LCDC_PRI_18BIT | ATMEL_LCDC_PC_DVAL 169 + #else 170 + ATMEL_LCDC_ALT_18BIT | ATMEL_LCDC_PE_DVAL 171 + #endif 172 + ); 168 173 169 174 at32_add_device_ac97c(0, &ac97c0_data, AC97C_BOTH); 170 175
+1
arch/avr32/boards/atngw100/mrmt.c
··· 302 302 at32_select_periph( GPIO_PIOB_BASE, 1 << (PB_EXTINT_BASE+TS_IRQ), 303 303 GPIO_PERIPH_A, AT32_GPIOF_DEGLITCH); 304 304 set_irq_type( AT32_EXTINT(TS_IRQ), IRQ_TYPE_EDGE_FALLING ); 305 + at32_spi_setup_slaves(0,spi01_board_info,ARRAY_SIZE(spi01_board_info)); 305 306 spi_register_board_info(spi01_board_info,ARRAY_SIZE(spi01_board_info)); 306 307 #endif 307 308
+110 -11
arch/avr32/boards/atngw100/setup.c
··· 20 20 #include <linux/leds.h> 21 21 #include <linux/spi/spi.h> 22 22 #include <linux/atmel-mci.h> 23 + #include <linux/usb/atmel_usba_udc.h> 23 24 24 25 #include <asm/io.h> 25 26 #include <asm/setup.h> ··· 36 35 [1] = 20000000, /* 20 MHz on osc0 */ 37 36 [2] = 12000000, /* 12 MHz on osc1 */ 38 37 }; 38 + 39 + /* 40 + * The ATNGW100 mkII is very similar to the ATNGW100. Both have the AT32AP7000 41 + * chip on board; the difference is that the ATNGW100 mkII has 128 MB 32-bit 42 + * SDRAM (the ATNGW100 has 32 MB 16-bit SDRAM) and 256 MB 16-bit NAND flash 43 + * (the ATNGW100 has none.) 44 + * 45 + * The RAM difference is handled by the boot loader, so the only difference we 46 + * end up handling here is the NAND flash, EBI pin reservation and if LCDC or 47 + * MACB1 should be enabled. 48 + */ 49 + #ifdef CONFIG_BOARD_ATNGW100_MKII 50 + #include <linux/mtd/partitions.h> 51 + #include <mach/smc.h> 52 + 53 + static struct smc_timing nand_timing __initdata = { 54 + .ncs_read_setup = 0, 55 + .nrd_setup = 10, 56 + .ncs_write_setup = 0, 57 + .nwe_setup = 10, 58 + 59 + .ncs_read_pulse = 30, 60 + .nrd_pulse = 15, 61 + .ncs_write_pulse = 30, 62 + .nwe_pulse = 15, 63 + 64 + .read_cycle = 30, 65 + .write_cycle = 30, 66 + 67 + .ncs_read_recover = 0, 68 + .nrd_recover = 15, 69 + .ncs_write_recover = 0, 70 + /* WE# high -> RE# low min 60 ns */ 71 + .nwe_recover = 50, 72 + }; 73 + 74 + static struct smc_config nand_config __initdata = { 75 + .bus_width = 2, 76 + .nrd_controlled = 1, 77 + .nwe_controlled = 1, 78 + .nwait_mode = 0, 79 + .byte_write = 0, 80 + .tdf_cycles = 2, 81 + .tdf_mode = 0, 82 + }; 83 + 84 + static struct mtd_partition nand_partitions[] = { 85 + { 86 + .name = "main", 87 + .offset = 0x00000000, 88 + .size = MTDPART_SIZ_FULL, 89 + }, 90 + }; 91 + 92 + static struct mtd_partition *nand_part_info(int size, int *num_partitions) 93 + { 94 + *num_partitions = ARRAY_SIZE(nand_partitions); 95 + return nand_partitions; 96 + } 97 + 98 + static struct atmel_nand_data atngw100mkii_nand_data __initdata = { 99 + .cle = 21, 100 + .ale = 22, 101 + .rdy_pin = GPIO_PIN_PB(28), 102 + .enable_pin = GPIO_PIN_PE(23), 103 + .bus_width_16 = true, 104 + .partition_info = nand_part_info, 105 + }; 106 + #endif 39 107 40 108 /* Initialized by bootloader-specific startup code. */ 41 109 struct tag *bootloader_tags __initdata; ··· 126 56 static struct mci_platform_data __initdata mci0_data = { 127 57 .slot[0] = { 128 58 .bus_width = 4, 129 - #if defined(CONFIG_BOARD_ATNGW100_EVKLCD10X) || defined(CONFIG_BOARD_ATNGW100_MRMT1) 130 - .detect_pin = GPIO_PIN_NONE, 131 - .wp_pin = GPIO_PIN_NONE, 59 + #if defined(CONFIG_BOARD_ATNGW100_MKII) 60 + .detect_pin = GPIO_PIN_PC(25), 61 + .wp_pin = GPIO_PIN_PE(22), 132 62 #else 133 63 .detect_pin = GPIO_PIN_PC(25), 134 64 .wp_pin = GPIO_PIN_PE(0), 135 65 #endif 136 66 }, 67 + }; 68 + 69 + static struct usba_platform_data atngw100_usba_data __initdata = { 70 + #if defined(CONFIG_BOARD_ATNGW100_MKII) 71 + .vbus_pin = GPIO_PIN_PE(26), 72 + #else 73 + .vbus_pin = -ENODEV, 74 + #endif 137 75 }; 138 76 139 77 /* ··· 251 173 unsigned i; 252 174 253 175 /* 254 - * ATNGW100 uses 16-bit SDRAM interface, so we don't need to 255 - * reserve any pins for it. 176 + * ATNGW100 mkII uses 32-bit SDRAM interface. Reserve the 177 + * SDRAM-specific pins so that nobody messes with them. 256 178 */ 179 + #ifdef CONFIG_BOARD_ATNGW100_MKII 180 + at32_reserve_pin(GPIO_PIOE_BASE, ATMEL_EBI_PE_DATA_ALL); 181 + 182 + smc_set_timing(&nand_config, &nand_timing); 183 + smc_set_configuration(3, &nand_config); 184 + at32_add_device_nand(0, &atngw100mkii_nand_data); 185 + #endif 257 186 258 187 at32_add_device_usart(0); 259 188 260 189 set_hw_addr(at32_add_device_eth(0, &eth_data[0])); 190 + #ifndef CONFIG_BOARD_ATNGW100_MKII_LCD 261 191 set_hw_addr(at32_add_device_eth(1, &eth_data[1])); 192 + #endif 262 193 263 194 at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info)); 264 195 at32_add_device_mci(0, &mci0_data); 265 - at32_add_device_usba(0, NULL); 196 + at32_add_device_usba(0, &atngw100_usba_data); 266 197 267 198 for (i = 0; i < ARRAY_SIZE(ngw_leds); i++) { 268 199 at32_select_gpio(ngw_leds[i].gpio, ··· 281 194 282 195 /* all these i2c/smbus pins should have external pullups for 283 196 * open-drain sharing among all I2C devices. SDA and SCL do; 284 - * PB28/EXTINT3 doesn't; it should be SMBALERT# (for PMBus), 285 - * but it's not available off-board. 197 + * PB28/EXTINT3 (ATNGW100) and PE21 (ATNGW100 mkII) doesn't; it should 198 + * be SMBALERT# (for PMBus), but it's not available off-board. 286 199 */ 200 + #ifdef CONFIG_BOARD_ATNGW100_MKII 201 + at32_select_periph(GPIO_PIOE_BASE, 1 << 21, 0, AT32_GPIOF_PULLUP); 202 + #else 287 203 at32_select_periph(GPIO_PIOB_BASE, 1 << 28, 0, AT32_GPIOF_PULLUP); 204 + #endif 288 205 at32_select_gpio(i2c_gpio_data.sda_pin, 289 206 AT32_GPIOF_MULTIDRV | AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH); 290 207 at32_select_gpio(i2c_gpio_data.scl_pin, ··· 302 211 303 212 static int __init atngw100_arch_init(void) 304 213 { 305 - /* PB30 is the otherwise unused jumper on the mainboard, with an 306 - * external pullup; the jumper grounds it. Use it however you 307 - * like, including letting U-Boot or Linux tweak boot sequences. 214 + /* PB30 (ATNGW100) and PE30 (ATNGW100 mkII) is the otherwise unused 215 + * jumper on the mainboard, with an external pullup; the jumper grounds 216 + * it. Use it however you like, including letting U-Boot or Linux tweak 217 + * boot sequences. 308 218 */ 219 + #ifdef CONFIG_BOARD_ATNGW100_MKII 220 + at32_select_gpio(GPIO_PIN_PE(30), 0); 221 + gpio_request(GPIO_PIN_PE(30), "j15"); 222 + gpio_direction_input(GPIO_PIN_PE(30)); 223 + gpio_export(GPIO_PIN_PE(30), false); 224 + #else 309 225 at32_select_gpio(GPIO_PIN_PB(30), 0); 310 226 gpio_request(GPIO_PIN_PB(30), "j15"); 311 227 gpio_direction_input(GPIO_PIN_PB(30)); 312 228 gpio_export(GPIO_PIN_PB(30), false); 229 + #endif 313 230 314 231 /* set_irq_type() after the arch_initcall for EIC has run, and 315 232 * before the I2C subsystem could try using this IRQ.
+291 -94
arch/avr32/configs/atngw100_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Tue Aug 5 16:00:47 2008 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Oct 29 09:39:22 2009 5 5 # 6 6 CONFIG_AVR32=y 7 7 CONFIG_GENERIC_GPIO=y ··· 21 21 CONFIG_GENERIC_CALIBRATE_DELAY=y 22 22 CONFIG_GENERIC_BUG=y 23 23 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 24 25 25 26 # 26 27 # General setup ··· 35 34 CONFIG_SYSVIPC=y 36 35 CONFIG_SYSVIPC_SYSCTL=y 37 36 CONFIG_POSIX_MQUEUE=y 37 + CONFIG_POSIX_MQUEUE_SYSCTL=y 38 38 CONFIG_BSD_PROCESS_ACCT=y 39 39 CONFIG_BSD_PROCESS_ACCT_V3=y 40 40 # CONFIG_TASKSTATS is not set 41 41 # CONFIG_AUDIT is not set 42 + 43 + # 44 + # RCU Subsystem 45 + # 46 + CONFIG_TREE_RCU=y 47 + # CONFIG_TREE_PREEMPT_RCU is not set 48 + # CONFIG_RCU_TRACE is not set 49 + CONFIG_RCU_FANOUT=32 50 + # CONFIG_RCU_FANOUT_EXACT is not set 51 + # CONFIG_TREE_RCU_TRACE is not set 42 52 # CONFIG_IKCONFIG is not set 43 53 CONFIG_LOG_BUF_SHIFT=14 44 - # CONFIG_CGROUPS is not set 45 54 # CONFIG_GROUP_SCHED is not set 55 + # CONFIG_CGROUPS is not set 46 56 CONFIG_SYSFS_DEPRECATED=y 47 57 CONFIG_SYSFS_DEPRECATED_V2=y 48 58 # CONFIG_RELAY is not set 49 59 # CONFIG_NAMESPACES is not set 50 60 CONFIG_BLK_DEV_INITRD=y 51 61 CONFIG_INITRAMFS_SOURCE="" 62 + CONFIG_RD_GZIP=y 63 + # CONFIG_RD_BZIP2 is not set 64 + # CONFIG_RD_LZMA is not set 52 65 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 53 66 CONFIG_SYSCTL=y 67 + CONFIG_ANON_INODES=y 54 68 CONFIG_EMBEDDED=y 55 69 # CONFIG_SYSCTL_SYSCALL is not set 56 70 CONFIG_KALLSYMS=y ··· 75 59 CONFIG_PRINTK=y 76 60 CONFIG_BUG=y 77 61 CONFIG_ELF_CORE=y 78 - # CONFIG_COMPAT_BRK is not set 79 62 # CONFIG_BASE_FULL is not set 80 63 CONFIG_FUTEX=y 81 - CONFIG_ANON_INODES=y 82 64 CONFIG_EPOLL=y 83 65 CONFIG_SIGNALFD=y 84 66 CONFIG_TIMERFD=y 85 67 CONFIG_EVENTFD=y 86 68 CONFIG_SHMEM=y 69 + CONFIG_AIO=y 70 + 71 + # 72 + # Kernel Performance Events And Counters 73 + # 87 74 CONFIG_VM_EVENT_COUNTERS=y 88 75 CONFIG_SLUB_DEBUG=y 76 + # CONFIG_COMPAT_BRK is not set 89 77 # CONFIG_SLAB is not set 90 78 CONFIG_SLUB=y 91 79 # CONFIG_SLOB is not set 92 80 CONFIG_PROFILING=y 93 - # CONFIG_MARKERS is not set 81 + CONFIG_TRACEPOINTS=y 94 82 CONFIG_OPROFILE=m 95 83 CONFIG_HAVE_OPROFILE=y 96 84 CONFIG_KPROBES=y 97 - # CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is not set 98 - # CONFIG_HAVE_IOREMAP_PROT is not set 99 85 CONFIG_HAVE_KPROBES=y 100 - # CONFIG_HAVE_KRETPROBES is not set 101 - # CONFIG_HAVE_ARCH_TRACEHOOK is not set 102 - # CONFIG_HAVE_DMA_ATTRS is not set 103 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 104 86 CONFIG_HAVE_CLK=y 105 - CONFIG_PROC_PAGE_MONITOR=y 87 + 88 + # 89 + # GCOV-based kernel profiling 90 + # 91 + # CONFIG_GCOV_KERNEL is not set 92 + CONFIG_SLOW_WORK=y 106 93 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 107 94 CONFIG_SLABINFO=y 108 95 CONFIG_RT_MUTEXES=y 109 - # CONFIG_TINY_SHMEM is not set 110 96 CONFIG_BASE_SMALL=1 111 97 CONFIG_MODULES=y 112 98 # CONFIG_MODULE_FORCE_LOAD is not set ··· 116 98 CONFIG_MODULE_FORCE_UNLOAD=y 117 99 # CONFIG_MODVERSIONS is not set 118 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 119 - CONFIG_KMOD=y 120 101 CONFIG_BLOCK=y 121 - # CONFIG_LBD is not set 122 - # CONFIG_BLK_DEV_IO_TRACE is not set 123 - # CONFIG_LSF is not set 102 + CONFIG_LBDAF=y 124 103 # CONFIG_BLK_DEV_BSG is not set 125 104 # CONFIG_BLK_DEV_INTEGRITY is not set 126 105 ··· 133 118 CONFIG_DEFAULT_CFQ=y 134 119 # CONFIG_DEFAULT_NOOP is not set 135 120 CONFIG_DEFAULT_IOSCHED="cfq" 136 - CONFIG_CLASSIC_RCU=y 121 + CONFIG_FREEZER=y 137 122 138 123 # 139 124 # System Type and features ··· 148 133 CONFIG_PLATFORM_AT32AP=y 149 134 CONFIG_CPU_AT32AP700X=y 150 135 CONFIG_CPU_AT32AP7000=y 136 + CONFIG_BOARD_ATNGW100_COMMON=y 151 137 # CONFIG_BOARD_ATSTK1000 is not set 152 - CONFIG_BOARD_ATNGW100=y 138 + CONFIG_BOARD_ATNGW100_MKI=y 139 + # CONFIG_BOARD_ATNGW100_MKII is not set 140 + # CONFIG_BOARD_HAMMERHEAD is not set 141 + # CONFIG_BOARD_FAVR_32 is not set 142 + # CONFIG_BOARD_MERISC is not set 143 + # CONFIG_BOARD_MIMC200 is not set 144 + # CONFIG_BOARD_ATSTK1002 is not set 145 + # CONFIG_BOARD_ATSTK1003 is not set 146 + # CONFIG_BOARD_ATSTK1004 is not set 147 + # CONFIG_BOARD_ATSTK1006 is not set 148 + # CONFIG_BOARD_ATSTK1000_J2_LED8 is not set 149 + # CONFIG_BOARD_ATSTK1000_J2_RGB is not set 150 + CONFIG_BOARD_ATNGW100_ADDON_NONE=y 151 + # CONFIG_BOARD_ATNGW100_EVKLCD10X is not set 152 + # CONFIG_BOARD_ATNGW100_MRMT is not set 153 153 CONFIG_LOADER_U_BOOT=y 154 154 155 155 # ··· 180 150 # CONFIG_PREEMPT_VOLUNTARY is not set 181 151 # CONFIG_PREEMPT is not set 182 152 CONFIG_QUICKLIST=y 183 - # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set 153 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 184 154 # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 185 155 # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 186 156 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 192 162 # CONFIG_SPARSEMEM_MANUAL is not set 193 163 CONFIG_FLATMEM=y 194 164 CONFIG_FLAT_NODE_MEM_MAP=y 195 - # CONFIG_SPARSEMEM_STATIC is not set 196 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 197 165 CONFIG_PAGEFLAGS_EXTENDED=y 198 166 CONFIG_SPLIT_PTLOCK_CPUS=4 199 - # CONFIG_RESOURCES_64BIT is not set 167 + # CONFIG_PHYS_ADDR_T_64BIT is not set 200 168 CONFIG_ZONE_DMA_FLAG=0 201 169 CONFIG_NR_QUICK=2 202 170 CONFIG_VIRT_TO_BUS=y 171 + CONFIG_HAVE_MLOCK=y 172 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 173 + # CONFIG_KSM is not set 174 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 203 175 # CONFIG_OWNERSHIP_TRACE is not set 204 176 CONFIG_NMI_DEBUGGING=y 205 177 # CONFIG_HZ_100 is not set ··· 209 177 # CONFIG_HZ_300 is not set 210 178 # CONFIG_HZ_1000 is not set 211 179 CONFIG_HZ=250 212 - # CONFIG_SCHED_HRTICK is not set 180 + CONFIG_SCHED_HRTICK=y 213 181 CONFIG_CMDLINE="" 214 182 215 183 # ··· 220 188 CONFIG_PM_SLEEP=y 221 189 CONFIG_SUSPEND=y 222 190 CONFIG_SUSPEND_FREEZER=y 191 + # CONFIG_PM_RUNTIME is not set 223 192 CONFIG_ARCH_SUSPEND_POSSIBLE=y 224 193 225 194 # ··· 252 219 # Executable file formats 253 220 # 254 221 CONFIG_BINFMT_ELF=y 222 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 223 + # CONFIG_HAVE_AOUT is not set 255 224 # CONFIG_BINFMT_MISC is not set 256 225 CONFIG_NET=y 257 226 ··· 306 271 CONFIG_TCP_CONG_CUBIC=y 307 272 CONFIG_DEFAULT_TCP_CONG="cubic" 308 273 # CONFIG_TCP_MD5SIG is not set 309 - # CONFIG_IP_VS is not set 310 274 CONFIG_IPV6=y 311 275 # CONFIG_IPV6_PRIVACY is not set 312 276 # CONFIG_IPV6_ROUTER_PREF is not set ··· 348 314 CONFIG_NETFILTER_XT_MATCH_MARK=m 349 315 CONFIG_NETFILTER_XT_MATCH_POLICY=m 350 316 CONFIG_NETFILTER_XT_MATCH_STATE=m 317 + # CONFIG_IP_VS is not set 351 318 352 319 # 353 320 # IP: Netfilter Configuration 354 321 # 322 + CONFIG_NF_DEFRAG_IPV4=m 355 323 CONFIG_NF_CONNTRACK_IPV4=m 356 324 CONFIG_NF_CONNTRACK_PROC_COMPAT=y 357 325 CONFIG_IP_NF_IPTABLES=m ··· 379 343 CONFIG_NF_CONNTRACK_IPV6=m 380 344 CONFIG_IP6_NF_IPTABLES=m 381 345 CONFIG_IP6_NF_MATCH_IPV6HEADER=m 382 - CONFIG_IP6_NF_FILTER=m 383 346 CONFIG_IP6_NF_TARGET_LOG=m 347 + CONFIG_IP6_NF_FILTER=m 384 348 CONFIG_IP6_NF_TARGET_REJECT=m 385 349 CONFIG_IP6_NF_MANGLE=m 386 350 # CONFIG_IP_DCCP is not set 387 351 # CONFIG_IP_SCTP is not set 352 + # CONFIG_RDS is not set 388 353 # CONFIG_TIPC is not set 389 354 # CONFIG_ATM is not set 390 355 CONFIG_STP=m 391 356 CONFIG_BRIDGE=m 357 + # CONFIG_NET_DSA is not set 392 358 CONFIG_VLAN_8021Q=m 393 359 # CONFIG_VLAN_8021Q_GVRP is not set 394 360 # CONFIG_DECNET is not set ··· 402 364 # CONFIG_LAPB is not set 403 365 # CONFIG_ECONET is not set 404 366 # CONFIG_WAN_ROUTER is not set 367 + # CONFIG_PHONET is not set 368 + # CONFIG_IEEE802154 is not set 405 369 # CONFIG_NET_SCHED is not set 370 + # CONFIG_DCB is not set 406 371 407 372 # 408 373 # Network testing 409 374 # 410 375 # CONFIG_NET_PKTGEN is not set 411 376 # CONFIG_NET_TCPPROBE is not set 377 + # CONFIG_NET_DROP_MONITOR is not set 412 378 # CONFIG_HAMRADIO is not set 413 379 # CONFIG_CAN is not set 414 380 # CONFIG_IRDA is not set 415 381 # CONFIG_BT is not set 416 382 # CONFIG_AF_RXRPC is not set 383 + CONFIG_WIRELESS=y 384 + # CONFIG_CFG80211 is not set 385 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 386 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 387 + # CONFIG_WIRELESS_EXT is not set 388 + # CONFIG_LIB80211 is not set 417 389 418 390 # 419 - # Wireless 391 + # CFG80211 needs to be enabled for MAC80211 420 392 # 421 - # CONFIG_CFG80211 is not set 422 - # CONFIG_WIRELESS_EXT is not set 423 - # CONFIG_MAC80211 is not set 424 - # CONFIG_IEEE80211 is not set 393 + # CONFIG_WIMAX is not set 425 394 # CONFIG_RFKILL is not set 426 395 # CONFIG_NET_9P is not set 427 396 ··· 440 395 # Generic Driver Options 441 396 # 442 397 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 398 + # CONFIG_DEVTMPFS is not set 443 399 CONFIG_STANDALONE=y 444 400 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 445 401 # CONFIG_FW_LOADER is not set ··· 450 404 # CONFIG_CONNECTOR is not set 451 405 CONFIG_MTD=y 452 406 # CONFIG_MTD_DEBUG is not set 407 + # CONFIG_MTD_TESTS is not set 453 408 # CONFIG_MTD_CONCAT is not set 454 409 CONFIG_MTD_PARTITIONS=y 455 410 # CONFIG_MTD_REDBOOT_PARTS is not set ··· 500 453 # 501 454 # CONFIG_MTD_COMPLEX_MAPPINGS is not set 502 455 CONFIG_MTD_PHYSMAP=y 503 - CONFIG_MTD_PHYSMAP_START=0x80000000 504 - CONFIG_MTD_PHYSMAP_LEN=0x0 505 - CONFIG_MTD_PHYSMAP_BANKWIDTH=2 456 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 506 457 # CONFIG_MTD_PLATRAM is not set 507 458 508 459 # 509 460 # Self-contained MTD device drivers 510 461 # 511 462 CONFIG_MTD_DATAFLASH=y 463 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 464 + # CONFIG_MTD_DATAFLASH_OTP is not set 512 465 # CONFIG_MTD_M25P80 is not set 466 + # CONFIG_MTD_SST25L is not set 513 467 # CONFIG_MTD_SLRAM is not set 514 468 # CONFIG_MTD_PHRAM is not set 515 469 # CONFIG_MTD_MTDRAM is not set ··· 526 478 # CONFIG_MTD_ONENAND is not set 527 479 528 480 # 481 + # LPDDR flash memory drivers 482 + # 483 + # CONFIG_MTD_LPDDR is not set 484 + 485 + # 529 486 # UBI - Unsorted block images 530 487 # 531 - # CONFIG_MTD_UBI is not set 488 + CONFIG_MTD_UBI=y 489 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 490 + CONFIG_MTD_UBI_BEB_RESERVE=1 491 + # CONFIG_MTD_UBI_GLUEBI is not set 492 + 493 + # 494 + # UBI debugging options 495 + # 496 + # CONFIG_MTD_UBI_DEBUG is not set 532 497 # CONFIG_PARPORT is not set 533 498 CONFIG_BLK_DEV=y 534 499 # CONFIG_BLK_DEV_COW_COMMON is not set ··· 559 498 CONFIG_ATMEL_TCLIB=y 560 499 CONFIG_ATMEL_TCB_CLKSRC=y 561 500 CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 562 - # CONFIG_EEPROM_93CX6 is not set 501 + # CONFIG_ICS932S401 is not set 563 502 # CONFIG_ATMEL_SSC is not set 564 503 # CONFIG_ENCLOSURE_SERVICES is not set 565 - # CONFIG_HAVE_IDE is not set 504 + # CONFIG_ISL29003 is not set 505 + # CONFIG_C2PORT is not set 506 + 507 + # 508 + # EEPROM support 509 + # 510 + CONFIG_EEPROM_AT24=m 511 + # CONFIG_EEPROM_AT25 is not set 512 + # CONFIG_EEPROM_LEGACY is not set 513 + # CONFIG_EEPROM_MAX6875 is not set 514 + # CONFIG_EEPROM_93CX6 is not set 566 515 567 516 # 568 517 # SCSI device support ··· 605 534 # CONFIG_BROADCOM_PHY is not set 606 535 # CONFIG_ICPLUS_PHY is not set 607 536 # CONFIG_REALTEK_PHY is not set 537 + # CONFIG_NATIONAL_PHY is not set 538 + # CONFIG_STE10XP is not set 539 + # CONFIG_LSI_ET1011C_PHY is not set 608 540 # CONFIG_FIXED_PHY is not set 609 541 # CONFIG_MDIO_BITBANG is not set 610 542 CONFIG_NET_ETHERNET=y 611 543 # CONFIG_MII is not set 612 544 CONFIG_MACB=y 613 545 # CONFIG_ENC28J60 is not set 546 + # CONFIG_ETHOC is not set 547 + # CONFIG_DNET is not set 614 548 # CONFIG_IBM_NEW_EMAC_ZMII is not set 615 549 # CONFIG_IBM_NEW_EMAC_RGMII is not set 616 550 # CONFIG_IBM_NEW_EMAC_TAH is not set 617 551 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 552 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 553 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 554 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 618 555 # CONFIG_B44 is not set 556 + # CONFIG_KS8842 is not set 557 + # CONFIG_KS8851 is not set 558 + # CONFIG_KS8851_MLL is not set 619 559 # CONFIG_NETDEV_1000 is not set 620 560 # CONFIG_NETDEV_10000 is not set 621 - 622 - # 623 - # Wireless LAN 624 - # 561 + CONFIG_WLAN=y 625 562 # CONFIG_WLAN_PRE80211 is not set 626 563 # CONFIG_WLAN_80211 is not set 627 - # CONFIG_IWLWIFI_LEDS is not set 564 + 565 + # 566 + # Enable WiMAX (Networking options) to see the WiMAX drivers 567 + # 628 568 # CONFIG_WAN is not set 629 569 CONFIG_PPP=m 630 570 # CONFIG_PPP_MULTILINK is not set ··· 685 603 CONFIG_SERIAL_ATMEL_CONSOLE=y 686 604 CONFIG_SERIAL_ATMEL_PDC=y 687 605 # CONFIG_SERIAL_ATMEL_TTYAT is not set 606 + # CONFIG_SERIAL_MAX3100 is not set 688 607 CONFIG_SERIAL_CORE=y 689 608 CONFIG_SERIAL_CORE_CONSOLE=y 690 609 CONFIG_UNIX98_PTYS=y 610 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 691 611 # CONFIG_LEGACY_PTYS is not set 692 612 # CONFIG_IPMI_HANDLER is not set 693 613 # CONFIG_HW_RANDOM is not set ··· 698 614 # CONFIG_TCG_TPM is not set 699 615 CONFIG_I2C=m 700 616 CONFIG_I2C_BOARDINFO=y 617 + CONFIG_I2C_COMPAT=y 701 618 CONFIG_I2C_CHARDEV=m 619 + CONFIG_I2C_HELPER_AUTO=y 702 620 CONFIG_I2C_ALGOBIT=m 703 621 704 622 # ··· 710 624 # 711 625 # I2C system bus drivers (mostly embedded / system-on-chip) 712 626 # 627 + # CONFIG_I2C_DESIGNWARE is not set 713 628 CONFIG_I2C_GPIO=m 714 629 # CONFIG_I2C_OCORES is not set 715 630 # CONFIG_I2C_SIMTEC is not set ··· 731 644 # Miscellaneous I2C Chip support 732 645 # 733 646 # CONFIG_DS1682 is not set 734 - CONFIG_EEPROM_AT24=m 735 - # CONFIG_EEPROM_LEGACY is not set 736 - # CONFIG_SENSORS_PCF8574 is not set 737 - # CONFIG_PCF8575 is not set 738 - # CONFIG_SENSORS_PCA9539 is not set 739 - # CONFIG_SENSORS_PCF8591 is not set 740 - # CONFIG_TPS65010 is not set 741 - # CONFIG_SENSORS_MAX6875 is not set 742 647 # CONFIG_SENSORS_TSL2550 is not set 743 648 # CONFIG_I2C_DEBUG_CORE is not set 744 649 # CONFIG_I2C_DEBUG_ALGO is not set ··· 745 666 # 746 667 CONFIG_SPI_ATMEL=y 747 668 # CONFIG_SPI_BITBANG is not set 669 + # CONFIG_SPI_GPIO is not set 748 670 749 671 # 750 672 # SPI Protocol Masters 751 673 # 752 - # CONFIG_EEPROM_AT25 is not set 753 674 CONFIG_SPI_SPIDEV=m 754 675 # CONFIG_SPI_TLE62X0 is not set 676 + 677 + # 678 + # PPS support 679 + # 680 + # CONFIG_PPS is not set 755 681 CONFIG_ARCH_REQUIRE_GPIOLIB=y 756 682 CONFIG_GPIOLIB=y 757 683 # CONFIG_DEBUG_GPIO is not set 758 684 CONFIG_GPIO_SYSFS=y 685 + 686 + # 687 + # Memory mapped GPIO expanders: 688 + # 759 689 760 690 # 761 691 # I2C GPIO expanders: ··· 782 694 # 783 695 # CONFIG_GPIO_MAX7301 is not set 784 696 # CONFIG_GPIO_MCP23S08 is not set 697 + # CONFIG_GPIO_MC33880 is not set 698 + 699 + # 700 + # AC97 GPIO expanders: 701 + # 785 702 # CONFIG_W1 is not set 786 703 # CONFIG_POWER_SUPPLY is not set 787 704 # CONFIG_HWMON is not set 788 705 # CONFIG_THERMAL is not set 789 - # CONFIG_THERMAL_HWMON is not set 790 706 CONFIG_WATCHDOG=y 791 707 # CONFIG_WATCHDOG_NOWAYOUT is not set 792 708 ··· 799 707 # 800 708 # CONFIG_SOFT_WATCHDOG is not set 801 709 CONFIG_AT32AP700X_WDT=y 710 + CONFIG_SSB_POSSIBLE=y 802 711 803 712 # 804 713 # Sonics Silicon Backplane 805 714 # 806 - CONFIG_SSB_POSSIBLE=y 807 715 # CONFIG_SSB is not set 808 716 809 717 # ··· 812 720 # CONFIG_MFD_CORE is not set 813 721 # CONFIG_MFD_SM501 is not set 814 722 # CONFIG_HTC_PASIC3 is not set 815 - 816 - # 817 - # Multimedia devices 818 - # 819 - 820 - # 821 - # Multimedia core support 822 - # 823 - # CONFIG_VIDEO_DEV is not set 824 - # CONFIG_DVB_CORE is not set 825 - # CONFIG_VIDEO_MEDIA is not set 826 - 827 - # 828 - # Multimedia drivers 829 - # 830 - # CONFIG_DAB is not set 723 + # CONFIG_TPS65010 is not set 724 + # CONFIG_MFD_TMIO is not set 725 + # CONFIG_MFD_WM8400 is not set 726 + # CONFIG_MFD_WM831X is not set 727 + # CONFIG_MFD_WM8350_I2C is not set 728 + # CONFIG_MFD_PCF50633 is not set 729 + # CONFIG_MFD_MC13783 is not set 730 + # CONFIG_AB3100_CORE is not set 731 + # CONFIG_EZX_PCAP is not set 732 + # CONFIG_REGULATOR is not set 733 + # CONFIG_MEDIA_SUPPORT is not set 831 734 832 735 # 833 736 # Graphics support ··· 843 756 # CONFIG_USB_ARCH_HAS_EHCI is not set 844 757 # CONFIG_USB_OTG_WHITELIST is not set 845 758 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 759 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 846 760 847 761 # 848 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 762 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 849 763 # 850 764 CONFIG_USB_GADGET=y 851 765 # CONFIG_USB_GADGET_DEBUG is not set 852 766 # CONFIG_USB_GADGET_DEBUG_FILES is not set 767 + # CONFIG_USB_GADGET_DEBUG_FS is not set 768 + CONFIG_USB_GADGET_VBUS_DRAW=2 853 769 CONFIG_USB_GADGET_SELECTED=y 854 - # CONFIG_USB_GADGET_AMD5536UDC is not set 770 + # CONFIG_USB_GADGET_AT91 is not set 855 771 CONFIG_USB_GADGET_ATMEL_USBA=y 856 772 CONFIG_USB_ATMEL_USBA=y 857 773 # CONFIG_USB_GADGET_FSL_USB2 is not set 858 - # CONFIG_USB_GADGET_NET2280 is not set 859 - # CONFIG_USB_GADGET_PXA25X is not set 860 - # CONFIG_USB_GADGET_M66592 is not set 861 - # CONFIG_USB_GADGET_PXA27X is not set 862 - # CONFIG_USB_GADGET_GOKU is not set 863 774 # CONFIG_USB_GADGET_LH7A40X is not set 864 775 # CONFIG_USB_GADGET_OMAP is not set 776 + # CONFIG_USB_GADGET_PXA25X is not set 777 + # CONFIG_USB_GADGET_R8A66597 is not set 778 + # CONFIG_USB_GADGET_PXA27X is not set 779 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 780 + # CONFIG_USB_GADGET_IMX is not set 865 781 # CONFIG_USB_GADGET_S3C2410 is not set 866 - # CONFIG_USB_GADGET_AT91 is not set 782 + # CONFIG_USB_GADGET_M66592 is not set 783 + # CONFIG_USB_GADGET_AMD5536UDC is not set 784 + # CONFIG_USB_GADGET_FSL_QE is not set 785 + # CONFIG_USB_GADGET_CI13XXX is not set 786 + # CONFIG_USB_GADGET_NET2280 is not set 787 + # CONFIG_USB_GADGET_GOKU is not set 788 + # CONFIG_USB_GADGET_LANGWELL is not set 867 789 # CONFIG_USB_GADGET_DUMMY_HCD is not set 868 790 CONFIG_USB_GADGET_DUALSPEED=y 869 791 CONFIG_USB_ZERO=m 792 + # CONFIG_USB_AUDIO is not set 870 793 CONFIG_USB_ETH=m 871 794 CONFIG_USB_ETH_RNDIS=y 795 + # CONFIG_USB_ETH_EEM is not set 872 796 CONFIG_USB_GADGETFS=m 873 797 CONFIG_USB_FILE_STORAGE=m 874 798 # CONFIG_USB_FILE_STORAGE_TEST is not set ··· 887 789 # CONFIG_USB_MIDI_GADGET is not set 888 790 # CONFIG_USB_G_PRINTER is not set 889 791 CONFIG_USB_CDC_COMPOSITE=m 792 + 793 + # 794 + # OTG and related infrastructure 795 + # 796 + # CONFIG_USB_GPIO_VBUS is not set 797 + # CONFIG_NOP_USB_XCEIV is not set 890 798 CONFIG_MMC=y 891 799 # CONFIG_MMC_DEBUG is not set 892 800 # CONFIG_MMC_UNSAFE_RESUME is not set 893 801 894 802 # 895 - # MMC/SD Card Drivers 803 + # MMC/SD/SDIO Card Drivers 896 804 # 897 805 CONFIG_MMC_BLOCK=y 898 806 CONFIG_MMC_BLOCK_BOUNCE=y ··· 906 802 CONFIG_MMC_TEST=m 907 803 908 804 # 909 - # MMC/SD Host Controller Drivers 805 + # MMC/SD/SDIO Host Controller Drivers 910 806 # 911 807 # CONFIG_MMC_SDHCI is not set 808 + # CONFIG_MMC_AT91 is not set 912 809 CONFIG_MMC_ATMELMCI=y 810 + # CONFIG_MMC_ATMELMCI_DMA is not set 913 811 CONFIG_MMC_SPI=m 914 812 # CONFIG_MEMSTICK is not set 915 813 CONFIG_NEW_LEDS=y ··· 921 815 # LED drivers 922 816 # 923 817 CONFIG_LEDS_GPIO=y 818 + CONFIG_LEDS_GPIO_PLATFORM=y 819 + # CONFIG_LEDS_LP3944 is not set 924 820 # CONFIG_LEDS_PCA955X is not set 821 + # CONFIG_LEDS_DAC124S085 is not set 822 + # CONFIG_LEDS_BD2802 is not set 925 823 926 824 # 927 825 # LED Triggers ··· 933 823 CONFIG_LEDS_TRIGGERS=y 934 824 CONFIG_LEDS_TRIGGER_TIMER=y 935 825 CONFIG_LEDS_TRIGGER_HEARTBEAT=y 826 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 827 + # CONFIG_LEDS_TRIGGER_GPIO is not set 936 828 CONFIG_LEDS_TRIGGER_DEFAULT_ON=y 829 + 830 + # 831 + # iptables trigger is under Netfilter config (LED target) 832 + # 937 833 # CONFIG_ACCESSIBILITY is not set 938 834 CONFIG_RTC_LIB=y 939 835 CONFIG_RTC_CLASS=y ··· 971 855 # CONFIG_RTC_DRV_M41T80 is not set 972 856 # CONFIG_RTC_DRV_S35390A is not set 973 857 # CONFIG_RTC_DRV_FM3130 is not set 858 + # CONFIG_RTC_DRV_RX8581 is not set 859 + # CONFIG_RTC_DRV_RX8025 is not set 974 860 975 861 # 976 862 # SPI RTC drivers 977 863 # 978 864 # CONFIG_RTC_DRV_M41T94 is not set 979 865 # CONFIG_RTC_DRV_DS1305 is not set 866 + # CONFIG_RTC_DRV_DS1390 is not set 980 867 # CONFIG_RTC_DRV_MAX6902 is not set 981 868 # CONFIG_RTC_DRV_R9701 is not set 982 869 # CONFIG_RTC_DRV_RS5C348 is not set 870 + # CONFIG_RTC_DRV_DS3234 is not set 871 + # CONFIG_RTC_DRV_PCF2123 is not set 983 872 984 873 # 985 874 # Platform RTC drivers 986 875 # 876 + # CONFIG_RTC_DRV_DS1286 is not set 987 877 # CONFIG_RTC_DRV_DS1511 is not set 988 878 # CONFIG_RTC_DRV_DS1553 is not set 989 879 # CONFIG_RTC_DRV_DS1742 is not set 990 880 # CONFIG_RTC_DRV_STK17TA8 is not set 991 881 # CONFIG_RTC_DRV_M48T86 is not set 882 + # CONFIG_RTC_DRV_M48T35 is not set 992 883 # CONFIG_RTC_DRV_M48T59 is not set 884 + # CONFIG_RTC_DRV_BQ4802 is not set 993 885 # CONFIG_RTC_DRV_V3020 is not set 994 886 995 887 # ··· 1016 892 # DMA Clients 1017 893 # 1018 894 # CONFIG_NET_DMA is not set 895 + # CONFIG_ASYNC_TX_DMA is not set 1019 896 # CONFIG_DMATEST is not set 897 + # CONFIG_AUXDISPLAY is not set 1020 898 # CONFIG_UIO is not set 899 + 900 + # 901 + # TI VLYNQ 902 + # 903 + # CONFIG_STAGING is not set 1021 904 1022 905 # 1023 906 # File systems 1024 907 # 1025 - CONFIG_EXT2_FS=m 908 + CONFIG_EXT2_FS=y 1026 909 # CONFIG_EXT2_FS_XATTR is not set 1027 910 # CONFIG_EXT2_FS_XIP is not set 1028 - CONFIG_EXT3_FS=m 911 + CONFIG_EXT3_FS=y 912 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1029 913 # CONFIG_EXT3_FS_XATTR is not set 1030 - # CONFIG_EXT4DEV_FS is not set 1031 - CONFIG_JBD=m 914 + # CONFIG_EXT4_FS is not set 915 + CONFIG_JBD=y 916 + # CONFIG_JBD_DEBUG is not set 1032 917 # CONFIG_REISERFS_FS is not set 1033 918 # CONFIG_JFS_FS is not set 1034 919 # CONFIG_FS_POSIX_ACL is not set 1035 920 # CONFIG_XFS_FS is not set 921 + # CONFIG_GFS2_FS is not set 1036 922 # CONFIG_OCFS2_FS is not set 923 + # CONFIG_BTRFS_FS is not set 924 + # CONFIG_NILFS2_FS is not set 925 + CONFIG_FILE_LOCKING=y 926 + CONFIG_FSNOTIFY=y 1037 927 # CONFIG_DNOTIFY is not set 1038 928 CONFIG_INOTIFY=y 1039 929 CONFIG_INOTIFY_USER=y ··· 1055 917 # CONFIG_AUTOFS_FS is not set 1056 918 # CONFIG_AUTOFS4_FS is not set 1057 919 CONFIG_FUSE_FS=m 920 + # CONFIG_CUSE is not set 921 + 922 + # 923 + # Caches 924 + # 925 + # CONFIG_FSCACHE is not set 1058 926 1059 927 # 1060 928 # CD-ROM/DVD Filesystems ··· 1084 940 CONFIG_PROC_FS=y 1085 941 # CONFIG_PROC_KCORE is not set 1086 942 CONFIG_PROC_SYSCTL=y 943 + CONFIG_PROC_PAGE_MONITOR=y 1087 944 CONFIG_SYSFS=y 1088 945 CONFIG_TMPFS=y 1089 946 # CONFIG_TMPFS_POSIX_ACL is not set 1090 947 # CONFIG_HUGETLB_PAGE is not set 1091 948 CONFIG_CONFIGFS_FS=m 1092 - 1093 - # 1094 - # Miscellaneous filesystems 1095 - # 949 + CONFIG_MISC_FILESYSTEMS=y 1096 950 # CONFIG_ADFS_FS is not set 1097 951 # CONFIG_AFFS_FS is not set 1098 952 # CONFIG_HFS_FS is not set ··· 1109 967 # CONFIG_JFFS2_LZO is not set 1110 968 CONFIG_JFFS2_RTIME=y 1111 969 # CONFIG_JFFS2_RUBIN is not set 970 + # CONFIG_UBIFS_FS is not set 1112 971 # CONFIG_CRAMFS is not set 972 + # CONFIG_SQUASHFS is not set 1113 973 # CONFIG_VXFS_FS is not set 1114 974 # CONFIG_MINIX_FS is not set 1115 975 # CONFIG_OMFS_FS is not set ··· 1119 975 # CONFIG_QNX4FS_FS is not set 1120 976 # CONFIG_ROMFS_FS is not set 1121 977 # CONFIG_SYSV_FS is not set 1122 - # CONFIG_UFS_FS is not set 978 + CONFIG_UFS_FS=y 979 + # CONFIG_UFS_FS_WRITE is not set 980 + # CONFIG_UFS_DEBUG is not set 1123 981 CONFIG_NETWORK_FILESYSTEMS=y 1124 982 CONFIG_NFS_FS=y 1125 983 CONFIG_NFS_V3=y ··· 1206 1060 CONFIG_ENABLE_MUST_CHECK=y 1207 1061 CONFIG_FRAME_WARN=1024 1208 1062 CONFIG_MAGIC_SYSRQ=y 1063 + # CONFIG_STRIP_ASM_SYMS is not set 1209 1064 # CONFIG_UNUSED_SYMBOLS is not set 1210 - # CONFIG_DEBUG_FS is not set 1065 + CONFIG_DEBUG_FS=y 1211 1066 # CONFIG_HEADERS_CHECK is not set 1212 1067 CONFIG_DEBUG_KERNEL=y 1213 1068 # CONFIG_DEBUG_SHIRQ is not set 1214 1069 CONFIG_DETECT_SOFTLOCKUP=y 1215 1070 # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1216 1071 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1072 + CONFIG_DETECT_HUNG_TASK=y 1073 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1074 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1217 1075 CONFIG_SCHED_DEBUG=y 1218 1076 # CONFIG_SCHEDSTATS is not set 1219 1077 # CONFIG_TIMER_STATS is not set ··· 1233 1083 # CONFIG_LOCK_STAT is not set 1234 1084 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1235 1085 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1086 + CONFIG_STACKTRACE=y 1236 1087 # CONFIG_DEBUG_KOBJECT is not set 1237 1088 CONFIG_DEBUG_BUGVERBOSE=y 1238 1089 # CONFIG_DEBUG_INFO is not set ··· 1242 1091 # CONFIG_DEBUG_MEMORY_INIT is not set 1243 1092 # CONFIG_DEBUG_LIST is not set 1244 1093 # CONFIG_DEBUG_SG is not set 1094 + # CONFIG_DEBUG_NOTIFIERS is not set 1095 + # CONFIG_DEBUG_CREDENTIALS is not set 1245 1096 CONFIG_FRAME_POINTER=y 1246 1097 # CONFIG_BOOT_PRINTK_DELAY is not set 1247 1098 # CONFIG_RCU_TORTURE_TEST is not set 1099 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1248 1100 # CONFIG_KPROBES_SANITY_TEST is not set 1249 1101 # CONFIG_BACKTRACE_SELF_TEST is not set 1102 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1103 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1250 1104 # CONFIG_LKDTM is not set 1251 1105 # CONFIG_FAULT_INJECTION is not set 1106 + # CONFIG_PAGE_POISONING is not set 1107 + CONFIG_NOP_TRACER=y 1108 + CONFIG_RING_BUFFER=y 1109 + CONFIG_EVENT_TRACING=y 1110 + CONFIG_CONTEXT_SWITCH_TRACER=y 1111 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1112 + CONFIG_TRACING=y 1113 + CONFIG_TRACING_SUPPORT=y 1114 + CONFIG_FTRACE=y 1115 + # CONFIG_IRQSOFF_TRACER is not set 1116 + # CONFIG_SCHED_TRACER is not set 1117 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1118 + # CONFIG_BOOT_TRACER is not set 1119 + CONFIG_BRANCH_PROFILE_NONE=y 1120 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1121 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1122 + # CONFIG_KMEMTRACE is not set 1123 + # CONFIG_WORKQUEUE_TRACER is not set 1124 + # CONFIG_BLK_DEV_IO_TRACE is not set 1125 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1126 + # CONFIG_DYNAMIC_DEBUG is not set 1252 1127 # CONFIG_SAMPLES is not set 1253 1128 1254 1129 # ··· 1282 1105 # 1283 1106 # CONFIG_KEYS is not set 1284 1107 # CONFIG_SECURITY is not set 1108 + # CONFIG_SECURITYFS is not set 1285 1109 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1286 1110 CONFIG_CRYPTO=y 1287 1111 1288 1112 # 1289 1113 # Crypto core or helper 1290 1114 # 1115 + # CONFIG_CRYPTO_FIPS is not set 1291 1116 CONFIG_CRYPTO_ALGAPI=y 1117 + CONFIG_CRYPTO_ALGAPI2=y 1292 1118 CONFIG_CRYPTO_AEAD=y 1119 + CONFIG_CRYPTO_AEAD2=y 1293 1120 CONFIG_CRYPTO_BLKCIPHER=y 1121 + CONFIG_CRYPTO_BLKCIPHER2=y 1294 1122 CONFIG_CRYPTO_HASH=y 1123 + CONFIG_CRYPTO_HASH2=y 1124 + CONFIG_CRYPTO_RNG=m 1125 + CONFIG_CRYPTO_RNG2=y 1126 + CONFIG_CRYPTO_PCOMP=y 1295 1127 CONFIG_CRYPTO_MANAGER=y 1128 + CONFIG_CRYPTO_MANAGER2=y 1296 1129 # CONFIG_CRYPTO_GF128MUL is not set 1297 1130 # CONFIG_CRYPTO_NULL is not set 1131 + CONFIG_CRYPTO_WORKQUEUE=y 1298 1132 # CONFIG_CRYPTO_CRYPTD is not set 1299 1133 CONFIG_CRYPTO_AUTHENC=y 1300 1134 # CONFIG_CRYPTO_TEST is not set ··· 1333 1145 # 1334 1146 CONFIG_CRYPTO_HMAC=y 1335 1147 # CONFIG_CRYPTO_XCBC is not set 1148 + # CONFIG_CRYPTO_VMAC is not set 1336 1149 1337 1150 # 1338 1151 # Digest 1339 1152 # 1340 1153 # CONFIG_CRYPTO_CRC32C is not set 1154 + # CONFIG_CRYPTO_GHASH is not set 1341 1155 # CONFIG_CRYPTO_MD4 is not set 1342 1156 CONFIG_CRYPTO_MD5=y 1343 1157 # CONFIG_CRYPTO_MICHAEL_MIC is not set ··· 1356 1166 # 1357 1167 # Ciphers 1358 1168 # 1359 - # CONFIG_CRYPTO_AES is not set 1169 + CONFIG_CRYPTO_AES=m 1360 1170 # CONFIG_CRYPTO_ANUBIS is not set 1361 1171 CONFIG_CRYPTO_ARC4=m 1362 1172 # CONFIG_CRYPTO_BLOWFISH is not set ··· 1376 1186 # Compression 1377 1187 # 1378 1188 CONFIG_CRYPTO_DEFLATE=y 1189 + # CONFIG_CRYPTO_ZLIB is not set 1379 1190 # CONFIG_CRYPTO_LZO is not set 1191 + 1192 + # 1193 + # Random Number Generation 1194 + # 1195 + CONFIG_CRYPTO_ANSI_CPRNG=m 1380 1196 CONFIG_CRYPTO_HW=y 1197 + CONFIG_BINARY_PRINTF=y 1381 1198 1382 1199 # 1383 1200 # Library routines 1384 1201 # 1385 1202 CONFIG_BITREVERSE=y 1386 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1387 - # CONFIG_GENERIC_FIND_NEXT_BIT is not set 1203 + CONFIG_GENERIC_FIND_LAST_BIT=y 1388 1204 CONFIG_CRC_CCITT=m 1389 1205 # CONFIG_CRC16 is not set 1390 1206 # CONFIG_CRC_T10DIF is not set ··· 1400 1204 # CONFIG_LIBCRC32C is not set 1401 1205 CONFIG_ZLIB_INFLATE=y 1402 1206 CONFIG_ZLIB_DEFLATE=y 1207 + CONFIG_DECOMPRESS_GZIP=y 1403 1208 CONFIG_GENERIC_ALLOCATOR=y 1404 - CONFIG_PLIST=y 1405 1209 CONFIG_HAS_IOMEM=y 1406 1210 CONFIG_HAS_IOPORT=y 1407 1211 CONFIG_HAS_DMA=y 1212 + CONFIG_NLATTR=y
+444 -165
arch/avr32/configs/atngw100_evklcd100_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.25.6 4 - # Wed Jun 18 16:06:32 2008 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Oct 29 09:36:39 2009 5 5 # 6 6 CONFIG_AVR32=y 7 7 CONFIG_GENERIC_GPIO=y ··· 21 21 CONFIG_GENERIC_CALIBRATE_DELAY=y 22 22 CONFIG_GENERIC_BUG=y 23 23 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 24 25 25 26 # 26 27 # General setup ··· 35 34 CONFIG_SYSVIPC=y 36 35 CONFIG_SYSVIPC_SYSCTL=y 37 36 CONFIG_POSIX_MQUEUE=y 37 + CONFIG_POSIX_MQUEUE_SYSCTL=y 38 38 CONFIG_BSD_PROCESS_ACCT=y 39 39 CONFIG_BSD_PROCESS_ACCT_V3=y 40 40 # CONFIG_TASKSTATS is not set 41 41 # CONFIG_AUDIT is not set 42 + 43 + # 44 + # RCU Subsystem 45 + # 46 + CONFIG_TREE_RCU=y 47 + # CONFIG_TREE_PREEMPT_RCU is not set 48 + # CONFIG_RCU_TRACE is not set 49 + CONFIG_RCU_FANOUT=32 50 + # CONFIG_RCU_FANOUT_EXACT is not set 51 + # CONFIG_TREE_RCU_TRACE is not set 42 52 # CONFIG_IKCONFIG is not set 43 53 CONFIG_LOG_BUF_SHIFT=14 44 - # CONFIG_CGROUPS is not set 45 54 # CONFIG_GROUP_SCHED is not set 55 + # CONFIG_CGROUPS is not set 46 56 CONFIG_SYSFS_DEPRECATED=y 47 57 CONFIG_SYSFS_DEPRECATED_V2=y 48 58 # CONFIG_RELAY is not set 49 59 # CONFIG_NAMESPACES is not set 50 60 CONFIG_BLK_DEV_INITRD=y 51 61 CONFIG_INITRAMFS_SOURCE="" 62 + CONFIG_RD_GZIP=y 63 + # CONFIG_RD_BZIP2 is not set 64 + # CONFIG_RD_LZMA is not set 52 65 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 53 66 CONFIG_SYSCTL=y 67 + CONFIG_ANON_INODES=y 54 68 CONFIG_EMBEDDED=y 55 69 # CONFIG_SYSCTL_SYSCALL is not set 56 70 CONFIG_KALLSYMS=y ··· 75 59 CONFIG_PRINTK=y 76 60 CONFIG_BUG=y 77 61 CONFIG_ELF_CORE=y 78 - # CONFIG_COMPAT_BRK is not set 79 62 # CONFIG_BASE_FULL is not set 80 63 CONFIG_FUTEX=y 81 - CONFIG_ANON_INODES=y 82 64 CONFIG_EPOLL=y 83 65 CONFIG_SIGNALFD=y 84 66 CONFIG_TIMERFD=y 85 67 CONFIG_EVENTFD=y 86 68 CONFIG_SHMEM=y 69 + CONFIG_AIO=y 70 + 71 + # 72 + # Kernel Performance Events And Counters 73 + # 87 74 CONFIG_VM_EVENT_COUNTERS=y 88 75 CONFIG_SLUB_DEBUG=y 76 + # CONFIG_COMPAT_BRK is not set 89 77 # CONFIG_SLAB is not set 90 78 CONFIG_SLUB=y 91 79 # CONFIG_SLOB is not set 92 80 CONFIG_PROFILING=y 93 - # CONFIG_MARKERS is not set 81 + CONFIG_TRACEPOINTS=y 94 82 CONFIG_OPROFILE=m 95 83 CONFIG_HAVE_OPROFILE=y 96 84 CONFIG_KPROBES=y 97 85 CONFIG_HAVE_KPROBES=y 98 - # CONFIG_HAVE_KRETPROBES is not set 99 - CONFIG_PROC_PAGE_MONITOR=y 86 + CONFIG_HAVE_CLK=y 87 + 88 + # 89 + # GCOV-based kernel profiling 90 + # 91 + # CONFIG_GCOV_KERNEL is not set 92 + CONFIG_SLOW_WORK=y 93 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 100 94 CONFIG_SLABINFO=y 101 95 CONFIG_RT_MUTEXES=y 102 - # CONFIG_TINY_SHMEM is not set 103 96 CONFIG_BASE_SMALL=1 104 97 CONFIG_MODULES=y 98 + # CONFIG_MODULE_FORCE_LOAD is not set 105 99 CONFIG_MODULE_UNLOAD=y 106 100 CONFIG_MODULE_FORCE_UNLOAD=y 107 101 # CONFIG_MODVERSIONS is not set 108 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 109 - CONFIG_KMOD=y 110 103 CONFIG_BLOCK=y 111 - # CONFIG_LBD is not set 112 - # CONFIG_BLK_DEV_IO_TRACE is not set 113 - # CONFIG_LSF is not set 104 + CONFIG_LBDAF=y 114 105 # CONFIG_BLK_DEV_BSG is not set 106 + # CONFIG_BLK_DEV_INTEGRITY is not set 115 107 116 108 # 117 109 # IO Schedulers ··· 133 109 CONFIG_DEFAULT_CFQ=y 134 110 # CONFIG_DEFAULT_NOOP is not set 135 111 CONFIG_DEFAULT_IOSCHED="cfq" 136 - CONFIG_CLASSIC_RCU=y 112 + CONFIG_FREEZER=y 137 113 138 114 # 139 115 # System Type and features ··· 148 124 CONFIG_PLATFORM_AT32AP=y 149 125 CONFIG_CPU_AT32AP700X=y 150 126 CONFIG_CPU_AT32AP7000=y 127 + CONFIG_BOARD_ATNGW100_COMMON=y 151 128 # CONFIG_BOARD_ATSTK1000 is not set 152 - CONFIG_BOARD_ATNGW100=y 129 + CONFIG_BOARD_ATNGW100_MKI=y 130 + # CONFIG_BOARD_ATNGW100_MKII is not set 131 + # CONFIG_BOARD_HAMMERHEAD is not set 132 + # CONFIG_BOARD_FAVR_32 is not set 133 + # CONFIG_BOARD_MERISC is not set 134 + # CONFIG_BOARD_MIMC200 is not set 135 + # CONFIG_BOARD_ATSTK1002 is not set 136 + # CONFIG_BOARD_ATSTK1003 is not set 137 + # CONFIG_BOARD_ATSTK1004 is not set 138 + # CONFIG_BOARD_ATSTK1006 is not set 139 + # CONFIG_BOARD_ATSTK1000_J2_LED8 is not set 140 + # CONFIG_BOARD_ATSTK1000_J2_RGB is not set 141 + # CONFIG_BOARD_ATNGW100_ADDON_NONE is not set 153 142 CONFIG_BOARD_ATNGW100_EVKLCD10X=y 143 + # CONFIG_BOARD_ATNGW100_MRMT is not set 154 144 CONFIG_BOARD_ATNGW100_EVKLCD10X_QVGA=y 155 145 # CONFIG_BOARD_ATNGW100_EVKLCD10X_VGA is not set 156 146 # CONFIG_BOARD_ATNGW100_EVKLCD10X_POW_QVGA is not set 157 - CONFIG_BOARD_ATNGW100_I2C_GPIO=y 158 147 CONFIG_LOADER_U_BOOT=y 159 148 160 149 # ··· 176 139 # CONFIG_AP700X_32_BIT_SMC is not set 177 140 CONFIG_AP700X_16_BIT_SMC=y 178 141 # CONFIG_AP700X_8_BIT_SMC is not set 179 - CONFIG_GPIO_DEV=y 180 142 CONFIG_LOAD_ADDRESS=0x10000000 181 143 CONFIG_ENTRY_ADDRESS=0x90000000 182 144 CONFIG_PHYS_OFFSET=0x10000000 183 145 CONFIG_PREEMPT_NONE=y 184 146 # CONFIG_PREEMPT_VOLUNTARY is not set 185 147 # CONFIG_PREEMPT is not set 186 - # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set 148 + CONFIG_QUICKLIST=y 149 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 187 150 # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 188 151 # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 189 152 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 195 158 # CONFIG_SPARSEMEM_MANUAL is not set 196 159 CONFIG_FLATMEM=y 197 160 CONFIG_FLAT_NODE_MEM_MAP=y 198 - # CONFIG_SPARSEMEM_STATIC is not set 199 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 161 + CONFIG_PAGEFLAGS_EXTENDED=y 200 162 CONFIG_SPLIT_PTLOCK_CPUS=4 201 - # CONFIG_RESOURCES_64BIT is not set 163 + # CONFIG_PHYS_ADDR_T_64BIT is not set 202 164 CONFIG_ZONE_DMA_FLAG=0 165 + CONFIG_NR_QUICK=2 203 166 CONFIG_VIRT_TO_BUS=y 167 + CONFIG_HAVE_MLOCK=y 168 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 169 + # CONFIG_KSM is not set 170 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 204 171 # CONFIG_OWNERSHIP_TRACE is not set 205 172 CONFIG_NMI_DEBUGGING=y 206 - CONFIG_DW_DMAC=y 207 173 # CONFIG_HZ_100 is not set 208 174 CONFIG_HZ_250=y 209 175 # CONFIG_HZ_300 is not set 210 176 # CONFIG_HZ_1000 is not set 211 177 CONFIG_HZ=250 212 - # CONFIG_SCHED_HRTICK is not set 178 + CONFIG_SCHED_HRTICK=y 213 179 CONFIG_CMDLINE="" 214 180 215 181 # 216 182 # Power management options 217 183 # 218 - CONFIG_ARCH_SUSPEND_POSSIBLE=y 219 184 CONFIG_PM=y 220 - # CONFIG_PM_LEGACY is not set 221 185 # CONFIG_PM_DEBUG is not set 222 186 CONFIG_PM_SLEEP=y 223 187 CONFIG_SUSPEND=y 224 188 CONFIG_SUSPEND_FREEZER=y 189 + # CONFIG_PM_RUNTIME is not set 190 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 225 191 226 192 # 227 193 # CPU Frequency scaling ··· 234 194 # CONFIG_CPU_FREQ_DEBUG is not set 235 195 # CONFIG_CPU_FREQ_STAT is not set 236 196 # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 197 + # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 237 198 # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 238 199 CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y 239 200 # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set ··· 255 214 # Executable file formats 256 215 # 257 216 CONFIG_BINFMT_ELF=y 217 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 218 + # CONFIG_HAVE_AOUT is not set 258 219 # CONFIG_BINFMT_MISC is not set 259 - 260 - # 261 - # Networking 262 - # 263 220 CONFIG_NET=y 264 221 265 222 # ··· 271 232 # CONFIG_XFRM_SUB_POLICY is not set 272 233 # CONFIG_XFRM_MIGRATE is not set 273 234 # CONFIG_XFRM_STATISTICS is not set 235 + CONFIG_XFRM_IPCOMP=y 274 236 CONFIG_NET_KEY=y 275 237 # CONFIG_NET_KEY_MIGRATE is not set 276 238 CONFIG_INET=y ··· 309 269 CONFIG_TCP_CONG_CUBIC=y 310 270 CONFIG_DEFAULT_TCP_CONG="cubic" 311 271 # CONFIG_TCP_MD5SIG is not set 312 - # CONFIG_IP_VS is not set 313 272 CONFIG_IPV6=y 314 273 # CONFIG_IPV6_PRIVACY is not set 315 274 # CONFIG_IPV6_ROUTER_PREF is not set ··· 324 285 CONFIG_INET6_XFRM_MODE_BEET=y 325 286 # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set 326 287 CONFIG_IPV6_SIT=y 288 + CONFIG_IPV6_NDISC_NODETYPE=y 327 289 # CONFIG_IPV6_TUNNEL is not set 328 290 # CONFIG_IPV6_MULTIPLE_TABLES is not set 291 + # CONFIG_IPV6_MROUTE is not set 329 292 # CONFIG_NETWORK_SECMARK is not set 330 293 CONFIG_NETFILTER=y 331 294 # CONFIG_NETFILTER_DEBUG is not set ··· 351 310 CONFIG_NETFILTER_XT_MATCH_MARK=m 352 311 CONFIG_NETFILTER_XT_MATCH_POLICY=m 353 312 CONFIG_NETFILTER_XT_MATCH_STATE=m 313 + # CONFIG_IP_VS is not set 354 314 355 315 # 356 316 # IP: Netfilter Configuration 357 317 # 318 + CONFIG_NF_DEFRAG_IPV4=m 358 319 CONFIG_NF_CONNTRACK_IPV4=m 359 320 CONFIG_NF_CONNTRACK_PROC_COMPAT=y 360 321 CONFIG_IP_NF_IPTABLES=m ··· 382 339 CONFIG_NF_CONNTRACK_IPV6=m 383 340 CONFIG_IP6_NF_IPTABLES=m 384 341 CONFIG_IP6_NF_MATCH_IPV6HEADER=m 385 - CONFIG_IP6_NF_FILTER=m 386 342 CONFIG_IP6_NF_TARGET_LOG=m 343 + CONFIG_IP6_NF_FILTER=m 387 344 CONFIG_IP6_NF_TARGET_REJECT=m 388 345 CONFIG_IP6_NF_MANGLE=m 389 346 # CONFIG_IP_DCCP is not set 390 347 # CONFIG_IP_SCTP is not set 348 + # CONFIG_RDS is not set 391 349 # CONFIG_TIPC is not set 392 350 # CONFIG_ATM is not set 351 + CONFIG_STP=m 393 352 CONFIG_BRIDGE=m 353 + # CONFIG_NET_DSA is not set 394 354 CONFIG_VLAN_8021Q=m 355 + # CONFIG_VLAN_8021Q_GVRP is not set 395 356 # CONFIG_DECNET is not set 396 357 CONFIG_LLC=m 397 358 # CONFIG_LLC2 is not set ··· 405 358 # CONFIG_LAPB is not set 406 359 # CONFIG_ECONET is not set 407 360 # CONFIG_WAN_ROUTER is not set 361 + # CONFIG_PHONET is not set 362 + # CONFIG_IEEE802154 is not set 408 363 # CONFIG_NET_SCHED is not set 364 + # CONFIG_DCB is not set 409 365 410 366 # 411 367 # Network testing 412 368 # 413 369 # CONFIG_NET_PKTGEN is not set 414 370 # CONFIG_NET_TCPPROBE is not set 371 + # CONFIG_NET_DROP_MONITOR is not set 415 372 # CONFIG_HAMRADIO is not set 416 373 # CONFIG_CAN is not set 417 374 # CONFIG_IRDA is not set 418 375 # CONFIG_BT is not set 419 376 # CONFIG_AF_RXRPC is not set 377 + CONFIG_WIRELESS=y 378 + # CONFIG_CFG80211 is not set 379 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 380 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 381 + # CONFIG_WIRELESS_EXT is not set 382 + # CONFIG_LIB80211 is not set 420 383 421 384 # 422 - # Wireless 385 + # CFG80211 needs to be enabled for MAC80211 423 386 # 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 387 + # CONFIG_WIMAX is not set 428 388 # CONFIG_RFKILL is not set 429 389 # CONFIG_NET_9P is not set 430 390 ··· 443 389 # Generic Driver Options 444 390 # 445 391 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 392 + # CONFIG_DEVTMPFS is not set 446 393 CONFIG_STANDALONE=y 447 394 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 448 395 # CONFIG_FW_LOADER is not set ··· 453 398 # CONFIG_CONNECTOR is not set 454 399 CONFIG_MTD=y 455 400 # CONFIG_MTD_DEBUG is not set 401 + # CONFIG_MTD_TESTS is not set 456 402 # CONFIG_MTD_CONCAT is not set 457 403 CONFIG_MTD_PARTITIONS=y 458 404 # CONFIG_MTD_REDBOOT_PARTS is not set 459 405 CONFIG_MTD_CMDLINE_PARTS=y 406 + # CONFIG_MTD_AR7_PARTS is not set 460 407 461 408 # 462 409 # User Modules And Translation Layers ··· 503 446 # 504 447 # CONFIG_MTD_COMPLEX_MAPPINGS is not set 505 448 CONFIG_MTD_PHYSMAP=y 506 - CONFIG_MTD_PHYSMAP_START=0x80000000 507 - CONFIG_MTD_PHYSMAP_LEN=0x0 508 - CONFIG_MTD_PHYSMAP_BANKWIDTH=2 449 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 509 450 # CONFIG_MTD_PLATRAM is not set 510 451 511 452 # 512 453 # Self-contained MTD device drivers 513 454 # 514 455 CONFIG_MTD_DATAFLASH=y 456 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 457 + # CONFIG_MTD_DATAFLASH_OTP is not set 515 458 # CONFIG_MTD_M25P80 is not set 459 + # CONFIG_MTD_SST25L is not set 516 460 # CONFIG_MTD_SLRAM is not set 517 461 # CONFIG_MTD_PHRAM is not set 518 462 # CONFIG_MTD_MTDRAM is not set ··· 527 469 # CONFIG_MTD_DOC2001PLUS is not set 528 470 # CONFIG_MTD_NAND is not set 529 471 # CONFIG_MTD_ONENAND is not set 472 + 473 + # 474 + # LPDDR flash memory drivers 475 + # 476 + # CONFIG_MTD_LPDDR is not set 530 477 531 478 # 532 479 # UBI - Unsorted block images ··· 562 499 CONFIG_ATMEL_TCLIB=y 563 500 CONFIG_ATMEL_TCB_CLKSRC=y 564 501 CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 565 - # CONFIG_EEPROM_93CX6 is not set 502 + # CONFIG_ICS932S401 is not set 566 503 # CONFIG_ATMEL_SSC is not set 567 504 # CONFIG_ENCLOSURE_SERVICES is not set 568 - # CONFIG_HAVE_IDE is not set 505 + # CONFIG_ISL29003 is not set 506 + # CONFIG_C2PORT is not set 507 + 508 + # 509 + # EEPROM support 510 + # 511 + # CONFIG_EEPROM_AT24 is not set 512 + # CONFIG_EEPROM_AT25 is not set 513 + # CONFIG_EEPROM_LEGACY is not set 514 + # CONFIG_EEPROM_MAX6875 is not set 515 + # CONFIG_EEPROM_93CX6 is not set 569 516 570 517 # 571 518 # SCSI device support ··· 587 514 # CONFIG_ATA is not set 588 515 # CONFIG_MD is not set 589 516 CONFIG_NETDEVICES=y 590 - # CONFIG_NETDEVICES_MULTIQUEUE is not set 591 517 # CONFIG_DUMMY is not set 592 518 # CONFIG_BONDING is not set 593 519 # CONFIG_MACVLAN is not set ··· 608 536 # CONFIG_BROADCOM_PHY is not set 609 537 # CONFIG_ICPLUS_PHY is not set 610 538 # CONFIG_REALTEK_PHY is not set 539 + # CONFIG_NATIONAL_PHY is not set 540 + # CONFIG_STE10XP is not set 541 + # CONFIG_LSI_ET1011C_PHY is not set 611 542 # CONFIG_FIXED_PHY is not set 612 543 # CONFIG_MDIO_BITBANG is not set 613 544 CONFIG_NET_ETHERNET=y 614 545 # CONFIG_MII is not set 615 546 CONFIG_MACB=y 616 547 # CONFIG_ENC28J60 is not set 548 + # CONFIG_ETHOC is not set 549 + # CONFIG_DNET is not set 617 550 # CONFIG_IBM_NEW_EMAC_ZMII is not set 618 551 # CONFIG_IBM_NEW_EMAC_RGMII is not set 619 552 # CONFIG_IBM_NEW_EMAC_TAH is not set 620 553 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 554 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 555 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 556 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 621 557 # CONFIG_B44 is not set 558 + # CONFIG_KS8842 is not set 559 + # CONFIG_KS8851 is not set 560 + # CONFIG_KS8851_MLL is not set 622 561 # CONFIG_NETDEV_1000 is not set 623 562 # CONFIG_NETDEV_10000 is not set 624 - 625 - # 626 - # Wireless LAN 627 - # 563 + CONFIG_WLAN=y 628 564 # CONFIG_WLAN_PRE80211 is not set 629 565 # CONFIG_WLAN_80211 is not set 566 + 567 + # 568 + # Enable WiMAX (Networking options) to see the WiMAX drivers 569 + # 630 570 # CONFIG_WAN is not set 631 571 CONFIG_PPP=m 632 572 # CONFIG_PPP_MULTILINK is not set ··· 682 598 # CONFIG_INPUT_TABLET is not set 683 599 CONFIG_INPUT_TOUCHSCREEN=y 684 600 # CONFIG_TOUCHSCREEN_ADS7846 is not set 601 + # CONFIG_TOUCHSCREEN_AD7877 is not set 602 + # CONFIG_TOUCHSCREEN_AD7879_I2C is not set 603 + # CONFIG_TOUCHSCREEN_AD7879_SPI is not set 604 + # CONFIG_TOUCHSCREEN_AD7879 is not set 605 + # CONFIG_TOUCHSCREEN_EETI is not set 685 606 # CONFIG_TOUCHSCREEN_FUJITSU is not set 686 607 # CONFIG_TOUCHSCREEN_GUNZE is not set 687 608 # CONFIG_TOUCHSCREEN_ELO is not set 609 + # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set 610 + # CONFIG_TOUCHSCREEN_MCS5000 is not set 688 611 # CONFIG_TOUCHSCREEN_MTOUCH is not set 612 + # CONFIG_TOUCHSCREEN_INEXIO is not set 689 613 # CONFIG_TOUCHSCREEN_MK712 is not set 690 614 # CONFIG_TOUCHSCREEN_PENMOUNT is not set 691 615 # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 692 616 # CONFIG_TOUCHSCREEN_TOUCHWIN is not set 693 - # CONFIG_TOUCHSCREEN_UCB1400 is not set 617 + CONFIG_TOUCHSCREEN_WM97XX=m 618 + CONFIG_TOUCHSCREEN_WM9705=y 619 + CONFIG_TOUCHSCREEN_WM9712=y 620 + CONFIG_TOUCHSCREEN_WM9713=y 621 + # CONFIG_TOUCHSCREEN_WM97XX_ATMEL is not set 622 + # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set 623 + # CONFIG_TOUCHSCREEN_TSC2007 is not set 624 + # CONFIG_TOUCHSCREEN_W90X900 is not set 694 625 # CONFIG_INPUT_MISC is not set 695 626 696 627 # ··· 718 619 # Character devices 719 620 # 720 621 CONFIG_VT=y 622 + CONFIG_CONSOLE_TRANSLATIONS=y 721 623 CONFIG_VT_CONSOLE=y 722 624 CONFIG_HW_CONSOLE=y 723 625 # CONFIG_VT_HW_CONSOLE_BINDING is not set 626 + CONFIG_DEVKMEM=y 724 627 # CONFIG_SERIAL_NONSTANDARD is not set 725 628 726 629 # ··· 737 636 CONFIG_SERIAL_ATMEL_CONSOLE=y 738 637 CONFIG_SERIAL_ATMEL_PDC=y 739 638 # CONFIG_SERIAL_ATMEL_TTYAT is not set 639 + # CONFIG_SERIAL_MAX3100 is not set 740 640 CONFIG_SERIAL_CORE=y 741 641 CONFIG_SERIAL_CORE_CONSOLE=y 742 642 CONFIG_UNIX98_PTYS=y 643 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 743 644 # CONFIG_LEGACY_PTYS is not set 744 645 # CONFIG_IPMI_HANDLER is not set 745 646 # CONFIG_HW_RANDOM is not set ··· 750 647 # CONFIG_TCG_TPM is not set 751 648 CONFIG_I2C=m 752 649 CONFIG_I2C_BOARDINFO=y 650 + CONFIG_I2C_COMPAT=y 753 651 CONFIG_I2C_CHARDEV=m 754 - 755 - # 756 - # I2C Algorithms 757 - # 652 + CONFIG_I2C_HELPER_AUTO=y 758 653 CONFIG_I2C_ALGOBIT=m 759 - # CONFIG_I2C_ALGOPCF is not set 760 - # CONFIG_I2C_ALGOPCA is not set 761 654 762 655 # 763 656 # I2C Hardware Bus support 764 657 # 765 - CONFIG_I2C_ATMELTWI=m 658 + 659 + # 660 + # I2C system bus drivers (mostly embedded / system-on-chip) 661 + # 662 + # CONFIG_I2C_DESIGNWARE is not set 766 663 CONFIG_I2C_GPIO=m 767 664 # CONFIG_I2C_OCORES is not set 768 - # CONFIG_I2C_PARPORT_LIGHT is not set 769 665 # CONFIG_I2C_SIMTEC is not set 666 + 667 + # 668 + # External I2C/SMBus adapter drivers 669 + # 670 + # CONFIG_I2C_PARPORT_LIGHT is not set 770 671 # CONFIG_I2C_TAOS_EVM is not set 672 + 673 + # 674 + # Other I2C/SMBus bus drivers 675 + # 676 + # CONFIG_I2C_PCA_PLATFORM is not set 771 677 # CONFIG_I2C_STUB is not set 772 678 773 679 # 774 680 # Miscellaneous I2C Chip support 775 681 # 776 682 # CONFIG_DS1682 is not set 777 - # CONFIG_EEPROM_LEGACY is not set 778 - # CONFIG_SENSORS_PCF8574 is not set 779 - # CONFIG_PCF8575 is not set 780 - # CONFIG_SENSORS_PCF8591 is not set 781 - # CONFIG_TPS65010 is not set 782 - # CONFIG_SENSORS_MAX6875 is not set 783 683 # CONFIG_SENSORS_TSL2550 is not set 784 684 # CONFIG_I2C_DEBUG_CORE is not set 785 685 # CONFIG_I2C_DEBUG_ALGO is not set 786 686 # CONFIG_I2C_DEBUG_BUS is not set 787 687 # CONFIG_I2C_DEBUG_CHIP is not set 788 - 789 - # 790 - # SPI support 791 - # 792 688 CONFIG_SPI=y 793 689 # CONFIG_SPI_DEBUG is not set 794 690 CONFIG_SPI_MASTER=y ··· 797 695 # 798 696 CONFIG_SPI_ATMEL=y 799 697 # CONFIG_SPI_BITBANG is not set 698 + # CONFIG_SPI_GPIO is not set 800 699 801 700 # 802 701 # SPI Protocol Masters 803 702 # 804 - # CONFIG_EEPROM_AT25 is not set 805 703 CONFIG_SPI_SPIDEV=m 806 704 # CONFIG_SPI_TLE62X0 is not set 807 - CONFIG_HAVE_GPIO_LIB=y 808 705 809 706 # 810 - # GPIO Support 707 + # PPS support 811 708 # 709 + # CONFIG_PPS is not set 710 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 711 + CONFIG_GPIOLIB=y 812 712 # CONFIG_DEBUG_GPIO is not set 713 + # CONFIG_GPIO_SYSFS is not set 714 + 715 + # 716 + # Memory mapped GPIO expanders: 717 + # 813 718 814 719 # 815 720 # I2C GPIO expanders: 816 721 # 722 + # CONFIG_GPIO_MAX732X is not set 817 723 # CONFIG_GPIO_PCA953X is not set 818 724 # CONFIG_GPIO_PCF857X is not set 819 725 820 726 # 727 + # PCI GPIO expanders: 728 + # 729 + 730 + # 821 731 # SPI GPIO expanders: 822 732 # 733 + # CONFIG_GPIO_MAX7301 is not set 823 734 # CONFIG_GPIO_MCP23S08 is not set 735 + # CONFIG_GPIO_MC33880 is not set 736 + 737 + # 738 + # AC97 GPIO expanders: 739 + # 824 740 # CONFIG_W1 is not set 825 741 # CONFIG_POWER_SUPPLY is not set 826 742 # CONFIG_HWMON is not set ··· 851 731 # 852 732 # CONFIG_SOFT_WATCHDOG is not set 853 733 CONFIG_AT32AP700X_WDT=y 734 + CONFIG_SSB_POSSIBLE=y 854 735 855 736 # 856 737 # Sonics Silicon Backplane 857 738 # 858 - CONFIG_SSB_POSSIBLE=y 859 739 # CONFIG_SSB is not set 860 740 861 741 # 862 742 # Multifunction device drivers 863 743 # 744 + # CONFIG_MFD_CORE is not set 864 745 # CONFIG_MFD_SM501 is not set 865 - 866 - # 867 - # Multimedia devices 868 - # 869 - # CONFIG_VIDEO_DEV is not set 870 - # CONFIG_DVB_CORE is not set 871 - # CONFIG_DAB is not set 746 + # CONFIG_HTC_PASIC3 is not set 747 + # CONFIG_UCB1400_CORE is not set 748 + # CONFIG_TPS65010 is not set 749 + # CONFIG_MFD_TMIO is not set 750 + # CONFIG_MFD_WM8400 is not set 751 + # CONFIG_MFD_WM831X is not set 752 + # CONFIG_MFD_WM8350_I2C is not set 753 + # CONFIG_MFD_PCF50633 is not set 754 + # CONFIG_MFD_MC13783 is not set 755 + # CONFIG_AB3100_CORE is not set 756 + # CONFIG_EZX_PCAP is not set 757 + # CONFIG_REGULATOR is not set 758 + # CONFIG_MEDIA_SUPPORT is not set 872 759 873 760 # 874 761 # Graphics support ··· 885 758 CONFIG_FB=y 886 759 # CONFIG_FIRMWARE_EDID is not set 887 760 # CONFIG_FB_DDC is not set 761 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 888 762 CONFIG_FB_CFB_FILLRECT=y 889 763 CONFIG_FB_CFB_COPYAREA=y 890 764 CONFIG_FB_CFB_IMAGEBLIT=y ··· 893 765 # CONFIG_FB_SYS_FILLRECT is not set 894 766 # CONFIG_FB_SYS_COPYAREA is not set 895 767 # CONFIG_FB_SYS_IMAGEBLIT is not set 768 + # CONFIG_FB_FOREIGN_ENDIAN is not set 896 769 # CONFIG_FB_SYS_FOPS is not set 897 - CONFIG_FB_DEFERRED_IO=y 898 770 # CONFIG_FB_SVGALIB is not set 899 771 # CONFIG_FB_MACMODES is not set 900 772 # CONFIG_FB_BACKLIGHT is not set ··· 907 779 # CONFIG_FB_S1D13XXX is not set 908 780 CONFIG_FB_ATMEL=y 909 781 # CONFIG_FB_VIRTUAL is not set 782 + # CONFIG_FB_METRONOME is not set 783 + # CONFIG_FB_MB862XX is not set 784 + # CONFIG_FB_BROADSHEET is not set 910 785 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 911 786 912 787 # ··· 923 792 CONFIG_DUMMY_CONSOLE=y 924 793 # CONFIG_FRAMEBUFFER_CONSOLE is not set 925 794 # CONFIG_LOGO is not set 926 - 927 - # 928 - # Sound 929 - # 930 795 CONFIG_SOUND=y 931 - 932 - # 933 - # Advanced Linux Sound Architecture 934 - # 796 + CONFIG_SOUND_OSS_CORE=y 797 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 935 798 CONFIG_SND=y 936 - CONFIG_SND_TIMER=m 799 + CONFIG_SND_TIMER=y 937 800 CONFIG_SND_PCM=m 938 801 # CONFIG_SND_SEQUENCER is not set 939 802 CONFIG_SND_OSSEMUL=y 940 803 CONFIG_SND_MIXER_OSS=m 941 804 CONFIG_SND_PCM_OSS=m 942 805 CONFIG_SND_PCM_OSS_PLUGINS=y 806 + CONFIG_SND_HRTIMER=y 943 807 # CONFIG_SND_DYNAMIC_MINORS is not set 944 808 # CONFIG_SND_SUPPORT_OLD_API is not set 945 809 CONFIG_SND_VERBOSE_PROCFS=y 946 810 # CONFIG_SND_VERBOSE_PRINTK is not set 947 811 # CONFIG_SND_DEBUG is not set 948 - 949 - # 950 - # Generic devices 951 - # 812 + CONFIG_SND_VMASTER=y 813 + # CONFIG_SND_RAWMIDI_SEQ is not set 814 + # CONFIG_SND_OPL3_LIB_SEQ is not set 815 + # CONFIG_SND_OPL4_LIB_SEQ is not set 816 + # CONFIG_SND_SBAWE_SEQ is not set 817 + # CONFIG_SND_EMU10K1_SEQ is not set 952 818 CONFIG_SND_AC97_CODEC=m 953 - # CONFIG_SND_DUMMY is not set 954 - # CONFIG_SND_MTPAV is not set 955 - # CONFIG_SND_SERIAL_U16550 is not set 956 - # CONFIG_SND_MPU401 is not set 819 + # CONFIG_SND_DRIVERS is not set 957 820 958 821 # 959 - # AVR32 devices 822 + # Atmel devices (AVR32 and AT91) 960 823 # 961 - CONFIG_SND_ATMEL_AC97=m 962 - 963 - # 964 - # SPI devices 965 - # 966 - 967 - # 968 - # System on Chip audio support 969 - # 824 + # CONFIG_SND_ATMEL_ABDAC is not set 825 + CONFIG_SND_ATMEL_AC97C=m 826 + # CONFIG_SND_SPI is not set 970 827 # CONFIG_SND_SOC is not set 971 - 972 - # 973 - # SoC Audio support for SuperH 974 - # 975 - 976 - # 977 - # ALSA SoC audio for Freescale SOCs 978 - # 979 - 980 - # 981 - # Open Sound System 982 - # 983 828 # CONFIG_SOUND_PRIME is not set 984 829 CONFIG_AC97_BUS=m 985 830 CONFIG_HID_SUPPORT=y 986 831 CONFIG_HID=y 987 - # CONFIG_HID_DEBUG is not set 988 832 # CONFIG_HIDRAW is not set 833 + # CONFIG_HID_PID is not set 834 + 835 + # 836 + # Special HID drivers 837 + # 989 838 CONFIG_USB_SUPPORT=y 990 839 # CONFIG_USB_ARCH_HAS_HCD is not set 991 840 # CONFIG_USB_ARCH_HAS_OHCI is not set 992 841 # CONFIG_USB_ARCH_HAS_EHCI is not set 842 + # CONFIG_USB_OTG_WHITELIST is not set 843 + # CONFIG_USB_OTG_BLACKLIST_HUB is not set 844 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 993 845 994 846 # 995 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 847 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 996 848 # 997 849 CONFIG_USB_GADGET=y 998 850 # CONFIG_USB_GADGET_DEBUG is not set 999 851 # CONFIG_USB_GADGET_DEBUG_FILES is not set 852 + # CONFIG_USB_GADGET_DEBUG_FS is not set 853 + CONFIG_USB_GADGET_VBUS_DRAW=350 1000 854 CONFIG_USB_GADGET_SELECTED=y 1001 - # CONFIG_USB_GADGET_AMD5536UDC is not set 855 + # CONFIG_USB_GADGET_AT91 is not set 1002 856 CONFIG_USB_GADGET_ATMEL_USBA=y 1003 857 CONFIG_USB_ATMEL_USBA=y 1004 858 # CONFIG_USB_GADGET_FSL_USB2 is not set 1005 - # CONFIG_USB_GADGET_NET2280 is not set 1006 - # CONFIG_USB_GADGET_PXA2XX is not set 1007 - # CONFIG_USB_GADGET_M66592 is not set 1008 - # CONFIG_USB_GADGET_GOKU is not set 1009 859 # CONFIG_USB_GADGET_LH7A40X is not set 1010 860 # CONFIG_USB_GADGET_OMAP is not set 861 + # CONFIG_USB_GADGET_PXA25X is not set 862 + # CONFIG_USB_GADGET_R8A66597 is not set 863 + # CONFIG_USB_GADGET_PXA27X is not set 864 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 865 + # CONFIG_USB_GADGET_IMX is not set 1011 866 # CONFIG_USB_GADGET_S3C2410 is not set 1012 - # CONFIG_USB_GADGET_AT91 is not set 867 + # CONFIG_USB_GADGET_M66592 is not set 868 + # CONFIG_USB_GADGET_AMD5536UDC is not set 869 + # CONFIG_USB_GADGET_FSL_QE is not set 870 + # CONFIG_USB_GADGET_CI13XXX is not set 871 + # CONFIG_USB_GADGET_NET2280 is not set 872 + # CONFIG_USB_GADGET_GOKU is not set 873 + # CONFIG_USB_GADGET_LANGWELL is not set 1013 874 # CONFIG_USB_GADGET_DUMMY_HCD is not set 1014 875 CONFIG_USB_GADGET_DUALSPEED=y 1015 876 CONFIG_USB_ZERO=m 877 + # CONFIG_USB_AUDIO is not set 1016 878 CONFIG_USB_ETH=m 1017 879 CONFIG_USB_ETH_RNDIS=y 880 + # CONFIG_USB_ETH_EEM is not set 1018 881 CONFIG_USB_GADGETFS=m 1019 882 CONFIG_USB_FILE_STORAGE=m 1020 883 # CONFIG_USB_FILE_STORAGE_TEST is not set 1021 884 CONFIG_USB_G_SERIAL=m 1022 885 # CONFIG_USB_MIDI_GADGET is not set 1023 886 # CONFIG_USB_G_PRINTER is not set 887 + CONFIG_USB_CDC_COMPOSITE=m 888 + 889 + # 890 + # OTG and related infrastructure 891 + # 892 + # CONFIG_USB_GPIO_VBUS is not set 893 + # CONFIG_NOP_USB_XCEIV is not set 1024 894 CONFIG_MMC=y 1025 895 # CONFIG_MMC_DEBUG is not set 1026 896 # CONFIG_MMC_UNSAFE_RESUME is not set 1027 897 1028 898 # 1029 - # MMC/SD Card Drivers 899 + # MMC/SD/SDIO Card Drivers 1030 900 # 1031 901 CONFIG_MMC_BLOCK=y 1032 902 CONFIG_MMC_BLOCK_BOUNCE=y 1033 903 # CONFIG_SDIO_UART is not set 904 + # CONFIG_MMC_TEST is not set 1034 905 1035 906 # 1036 - # MMC/SD Host Controller Drivers 907 + # MMC/SD/SDIO Host Controller Drivers 1037 908 # 909 + # CONFIG_MMC_SDHCI is not set 910 + # CONFIG_MMC_AT91 is not set 1038 911 CONFIG_MMC_ATMELMCI=y 912 + # CONFIG_MMC_ATMELMCI_DMA is not set 1039 913 # CONFIG_MMC_SPI is not set 1040 914 # CONFIG_MEMSTICK is not set 1041 915 CONFIG_NEW_LEDS=y ··· 1049 913 # 1050 914 # LED drivers 1051 915 # 916 + # CONFIG_LEDS_PCA9532 is not set 1052 917 CONFIG_LEDS_GPIO=y 918 + CONFIG_LEDS_GPIO_PLATFORM=y 919 + # CONFIG_LEDS_LP3944 is not set 920 + # CONFIG_LEDS_PCA955X is not set 921 + # CONFIG_LEDS_DAC124S085 is not set 922 + # CONFIG_LEDS_BD2802 is not set 1053 923 1054 924 # 1055 925 # LED Triggers ··· 1063 921 CONFIG_LEDS_TRIGGERS=y 1064 922 CONFIG_LEDS_TRIGGER_TIMER=y 1065 923 CONFIG_LEDS_TRIGGER_HEARTBEAT=y 924 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 925 + # CONFIG_LEDS_TRIGGER_GPIO is not set 926 + # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 927 + 928 + # 929 + # iptables trigger is under Netfilter config (LED target) 930 + # 931 + # CONFIG_ACCESSIBILITY is not set 1066 932 CONFIG_RTC_LIB=y 1067 933 CONFIG_RTC_CLASS=y 1068 934 CONFIG_RTC_HCTOSYS=y ··· 1100 950 # CONFIG_RTC_DRV_PCF8583 is not set 1101 951 # CONFIG_RTC_DRV_M41T80 is not set 1102 952 # CONFIG_RTC_DRV_S35390A is not set 953 + # CONFIG_RTC_DRV_FM3130 is not set 954 + # CONFIG_RTC_DRV_RX8581 is not set 955 + # CONFIG_RTC_DRV_RX8025 is not set 1103 956 1104 957 # 1105 958 # SPI RTC drivers 1106 959 # 960 + # CONFIG_RTC_DRV_M41T94 is not set 961 + # CONFIG_RTC_DRV_DS1305 is not set 962 + # CONFIG_RTC_DRV_DS1390 is not set 1107 963 # CONFIG_RTC_DRV_MAX6902 is not set 1108 964 # CONFIG_RTC_DRV_R9701 is not set 1109 965 # CONFIG_RTC_DRV_RS5C348 is not set 966 + # CONFIG_RTC_DRV_DS3234 is not set 967 + # CONFIG_RTC_DRV_PCF2123 is not set 1110 968 1111 969 # 1112 970 # Platform RTC drivers 1113 971 # 972 + # CONFIG_RTC_DRV_DS1286 is not set 1114 973 # CONFIG_RTC_DRV_DS1511 is not set 1115 974 # CONFIG_RTC_DRV_DS1553 is not set 1116 975 # CONFIG_RTC_DRV_DS1742 is not set 1117 976 # CONFIG_RTC_DRV_STK17TA8 is not set 1118 977 # CONFIG_RTC_DRV_M48T86 is not set 978 + # CONFIG_RTC_DRV_M48T35 is not set 1119 979 # CONFIG_RTC_DRV_M48T59 is not set 980 + # CONFIG_RTC_DRV_BQ4802 is not set 1120 981 # CONFIG_RTC_DRV_V3020 is not set 1121 982 1122 983 # 1123 984 # on-CPU RTC drivers 1124 985 # 1125 986 CONFIG_RTC_DRV_AT32AP700X=y 987 + CONFIG_DMADEVICES=y 1126 988 1127 989 # 1128 - # Userspace I/O 990 + # DMA Devices 1129 991 # 992 + CONFIG_DW_DMAC=y 993 + CONFIG_DMA_ENGINE=y 994 + 995 + # 996 + # DMA Clients 997 + # 998 + # CONFIG_NET_DMA is not set 999 + # CONFIG_ASYNC_TX_DMA is not set 1000 + # CONFIG_DMATEST is not set 1001 + # CONFIG_AUXDISPLAY is not set 1130 1002 # CONFIG_UIO is not set 1003 + 1004 + # 1005 + # TI VLYNQ 1006 + # 1007 + # CONFIG_STAGING is not set 1131 1008 1132 1009 # 1133 1010 # File systems ··· 1163 986 # CONFIG_EXT2_FS_XATTR is not set 1164 987 # CONFIG_EXT2_FS_XIP is not set 1165 988 CONFIG_EXT3_FS=y 989 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1166 990 # CONFIG_EXT3_FS_XATTR is not set 1167 - # CONFIG_EXT4DEV_FS is not set 991 + # CONFIG_EXT4_FS is not set 1168 992 CONFIG_JBD=y 993 + # CONFIG_JBD_DEBUG is not set 1169 994 # CONFIG_REISERFS_FS is not set 1170 995 # CONFIG_JFS_FS is not set 1171 996 # CONFIG_FS_POSIX_ACL is not set 1172 997 # CONFIG_XFS_FS is not set 1173 998 # CONFIG_GFS2_FS is not set 1174 999 # CONFIG_OCFS2_FS is not set 1000 + # CONFIG_BTRFS_FS is not set 1001 + # CONFIG_NILFS2_FS is not set 1002 + CONFIG_FILE_LOCKING=y 1003 + CONFIG_FSNOTIFY=y 1175 1004 # CONFIG_DNOTIFY is not set 1176 1005 CONFIG_INOTIFY=y 1177 1006 CONFIG_INOTIFY_USER=y ··· 1185 1002 # CONFIG_AUTOFS_FS is not set 1186 1003 # CONFIG_AUTOFS4_FS is not set 1187 1004 CONFIG_FUSE_FS=m 1005 + # CONFIG_CUSE is not set 1006 + 1007 + # 1008 + # Caches 1009 + # 1010 + # CONFIG_FSCACHE is not set 1188 1011 1189 1012 # 1190 1013 # CD-ROM/DVD Filesystems ··· 1214 1025 CONFIG_PROC_FS=y 1215 1026 # CONFIG_PROC_KCORE is not set 1216 1027 CONFIG_PROC_SYSCTL=y 1028 + CONFIG_PROC_PAGE_MONITOR=y 1217 1029 CONFIG_SYSFS=y 1218 1030 CONFIG_TMPFS=y 1219 1031 # CONFIG_TMPFS_POSIX_ACL is not set 1220 1032 # CONFIG_HUGETLB_PAGE is not set 1221 1033 CONFIG_CONFIGFS_FS=y 1222 - 1223 - # 1224 - # Miscellaneous filesystems 1225 - # 1034 + CONFIG_MISC_FILESYSTEMS=y 1226 1035 # CONFIG_ADFS_FS is not set 1227 1036 # CONFIG_AFFS_FS is not set 1228 1037 # CONFIG_HFS_FS is not set ··· 1246 1059 CONFIG_UBIFS_FS_ZLIB=y 1247 1060 # CONFIG_UBIFS_FS_DEBUG is not set 1248 1061 # CONFIG_CRAMFS is not set 1062 + # CONFIG_SQUASHFS is not set 1249 1063 # CONFIG_VXFS_FS is not set 1250 1064 # CONFIG_MINIX_FS is not set 1065 + # CONFIG_OMFS_FS is not set 1251 1066 # CONFIG_HPFS_FS is not set 1252 1067 # CONFIG_QNX4FS_FS is not set 1253 1068 # CONFIG_ROMFS_FS is not set ··· 1260 1071 CONFIG_NFS_V3=y 1261 1072 # CONFIG_NFS_V3_ACL is not set 1262 1073 # CONFIG_NFS_V4 is not set 1263 - # CONFIG_NFS_DIRECTIO is not set 1074 + CONFIG_ROOT_NFS=y 1264 1075 CONFIG_NFSD=m 1265 1076 CONFIG_NFSD_V3=y 1266 1077 # CONFIG_NFSD_V3_ACL is not set 1267 1078 # CONFIG_NFSD_V4 is not set 1268 - CONFIG_NFSD_TCP=y 1269 - CONFIG_ROOT_NFS=y 1270 1079 CONFIG_LOCKD=y 1271 1080 CONFIG_LOCKD_V4=y 1272 1081 CONFIG_EXPORTFS=m 1273 1082 CONFIG_NFS_COMMON=y 1274 1083 CONFIG_SUNRPC=y 1275 - # CONFIG_SUNRPC_BIND34 is not set 1276 1084 # CONFIG_RPCSEC_GSS_KRB5 is not set 1277 1085 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1278 1086 CONFIG_SMB_FS=m ··· 1337 1151 # CONFIG_PRINTK_TIME is not set 1338 1152 CONFIG_ENABLE_WARN_DEPRECATED=y 1339 1153 CONFIG_ENABLE_MUST_CHECK=y 1154 + CONFIG_FRAME_WARN=1024 1340 1155 CONFIG_MAGIC_SYSRQ=y 1156 + # CONFIG_STRIP_ASM_SYMS is not set 1341 1157 # CONFIG_UNUSED_SYMBOLS is not set 1342 - # CONFIG_DEBUG_FS is not set 1158 + CONFIG_DEBUG_FS=y 1343 1159 # CONFIG_HEADERS_CHECK is not set 1344 1160 CONFIG_DEBUG_KERNEL=y 1345 1161 # CONFIG_DEBUG_SHIRQ is not set 1346 1162 CONFIG_DETECT_SOFTLOCKUP=y 1163 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1164 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1165 + CONFIG_DETECT_HUNG_TASK=y 1166 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1167 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1347 1168 CONFIG_SCHED_DEBUG=y 1348 1169 # CONFIG_SCHEDSTATS is not set 1349 1170 # CONFIG_TIMER_STATS is not set 1171 + # CONFIG_DEBUG_OBJECTS is not set 1350 1172 # CONFIG_SLUB_DEBUG_ON is not set 1351 1173 # CONFIG_SLUB_STATS is not set 1352 1174 # CONFIG_DEBUG_RT_MUTEXES is not set ··· 1366 1172 # CONFIG_LOCK_STAT is not set 1367 1173 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1368 1174 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1175 + CONFIG_STACKTRACE=y 1369 1176 # CONFIG_DEBUG_KOBJECT is not set 1370 1177 CONFIG_DEBUG_BUGVERBOSE=y 1371 1178 # CONFIG_DEBUG_INFO is not set 1372 1179 # CONFIG_DEBUG_VM is not set 1180 + # CONFIG_DEBUG_WRITECOUNT is not set 1181 + # CONFIG_DEBUG_MEMORY_INIT is not set 1373 1182 # CONFIG_DEBUG_LIST is not set 1374 1183 # CONFIG_DEBUG_SG is not set 1184 + # CONFIG_DEBUG_NOTIFIERS is not set 1185 + # CONFIG_DEBUG_CREDENTIALS is not set 1375 1186 CONFIG_FRAME_POINTER=y 1376 1187 # CONFIG_BOOT_PRINTK_DELAY is not set 1377 1188 # CONFIG_RCU_TORTURE_TEST is not set 1189 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1378 1190 # CONFIG_KPROBES_SANITY_TEST is not set 1379 1191 # CONFIG_BACKTRACE_SELF_TEST is not set 1192 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1193 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1380 1194 # CONFIG_LKDTM is not set 1381 1195 # CONFIG_FAULT_INJECTION is not set 1196 + # CONFIG_PAGE_POISONING is not set 1197 + CONFIG_NOP_TRACER=y 1198 + CONFIG_RING_BUFFER=y 1199 + CONFIG_EVENT_TRACING=y 1200 + CONFIG_CONTEXT_SWITCH_TRACER=y 1201 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1202 + CONFIG_TRACING=y 1203 + CONFIG_TRACING_SUPPORT=y 1204 + CONFIG_FTRACE=y 1205 + # CONFIG_IRQSOFF_TRACER is not set 1206 + # CONFIG_SCHED_TRACER is not set 1207 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1208 + # CONFIG_BOOT_TRACER is not set 1209 + CONFIG_BRANCH_PROFILE_NONE=y 1210 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1211 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1212 + # CONFIG_KMEMTRACE is not set 1213 + # CONFIG_WORKQUEUE_TRACER is not set 1214 + # CONFIG_BLK_DEV_IO_TRACE is not set 1215 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1216 + # CONFIG_DYNAMIC_DEBUG is not set 1382 1217 # CONFIG_SAMPLES is not set 1383 1218 1384 1219 # ··· 1415 1192 # 1416 1193 # CONFIG_KEYS is not set 1417 1194 # CONFIG_SECURITY is not set 1195 + # CONFIG_SECURITYFS is not set 1418 1196 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1419 1197 CONFIG_CRYPTO=y 1198 + 1199 + # 1200 + # Crypto core or helper 1201 + # 1202 + # CONFIG_CRYPTO_FIPS is not set 1420 1203 CONFIG_CRYPTO_ALGAPI=y 1204 + CONFIG_CRYPTO_ALGAPI2=y 1421 1205 CONFIG_CRYPTO_AEAD=y 1206 + CONFIG_CRYPTO_AEAD2=y 1422 1207 CONFIG_CRYPTO_BLKCIPHER=y 1423 - # CONFIG_CRYPTO_SEQIV is not set 1208 + CONFIG_CRYPTO_BLKCIPHER2=y 1424 1209 CONFIG_CRYPTO_HASH=y 1210 + CONFIG_CRYPTO_HASH2=y 1211 + CONFIG_CRYPTO_RNG=m 1212 + CONFIG_CRYPTO_RNG2=y 1213 + CONFIG_CRYPTO_PCOMP=y 1425 1214 CONFIG_CRYPTO_MANAGER=y 1215 + CONFIG_CRYPTO_MANAGER2=y 1216 + # CONFIG_CRYPTO_GF128MUL is not set 1217 + # CONFIG_CRYPTO_NULL is not set 1218 + CONFIG_CRYPTO_WORKQUEUE=y 1219 + # CONFIG_CRYPTO_CRYPTD is not set 1220 + CONFIG_CRYPTO_AUTHENC=y 1221 + # CONFIG_CRYPTO_TEST is not set 1222 + 1223 + # 1224 + # Authenticated Encryption with Associated Data 1225 + # 1226 + # CONFIG_CRYPTO_CCM is not set 1227 + # CONFIG_CRYPTO_GCM is not set 1228 + # CONFIG_CRYPTO_SEQIV is not set 1229 + 1230 + # 1231 + # Block modes 1232 + # 1233 + CONFIG_CRYPTO_CBC=y 1234 + # CONFIG_CRYPTO_CTR is not set 1235 + # CONFIG_CRYPTO_CTS is not set 1236 + CONFIG_CRYPTO_ECB=m 1237 + # CONFIG_CRYPTO_LRW is not set 1238 + # CONFIG_CRYPTO_PCBC is not set 1239 + # CONFIG_CRYPTO_XTS is not set 1240 + 1241 + # 1242 + # Hash modes 1243 + # 1426 1244 CONFIG_CRYPTO_HMAC=y 1427 1245 # CONFIG_CRYPTO_XCBC is not set 1428 - # CONFIG_CRYPTO_NULL is not set 1246 + # CONFIG_CRYPTO_VMAC is not set 1247 + 1248 + # 1249 + # Digest 1250 + # 1251 + # CONFIG_CRYPTO_CRC32C is not set 1252 + # CONFIG_CRYPTO_GHASH is not set 1429 1253 # CONFIG_CRYPTO_MD4 is not set 1430 1254 CONFIG_CRYPTO_MD5=y 1255 + # CONFIG_CRYPTO_MICHAEL_MIC is not set 1256 + # CONFIG_CRYPTO_RMD128 is not set 1257 + # CONFIG_CRYPTO_RMD160 is not set 1258 + # CONFIG_CRYPTO_RMD256 is not set 1259 + # CONFIG_CRYPTO_RMD320 is not set 1431 1260 CONFIG_CRYPTO_SHA1=y 1432 1261 # CONFIG_CRYPTO_SHA256 is not set 1433 1262 # CONFIG_CRYPTO_SHA512 is not set 1434 - # CONFIG_CRYPTO_WP512 is not set 1435 1263 # CONFIG_CRYPTO_TGR192 is not set 1436 - # CONFIG_CRYPTO_GF128MUL is not set 1437 - CONFIG_CRYPTO_ECB=m 1438 - CONFIG_CRYPTO_CBC=y 1439 - # CONFIG_CRYPTO_PCBC is not set 1440 - # CONFIG_CRYPTO_LRW is not set 1441 - # CONFIG_CRYPTO_XTS is not set 1442 - # CONFIG_CRYPTO_CTR is not set 1443 - # CONFIG_CRYPTO_GCM is not set 1444 - # CONFIG_CRYPTO_CCM is not set 1445 - # CONFIG_CRYPTO_CRYPTD is not set 1446 - CONFIG_CRYPTO_DES=y 1447 - # CONFIG_CRYPTO_FCRYPT is not set 1264 + # CONFIG_CRYPTO_WP512 is not set 1265 + 1266 + # 1267 + # Ciphers 1268 + # 1269 + CONFIG_CRYPTO_AES=m 1270 + # CONFIG_CRYPTO_ANUBIS is not set 1271 + CONFIG_CRYPTO_ARC4=m 1448 1272 # CONFIG_CRYPTO_BLOWFISH is not set 1449 - # CONFIG_CRYPTO_TWOFISH is not set 1450 - # CONFIG_CRYPTO_SERPENT is not set 1451 - # CONFIG_CRYPTO_AES is not set 1273 + # CONFIG_CRYPTO_CAMELLIA is not set 1452 1274 # CONFIG_CRYPTO_CAST5 is not set 1453 1275 # CONFIG_CRYPTO_CAST6 is not set 1454 - # CONFIG_CRYPTO_TEA is not set 1455 - CONFIG_CRYPTO_ARC4=m 1276 + CONFIG_CRYPTO_DES=y 1277 + # CONFIG_CRYPTO_FCRYPT is not set 1456 1278 # CONFIG_CRYPTO_KHAZAD is not set 1457 - # CONFIG_CRYPTO_ANUBIS is not set 1458 - # CONFIG_CRYPTO_SEED is not set 1459 1279 # CONFIG_CRYPTO_SALSA20 is not set 1280 + # CONFIG_CRYPTO_SEED is not set 1281 + # CONFIG_CRYPTO_SERPENT is not set 1282 + # CONFIG_CRYPTO_TEA is not set 1283 + # CONFIG_CRYPTO_TWOFISH is not set 1284 + 1285 + # 1286 + # Compression 1287 + # 1460 1288 CONFIG_CRYPTO_DEFLATE=y 1461 - # CONFIG_CRYPTO_MICHAEL_MIC is not set 1462 - # CONFIG_CRYPTO_CRC32C is not set 1463 - # CONFIG_CRYPTO_CAMELLIA is not set 1464 - # CONFIG_CRYPTO_TEST is not set 1465 - CONFIG_CRYPTO_AUTHENC=y 1289 + # CONFIG_CRYPTO_ZLIB is not set 1466 1290 CONFIG_CRYPTO_LZO=y 1291 + 1292 + # 1293 + # Random Number Generation 1294 + # 1295 + CONFIG_CRYPTO_ANSI_CPRNG=m 1467 1296 CONFIG_CRYPTO_HW=y 1297 + CONFIG_BINARY_PRINTF=y 1468 1298 1469 1299 # 1470 1300 # Library routines 1471 1301 # 1472 1302 CONFIG_BITREVERSE=y 1303 + CONFIG_GENERIC_FIND_LAST_BIT=y 1473 1304 CONFIG_CRC_CCITT=m 1474 1305 CONFIG_CRC16=y 1306 + # CONFIG_CRC_T10DIF is not set 1475 1307 # CONFIG_CRC_ITU_T is not set 1476 1308 CONFIG_CRC32=y 1477 1309 # CONFIG_CRC7 is not set ··· 1535 1257 CONFIG_ZLIB_DEFLATE=y 1536 1258 CONFIG_LZO_COMPRESS=y 1537 1259 CONFIG_LZO_DECOMPRESS=y 1260 + CONFIG_DECOMPRESS_GZIP=y 1538 1261 CONFIG_GENERIC_ALLOCATOR=y 1539 - CONFIG_PLIST=y 1540 1262 CONFIG_HAS_IOMEM=y 1541 1263 CONFIG_HAS_IOPORT=y 1542 1264 CONFIG_HAS_DMA=y 1265 + CONFIG_NLATTR=y
+438 -165
arch/avr32/configs/atngw100_evklcd101_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.25.6 4 - # Wed Jun 18 16:09:32 2008 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Oct 29 09:37:19 2009 5 5 # 6 6 CONFIG_AVR32=y 7 7 CONFIG_GENERIC_GPIO=y ··· 21 21 CONFIG_GENERIC_CALIBRATE_DELAY=y 22 22 CONFIG_GENERIC_BUG=y 23 23 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 24 25 25 26 # 26 27 # General setup ··· 35 34 CONFIG_SYSVIPC=y 36 35 CONFIG_SYSVIPC_SYSCTL=y 37 36 CONFIG_POSIX_MQUEUE=y 37 + CONFIG_POSIX_MQUEUE_SYSCTL=y 38 38 CONFIG_BSD_PROCESS_ACCT=y 39 39 CONFIG_BSD_PROCESS_ACCT_V3=y 40 40 # CONFIG_TASKSTATS is not set 41 41 # CONFIG_AUDIT is not set 42 + 43 + # 44 + # RCU Subsystem 45 + # 46 + CONFIG_TREE_RCU=y 47 + # CONFIG_TREE_PREEMPT_RCU is not set 48 + # CONFIG_RCU_TRACE is not set 49 + CONFIG_RCU_FANOUT=32 50 + # CONFIG_RCU_FANOUT_EXACT is not set 51 + # CONFIG_TREE_RCU_TRACE is not set 42 52 # CONFIG_IKCONFIG is not set 43 53 CONFIG_LOG_BUF_SHIFT=14 44 - # CONFIG_CGROUPS is not set 45 54 # CONFIG_GROUP_SCHED is not set 55 + # CONFIG_CGROUPS is not set 46 56 CONFIG_SYSFS_DEPRECATED=y 47 57 CONFIG_SYSFS_DEPRECATED_V2=y 48 58 # CONFIG_RELAY is not set 49 59 # CONFIG_NAMESPACES is not set 50 60 CONFIG_BLK_DEV_INITRD=y 51 61 CONFIG_INITRAMFS_SOURCE="" 62 + CONFIG_RD_GZIP=y 63 + # CONFIG_RD_BZIP2 is not set 64 + # CONFIG_RD_LZMA is not set 52 65 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 53 66 CONFIG_SYSCTL=y 67 + CONFIG_ANON_INODES=y 54 68 CONFIG_EMBEDDED=y 55 69 # CONFIG_SYSCTL_SYSCALL is not set 56 70 CONFIG_KALLSYMS=y ··· 75 59 CONFIG_PRINTK=y 76 60 CONFIG_BUG=y 77 61 CONFIG_ELF_CORE=y 78 - # CONFIG_COMPAT_BRK is not set 79 62 # CONFIG_BASE_FULL is not set 80 63 CONFIG_FUTEX=y 81 - CONFIG_ANON_INODES=y 82 64 CONFIG_EPOLL=y 83 65 CONFIG_SIGNALFD=y 84 66 CONFIG_TIMERFD=y 85 67 CONFIG_EVENTFD=y 86 68 CONFIG_SHMEM=y 69 + CONFIG_AIO=y 70 + 71 + # 72 + # Kernel Performance Events And Counters 73 + # 87 74 CONFIG_VM_EVENT_COUNTERS=y 88 75 CONFIG_SLUB_DEBUG=y 76 + # CONFIG_COMPAT_BRK is not set 89 77 # CONFIG_SLAB is not set 90 78 CONFIG_SLUB=y 91 79 # CONFIG_SLOB is not set 92 80 CONFIG_PROFILING=y 93 - # CONFIG_MARKERS is not set 81 + CONFIG_TRACEPOINTS=y 94 82 CONFIG_OPROFILE=m 95 83 CONFIG_HAVE_OPROFILE=y 96 84 CONFIG_KPROBES=y 97 85 CONFIG_HAVE_KPROBES=y 98 - # CONFIG_HAVE_KRETPROBES is not set 99 - CONFIG_PROC_PAGE_MONITOR=y 86 + CONFIG_HAVE_CLK=y 87 + 88 + # 89 + # GCOV-based kernel profiling 90 + # 91 + # CONFIG_GCOV_KERNEL is not set 92 + CONFIG_SLOW_WORK=y 93 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 100 94 CONFIG_SLABINFO=y 101 95 CONFIG_RT_MUTEXES=y 102 - # CONFIG_TINY_SHMEM is not set 103 96 CONFIG_BASE_SMALL=1 104 97 CONFIG_MODULES=y 98 + # CONFIG_MODULE_FORCE_LOAD is not set 105 99 CONFIG_MODULE_UNLOAD=y 106 100 CONFIG_MODULE_FORCE_UNLOAD=y 107 101 # CONFIG_MODVERSIONS is not set 108 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 109 - CONFIG_KMOD=y 110 103 CONFIG_BLOCK=y 111 - # CONFIG_LBD is not set 112 - # CONFIG_BLK_DEV_IO_TRACE is not set 113 - # CONFIG_LSF is not set 104 + CONFIG_LBDAF=y 114 105 # CONFIG_BLK_DEV_BSG is not set 106 + # CONFIG_BLK_DEV_INTEGRITY is not set 115 107 116 108 # 117 109 # IO Schedulers ··· 133 109 CONFIG_DEFAULT_CFQ=y 134 110 # CONFIG_DEFAULT_NOOP is not set 135 111 CONFIG_DEFAULT_IOSCHED="cfq" 136 - CONFIG_CLASSIC_RCU=y 112 + CONFIG_FREEZER=y 137 113 138 114 # 139 115 # System Type and features ··· 148 124 CONFIG_PLATFORM_AT32AP=y 149 125 CONFIG_CPU_AT32AP700X=y 150 126 CONFIG_CPU_AT32AP7000=y 127 + CONFIG_BOARD_ATNGW100_COMMON=y 151 128 # CONFIG_BOARD_ATSTK1000 is not set 152 - CONFIG_BOARD_ATNGW100=y 129 + CONFIG_BOARD_ATNGW100_MKI=y 130 + # CONFIG_BOARD_ATNGW100_MKII is not set 131 + # CONFIG_BOARD_HAMMERHEAD is not set 132 + # CONFIG_BOARD_FAVR_32 is not set 133 + # CONFIG_BOARD_MERISC is not set 134 + # CONFIG_BOARD_MIMC200 is not set 135 + # CONFIG_BOARD_ATNGW100_ADDON_NONE is not set 153 136 CONFIG_BOARD_ATNGW100_EVKLCD10X=y 137 + # CONFIG_BOARD_ATNGW100_MRMT is not set 154 138 # CONFIG_BOARD_ATNGW100_EVKLCD10X_QVGA is not set 155 139 CONFIG_BOARD_ATNGW100_EVKLCD10X_VGA=y 156 140 # CONFIG_BOARD_ATNGW100_EVKLCD10X_POW_QVGA is not set 157 - CONFIG_BOARD_ATNGW100_I2C_GPIO=y 158 141 CONFIG_LOADER_U_BOOT=y 159 142 160 143 # ··· 170 139 # CONFIG_AP700X_32_BIT_SMC is not set 171 140 CONFIG_AP700X_16_BIT_SMC=y 172 141 # CONFIG_AP700X_8_BIT_SMC is not set 173 - CONFIG_GPIO_DEV=y 174 142 CONFIG_LOAD_ADDRESS=0x10000000 175 143 CONFIG_ENTRY_ADDRESS=0x90000000 176 144 CONFIG_PHYS_OFFSET=0x10000000 177 145 CONFIG_PREEMPT_NONE=y 178 146 # CONFIG_PREEMPT_VOLUNTARY is not set 179 147 # CONFIG_PREEMPT is not set 180 - # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set 148 + CONFIG_QUICKLIST=y 149 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 181 150 # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 182 151 # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 183 152 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 189 158 # CONFIG_SPARSEMEM_MANUAL is not set 190 159 CONFIG_FLATMEM=y 191 160 CONFIG_FLAT_NODE_MEM_MAP=y 192 - # CONFIG_SPARSEMEM_STATIC is not set 193 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 161 + CONFIG_PAGEFLAGS_EXTENDED=y 194 162 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 163 + # CONFIG_PHYS_ADDR_T_64BIT is not set 196 164 CONFIG_ZONE_DMA_FLAG=0 165 + CONFIG_NR_QUICK=2 197 166 CONFIG_VIRT_TO_BUS=y 167 + CONFIG_HAVE_MLOCK=y 168 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 169 + # CONFIG_KSM is not set 170 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 198 171 # CONFIG_OWNERSHIP_TRACE is not set 199 172 CONFIG_NMI_DEBUGGING=y 200 - CONFIG_DW_DMAC=y 201 173 # CONFIG_HZ_100 is not set 202 174 CONFIG_HZ_250=y 203 175 # CONFIG_HZ_300 is not set 204 176 # CONFIG_HZ_1000 is not set 205 177 CONFIG_HZ=250 206 - # CONFIG_SCHED_HRTICK is not set 178 + CONFIG_SCHED_HRTICK=y 207 179 CONFIG_CMDLINE="" 208 180 209 181 # 210 182 # Power management options 211 183 # 212 - CONFIG_ARCH_SUSPEND_POSSIBLE=y 213 184 CONFIG_PM=y 214 - # CONFIG_PM_LEGACY is not set 215 185 # CONFIG_PM_DEBUG is not set 216 186 CONFIG_PM_SLEEP=y 217 187 CONFIG_SUSPEND=y 218 188 CONFIG_SUSPEND_FREEZER=y 189 + # CONFIG_PM_RUNTIME is not set 190 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 219 191 220 192 # 221 193 # CPU Frequency scaling ··· 228 194 # CONFIG_CPU_FREQ_DEBUG is not set 229 195 # CONFIG_CPU_FREQ_STAT is not set 230 196 # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 197 + # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 231 198 # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 232 199 CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y 233 200 # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set ··· 249 214 # Executable file formats 250 215 # 251 216 CONFIG_BINFMT_ELF=y 217 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 218 + # CONFIG_HAVE_AOUT is not set 252 219 # CONFIG_BINFMT_MISC is not set 253 - 254 - # 255 - # Networking 256 - # 257 220 CONFIG_NET=y 258 221 259 222 # ··· 265 232 # CONFIG_XFRM_SUB_POLICY is not set 266 233 # CONFIG_XFRM_MIGRATE is not set 267 234 # CONFIG_XFRM_STATISTICS is not set 235 + CONFIG_XFRM_IPCOMP=y 268 236 CONFIG_NET_KEY=y 269 237 # CONFIG_NET_KEY_MIGRATE is not set 270 238 CONFIG_INET=y ··· 303 269 CONFIG_TCP_CONG_CUBIC=y 304 270 CONFIG_DEFAULT_TCP_CONG="cubic" 305 271 # CONFIG_TCP_MD5SIG is not set 306 - # CONFIG_IP_VS is not set 307 272 CONFIG_IPV6=y 308 273 # CONFIG_IPV6_PRIVACY is not set 309 274 # CONFIG_IPV6_ROUTER_PREF is not set ··· 318 285 CONFIG_INET6_XFRM_MODE_BEET=y 319 286 # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set 320 287 CONFIG_IPV6_SIT=y 288 + CONFIG_IPV6_NDISC_NODETYPE=y 321 289 # CONFIG_IPV6_TUNNEL is not set 322 290 # CONFIG_IPV6_MULTIPLE_TABLES is not set 291 + # CONFIG_IPV6_MROUTE is not set 323 292 # CONFIG_NETWORK_SECMARK is not set 324 293 CONFIG_NETFILTER=y 325 294 # CONFIG_NETFILTER_DEBUG is not set ··· 345 310 CONFIG_NETFILTER_XT_MATCH_MARK=m 346 311 CONFIG_NETFILTER_XT_MATCH_POLICY=m 347 312 CONFIG_NETFILTER_XT_MATCH_STATE=m 313 + # CONFIG_IP_VS is not set 348 314 349 315 # 350 316 # IP: Netfilter Configuration 351 317 # 318 + CONFIG_NF_DEFRAG_IPV4=m 352 319 CONFIG_NF_CONNTRACK_IPV4=m 353 320 CONFIG_NF_CONNTRACK_PROC_COMPAT=y 354 321 CONFIG_IP_NF_IPTABLES=m ··· 376 339 CONFIG_NF_CONNTRACK_IPV6=m 377 340 CONFIG_IP6_NF_IPTABLES=m 378 341 CONFIG_IP6_NF_MATCH_IPV6HEADER=m 379 - CONFIG_IP6_NF_FILTER=m 380 342 CONFIG_IP6_NF_TARGET_LOG=m 343 + CONFIG_IP6_NF_FILTER=m 381 344 CONFIG_IP6_NF_TARGET_REJECT=m 382 345 CONFIG_IP6_NF_MANGLE=m 383 346 # CONFIG_IP_DCCP is not set 384 347 # CONFIG_IP_SCTP is not set 348 + # CONFIG_RDS is not set 385 349 # CONFIG_TIPC is not set 386 350 # CONFIG_ATM is not set 351 + CONFIG_STP=m 387 352 CONFIG_BRIDGE=m 353 + # CONFIG_NET_DSA is not set 388 354 CONFIG_VLAN_8021Q=m 355 + # CONFIG_VLAN_8021Q_GVRP is not set 389 356 # CONFIG_DECNET is not set 390 357 CONFIG_LLC=m 391 358 # CONFIG_LLC2 is not set ··· 399 358 # CONFIG_LAPB is not set 400 359 # CONFIG_ECONET is not set 401 360 # CONFIG_WAN_ROUTER is not set 361 + # CONFIG_PHONET is not set 362 + # CONFIG_IEEE802154 is not set 402 363 # CONFIG_NET_SCHED is not set 364 + # CONFIG_DCB is not set 403 365 404 366 # 405 367 # Network testing 406 368 # 407 369 # CONFIG_NET_PKTGEN is not set 408 370 # CONFIG_NET_TCPPROBE is not set 371 + # CONFIG_NET_DROP_MONITOR is not set 409 372 # CONFIG_HAMRADIO is not set 410 373 # CONFIG_CAN is not set 411 374 # CONFIG_IRDA is not set 412 375 # CONFIG_BT is not set 413 376 # CONFIG_AF_RXRPC is not set 377 + CONFIG_WIRELESS=y 378 + # CONFIG_CFG80211 is not set 379 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 380 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 381 + # CONFIG_WIRELESS_EXT is not set 382 + # CONFIG_LIB80211 is not set 414 383 415 384 # 416 - # Wireless 385 + # CFG80211 needs to be enabled for MAC80211 417 386 # 418 - # CONFIG_CFG80211 is not set 419 - # CONFIG_WIRELESS_EXT is not set 420 - # CONFIG_MAC80211 is not set 421 - # CONFIG_IEEE80211 is not set 387 + # CONFIG_WIMAX is not set 422 388 # CONFIG_RFKILL is not set 423 389 # CONFIG_NET_9P is not set 424 390 ··· 437 389 # Generic Driver Options 438 390 # 439 391 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 392 + # CONFIG_DEVTMPFS is not set 440 393 CONFIG_STANDALONE=y 441 394 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 442 395 # CONFIG_FW_LOADER is not set ··· 447 398 # CONFIG_CONNECTOR is not set 448 399 CONFIG_MTD=y 449 400 # CONFIG_MTD_DEBUG is not set 401 + # CONFIG_MTD_TESTS is not set 450 402 # CONFIG_MTD_CONCAT is not set 451 403 CONFIG_MTD_PARTITIONS=y 452 404 # CONFIG_MTD_REDBOOT_PARTS is not set 453 405 CONFIG_MTD_CMDLINE_PARTS=y 406 + # CONFIG_MTD_AR7_PARTS is not set 454 407 455 408 # 456 409 # User Modules And Translation Layers ··· 497 446 # 498 447 # CONFIG_MTD_COMPLEX_MAPPINGS is not set 499 448 CONFIG_MTD_PHYSMAP=y 500 - CONFIG_MTD_PHYSMAP_START=0x80000000 501 - CONFIG_MTD_PHYSMAP_LEN=0x0 502 - CONFIG_MTD_PHYSMAP_BANKWIDTH=2 449 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 503 450 # CONFIG_MTD_PLATRAM is not set 504 451 505 452 # 506 453 # Self-contained MTD device drivers 507 454 # 508 455 CONFIG_MTD_DATAFLASH=y 456 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 457 + # CONFIG_MTD_DATAFLASH_OTP is not set 509 458 # CONFIG_MTD_M25P80 is not set 459 + # CONFIG_MTD_SST25L is not set 510 460 # CONFIG_MTD_SLRAM is not set 511 461 # CONFIG_MTD_PHRAM is not set 512 462 # CONFIG_MTD_MTDRAM is not set ··· 521 469 # CONFIG_MTD_DOC2001PLUS is not set 522 470 # CONFIG_MTD_NAND is not set 523 471 # CONFIG_MTD_ONENAND is not set 472 + 473 + # 474 + # LPDDR flash memory drivers 475 + # 476 + # CONFIG_MTD_LPDDR is not set 524 477 525 478 # 526 479 # UBI - Unsorted block images ··· 556 499 CONFIG_ATMEL_TCLIB=y 557 500 CONFIG_ATMEL_TCB_CLKSRC=y 558 501 CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 559 - # CONFIG_EEPROM_93CX6 is not set 502 + # CONFIG_ICS932S401 is not set 560 503 # CONFIG_ATMEL_SSC is not set 561 504 # CONFIG_ENCLOSURE_SERVICES is not set 562 - # CONFIG_HAVE_IDE is not set 505 + # CONFIG_ISL29003 is not set 506 + # CONFIG_C2PORT is not set 507 + 508 + # 509 + # EEPROM support 510 + # 511 + # CONFIG_EEPROM_AT24 is not set 512 + # CONFIG_EEPROM_AT25 is not set 513 + # CONFIG_EEPROM_LEGACY is not set 514 + # CONFIG_EEPROM_MAX6875 is not set 515 + # CONFIG_EEPROM_93CX6 is not set 563 516 564 517 # 565 518 # SCSI device support ··· 581 514 # CONFIG_ATA is not set 582 515 # CONFIG_MD is not set 583 516 CONFIG_NETDEVICES=y 584 - # CONFIG_NETDEVICES_MULTIQUEUE is not set 585 517 # CONFIG_DUMMY is not set 586 518 # CONFIG_BONDING is not set 587 519 # CONFIG_MACVLAN is not set ··· 602 536 # CONFIG_BROADCOM_PHY is not set 603 537 # CONFIG_ICPLUS_PHY is not set 604 538 # CONFIG_REALTEK_PHY is not set 539 + # CONFIG_NATIONAL_PHY is not set 540 + # CONFIG_STE10XP is not set 541 + # CONFIG_LSI_ET1011C_PHY is not set 605 542 # CONFIG_FIXED_PHY is not set 606 543 # CONFIG_MDIO_BITBANG is not set 607 544 CONFIG_NET_ETHERNET=y 608 545 # CONFIG_MII is not set 609 546 CONFIG_MACB=y 610 547 # CONFIG_ENC28J60 is not set 548 + # CONFIG_ETHOC is not set 549 + # CONFIG_DNET is not set 611 550 # CONFIG_IBM_NEW_EMAC_ZMII is not set 612 551 # CONFIG_IBM_NEW_EMAC_RGMII is not set 613 552 # CONFIG_IBM_NEW_EMAC_TAH is not set 614 553 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 554 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 555 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 556 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 615 557 # CONFIG_B44 is not set 558 + # CONFIG_KS8842 is not set 559 + # CONFIG_KS8851 is not set 560 + # CONFIG_KS8851_MLL is not set 616 561 # CONFIG_NETDEV_1000 is not set 617 562 # CONFIG_NETDEV_10000 is not set 618 - 619 - # 620 - # Wireless LAN 621 - # 563 + CONFIG_WLAN=y 622 564 # CONFIG_WLAN_PRE80211 is not set 623 565 # CONFIG_WLAN_80211 is not set 566 + 567 + # 568 + # Enable WiMAX (Networking options) to see the WiMAX drivers 569 + # 624 570 # CONFIG_WAN is not set 625 571 CONFIG_PPP=m 626 572 # CONFIG_PPP_MULTILINK is not set ··· 676 598 # CONFIG_INPUT_TABLET is not set 677 599 CONFIG_INPUT_TOUCHSCREEN=y 678 600 # CONFIG_TOUCHSCREEN_ADS7846 is not set 601 + # CONFIG_TOUCHSCREEN_AD7877 is not set 602 + # CONFIG_TOUCHSCREEN_AD7879_I2C is not set 603 + # CONFIG_TOUCHSCREEN_AD7879_SPI is not set 604 + # CONFIG_TOUCHSCREEN_AD7879 is not set 605 + # CONFIG_TOUCHSCREEN_EETI is not set 679 606 # CONFIG_TOUCHSCREEN_FUJITSU is not set 680 607 # CONFIG_TOUCHSCREEN_GUNZE is not set 681 608 # CONFIG_TOUCHSCREEN_ELO is not set 609 + # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set 610 + # CONFIG_TOUCHSCREEN_MCS5000 is not set 682 611 # CONFIG_TOUCHSCREEN_MTOUCH is not set 612 + # CONFIG_TOUCHSCREEN_INEXIO is not set 683 613 # CONFIG_TOUCHSCREEN_MK712 is not set 684 614 # CONFIG_TOUCHSCREEN_PENMOUNT is not set 685 615 # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 686 616 # CONFIG_TOUCHSCREEN_TOUCHWIN is not set 687 - # CONFIG_TOUCHSCREEN_UCB1400 is not set 617 + CONFIG_TOUCHSCREEN_WM97XX=m 618 + CONFIG_TOUCHSCREEN_WM9705=y 619 + CONFIG_TOUCHSCREEN_WM9712=y 620 + CONFIG_TOUCHSCREEN_WM9713=y 621 + # CONFIG_TOUCHSCREEN_WM97XX_ATMEL is not set 622 + # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set 623 + # CONFIG_TOUCHSCREEN_TSC2007 is not set 624 + # CONFIG_TOUCHSCREEN_W90X900 is not set 688 625 # CONFIG_INPUT_MISC is not set 689 626 690 627 # ··· 712 619 # Character devices 713 620 # 714 621 CONFIG_VT=y 622 + CONFIG_CONSOLE_TRANSLATIONS=y 715 623 CONFIG_VT_CONSOLE=y 716 624 CONFIG_HW_CONSOLE=y 717 625 # CONFIG_VT_HW_CONSOLE_BINDING is not set 626 + CONFIG_DEVKMEM=y 718 627 # CONFIG_SERIAL_NONSTANDARD is not set 719 628 720 629 # ··· 731 636 CONFIG_SERIAL_ATMEL_CONSOLE=y 732 637 CONFIG_SERIAL_ATMEL_PDC=y 733 638 # CONFIG_SERIAL_ATMEL_TTYAT is not set 639 + # CONFIG_SERIAL_MAX3100 is not set 734 640 CONFIG_SERIAL_CORE=y 735 641 CONFIG_SERIAL_CORE_CONSOLE=y 736 642 CONFIG_UNIX98_PTYS=y 643 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 737 644 # CONFIG_LEGACY_PTYS is not set 738 645 # CONFIG_IPMI_HANDLER is not set 739 646 # CONFIG_HW_RANDOM is not set ··· 744 647 # CONFIG_TCG_TPM is not set 745 648 CONFIG_I2C=m 746 649 CONFIG_I2C_BOARDINFO=y 650 + CONFIG_I2C_COMPAT=y 747 651 CONFIG_I2C_CHARDEV=m 748 - 749 - # 750 - # I2C Algorithms 751 - # 652 + CONFIG_I2C_HELPER_AUTO=y 752 653 CONFIG_I2C_ALGOBIT=m 753 - # CONFIG_I2C_ALGOPCF is not set 754 - # CONFIG_I2C_ALGOPCA is not set 755 654 756 655 # 757 656 # I2C Hardware Bus support 758 657 # 759 - CONFIG_I2C_ATMELTWI=m 658 + 659 + # 660 + # I2C system bus drivers (mostly embedded / system-on-chip) 661 + # 662 + # CONFIG_I2C_DESIGNWARE is not set 760 663 CONFIG_I2C_GPIO=m 761 664 # CONFIG_I2C_OCORES is not set 762 - # CONFIG_I2C_PARPORT_LIGHT is not set 763 665 # CONFIG_I2C_SIMTEC is not set 666 + 667 + # 668 + # External I2C/SMBus adapter drivers 669 + # 670 + # CONFIG_I2C_PARPORT_LIGHT is not set 764 671 # CONFIG_I2C_TAOS_EVM is not set 672 + 673 + # 674 + # Other I2C/SMBus bus drivers 675 + # 676 + # CONFIG_I2C_PCA_PLATFORM is not set 765 677 # CONFIG_I2C_STUB is not set 766 678 767 679 # 768 680 # Miscellaneous I2C Chip support 769 681 # 770 682 # CONFIG_DS1682 is not set 771 - # CONFIG_EEPROM_LEGACY is not set 772 - # CONFIG_SENSORS_PCF8574 is not set 773 - # CONFIG_PCF8575 is not set 774 - # CONFIG_SENSORS_PCF8591 is not set 775 - # CONFIG_TPS65010 is not set 776 - # CONFIG_SENSORS_MAX6875 is not set 777 683 # CONFIG_SENSORS_TSL2550 is not set 778 684 # CONFIG_I2C_DEBUG_CORE is not set 779 685 # CONFIG_I2C_DEBUG_ALGO is not set 780 686 # CONFIG_I2C_DEBUG_BUS is not set 781 687 # CONFIG_I2C_DEBUG_CHIP is not set 782 - 783 - # 784 - # SPI support 785 - # 786 688 CONFIG_SPI=y 787 689 # CONFIG_SPI_DEBUG is not set 788 690 CONFIG_SPI_MASTER=y ··· 791 695 # 792 696 CONFIG_SPI_ATMEL=y 793 697 # CONFIG_SPI_BITBANG is not set 698 + # CONFIG_SPI_GPIO is not set 794 699 795 700 # 796 701 # SPI Protocol Masters 797 702 # 798 - # CONFIG_EEPROM_AT25 is not set 799 703 CONFIG_SPI_SPIDEV=m 800 704 # CONFIG_SPI_TLE62X0 is not set 801 - CONFIG_HAVE_GPIO_LIB=y 802 705 803 706 # 804 - # GPIO Support 707 + # PPS support 805 708 # 709 + # CONFIG_PPS is not set 710 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 711 + CONFIG_GPIOLIB=y 806 712 # CONFIG_DEBUG_GPIO is not set 713 + # CONFIG_GPIO_SYSFS is not set 714 + 715 + # 716 + # Memory mapped GPIO expanders: 717 + # 807 718 808 719 # 809 720 # I2C GPIO expanders: 810 721 # 722 + # CONFIG_GPIO_MAX732X is not set 811 723 # CONFIG_GPIO_PCA953X is not set 812 724 # CONFIG_GPIO_PCF857X is not set 813 725 814 726 # 727 + # PCI GPIO expanders: 728 + # 729 + 730 + # 815 731 # SPI GPIO expanders: 816 732 # 733 + # CONFIG_GPIO_MAX7301 is not set 817 734 # CONFIG_GPIO_MCP23S08 is not set 735 + # CONFIG_GPIO_MC33880 is not set 736 + 737 + # 738 + # AC97 GPIO expanders: 739 + # 818 740 # CONFIG_W1 is not set 819 741 # CONFIG_POWER_SUPPLY is not set 820 742 # CONFIG_HWMON is not set ··· 845 731 # 846 732 # CONFIG_SOFT_WATCHDOG is not set 847 733 CONFIG_AT32AP700X_WDT=y 734 + CONFIG_SSB_POSSIBLE=y 848 735 849 736 # 850 737 # Sonics Silicon Backplane 851 738 # 852 - CONFIG_SSB_POSSIBLE=y 853 739 # CONFIG_SSB is not set 854 740 855 741 # 856 742 # Multifunction device drivers 857 743 # 744 + # CONFIG_MFD_CORE is not set 858 745 # CONFIG_MFD_SM501 is not set 859 - 860 - # 861 - # Multimedia devices 862 - # 863 - # CONFIG_VIDEO_DEV is not set 864 - # CONFIG_DVB_CORE is not set 865 - # CONFIG_DAB is not set 746 + # CONFIG_HTC_PASIC3 is not set 747 + # CONFIG_UCB1400_CORE is not set 748 + # CONFIG_TPS65010 is not set 749 + # CONFIG_MFD_TMIO is not set 750 + # CONFIG_MFD_WM8400 is not set 751 + # CONFIG_MFD_WM831X is not set 752 + # CONFIG_MFD_WM8350_I2C is not set 753 + # CONFIG_MFD_PCF50633 is not set 754 + # CONFIG_MFD_MC13783 is not set 755 + # CONFIG_AB3100_CORE is not set 756 + # CONFIG_EZX_PCAP is not set 757 + # CONFIG_REGULATOR is not set 758 + # CONFIG_MEDIA_SUPPORT is not set 866 759 867 760 # 868 761 # Graphics support ··· 879 758 CONFIG_FB=y 880 759 # CONFIG_FIRMWARE_EDID is not set 881 760 # CONFIG_FB_DDC is not set 761 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 882 762 CONFIG_FB_CFB_FILLRECT=y 883 763 CONFIG_FB_CFB_COPYAREA=y 884 764 CONFIG_FB_CFB_IMAGEBLIT=y ··· 887 765 # CONFIG_FB_SYS_FILLRECT is not set 888 766 # CONFIG_FB_SYS_COPYAREA is not set 889 767 # CONFIG_FB_SYS_IMAGEBLIT is not set 768 + # CONFIG_FB_FOREIGN_ENDIAN is not set 890 769 # CONFIG_FB_SYS_FOPS is not set 891 - CONFIG_FB_DEFERRED_IO=y 892 770 # CONFIG_FB_SVGALIB is not set 893 771 # CONFIG_FB_MACMODES is not set 894 772 # CONFIG_FB_BACKLIGHT is not set ··· 901 779 # CONFIG_FB_S1D13XXX is not set 902 780 CONFIG_FB_ATMEL=y 903 781 # CONFIG_FB_VIRTUAL is not set 782 + # CONFIG_FB_METRONOME is not set 783 + # CONFIG_FB_MB862XX is not set 784 + # CONFIG_FB_BROADSHEET is not set 904 785 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 905 786 906 787 # ··· 917 792 CONFIG_DUMMY_CONSOLE=y 918 793 # CONFIG_FRAMEBUFFER_CONSOLE is not set 919 794 # CONFIG_LOGO is not set 920 - 921 - # 922 - # Sound 923 - # 924 795 CONFIG_SOUND=y 925 - 926 - # 927 - # Advanced Linux Sound Architecture 928 - # 796 + CONFIG_SOUND_OSS_CORE=y 797 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 929 798 CONFIG_SND=y 930 - CONFIG_SND_TIMER=m 799 + CONFIG_SND_TIMER=y 931 800 CONFIG_SND_PCM=m 932 801 # CONFIG_SND_SEQUENCER is not set 933 802 CONFIG_SND_OSSEMUL=y 934 803 CONFIG_SND_MIXER_OSS=m 935 804 CONFIG_SND_PCM_OSS=m 936 805 CONFIG_SND_PCM_OSS_PLUGINS=y 806 + CONFIG_SND_HRTIMER=y 937 807 # CONFIG_SND_DYNAMIC_MINORS is not set 938 808 # CONFIG_SND_SUPPORT_OLD_API is not set 939 809 CONFIG_SND_VERBOSE_PROCFS=y 940 810 # CONFIG_SND_VERBOSE_PRINTK is not set 941 811 # CONFIG_SND_DEBUG is not set 942 - 943 - # 944 - # Generic devices 945 - # 812 + CONFIG_SND_VMASTER=y 813 + # CONFIG_SND_RAWMIDI_SEQ is not set 814 + # CONFIG_SND_OPL3_LIB_SEQ is not set 815 + # CONFIG_SND_OPL4_LIB_SEQ is not set 816 + # CONFIG_SND_SBAWE_SEQ is not set 817 + # CONFIG_SND_EMU10K1_SEQ is not set 946 818 CONFIG_SND_AC97_CODEC=m 947 - # CONFIG_SND_DUMMY is not set 948 - # CONFIG_SND_MTPAV is not set 949 - # CONFIG_SND_SERIAL_U16550 is not set 950 - # CONFIG_SND_MPU401 is not set 819 + # CONFIG_SND_DRIVERS is not set 951 820 952 821 # 953 - # AVR32 devices 822 + # Atmel devices (AVR32 and AT91) 954 823 # 955 - CONFIG_SND_ATMEL_AC97=m 956 - 957 - # 958 - # SPI devices 959 - # 960 - 961 - # 962 - # System on Chip audio support 963 - # 824 + # CONFIG_SND_ATMEL_ABDAC is not set 825 + CONFIG_SND_ATMEL_AC97C=m 826 + # CONFIG_SND_SPI is not set 964 827 # CONFIG_SND_SOC is not set 965 - 966 - # 967 - # SoC Audio support for SuperH 968 - # 969 - 970 - # 971 - # ALSA SoC audio for Freescale SOCs 972 - # 973 - 974 - # 975 - # Open Sound System 976 - # 977 828 # CONFIG_SOUND_PRIME is not set 978 829 CONFIG_AC97_BUS=m 979 830 CONFIG_HID_SUPPORT=y 980 831 CONFIG_HID=y 981 - # CONFIG_HID_DEBUG is not set 982 832 # CONFIG_HIDRAW is not set 833 + # CONFIG_HID_PID is not set 834 + 835 + # 836 + # Special HID drivers 837 + # 983 838 CONFIG_USB_SUPPORT=y 984 839 # CONFIG_USB_ARCH_HAS_HCD is not set 985 840 # CONFIG_USB_ARCH_HAS_OHCI is not set 986 841 # CONFIG_USB_ARCH_HAS_EHCI is not set 842 + # CONFIG_USB_OTG_WHITELIST is not set 843 + # CONFIG_USB_OTG_BLACKLIST_HUB is not set 844 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 987 845 988 846 # 989 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 847 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 990 848 # 991 849 CONFIG_USB_GADGET=y 992 850 # CONFIG_USB_GADGET_DEBUG is not set 993 851 # CONFIG_USB_GADGET_DEBUG_FILES is not set 852 + # CONFIG_USB_GADGET_DEBUG_FS is not set 853 + CONFIG_USB_GADGET_VBUS_DRAW=350 994 854 CONFIG_USB_GADGET_SELECTED=y 995 - # CONFIG_USB_GADGET_AMD5536UDC is not set 855 + # CONFIG_USB_GADGET_AT91 is not set 996 856 CONFIG_USB_GADGET_ATMEL_USBA=y 997 857 CONFIG_USB_ATMEL_USBA=y 998 858 # CONFIG_USB_GADGET_FSL_USB2 is not set 999 - # CONFIG_USB_GADGET_NET2280 is not set 1000 - # CONFIG_USB_GADGET_PXA2XX is not set 1001 - # CONFIG_USB_GADGET_M66592 is not set 1002 - # CONFIG_USB_GADGET_GOKU is not set 1003 859 # CONFIG_USB_GADGET_LH7A40X is not set 1004 860 # CONFIG_USB_GADGET_OMAP is not set 861 + # CONFIG_USB_GADGET_PXA25X is not set 862 + # CONFIG_USB_GADGET_R8A66597 is not set 863 + # CONFIG_USB_GADGET_PXA27X is not set 864 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 865 + # CONFIG_USB_GADGET_IMX is not set 1005 866 # CONFIG_USB_GADGET_S3C2410 is not set 1006 - # CONFIG_USB_GADGET_AT91 is not set 867 + # CONFIG_USB_GADGET_M66592 is not set 868 + # CONFIG_USB_GADGET_AMD5536UDC is not set 869 + # CONFIG_USB_GADGET_FSL_QE is not set 870 + # CONFIG_USB_GADGET_CI13XXX is not set 871 + # CONFIG_USB_GADGET_NET2280 is not set 872 + # CONFIG_USB_GADGET_GOKU is not set 873 + # CONFIG_USB_GADGET_LANGWELL is not set 1007 874 # CONFIG_USB_GADGET_DUMMY_HCD is not set 1008 875 CONFIG_USB_GADGET_DUALSPEED=y 1009 876 CONFIG_USB_ZERO=m 877 + # CONFIG_USB_AUDIO is not set 1010 878 CONFIG_USB_ETH=m 1011 879 CONFIG_USB_ETH_RNDIS=y 880 + # CONFIG_USB_ETH_EEM is not set 1012 881 CONFIG_USB_GADGETFS=m 1013 882 CONFIG_USB_FILE_STORAGE=m 1014 883 # CONFIG_USB_FILE_STORAGE_TEST is not set 1015 884 CONFIG_USB_G_SERIAL=m 1016 885 # CONFIG_USB_MIDI_GADGET is not set 1017 886 # CONFIG_USB_G_PRINTER is not set 887 + CONFIG_USB_CDC_COMPOSITE=m 888 + 889 + # 890 + # OTG and related infrastructure 891 + # 892 + # CONFIG_USB_GPIO_VBUS is not set 893 + # CONFIG_NOP_USB_XCEIV is not set 1018 894 CONFIG_MMC=y 1019 895 # CONFIG_MMC_DEBUG is not set 1020 896 # CONFIG_MMC_UNSAFE_RESUME is not set 1021 897 1022 898 # 1023 - # MMC/SD Card Drivers 899 + # MMC/SD/SDIO Card Drivers 1024 900 # 1025 901 CONFIG_MMC_BLOCK=y 1026 902 CONFIG_MMC_BLOCK_BOUNCE=y 1027 903 # CONFIG_SDIO_UART is not set 904 + # CONFIG_MMC_TEST is not set 1028 905 1029 906 # 1030 - # MMC/SD Host Controller Drivers 907 + # MMC/SD/SDIO Host Controller Drivers 1031 908 # 909 + # CONFIG_MMC_SDHCI is not set 910 + # CONFIG_MMC_AT91 is not set 1032 911 CONFIG_MMC_ATMELMCI=y 912 + # CONFIG_MMC_ATMELMCI_DMA is not set 1033 913 # CONFIG_MMC_SPI is not set 1034 914 # CONFIG_MEMSTICK is not set 1035 915 CONFIG_NEW_LEDS=y ··· 1043 913 # 1044 914 # LED drivers 1045 915 # 916 + # CONFIG_LEDS_PCA9532 is not set 1046 917 CONFIG_LEDS_GPIO=y 918 + CONFIG_LEDS_GPIO_PLATFORM=y 919 + # CONFIG_LEDS_LP3944 is not set 920 + # CONFIG_LEDS_PCA955X is not set 921 + # CONFIG_LEDS_DAC124S085 is not set 922 + # CONFIG_LEDS_BD2802 is not set 1047 923 1048 924 # 1049 925 # LED Triggers ··· 1057 921 CONFIG_LEDS_TRIGGERS=y 1058 922 CONFIG_LEDS_TRIGGER_TIMER=y 1059 923 CONFIG_LEDS_TRIGGER_HEARTBEAT=y 924 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 925 + # CONFIG_LEDS_TRIGGER_GPIO is not set 926 + # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 927 + 928 + # 929 + # iptables trigger is under Netfilter config (LED target) 930 + # 931 + # CONFIG_ACCESSIBILITY is not set 1060 932 CONFIG_RTC_LIB=y 1061 933 CONFIG_RTC_CLASS=y 1062 934 CONFIG_RTC_HCTOSYS=y ··· 1094 950 # CONFIG_RTC_DRV_PCF8583 is not set 1095 951 # CONFIG_RTC_DRV_M41T80 is not set 1096 952 # CONFIG_RTC_DRV_S35390A is not set 953 + # CONFIG_RTC_DRV_FM3130 is not set 954 + # CONFIG_RTC_DRV_RX8581 is not set 955 + # CONFIG_RTC_DRV_RX8025 is not set 1097 956 1098 957 # 1099 958 # SPI RTC drivers 1100 959 # 960 + # CONFIG_RTC_DRV_M41T94 is not set 961 + # CONFIG_RTC_DRV_DS1305 is not set 962 + # CONFIG_RTC_DRV_DS1390 is not set 1101 963 # CONFIG_RTC_DRV_MAX6902 is not set 1102 964 # CONFIG_RTC_DRV_R9701 is not set 1103 965 # CONFIG_RTC_DRV_RS5C348 is not set 966 + # CONFIG_RTC_DRV_DS3234 is not set 967 + # CONFIG_RTC_DRV_PCF2123 is not set 1104 968 1105 969 # 1106 970 # Platform RTC drivers 1107 971 # 972 + # CONFIG_RTC_DRV_DS1286 is not set 1108 973 # CONFIG_RTC_DRV_DS1511 is not set 1109 974 # CONFIG_RTC_DRV_DS1553 is not set 1110 975 # CONFIG_RTC_DRV_DS1742 is not set 1111 976 # CONFIG_RTC_DRV_STK17TA8 is not set 1112 977 # CONFIG_RTC_DRV_M48T86 is not set 978 + # CONFIG_RTC_DRV_M48T35 is not set 1113 979 # CONFIG_RTC_DRV_M48T59 is not set 980 + # CONFIG_RTC_DRV_BQ4802 is not set 1114 981 # CONFIG_RTC_DRV_V3020 is not set 1115 982 1116 983 # 1117 984 # on-CPU RTC drivers 1118 985 # 1119 986 CONFIG_RTC_DRV_AT32AP700X=y 987 + CONFIG_DMADEVICES=y 1120 988 1121 989 # 1122 - # Userspace I/O 990 + # DMA Devices 1123 991 # 992 + CONFIG_DW_DMAC=y 993 + CONFIG_DMA_ENGINE=y 994 + 995 + # 996 + # DMA Clients 997 + # 998 + # CONFIG_NET_DMA is not set 999 + # CONFIG_ASYNC_TX_DMA is not set 1000 + # CONFIG_DMATEST is not set 1001 + # CONFIG_AUXDISPLAY is not set 1124 1002 # CONFIG_UIO is not set 1003 + 1004 + # 1005 + # TI VLYNQ 1006 + # 1007 + # CONFIG_STAGING is not set 1125 1008 1126 1009 # 1127 1010 # File systems ··· 1157 986 # CONFIG_EXT2_FS_XATTR is not set 1158 987 # CONFIG_EXT2_FS_XIP is not set 1159 988 CONFIG_EXT3_FS=y 989 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1160 990 # CONFIG_EXT3_FS_XATTR is not set 1161 - # CONFIG_EXT4DEV_FS is not set 991 + # CONFIG_EXT4_FS is not set 1162 992 CONFIG_JBD=y 993 + # CONFIG_JBD_DEBUG is not set 1163 994 # CONFIG_REISERFS_FS is not set 1164 995 # CONFIG_JFS_FS is not set 1165 996 # CONFIG_FS_POSIX_ACL is not set 1166 997 # CONFIG_XFS_FS is not set 1167 998 # CONFIG_GFS2_FS is not set 1168 999 # CONFIG_OCFS2_FS is not set 1000 + # CONFIG_BTRFS_FS is not set 1001 + # CONFIG_NILFS2_FS is not set 1002 + CONFIG_FILE_LOCKING=y 1003 + CONFIG_FSNOTIFY=y 1169 1004 # CONFIG_DNOTIFY is not set 1170 1005 CONFIG_INOTIFY=y 1171 1006 CONFIG_INOTIFY_USER=y ··· 1179 1002 # CONFIG_AUTOFS_FS is not set 1180 1003 # CONFIG_AUTOFS4_FS is not set 1181 1004 CONFIG_FUSE_FS=m 1005 + # CONFIG_CUSE is not set 1006 + 1007 + # 1008 + # Caches 1009 + # 1010 + # CONFIG_FSCACHE is not set 1182 1011 1183 1012 # 1184 1013 # CD-ROM/DVD Filesystems ··· 1208 1025 CONFIG_PROC_FS=y 1209 1026 # CONFIG_PROC_KCORE is not set 1210 1027 CONFIG_PROC_SYSCTL=y 1028 + CONFIG_PROC_PAGE_MONITOR=y 1211 1029 CONFIG_SYSFS=y 1212 1030 CONFIG_TMPFS=y 1213 1031 # CONFIG_TMPFS_POSIX_ACL is not set 1214 1032 # CONFIG_HUGETLB_PAGE is not set 1215 1033 CONFIG_CONFIGFS_FS=y 1216 - 1217 - # 1218 - # Miscellaneous filesystems 1219 - # 1034 + CONFIG_MISC_FILESYSTEMS=y 1220 1035 # CONFIG_ADFS_FS is not set 1221 1036 # CONFIG_AFFS_FS is not set 1222 1037 # CONFIG_HFS_FS is not set ··· 1240 1059 CONFIG_UBIFS_FS_ZLIB=y 1241 1060 # CONFIG_UBIFS_FS_DEBUG is not set 1242 1061 # CONFIG_CRAMFS is not set 1062 + # CONFIG_SQUASHFS is not set 1243 1063 # CONFIG_VXFS_FS is not set 1244 1064 # CONFIG_MINIX_FS is not set 1065 + # CONFIG_OMFS_FS is not set 1245 1066 # CONFIG_HPFS_FS is not set 1246 1067 # CONFIG_QNX4FS_FS is not set 1247 1068 # CONFIG_ROMFS_FS is not set ··· 1254 1071 CONFIG_NFS_V3=y 1255 1072 # CONFIG_NFS_V3_ACL is not set 1256 1073 # CONFIG_NFS_V4 is not set 1257 - # CONFIG_NFS_DIRECTIO is not set 1074 + CONFIG_ROOT_NFS=y 1258 1075 CONFIG_NFSD=m 1259 1076 CONFIG_NFSD_V3=y 1260 1077 # CONFIG_NFSD_V3_ACL is not set 1261 1078 # CONFIG_NFSD_V4 is not set 1262 - CONFIG_NFSD_TCP=y 1263 - CONFIG_ROOT_NFS=y 1264 1079 CONFIG_LOCKD=y 1265 1080 CONFIG_LOCKD_V4=y 1266 1081 CONFIG_EXPORTFS=m 1267 1082 CONFIG_NFS_COMMON=y 1268 1083 CONFIG_SUNRPC=y 1269 - # CONFIG_SUNRPC_BIND34 is not set 1270 1084 # CONFIG_RPCSEC_GSS_KRB5 is not set 1271 1085 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1272 1086 CONFIG_SMB_FS=m ··· 1331 1151 # CONFIG_PRINTK_TIME is not set 1332 1152 CONFIG_ENABLE_WARN_DEPRECATED=y 1333 1153 CONFIG_ENABLE_MUST_CHECK=y 1154 + CONFIG_FRAME_WARN=1024 1334 1155 CONFIG_MAGIC_SYSRQ=y 1156 + # CONFIG_STRIP_ASM_SYMS is not set 1335 1157 # CONFIG_UNUSED_SYMBOLS is not set 1336 - # CONFIG_DEBUG_FS is not set 1158 + CONFIG_DEBUG_FS=y 1337 1159 # CONFIG_HEADERS_CHECK is not set 1338 1160 CONFIG_DEBUG_KERNEL=y 1339 1161 # CONFIG_DEBUG_SHIRQ is not set 1340 1162 CONFIG_DETECT_SOFTLOCKUP=y 1163 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1164 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1165 + CONFIG_DETECT_HUNG_TASK=y 1166 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1167 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1341 1168 CONFIG_SCHED_DEBUG=y 1342 1169 # CONFIG_SCHEDSTATS is not set 1343 1170 # CONFIG_TIMER_STATS is not set 1171 + # CONFIG_DEBUG_OBJECTS is not set 1344 1172 # CONFIG_SLUB_DEBUG_ON is not set 1345 1173 # CONFIG_SLUB_STATS is not set 1346 1174 # CONFIG_DEBUG_RT_MUTEXES is not set ··· 1360 1172 # CONFIG_LOCK_STAT is not set 1361 1173 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1362 1174 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1175 + CONFIG_STACKTRACE=y 1363 1176 # CONFIG_DEBUG_KOBJECT is not set 1364 1177 CONFIG_DEBUG_BUGVERBOSE=y 1365 1178 # CONFIG_DEBUG_INFO is not set 1366 1179 # CONFIG_DEBUG_VM is not set 1180 + # CONFIG_DEBUG_WRITECOUNT is not set 1181 + # CONFIG_DEBUG_MEMORY_INIT is not set 1367 1182 # CONFIG_DEBUG_LIST is not set 1368 1183 # CONFIG_DEBUG_SG is not set 1184 + # CONFIG_DEBUG_NOTIFIERS is not set 1185 + # CONFIG_DEBUG_CREDENTIALS is not set 1369 1186 CONFIG_FRAME_POINTER=y 1370 1187 # CONFIG_BOOT_PRINTK_DELAY is not set 1371 1188 # CONFIG_RCU_TORTURE_TEST is not set 1189 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1372 1190 # CONFIG_KPROBES_SANITY_TEST is not set 1373 1191 # CONFIG_BACKTRACE_SELF_TEST is not set 1192 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1193 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1374 1194 # CONFIG_LKDTM is not set 1375 1195 # CONFIG_FAULT_INJECTION is not set 1196 + # CONFIG_PAGE_POISONING is not set 1197 + CONFIG_NOP_TRACER=y 1198 + CONFIG_RING_BUFFER=y 1199 + CONFIG_EVENT_TRACING=y 1200 + CONFIG_CONTEXT_SWITCH_TRACER=y 1201 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1202 + CONFIG_TRACING=y 1203 + CONFIG_TRACING_SUPPORT=y 1204 + CONFIG_FTRACE=y 1205 + # CONFIG_IRQSOFF_TRACER is not set 1206 + # CONFIG_SCHED_TRACER is not set 1207 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1208 + # CONFIG_BOOT_TRACER is not set 1209 + CONFIG_BRANCH_PROFILE_NONE=y 1210 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1211 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1212 + # CONFIG_KMEMTRACE is not set 1213 + # CONFIG_WORKQUEUE_TRACER is not set 1214 + # CONFIG_BLK_DEV_IO_TRACE is not set 1215 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1216 + # CONFIG_DYNAMIC_DEBUG is not set 1376 1217 # CONFIG_SAMPLES is not set 1377 1218 1378 1219 # ··· 1409 1192 # 1410 1193 # CONFIG_KEYS is not set 1411 1194 # CONFIG_SECURITY is not set 1195 + # CONFIG_SECURITYFS is not set 1412 1196 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1413 1197 CONFIG_CRYPTO=y 1198 + 1199 + # 1200 + # Crypto core or helper 1201 + # 1202 + # CONFIG_CRYPTO_FIPS is not set 1414 1203 CONFIG_CRYPTO_ALGAPI=y 1204 + CONFIG_CRYPTO_ALGAPI2=y 1415 1205 CONFIG_CRYPTO_AEAD=y 1206 + CONFIG_CRYPTO_AEAD2=y 1416 1207 CONFIG_CRYPTO_BLKCIPHER=y 1417 - # CONFIG_CRYPTO_SEQIV is not set 1208 + CONFIG_CRYPTO_BLKCIPHER2=y 1418 1209 CONFIG_CRYPTO_HASH=y 1210 + CONFIG_CRYPTO_HASH2=y 1211 + CONFIG_CRYPTO_RNG=m 1212 + CONFIG_CRYPTO_RNG2=y 1213 + CONFIG_CRYPTO_PCOMP=y 1419 1214 CONFIG_CRYPTO_MANAGER=y 1215 + CONFIG_CRYPTO_MANAGER2=y 1216 + # CONFIG_CRYPTO_GF128MUL is not set 1217 + # CONFIG_CRYPTO_NULL is not set 1218 + CONFIG_CRYPTO_WORKQUEUE=y 1219 + # CONFIG_CRYPTO_CRYPTD is not set 1220 + CONFIG_CRYPTO_AUTHENC=y 1221 + # CONFIG_CRYPTO_TEST is not set 1222 + 1223 + # 1224 + # Authenticated Encryption with Associated Data 1225 + # 1226 + # CONFIG_CRYPTO_CCM is not set 1227 + # CONFIG_CRYPTO_GCM is not set 1228 + # CONFIG_CRYPTO_SEQIV is not set 1229 + 1230 + # 1231 + # Block modes 1232 + # 1233 + CONFIG_CRYPTO_CBC=y 1234 + # CONFIG_CRYPTO_CTR is not set 1235 + # CONFIG_CRYPTO_CTS is not set 1236 + CONFIG_CRYPTO_ECB=m 1237 + # CONFIG_CRYPTO_LRW is not set 1238 + # CONFIG_CRYPTO_PCBC is not set 1239 + # CONFIG_CRYPTO_XTS is not set 1240 + 1241 + # 1242 + # Hash modes 1243 + # 1420 1244 CONFIG_CRYPTO_HMAC=y 1421 1245 # CONFIG_CRYPTO_XCBC is not set 1422 - # CONFIG_CRYPTO_NULL is not set 1246 + # CONFIG_CRYPTO_VMAC is not set 1247 + 1248 + # 1249 + # Digest 1250 + # 1251 + # CONFIG_CRYPTO_CRC32C is not set 1252 + # CONFIG_CRYPTO_GHASH is not set 1423 1253 # CONFIG_CRYPTO_MD4 is not set 1424 1254 CONFIG_CRYPTO_MD5=y 1255 + # CONFIG_CRYPTO_MICHAEL_MIC is not set 1256 + # CONFIG_CRYPTO_RMD128 is not set 1257 + # CONFIG_CRYPTO_RMD160 is not set 1258 + # CONFIG_CRYPTO_RMD256 is not set 1259 + # CONFIG_CRYPTO_RMD320 is not set 1425 1260 CONFIG_CRYPTO_SHA1=y 1426 1261 # CONFIG_CRYPTO_SHA256 is not set 1427 1262 # CONFIG_CRYPTO_SHA512 is not set 1428 - # CONFIG_CRYPTO_WP512 is not set 1429 1263 # CONFIG_CRYPTO_TGR192 is not set 1430 - # CONFIG_CRYPTO_GF128MUL is not set 1431 - CONFIG_CRYPTO_ECB=m 1432 - CONFIG_CRYPTO_CBC=y 1433 - # CONFIG_CRYPTO_PCBC is not set 1434 - # CONFIG_CRYPTO_LRW is not set 1435 - # CONFIG_CRYPTO_XTS is not set 1436 - # CONFIG_CRYPTO_CTR is not set 1437 - # CONFIG_CRYPTO_GCM is not set 1438 - # CONFIG_CRYPTO_CCM is not set 1439 - # CONFIG_CRYPTO_CRYPTD is not set 1440 - CONFIG_CRYPTO_DES=y 1441 - # CONFIG_CRYPTO_FCRYPT is not set 1264 + # CONFIG_CRYPTO_WP512 is not set 1265 + 1266 + # 1267 + # Ciphers 1268 + # 1269 + CONFIG_CRYPTO_AES=m 1270 + # CONFIG_CRYPTO_ANUBIS is not set 1271 + CONFIG_CRYPTO_ARC4=m 1442 1272 # CONFIG_CRYPTO_BLOWFISH is not set 1443 - # CONFIG_CRYPTO_TWOFISH is not set 1444 - # CONFIG_CRYPTO_SERPENT is not set 1445 - # CONFIG_CRYPTO_AES is not set 1273 + # CONFIG_CRYPTO_CAMELLIA is not set 1446 1274 # CONFIG_CRYPTO_CAST5 is not set 1447 1275 # CONFIG_CRYPTO_CAST6 is not set 1448 - # CONFIG_CRYPTO_TEA is not set 1449 - CONFIG_CRYPTO_ARC4=m 1276 + CONFIG_CRYPTO_DES=y 1277 + # CONFIG_CRYPTO_FCRYPT is not set 1450 1278 # CONFIG_CRYPTO_KHAZAD is not set 1451 - # CONFIG_CRYPTO_ANUBIS is not set 1452 - # CONFIG_CRYPTO_SEED is not set 1453 1279 # CONFIG_CRYPTO_SALSA20 is not set 1280 + # CONFIG_CRYPTO_SEED is not set 1281 + # CONFIG_CRYPTO_SERPENT is not set 1282 + # CONFIG_CRYPTO_TEA is not set 1283 + # CONFIG_CRYPTO_TWOFISH is not set 1284 + 1285 + # 1286 + # Compression 1287 + # 1454 1288 CONFIG_CRYPTO_DEFLATE=y 1455 - # CONFIG_CRYPTO_MICHAEL_MIC is not set 1456 - # CONFIG_CRYPTO_CRC32C is not set 1457 - # CONFIG_CRYPTO_CAMELLIA is not set 1458 - # CONFIG_CRYPTO_TEST is not set 1459 - CONFIG_CRYPTO_AUTHENC=y 1289 + # CONFIG_CRYPTO_ZLIB is not set 1460 1290 CONFIG_CRYPTO_LZO=y 1291 + 1292 + # 1293 + # Random Number Generation 1294 + # 1295 + CONFIG_CRYPTO_ANSI_CPRNG=m 1461 1296 CONFIG_CRYPTO_HW=y 1297 + CONFIG_BINARY_PRINTF=y 1462 1298 1463 1299 # 1464 1300 # Library routines 1465 1301 # 1466 1302 CONFIG_BITREVERSE=y 1303 + CONFIG_GENERIC_FIND_LAST_BIT=y 1467 1304 CONFIG_CRC_CCITT=m 1468 1305 CONFIG_CRC16=y 1306 + # CONFIG_CRC_T10DIF is not set 1469 1307 # CONFIG_CRC_ITU_T is not set 1470 1308 CONFIG_CRC32=y 1471 1309 # CONFIG_CRC7 is not set ··· 1529 1257 CONFIG_ZLIB_DEFLATE=y 1530 1258 CONFIG_LZO_COMPRESS=y 1531 1259 CONFIG_LZO_DECOMPRESS=y 1260 + CONFIG_DECOMPRESS_GZIP=y 1532 1261 CONFIG_GENERIC_ALLOCATOR=y 1533 - CONFIG_PLIST=y 1534 1262 CONFIG_HAS_IOMEM=y 1535 1263 CONFIG_HAS_IOPORT=y 1536 1264 CONFIG_HAS_DMA=y 1265 + CONFIG_NLATTR=y
+1414
arch/avr32/configs/atngw100mkii_defconfig
··· 1 + # 2 + # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Nov 5 15:32:26 2009 5 + # 6 + CONFIG_AVR32=y 7 + CONFIG_GENERIC_GPIO=y 8 + CONFIG_GENERIC_HARDIRQS=y 9 + CONFIG_STACKTRACE_SUPPORT=y 10 + CONFIG_LOCKDEP_SUPPORT=y 11 + CONFIG_TRACE_IRQFLAGS_SUPPORT=y 12 + CONFIG_HARDIRQS_SW_RESEND=y 13 + CONFIG_GENERIC_IRQ_PROBE=y 14 + CONFIG_RWSEM_GENERIC_SPINLOCK=y 15 + CONFIG_GENERIC_TIME=y 16 + CONFIG_GENERIC_CLOCKEVENTS=y 17 + # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set 18 + # CONFIG_ARCH_HAS_ILOG2_U32 is not set 19 + # CONFIG_ARCH_HAS_ILOG2_U64 is not set 20 + CONFIG_GENERIC_HWEIGHT=y 21 + CONFIG_GENERIC_CALIBRATE_DELAY=y 22 + CONFIG_GENERIC_BUG=y 23 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 25 + 26 + # 27 + # General setup 28 + # 29 + CONFIG_EXPERIMENTAL=y 30 + CONFIG_BROKEN_ON_SMP=y 31 + CONFIG_INIT_ENV_ARG_LIMIT=32 32 + CONFIG_LOCALVERSION="" 33 + # CONFIG_LOCALVERSION_AUTO is not set 34 + CONFIG_SWAP=y 35 + CONFIG_SYSVIPC=y 36 + CONFIG_SYSVIPC_SYSCTL=y 37 + CONFIG_POSIX_MQUEUE=y 38 + CONFIG_POSIX_MQUEUE_SYSCTL=y 39 + CONFIG_BSD_PROCESS_ACCT=y 40 + CONFIG_BSD_PROCESS_ACCT_V3=y 41 + # CONFIG_TASKSTATS is not set 42 + # CONFIG_AUDIT is not set 43 + 44 + # 45 + # RCU Subsystem 46 + # 47 + CONFIG_TREE_RCU=y 48 + # CONFIG_TREE_PREEMPT_RCU is not set 49 + # CONFIG_RCU_TRACE is not set 50 + CONFIG_RCU_FANOUT=32 51 + # CONFIG_RCU_FANOUT_EXACT is not set 52 + # CONFIG_TREE_RCU_TRACE is not set 53 + # CONFIG_IKCONFIG is not set 54 + CONFIG_LOG_BUF_SHIFT=14 55 + # CONFIG_GROUP_SCHED is not set 56 + # CONFIG_CGROUPS is not set 57 + CONFIG_SYSFS_DEPRECATED=y 58 + CONFIG_SYSFS_DEPRECATED_V2=y 59 + # CONFIG_RELAY is not set 60 + # CONFIG_NAMESPACES is not set 61 + CONFIG_BLK_DEV_INITRD=y 62 + CONFIG_INITRAMFS_SOURCE="" 63 + CONFIG_RD_GZIP=y 64 + # CONFIG_RD_BZIP2 is not set 65 + # CONFIG_RD_LZMA is not set 66 + CONFIG_CC_OPTIMIZE_FOR_SIZE=y 67 + CONFIG_SYSCTL=y 68 + CONFIG_ANON_INODES=y 69 + CONFIG_EMBEDDED=y 70 + # CONFIG_SYSCTL_SYSCALL is not set 71 + CONFIG_KALLSYMS=y 72 + # CONFIG_KALLSYMS_ALL is not set 73 + # CONFIG_KALLSYMS_EXTRA_PASS is not set 74 + CONFIG_HOTPLUG=y 75 + CONFIG_PRINTK=y 76 + CONFIG_BUG=y 77 + CONFIG_ELF_CORE=y 78 + # CONFIG_BASE_FULL is not set 79 + CONFIG_FUTEX=y 80 + CONFIG_EPOLL=y 81 + CONFIG_SIGNALFD=y 82 + CONFIG_TIMERFD=y 83 + CONFIG_EVENTFD=y 84 + CONFIG_SHMEM=y 85 + CONFIG_AIO=y 86 + 87 + # 88 + # Kernel Performance Events And Counters 89 + # 90 + CONFIG_VM_EVENT_COUNTERS=y 91 + CONFIG_SLUB_DEBUG=y 92 + # CONFIG_COMPAT_BRK is not set 93 + # CONFIG_SLAB is not set 94 + CONFIG_SLUB=y 95 + # CONFIG_SLOB is not set 96 + CONFIG_PROFILING=y 97 + CONFIG_TRACEPOINTS=y 98 + CONFIG_OPROFILE=m 99 + CONFIG_HAVE_OPROFILE=y 100 + CONFIG_KPROBES=y 101 + CONFIG_HAVE_KPROBES=y 102 + CONFIG_HAVE_CLK=y 103 + 104 + # 105 + # GCOV-based kernel profiling 106 + # 107 + # CONFIG_GCOV_KERNEL is not set 108 + CONFIG_SLOW_WORK=y 109 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 110 + CONFIG_SLABINFO=y 111 + CONFIG_RT_MUTEXES=y 112 + CONFIG_BASE_SMALL=1 113 + CONFIG_MODULES=y 114 + # CONFIG_MODULE_FORCE_LOAD is not set 115 + CONFIG_MODULE_UNLOAD=y 116 + CONFIG_MODULE_FORCE_UNLOAD=y 117 + # CONFIG_MODVERSIONS is not set 118 + # CONFIG_MODULE_SRCVERSION_ALL is not set 119 + CONFIG_BLOCK=y 120 + CONFIG_LBDAF=y 121 + # CONFIG_BLK_DEV_BSG is not set 122 + # CONFIG_BLK_DEV_INTEGRITY is not set 123 + 124 + # 125 + # IO Schedulers 126 + # 127 + CONFIG_IOSCHED_NOOP=y 128 + # CONFIG_IOSCHED_AS is not set 129 + # CONFIG_IOSCHED_DEADLINE is not set 130 + CONFIG_IOSCHED_CFQ=y 131 + # CONFIG_DEFAULT_AS is not set 132 + # CONFIG_DEFAULT_DEADLINE is not set 133 + CONFIG_DEFAULT_CFQ=y 134 + # CONFIG_DEFAULT_NOOP is not set 135 + CONFIG_DEFAULT_IOSCHED="cfq" 136 + CONFIG_FREEZER=y 137 + 138 + # 139 + # System Type and features 140 + # 141 + CONFIG_TICK_ONESHOT=y 142 + CONFIG_NO_HZ=y 143 + CONFIG_HIGH_RES_TIMERS=y 144 + CONFIG_GENERIC_CLOCKEVENTS_BUILD=y 145 + CONFIG_SUBARCH_AVR32B=y 146 + CONFIG_MMU=y 147 + CONFIG_PERFORMANCE_COUNTERS=y 148 + CONFIG_PLATFORM_AT32AP=y 149 + CONFIG_CPU_AT32AP700X=y 150 + CONFIG_CPU_AT32AP7000=y 151 + CONFIG_BOARD_ATNGW100_COMMON=y 152 + # CONFIG_BOARD_ATSTK1000 is not set 153 + # CONFIG_BOARD_ATNGW100_MKI is not set 154 + CONFIG_BOARD_ATNGW100_MKII=y 155 + # CONFIG_BOARD_HAMMERHEAD is not set 156 + # CONFIG_BOARD_FAVR_32 is not set 157 + # CONFIG_BOARD_MERISC is not set 158 + # CONFIG_BOARD_MIMC200 is not set 159 + # CONFIG_BOARD_ATNGW100_MKII_LCD is not set 160 + CONFIG_BOARD_ATNGW100_ADDON_NONE=y 161 + # CONFIG_BOARD_ATNGW100_EVKLCD10X is not set 162 + # CONFIG_BOARD_ATNGW100_MRMT is not set 163 + CONFIG_LOADER_U_BOOT=y 164 + 165 + # 166 + # Atmel AVR32 AP options 167 + # 168 + # CONFIG_AP700X_32_BIT_SMC is not set 169 + CONFIG_AP700X_16_BIT_SMC=y 170 + # CONFIG_AP700X_8_BIT_SMC is not set 171 + CONFIG_LOAD_ADDRESS=0x10000000 172 + CONFIG_ENTRY_ADDRESS=0x90000000 173 + CONFIG_PHYS_OFFSET=0x10000000 174 + CONFIG_PREEMPT_NONE=y 175 + # CONFIG_PREEMPT_VOLUNTARY is not set 176 + # CONFIG_PREEMPT is not set 177 + CONFIG_QUICKLIST=y 178 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 179 + # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 180 + # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 181 + CONFIG_ARCH_FLATMEM_ENABLE=y 182 + # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set 183 + # CONFIG_ARCH_SPARSEMEM_ENABLE is not set 184 + CONFIG_SELECT_MEMORY_MODEL=y 185 + CONFIG_FLATMEM_MANUAL=y 186 + # CONFIG_DISCONTIGMEM_MANUAL is not set 187 + # CONFIG_SPARSEMEM_MANUAL is not set 188 + CONFIG_FLATMEM=y 189 + CONFIG_FLAT_NODE_MEM_MAP=y 190 + CONFIG_PAGEFLAGS_EXTENDED=y 191 + CONFIG_SPLIT_PTLOCK_CPUS=4 192 + # CONFIG_PHYS_ADDR_T_64BIT is not set 193 + CONFIG_ZONE_DMA_FLAG=0 194 + CONFIG_NR_QUICK=2 195 + CONFIG_VIRT_TO_BUS=y 196 + CONFIG_HAVE_MLOCK=y 197 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 198 + # CONFIG_KSM is not set 199 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 200 + # CONFIG_OWNERSHIP_TRACE is not set 201 + CONFIG_NMI_DEBUGGING=y 202 + # CONFIG_HZ_100 is not set 203 + CONFIG_HZ_250=y 204 + # CONFIG_HZ_300 is not set 205 + # CONFIG_HZ_1000 is not set 206 + CONFIG_HZ=250 207 + CONFIG_SCHED_HRTICK=y 208 + CONFIG_CMDLINE="" 209 + 210 + # 211 + # Power management options 212 + # 213 + CONFIG_PM=y 214 + # CONFIG_PM_DEBUG is not set 215 + CONFIG_PM_SLEEP=y 216 + CONFIG_SUSPEND=y 217 + CONFIG_SUSPEND_FREEZER=y 218 + # CONFIG_PM_RUNTIME is not set 219 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 220 + 221 + # 222 + # CPU Frequency scaling 223 + # 224 + CONFIG_CPU_FREQ=y 225 + CONFIG_CPU_FREQ_TABLE=y 226 + # CONFIG_CPU_FREQ_DEBUG is not set 227 + # CONFIG_CPU_FREQ_STAT is not set 228 + # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 229 + # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 230 + # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 231 + CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y 232 + # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set 233 + CONFIG_CPU_FREQ_GOV_PERFORMANCE=y 234 + # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set 235 + CONFIG_CPU_FREQ_GOV_USERSPACE=y 236 + CONFIG_CPU_FREQ_GOV_ONDEMAND=y 237 + # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set 238 + CONFIG_CPU_FREQ_AT32AP=y 239 + 240 + # 241 + # Bus options 242 + # 243 + # CONFIG_ARCH_SUPPORTS_MSI is not set 244 + # CONFIG_PCCARD is not set 245 + 246 + # 247 + # Executable file formats 248 + # 249 + CONFIG_BINFMT_ELF=y 250 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 251 + # CONFIG_HAVE_AOUT is not set 252 + # CONFIG_BINFMT_MISC is not set 253 + CONFIG_NET=y 254 + 255 + # 256 + # Networking options 257 + # 258 + CONFIG_PACKET=y 259 + CONFIG_PACKET_MMAP=y 260 + CONFIG_UNIX=y 261 + CONFIG_XFRM=y 262 + CONFIG_XFRM_USER=y 263 + # CONFIG_XFRM_SUB_POLICY is not set 264 + # CONFIG_XFRM_MIGRATE is not set 265 + # CONFIG_XFRM_STATISTICS is not set 266 + CONFIG_XFRM_IPCOMP=y 267 + CONFIG_NET_KEY=y 268 + # CONFIG_NET_KEY_MIGRATE is not set 269 + CONFIG_INET=y 270 + CONFIG_IP_MULTICAST=y 271 + CONFIG_IP_ADVANCED_ROUTER=y 272 + CONFIG_ASK_IP_FIB_HASH=y 273 + # CONFIG_IP_FIB_TRIE is not set 274 + CONFIG_IP_FIB_HASH=y 275 + # CONFIG_IP_MULTIPLE_TABLES is not set 276 + # CONFIG_IP_ROUTE_MULTIPATH is not set 277 + # CONFIG_IP_ROUTE_VERBOSE is not set 278 + CONFIG_IP_PNP=y 279 + CONFIG_IP_PNP_DHCP=y 280 + # CONFIG_IP_PNP_BOOTP is not set 281 + # CONFIG_IP_PNP_RARP is not set 282 + # CONFIG_NET_IPIP is not set 283 + # CONFIG_NET_IPGRE is not set 284 + CONFIG_IP_MROUTE=y 285 + CONFIG_IP_PIMSM_V1=y 286 + # CONFIG_IP_PIMSM_V2 is not set 287 + # CONFIG_ARPD is not set 288 + CONFIG_SYN_COOKIES=y 289 + CONFIG_INET_AH=y 290 + CONFIG_INET_ESP=y 291 + CONFIG_INET_IPCOMP=y 292 + CONFIG_INET_XFRM_TUNNEL=y 293 + CONFIG_INET_TUNNEL=y 294 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 295 + CONFIG_INET_XFRM_MODE_TUNNEL=y 296 + CONFIG_INET_XFRM_MODE_BEET=y 297 + # CONFIG_INET_LRO is not set 298 + CONFIG_INET_DIAG=y 299 + CONFIG_INET_TCP_DIAG=y 300 + # CONFIG_TCP_CONG_ADVANCED is not set 301 + CONFIG_TCP_CONG_CUBIC=y 302 + CONFIG_DEFAULT_TCP_CONG="cubic" 303 + # CONFIG_TCP_MD5SIG is not set 304 + CONFIG_IPV6=y 305 + # CONFIG_IPV6_PRIVACY is not set 306 + # CONFIG_IPV6_ROUTER_PREF is not set 307 + # CONFIG_IPV6_OPTIMISTIC_DAD is not set 308 + CONFIG_INET6_AH=y 309 + CONFIG_INET6_ESP=y 310 + CONFIG_INET6_IPCOMP=y 311 + # CONFIG_IPV6_MIP6 is not set 312 + CONFIG_INET6_XFRM_TUNNEL=y 313 + CONFIG_INET6_TUNNEL=y 314 + CONFIG_INET6_XFRM_MODE_TRANSPORT=y 315 + CONFIG_INET6_XFRM_MODE_TUNNEL=y 316 + CONFIG_INET6_XFRM_MODE_BEET=y 317 + # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set 318 + CONFIG_IPV6_SIT=y 319 + CONFIG_IPV6_NDISC_NODETYPE=y 320 + # CONFIG_IPV6_TUNNEL is not set 321 + # CONFIG_IPV6_MULTIPLE_TABLES is not set 322 + # CONFIG_IPV6_MROUTE is not set 323 + # CONFIG_NETWORK_SECMARK is not set 324 + CONFIG_NETFILTER=y 325 + # CONFIG_NETFILTER_DEBUG is not set 326 + # CONFIG_NETFILTER_ADVANCED is not set 327 + 328 + # 329 + # Core Netfilter Configuration 330 + # 331 + CONFIG_NETFILTER_NETLINK=m 332 + CONFIG_NETFILTER_NETLINK_LOG=m 333 + CONFIG_NF_CONNTRACK=m 334 + CONFIG_NF_CONNTRACK_FTP=m 335 + CONFIG_NF_CONNTRACK_IRC=m 336 + CONFIG_NF_CONNTRACK_SIP=m 337 + CONFIG_NF_CT_NETLINK=m 338 + CONFIG_NETFILTER_XTABLES=y 339 + CONFIG_NETFILTER_XT_TARGET_MARK=m 340 + CONFIG_NETFILTER_XT_TARGET_NFLOG=m 341 + CONFIG_NETFILTER_XT_TARGET_TCPMSS=m 342 + CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m 343 + CONFIG_NETFILTER_XT_MATCH_MARK=m 344 + CONFIG_NETFILTER_XT_MATCH_POLICY=m 345 + CONFIG_NETFILTER_XT_MATCH_STATE=m 346 + # CONFIG_IP_VS is not set 347 + 348 + # 349 + # IP: Netfilter Configuration 350 + # 351 + CONFIG_NF_DEFRAG_IPV4=m 352 + CONFIG_NF_CONNTRACK_IPV4=m 353 + CONFIG_NF_CONNTRACK_PROC_COMPAT=y 354 + CONFIG_IP_NF_IPTABLES=m 355 + CONFIG_IP_NF_FILTER=m 356 + CONFIG_IP_NF_TARGET_REJECT=m 357 + CONFIG_IP_NF_TARGET_LOG=m 358 + # CONFIG_IP_NF_TARGET_ULOG is not set 359 + CONFIG_NF_NAT=m 360 + CONFIG_NF_NAT_NEEDED=y 361 + CONFIG_IP_NF_TARGET_MASQUERADE=m 362 + CONFIG_NF_NAT_FTP=m 363 + CONFIG_NF_NAT_IRC=m 364 + # CONFIG_NF_NAT_TFTP is not set 365 + # CONFIG_NF_NAT_AMANDA is not set 366 + # CONFIG_NF_NAT_PPTP is not set 367 + # CONFIG_NF_NAT_H323 is not set 368 + CONFIG_NF_NAT_SIP=m 369 + CONFIG_IP_NF_MANGLE=m 370 + 371 + # 372 + # IPv6: Netfilter Configuration 373 + # 374 + CONFIG_NF_CONNTRACK_IPV6=m 375 + CONFIG_IP6_NF_IPTABLES=m 376 + CONFIG_IP6_NF_MATCH_IPV6HEADER=m 377 + CONFIG_IP6_NF_TARGET_LOG=m 378 + CONFIG_IP6_NF_FILTER=m 379 + CONFIG_IP6_NF_TARGET_REJECT=m 380 + CONFIG_IP6_NF_MANGLE=m 381 + # CONFIG_IP_DCCP is not set 382 + # CONFIG_IP_SCTP is not set 383 + # CONFIG_RDS is not set 384 + # CONFIG_TIPC is not set 385 + # CONFIG_ATM is not set 386 + CONFIG_STP=m 387 + CONFIG_BRIDGE=m 388 + # CONFIG_NET_DSA is not set 389 + CONFIG_VLAN_8021Q=m 390 + # CONFIG_VLAN_8021Q_GVRP is not set 391 + # CONFIG_DECNET is not set 392 + CONFIG_LLC=m 393 + # CONFIG_LLC2 is not set 394 + # CONFIG_IPX is not set 395 + # CONFIG_ATALK is not set 396 + # CONFIG_X25 is not set 397 + # CONFIG_LAPB is not set 398 + # CONFIG_ECONET is not set 399 + # CONFIG_WAN_ROUTER is not set 400 + # CONFIG_PHONET is not set 401 + # CONFIG_IEEE802154 is not set 402 + # CONFIG_NET_SCHED is not set 403 + # CONFIG_DCB is not set 404 + 405 + # 406 + # Network testing 407 + # 408 + # CONFIG_NET_PKTGEN is not set 409 + # CONFIG_NET_TCPPROBE is not set 410 + # CONFIG_NET_DROP_MONITOR is not set 411 + # CONFIG_HAMRADIO is not set 412 + # CONFIG_CAN is not set 413 + # CONFIG_IRDA is not set 414 + # CONFIG_BT is not set 415 + # CONFIG_AF_RXRPC is not set 416 + CONFIG_WIRELESS=y 417 + # CONFIG_CFG80211 is not set 418 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 419 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 420 + # CONFIG_WIRELESS_EXT is not set 421 + # CONFIG_LIB80211 is not set 422 + 423 + # 424 + # CFG80211 needs to be enabled for MAC80211 425 + # 426 + # CONFIG_WIMAX is not set 427 + # CONFIG_RFKILL is not set 428 + # CONFIG_NET_9P is not set 429 + 430 + # 431 + # Device Drivers 432 + # 433 + 434 + # 435 + # Generic Driver Options 436 + # 437 + CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 438 + # CONFIG_DEVTMPFS is not set 439 + CONFIG_STANDALONE=y 440 + # CONFIG_PREVENT_FIRMWARE_BUILD is not set 441 + # CONFIG_FW_LOADER is not set 442 + # CONFIG_DEBUG_DRIVER is not set 443 + # CONFIG_DEBUG_DEVRES is not set 444 + # CONFIG_SYS_HYPERVISOR is not set 445 + # CONFIG_CONNECTOR is not set 446 + CONFIG_MTD=y 447 + # CONFIG_MTD_DEBUG is not set 448 + # CONFIG_MTD_TESTS is not set 449 + # CONFIG_MTD_CONCAT is not set 450 + CONFIG_MTD_PARTITIONS=y 451 + # CONFIG_MTD_REDBOOT_PARTS is not set 452 + CONFIG_MTD_CMDLINE_PARTS=y 453 + # CONFIG_MTD_AR7_PARTS is not set 454 + 455 + # 456 + # User Modules And Translation Layers 457 + # 458 + CONFIG_MTD_CHAR=y 459 + CONFIG_MTD_BLKDEVS=y 460 + CONFIG_MTD_BLOCK=y 461 + # CONFIG_FTL is not set 462 + # CONFIG_NFTL is not set 463 + # CONFIG_INFTL is not set 464 + # CONFIG_RFD_FTL is not set 465 + # CONFIG_SSFDC is not set 466 + # CONFIG_MTD_OOPS is not set 467 + 468 + # 469 + # RAM/ROM/Flash chip drivers 470 + # 471 + CONFIG_MTD_CFI=y 472 + # CONFIG_MTD_JEDECPROBE is not set 473 + CONFIG_MTD_GEN_PROBE=y 474 + # CONFIG_MTD_CFI_ADV_OPTIONS is not set 475 + CONFIG_MTD_MAP_BANK_WIDTH_1=y 476 + CONFIG_MTD_MAP_BANK_WIDTH_2=y 477 + CONFIG_MTD_MAP_BANK_WIDTH_4=y 478 + # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set 479 + # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set 480 + # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set 481 + CONFIG_MTD_CFI_I1=y 482 + CONFIG_MTD_CFI_I2=y 483 + # CONFIG_MTD_CFI_I4 is not set 484 + # CONFIG_MTD_CFI_I8 is not set 485 + CONFIG_MTD_CFI_INTELEXT=y 486 + # CONFIG_MTD_CFI_AMDSTD is not set 487 + # CONFIG_MTD_CFI_STAA is not set 488 + CONFIG_MTD_CFI_UTIL=y 489 + # CONFIG_MTD_RAM is not set 490 + # CONFIG_MTD_ROM is not set 491 + # CONFIG_MTD_ABSENT is not set 492 + 493 + # 494 + # Mapping drivers for chip access 495 + # 496 + # CONFIG_MTD_COMPLEX_MAPPINGS is not set 497 + CONFIG_MTD_PHYSMAP=y 498 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 499 + # CONFIG_MTD_PLATRAM is not set 500 + 501 + # 502 + # Self-contained MTD device drivers 503 + # 504 + CONFIG_MTD_DATAFLASH=y 505 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 506 + # CONFIG_MTD_DATAFLASH_OTP is not set 507 + # CONFIG_MTD_M25P80 is not set 508 + # CONFIG_MTD_SST25L is not set 509 + # CONFIG_MTD_SLRAM is not set 510 + # CONFIG_MTD_PHRAM is not set 511 + # CONFIG_MTD_MTDRAM is not set 512 + # CONFIG_MTD_BLOCK2MTD is not set 513 + 514 + # 515 + # Disk-On-Chip Device Drivers 516 + # 517 + # CONFIG_MTD_DOC2000 is not set 518 + # CONFIG_MTD_DOC2001 is not set 519 + # CONFIG_MTD_DOC2001PLUS is not set 520 + CONFIG_MTD_NAND=y 521 + # CONFIG_MTD_NAND_VERIFY_WRITE is not set 522 + # CONFIG_MTD_NAND_ECC_SMC is not set 523 + # CONFIG_MTD_NAND_MUSEUM_IDS is not set 524 + CONFIG_MTD_NAND_IDS=y 525 + # CONFIG_MTD_NAND_DISKONCHIP is not set 526 + CONFIG_MTD_NAND_ATMEL=y 527 + CONFIG_MTD_NAND_ATMEL_ECC_HW=y 528 + # CONFIG_MTD_NAND_ATMEL_ECC_SOFT is not set 529 + # CONFIG_MTD_NAND_ATMEL_ECC_NONE is not set 530 + # CONFIG_MTD_NAND_NANDSIM is not set 531 + # CONFIG_MTD_NAND_PLATFORM is not set 532 + # CONFIG_MTD_ONENAND is not set 533 + 534 + # 535 + # LPDDR flash memory drivers 536 + # 537 + # CONFIG_MTD_LPDDR is not set 538 + 539 + # 540 + # UBI - Unsorted block images 541 + # 542 + CONFIG_MTD_UBI=y 543 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 544 + CONFIG_MTD_UBI_BEB_RESERVE=1 545 + # CONFIG_MTD_UBI_GLUEBI is not set 546 + 547 + # 548 + # UBI debugging options 549 + # 550 + # CONFIG_MTD_UBI_DEBUG is not set 551 + # CONFIG_PARPORT is not set 552 + CONFIG_BLK_DEV=y 553 + # CONFIG_BLK_DEV_COW_COMMON is not set 554 + CONFIG_BLK_DEV_LOOP=m 555 + # CONFIG_BLK_DEV_CRYPTOLOOP is not set 556 + CONFIG_BLK_DEV_NBD=m 557 + CONFIG_BLK_DEV_RAM=m 558 + CONFIG_BLK_DEV_RAM_COUNT=16 559 + CONFIG_BLK_DEV_RAM_SIZE=4096 560 + # CONFIG_BLK_DEV_XIP is not set 561 + # CONFIG_CDROM_PKTCDVD is not set 562 + # CONFIG_ATA_OVER_ETH is not set 563 + CONFIG_MISC_DEVICES=y 564 + # CONFIG_ATMEL_PWM is not set 565 + CONFIG_ATMEL_TCLIB=y 566 + CONFIG_ATMEL_TCB_CLKSRC=y 567 + CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 568 + # CONFIG_ICS932S401 is not set 569 + # CONFIG_ATMEL_SSC is not set 570 + # CONFIG_ENCLOSURE_SERVICES is not set 571 + # CONFIG_ISL29003 is not set 572 + # CONFIG_C2PORT is not set 573 + 574 + # 575 + # EEPROM support 576 + # 577 + # CONFIG_EEPROM_AT24 is not set 578 + # CONFIG_EEPROM_AT25 is not set 579 + # CONFIG_EEPROM_LEGACY is not set 580 + # CONFIG_EEPROM_MAX6875 is not set 581 + # CONFIG_EEPROM_93CX6 is not set 582 + 583 + # 584 + # SCSI device support 585 + # 586 + # CONFIG_RAID_ATTRS is not set 587 + # CONFIG_SCSI is not set 588 + # CONFIG_SCSI_DMA is not set 589 + # CONFIG_SCSI_NETLINK is not set 590 + # CONFIG_ATA is not set 591 + # CONFIG_MD is not set 592 + CONFIG_NETDEVICES=y 593 + # CONFIG_DUMMY is not set 594 + # CONFIG_BONDING is not set 595 + # CONFIG_MACVLAN is not set 596 + # CONFIG_EQUALIZER is not set 597 + CONFIG_TUN=m 598 + # CONFIG_VETH is not set 599 + CONFIG_PHYLIB=y 600 + 601 + # 602 + # MII PHY device drivers 603 + # 604 + # CONFIG_MARVELL_PHY is not set 605 + # CONFIG_DAVICOM_PHY is not set 606 + # CONFIG_QSEMI_PHY is not set 607 + # CONFIG_LXT_PHY is not set 608 + # CONFIG_CICADA_PHY is not set 609 + # CONFIG_VITESSE_PHY is not set 610 + # CONFIG_SMSC_PHY is not set 611 + # CONFIG_BROADCOM_PHY is not set 612 + # CONFIG_ICPLUS_PHY is not set 613 + # CONFIG_REALTEK_PHY is not set 614 + # CONFIG_NATIONAL_PHY is not set 615 + # CONFIG_STE10XP is not set 616 + # CONFIG_LSI_ET1011C_PHY is not set 617 + # CONFIG_FIXED_PHY is not set 618 + # CONFIG_MDIO_BITBANG is not set 619 + CONFIG_NET_ETHERNET=y 620 + # CONFIG_MII is not set 621 + CONFIG_MACB=y 622 + # CONFIG_ENC28J60 is not set 623 + # CONFIG_ETHOC is not set 624 + # CONFIG_DNET is not set 625 + # CONFIG_IBM_NEW_EMAC_ZMII is not set 626 + # CONFIG_IBM_NEW_EMAC_RGMII is not set 627 + # CONFIG_IBM_NEW_EMAC_TAH is not set 628 + # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 629 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 630 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 631 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 632 + # CONFIG_B44 is not set 633 + # CONFIG_KS8842 is not set 634 + # CONFIG_KS8851 is not set 635 + # CONFIG_KS8851_MLL is not set 636 + # CONFIG_NETDEV_1000 is not set 637 + # CONFIG_NETDEV_10000 is not set 638 + CONFIG_WLAN=y 639 + # CONFIG_WLAN_PRE80211 is not set 640 + # CONFIG_WLAN_80211 is not set 641 + 642 + # 643 + # Enable WiMAX (Networking options) to see the WiMAX drivers 644 + # 645 + # CONFIG_WAN is not set 646 + CONFIG_PPP=m 647 + # CONFIG_PPP_MULTILINK is not set 648 + CONFIG_PPP_FILTER=y 649 + CONFIG_PPP_ASYNC=m 650 + # CONFIG_PPP_SYNC_TTY is not set 651 + CONFIG_PPP_DEFLATE=m 652 + CONFIG_PPP_BSDCOMP=m 653 + CONFIG_PPP_MPPE=m 654 + CONFIG_PPPOE=m 655 + # CONFIG_PPPOL2TP is not set 656 + # CONFIG_SLIP is not set 657 + CONFIG_SLHC=m 658 + # CONFIG_NETCONSOLE is not set 659 + # CONFIG_NETPOLL is not set 660 + # CONFIG_NET_POLL_CONTROLLER is not set 661 + # CONFIG_ISDN is not set 662 + # CONFIG_PHONE is not set 663 + 664 + # 665 + # Input device support 666 + # 667 + # CONFIG_INPUT is not set 668 + 669 + # 670 + # Hardware I/O ports 671 + # 672 + # CONFIG_SERIO is not set 673 + # CONFIG_GAMEPORT is not set 674 + 675 + # 676 + # Character devices 677 + # 678 + # CONFIG_VT is not set 679 + # CONFIG_DEVKMEM is not set 680 + # CONFIG_SERIAL_NONSTANDARD is not set 681 + 682 + # 683 + # Serial drivers 684 + # 685 + # CONFIG_SERIAL_8250 is not set 686 + 687 + # 688 + # Non-8250 serial port support 689 + # 690 + CONFIG_SERIAL_ATMEL=y 691 + CONFIG_SERIAL_ATMEL_CONSOLE=y 692 + CONFIG_SERIAL_ATMEL_PDC=y 693 + # CONFIG_SERIAL_ATMEL_TTYAT is not set 694 + # CONFIG_SERIAL_MAX3100 is not set 695 + CONFIG_SERIAL_CORE=y 696 + CONFIG_SERIAL_CORE_CONSOLE=y 697 + CONFIG_UNIX98_PTYS=y 698 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 699 + # CONFIG_LEGACY_PTYS is not set 700 + # CONFIG_IPMI_HANDLER is not set 701 + # CONFIG_HW_RANDOM is not set 702 + # CONFIG_R3964 is not set 703 + # CONFIG_RAW_DRIVER is not set 704 + # CONFIG_TCG_TPM is not set 705 + CONFIG_I2C=m 706 + CONFIG_I2C_BOARDINFO=y 707 + CONFIG_I2C_COMPAT=y 708 + CONFIG_I2C_CHARDEV=m 709 + CONFIG_I2C_HELPER_AUTO=y 710 + CONFIG_I2C_ALGOBIT=m 711 + 712 + # 713 + # I2C Hardware Bus support 714 + # 715 + 716 + # 717 + # I2C system bus drivers (mostly embedded / system-on-chip) 718 + # 719 + # CONFIG_I2C_DESIGNWARE is not set 720 + CONFIG_I2C_GPIO=m 721 + # CONFIG_I2C_OCORES is not set 722 + # CONFIG_I2C_SIMTEC is not set 723 + 724 + # 725 + # External I2C/SMBus adapter drivers 726 + # 727 + # CONFIG_I2C_PARPORT_LIGHT is not set 728 + # CONFIG_I2C_TAOS_EVM is not set 729 + 730 + # 731 + # Other I2C/SMBus bus drivers 732 + # 733 + # CONFIG_I2C_PCA_PLATFORM is not set 734 + # CONFIG_I2C_STUB is not set 735 + 736 + # 737 + # Miscellaneous I2C Chip support 738 + # 739 + # CONFIG_DS1682 is not set 740 + # CONFIG_SENSORS_TSL2550 is not set 741 + # CONFIG_I2C_DEBUG_CORE is not set 742 + # CONFIG_I2C_DEBUG_ALGO is not set 743 + # CONFIG_I2C_DEBUG_BUS is not set 744 + # CONFIG_I2C_DEBUG_CHIP is not set 745 + CONFIG_SPI=y 746 + # CONFIG_SPI_DEBUG is not set 747 + CONFIG_SPI_MASTER=y 748 + 749 + # 750 + # SPI Master Controller Drivers 751 + # 752 + CONFIG_SPI_ATMEL=y 753 + # CONFIG_SPI_BITBANG is not set 754 + # CONFIG_SPI_GPIO is not set 755 + 756 + # 757 + # SPI Protocol Masters 758 + # 759 + CONFIG_SPI_SPIDEV=m 760 + # CONFIG_SPI_TLE62X0 is not set 761 + 762 + # 763 + # PPS support 764 + # 765 + # CONFIG_PPS is not set 766 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 767 + CONFIG_GPIOLIB=y 768 + # CONFIG_DEBUG_GPIO is not set 769 + CONFIG_GPIO_SYSFS=y 770 + 771 + # 772 + # Memory mapped GPIO expanders: 773 + # 774 + 775 + # 776 + # I2C GPIO expanders: 777 + # 778 + # CONFIG_GPIO_MAX732X is not set 779 + # CONFIG_GPIO_PCA953X is not set 780 + # CONFIG_GPIO_PCF857X is not set 781 + 782 + # 783 + # PCI GPIO expanders: 784 + # 785 + 786 + # 787 + # SPI GPIO expanders: 788 + # 789 + # CONFIG_GPIO_MAX7301 is not set 790 + # CONFIG_GPIO_MCP23S08 is not set 791 + # CONFIG_GPIO_MC33880 is not set 792 + 793 + # 794 + # AC97 GPIO expanders: 795 + # 796 + # CONFIG_W1 is not set 797 + # CONFIG_POWER_SUPPLY is not set 798 + # CONFIG_HWMON is not set 799 + # CONFIG_THERMAL is not set 800 + CONFIG_WATCHDOG=y 801 + # CONFIG_WATCHDOG_NOWAYOUT is not set 802 + 803 + # 804 + # Watchdog Device Drivers 805 + # 806 + # CONFIG_SOFT_WATCHDOG is not set 807 + CONFIG_AT32AP700X_WDT=y 808 + CONFIG_SSB_POSSIBLE=y 809 + 810 + # 811 + # Sonics Silicon Backplane 812 + # 813 + # CONFIG_SSB is not set 814 + 815 + # 816 + # Multifunction device drivers 817 + # 818 + # CONFIG_MFD_CORE is not set 819 + # CONFIG_MFD_SM501 is not set 820 + # CONFIG_HTC_PASIC3 is not set 821 + # CONFIG_TPS65010 is not set 822 + # CONFIG_MFD_TMIO is not set 823 + # CONFIG_MFD_WM8400 is not set 824 + # CONFIG_MFD_WM831X is not set 825 + # CONFIG_MFD_WM8350_I2C is not set 826 + # CONFIG_MFD_PCF50633 is not set 827 + # CONFIG_MFD_MC13783 is not set 828 + # CONFIG_AB3100_CORE is not set 829 + # CONFIG_EZX_PCAP is not set 830 + # CONFIG_REGULATOR is not set 831 + # CONFIG_MEDIA_SUPPORT is not set 832 + 833 + # 834 + # Graphics support 835 + # 836 + # CONFIG_VGASTATE is not set 837 + # CONFIG_VIDEO_OUTPUT_CONTROL is not set 838 + # CONFIG_FB is not set 839 + # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 840 + 841 + # 842 + # Display device support 843 + # 844 + # CONFIG_DISPLAY_SUPPORT is not set 845 + # CONFIG_SOUND is not set 846 + CONFIG_USB_SUPPORT=y 847 + # CONFIG_USB_ARCH_HAS_HCD is not set 848 + # CONFIG_USB_ARCH_HAS_OHCI is not set 849 + # CONFIG_USB_ARCH_HAS_EHCI is not set 850 + # CONFIG_USB_OTG_WHITELIST is not set 851 + # CONFIG_USB_OTG_BLACKLIST_HUB is not set 852 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 853 + 854 + # 855 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 856 + # 857 + CONFIG_USB_GADGET=y 858 + # CONFIG_USB_GADGET_DEBUG is not set 859 + # CONFIG_USB_GADGET_DEBUG_FILES is not set 860 + # CONFIG_USB_GADGET_DEBUG_FS is not set 861 + CONFIG_USB_GADGET_VBUS_DRAW=2 862 + CONFIG_USB_GADGET_SELECTED=y 863 + # CONFIG_USB_GADGET_AT91 is not set 864 + CONFIG_USB_GADGET_ATMEL_USBA=y 865 + CONFIG_USB_ATMEL_USBA=y 866 + # CONFIG_USB_GADGET_FSL_USB2 is not set 867 + # CONFIG_USB_GADGET_LH7A40X is not set 868 + # CONFIG_USB_GADGET_OMAP is not set 869 + # CONFIG_USB_GADGET_PXA25X is not set 870 + # CONFIG_USB_GADGET_R8A66597 is not set 871 + # CONFIG_USB_GADGET_PXA27X is not set 872 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 873 + # CONFIG_USB_GADGET_IMX is not set 874 + # CONFIG_USB_GADGET_S3C2410 is not set 875 + # CONFIG_USB_GADGET_M66592 is not set 876 + # CONFIG_USB_GADGET_AMD5536UDC is not set 877 + # CONFIG_USB_GADGET_FSL_QE is not set 878 + # CONFIG_USB_GADGET_CI13XXX is not set 879 + # CONFIG_USB_GADGET_NET2280 is not set 880 + # CONFIG_USB_GADGET_GOKU is not set 881 + # CONFIG_USB_GADGET_LANGWELL is not set 882 + # CONFIG_USB_GADGET_DUMMY_HCD is not set 883 + CONFIG_USB_GADGET_DUALSPEED=y 884 + CONFIG_USB_ZERO=m 885 + # CONFIG_USB_AUDIO is not set 886 + CONFIG_USB_ETH=m 887 + CONFIG_USB_ETH_RNDIS=y 888 + # CONFIG_USB_ETH_EEM is not set 889 + CONFIG_USB_GADGETFS=m 890 + CONFIG_USB_FILE_STORAGE=m 891 + # CONFIG_USB_FILE_STORAGE_TEST is not set 892 + CONFIG_USB_G_SERIAL=m 893 + # CONFIG_USB_MIDI_GADGET is not set 894 + # CONFIG_USB_G_PRINTER is not set 895 + CONFIG_USB_CDC_COMPOSITE=m 896 + 897 + # 898 + # OTG and related infrastructure 899 + # 900 + # CONFIG_USB_GPIO_VBUS is not set 901 + # CONFIG_NOP_USB_XCEIV is not set 902 + CONFIG_MMC=y 903 + # CONFIG_MMC_DEBUG is not set 904 + # CONFIG_MMC_UNSAFE_RESUME is not set 905 + 906 + # 907 + # MMC/SD/SDIO Card Drivers 908 + # 909 + CONFIG_MMC_BLOCK=y 910 + CONFIG_MMC_BLOCK_BOUNCE=y 911 + # CONFIG_SDIO_UART is not set 912 + CONFIG_MMC_TEST=m 913 + 914 + # 915 + # MMC/SD/SDIO Host Controller Drivers 916 + # 917 + # CONFIG_MMC_SDHCI is not set 918 + # CONFIG_MMC_AT91 is not set 919 + CONFIG_MMC_ATMELMCI=y 920 + # CONFIG_MMC_ATMELMCI_DMA is not set 921 + CONFIG_MMC_SPI=m 922 + # CONFIG_MEMSTICK is not set 923 + CONFIG_NEW_LEDS=y 924 + CONFIG_LEDS_CLASS=y 925 + 926 + # 927 + # LED drivers 928 + # 929 + CONFIG_LEDS_GPIO=y 930 + CONFIG_LEDS_GPIO_PLATFORM=y 931 + # CONFIG_LEDS_LP3944 is not set 932 + # CONFIG_LEDS_PCA955X is not set 933 + # CONFIG_LEDS_DAC124S085 is not set 934 + # CONFIG_LEDS_BD2802 is not set 935 + 936 + # 937 + # LED Triggers 938 + # 939 + CONFIG_LEDS_TRIGGERS=y 940 + CONFIG_LEDS_TRIGGER_TIMER=y 941 + CONFIG_LEDS_TRIGGER_HEARTBEAT=y 942 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 943 + # CONFIG_LEDS_TRIGGER_GPIO is not set 944 + CONFIG_LEDS_TRIGGER_DEFAULT_ON=y 945 + 946 + # 947 + # iptables trigger is under Netfilter config (LED target) 948 + # 949 + # CONFIG_ACCESSIBILITY is not set 950 + CONFIG_RTC_LIB=y 951 + CONFIG_RTC_CLASS=y 952 + CONFIG_RTC_HCTOSYS=y 953 + CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 954 + # CONFIG_RTC_DEBUG is not set 955 + 956 + # 957 + # RTC interfaces 958 + # 959 + CONFIG_RTC_INTF_SYSFS=y 960 + CONFIG_RTC_INTF_PROC=y 961 + CONFIG_RTC_INTF_DEV=y 962 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 963 + # CONFIG_RTC_DRV_TEST is not set 964 + 965 + # 966 + # I2C RTC drivers 967 + # 968 + # CONFIG_RTC_DRV_DS1307 is not set 969 + # CONFIG_RTC_DRV_DS1374 is not set 970 + # CONFIG_RTC_DRV_DS1672 is not set 971 + # CONFIG_RTC_DRV_MAX6900 is not set 972 + # CONFIG_RTC_DRV_RS5C372 is not set 973 + # CONFIG_RTC_DRV_ISL1208 is not set 974 + # CONFIG_RTC_DRV_X1205 is not set 975 + # CONFIG_RTC_DRV_PCF8563 is not set 976 + # CONFIG_RTC_DRV_PCF8583 is not set 977 + # CONFIG_RTC_DRV_M41T80 is not set 978 + # CONFIG_RTC_DRV_S35390A is not set 979 + # CONFIG_RTC_DRV_FM3130 is not set 980 + # CONFIG_RTC_DRV_RX8581 is not set 981 + # CONFIG_RTC_DRV_RX8025 is not set 982 + 983 + # 984 + # SPI RTC drivers 985 + # 986 + # CONFIG_RTC_DRV_M41T94 is not set 987 + # CONFIG_RTC_DRV_DS1305 is not set 988 + # CONFIG_RTC_DRV_DS1390 is not set 989 + # CONFIG_RTC_DRV_MAX6902 is not set 990 + # CONFIG_RTC_DRV_R9701 is not set 991 + # CONFIG_RTC_DRV_RS5C348 is not set 992 + # CONFIG_RTC_DRV_DS3234 is not set 993 + # CONFIG_RTC_DRV_PCF2123 is not set 994 + 995 + # 996 + # Platform RTC drivers 997 + # 998 + # CONFIG_RTC_DRV_DS1286 is not set 999 + # CONFIG_RTC_DRV_DS1511 is not set 1000 + # CONFIG_RTC_DRV_DS1553 is not set 1001 + # CONFIG_RTC_DRV_DS1742 is not set 1002 + # CONFIG_RTC_DRV_STK17TA8 is not set 1003 + # CONFIG_RTC_DRV_M48T86 is not set 1004 + # CONFIG_RTC_DRV_M48T35 is not set 1005 + # CONFIG_RTC_DRV_M48T59 is not set 1006 + # CONFIG_RTC_DRV_BQ4802 is not set 1007 + # CONFIG_RTC_DRV_V3020 is not set 1008 + 1009 + # 1010 + # on-CPU RTC drivers 1011 + # 1012 + CONFIG_RTC_DRV_AT32AP700X=y 1013 + CONFIG_DMADEVICES=y 1014 + 1015 + # 1016 + # DMA Devices 1017 + # 1018 + CONFIG_DW_DMAC=y 1019 + CONFIG_DMA_ENGINE=y 1020 + 1021 + # 1022 + # DMA Clients 1023 + # 1024 + # CONFIG_NET_DMA is not set 1025 + # CONFIG_ASYNC_TX_DMA is not set 1026 + # CONFIG_DMATEST is not set 1027 + # CONFIG_AUXDISPLAY is not set 1028 + # CONFIG_UIO is not set 1029 + 1030 + # 1031 + # TI VLYNQ 1032 + # 1033 + # CONFIG_STAGING is not set 1034 + 1035 + # 1036 + # File systems 1037 + # 1038 + CONFIG_EXT2_FS=y 1039 + # CONFIG_EXT2_FS_XATTR is not set 1040 + # CONFIG_EXT2_FS_XIP is not set 1041 + CONFIG_EXT3_FS=y 1042 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1043 + # CONFIG_EXT3_FS_XATTR is not set 1044 + # CONFIG_EXT4_FS is not set 1045 + CONFIG_JBD=y 1046 + # CONFIG_JBD_DEBUG is not set 1047 + # CONFIG_REISERFS_FS is not set 1048 + # CONFIG_JFS_FS is not set 1049 + # CONFIG_FS_POSIX_ACL is not set 1050 + # CONFIG_XFS_FS is not set 1051 + # CONFIG_GFS2_FS is not set 1052 + # CONFIG_OCFS2_FS is not set 1053 + # CONFIG_BTRFS_FS is not set 1054 + # CONFIG_NILFS2_FS is not set 1055 + CONFIG_FILE_LOCKING=y 1056 + CONFIG_FSNOTIFY=y 1057 + # CONFIG_DNOTIFY is not set 1058 + CONFIG_INOTIFY=y 1059 + CONFIG_INOTIFY_USER=y 1060 + # CONFIG_QUOTA is not set 1061 + # CONFIG_AUTOFS_FS is not set 1062 + # CONFIG_AUTOFS4_FS is not set 1063 + CONFIG_FUSE_FS=m 1064 + # CONFIG_CUSE is not set 1065 + 1066 + # 1067 + # Caches 1068 + # 1069 + # CONFIG_FSCACHE is not set 1070 + 1071 + # 1072 + # CD-ROM/DVD Filesystems 1073 + # 1074 + # CONFIG_ISO9660_FS is not set 1075 + # CONFIG_UDF_FS is not set 1076 + 1077 + # 1078 + # DOS/FAT/NT Filesystems 1079 + # 1080 + CONFIG_FAT_FS=m 1081 + CONFIG_MSDOS_FS=m 1082 + CONFIG_VFAT_FS=m 1083 + CONFIG_FAT_DEFAULT_CODEPAGE=850 1084 + CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" 1085 + # CONFIG_NTFS_FS is not set 1086 + 1087 + # 1088 + # Pseudo filesystems 1089 + # 1090 + CONFIG_PROC_FS=y 1091 + # CONFIG_PROC_KCORE is not set 1092 + CONFIG_PROC_SYSCTL=y 1093 + CONFIG_PROC_PAGE_MONITOR=y 1094 + CONFIG_SYSFS=y 1095 + CONFIG_TMPFS=y 1096 + # CONFIG_TMPFS_POSIX_ACL is not set 1097 + # CONFIG_HUGETLB_PAGE is not set 1098 + CONFIG_CONFIGFS_FS=m 1099 + CONFIG_MISC_FILESYSTEMS=y 1100 + # CONFIG_ADFS_FS is not set 1101 + # CONFIG_AFFS_FS is not set 1102 + # CONFIG_HFS_FS is not set 1103 + # CONFIG_HFSPLUS_FS is not set 1104 + # CONFIG_BEFS_FS is not set 1105 + # CONFIG_BFS_FS is not set 1106 + # CONFIG_EFS_FS is not set 1107 + CONFIG_JFFS2_FS=y 1108 + CONFIG_JFFS2_FS_DEBUG=0 1109 + CONFIG_JFFS2_FS_WRITEBUFFER=y 1110 + # CONFIG_JFFS2_FS_WBUF_VERIFY is not set 1111 + # CONFIG_JFFS2_SUMMARY is not set 1112 + # CONFIG_JFFS2_FS_XATTR is not set 1113 + # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1114 + CONFIG_JFFS2_ZLIB=y 1115 + # CONFIG_JFFS2_LZO is not set 1116 + CONFIG_JFFS2_RTIME=y 1117 + # CONFIG_JFFS2_RUBIN is not set 1118 + # CONFIG_UBIFS_FS is not set 1119 + # CONFIG_CRAMFS is not set 1120 + # CONFIG_SQUASHFS is not set 1121 + # CONFIG_VXFS_FS is not set 1122 + # CONFIG_MINIX_FS is not set 1123 + # CONFIG_OMFS_FS is not set 1124 + # CONFIG_HPFS_FS is not set 1125 + # CONFIG_QNX4FS_FS is not set 1126 + # CONFIG_ROMFS_FS is not set 1127 + # CONFIG_SYSV_FS is not set 1128 + CONFIG_UFS_FS=y 1129 + # CONFIG_UFS_FS_WRITE is not set 1130 + # CONFIG_UFS_DEBUG is not set 1131 + CONFIG_NETWORK_FILESYSTEMS=y 1132 + CONFIG_NFS_FS=y 1133 + CONFIG_NFS_V3=y 1134 + # CONFIG_NFS_V3_ACL is not set 1135 + # CONFIG_NFS_V4 is not set 1136 + CONFIG_ROOT_NFS=y 1137 + CONFIG_NFSD=m 1138 + CONFIG_NFSD_V3=y 1139 + # CONFIG_NFSD_V3_ACL is not set 1140 + # CONFIG_NFSD_V4 is not set 1141 + CONFIG_LOCKD=y 1142 + CONFIG_LOCKD_V4=y 1143 + CONFIG_EXPORTFS=m 1144 + CONFIG_NFS_COMMON=y 1145 + CONFIG_SUNRPC=y 1146 + # CONFIG_RPCSEC_GSS_KRB5 is not set 1147 + # CONFIG_RPCSEC_GSS_SPKM3 is not set 1148 + CONFIG_SMB_FS=m 1149 + # CONFIG_SMB_NLS_DEFAULT is not set 1150 + CONFIG_CIFS=m 1151 + # CONFIG_CIFS_STATS is not set 1152 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1153 + # CONFIG_CIFS_XATTR is not set 1154 + # CONFIG_CIFS_DEBUG2 is not set 1155 + # CONFIG_CIFS_EXPERIMENTAL is not set 1156 + # CONFIG_NCP_FS is not set 1157 + # CONFIG_CODA_FS is not set 1158 + # CONFIG_AFS_FS is not set 1159 + 1160 + # 1161 + # Partition Types 1162 + # 1163 + # CONFIG_PARTITION_ADVANCED is not set 1164 + CONFIG_MSDOS_PARTITION=y 1165 + CONFIG_NLS=m 1166 + CONFIG_NLS_DEFAULT="iso8859-1" 1167 + CONFIG_NLS_CODEPAGE_437=m 1168 + # CONFIG_NLS_CODEPAGE_737 is not set 1169 + # CONFIG_NLS_CODEPAGE_775 is not set 1170 + CONFIG_NLS_CODEPAGE_850=m 1171 + # CONFIG_NLS_CODEPAGE_852 is not set 1172 + # CONFIG_NLS_CODEPAGE_855 is not set 1173 + # CONFIG_NLS_CODEPAGE_857 is not set 1174 + # CONFIG_NLS_CODEPAGE_860 is not set 1175 + # CONFIG_NLS_CODEPAGE_861 is not set 1176 + # CONFIG_NLS_CODEPAGE_862 is not set 1177 + # CONFIG_NLS_CODEPAGE_863 is not set 1178 + # CONFIG_NLS_CODEPAGE_864 is not set 1179 + # CONFIG_NLS_CODEPAGE_865 is not set 1180 + # CONFIG_NLS_CODEPAGE_866 is not set 1181 + # CONFIG_NLS_CODEPAGE_869 is not set 1182 + # CONFIG_NLS_CODEPAGE_936 is not set 1183 + # CONFIG_NLS_CODEPAGE_950 is not set 1184 + # CONFIG_NLS_CODEPAGE_932 is not set 1185 + # CONFIG_NLS_CODEPAGE_949 is not set 1186 + # CONFIG_NLS_CODEPAGE_874 is not set 1187 + # CONFIG_NLS_ISO8859_8 is not set 1188 + # CONFIG_NLS_CODEPAGE_1250 is not set 1189 + # CONFIG_NLS_CODEPAGE_1251 is not set 1190 + # CONFIG_NLS_ASCII is not set 1191 + CONFIG_NLS_ISO8859_1=m 1192 + # CONFIG_NLS_ISO8859_2 is not set 1193 + # CONFIG_NLS_ISO8859_3 is not set 1194 + # CONFIG_NLS_ISO8859_4 is not set 1195 + # CONFIG_NLS_ISO8859_5 is not set 1196 + # CONFIG_NLS_ISO8859_6 is not set 1197 + # CONFIG_NLS_ISO8859_7 is not set 1198 + # CONFIG_NLS_ISO8859_9 is not set 1199 + # CONFIG_NLS_ISO8859_13 is not set 1200 + # CONFIG_NLS_ISO8859_14 is not set 1201 + # CONFIG_NLS_ISO8859_15 is not set 1202 + # CONFIG_NLS_KOI8_R is not set 1203 + # CONFIG_NLS_KOI8_U is not set 1204 + CONFIG_NLS_UTF8=m 1205 + # CONFIG_DLM is not set 1206 + 1207 + # 1208 + # Kernel hacking 1209 + # 1210 + # CONFIG_PRINTK_TIME is not set 1211 + CONFIG_ENABLE_WARN_DEPRECATED=y 1212 + CONFIG_ENABLE_MUST_CHECK=y 1213 + CONFIG_FRAME_WARN=1024 1214 + CONFIG_MAGIC_SYSRQ=y 1215 + # CONFIG_STRIP_ASM_SYMS is not set 1216 + # CONFIG_UNUSED_SYMBOLS is not set 1217 + CONFIG_DEBUG_FS=y 1218 + # CONFIG_HEADERS_CHECK is not set 1219 + CONFIG_DEBUG_KERNEL=y 1220 + # CONFIG_DEBUG_SHIRQ is not set 1221 + CONFIG_DETECT_SOFTLOCKUP=y 1222 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1223 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1224 + CONFIG_DETECT_HUNG_TASK=y 1225 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1226 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1227 + CONFIG_SCHED_DEBUG=y 1228 + # CONFIG_SCHEDSTATS is not set 1229 + # CONFIG_TIMER_STATS is not set 1230 + # CONFIG_DEBUG_OBJECTS is not set 1231 + # CONFIG_SLUB_DEBUG_ON is not set 1232 + # CONFIG_SLUB_STATS is not set 1233 + # CONFIG_DEBUG_RT_MUTEXES is not set 1234 + # CONFIG_RT_MUTEX_TESTER is not set 1235 + # CONFIG_DEBUG_SPINLOCK is not set 1236 + # CONFIG_DEBUG_MUTEXES is not set 1237 + # CONFIG_DEBUG_LOCK_ALLOC is not set 1238 + # CONFIG_PROVE_LOCKING is not set 1239 + # CONFIG_LOCK_STAT is not set 1240 + # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1241 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1242 + CONFIG_STACKTRACE=y 1243 + # CONFIG_DEBUG_KOBJECT is not set 1244 + CONFIG_DEBUG_BUGVERBOSE=y 1245 + # CONFIG_DEBUG_INFO is not set 1246 + # CONFIG_DEBUG_VM is not set 1247 + # CONFIG_DEBUG_WRITECOUNT is not set 1248 + # CONFIG_DEBUG_MEMORY_INIT is not set 1249 + # CONFIG_DEBUG_LIST is not set 1250 + # CONFIG_DEBUG_SG is not set 1251 + # CONFIG_DEBUG_NOTIFIERS is not set 1252 + # CONFIG_DEBUG_CREDENTIALS is not set 1253 + CONFIG_FRAME_POINTER=y 1254 + # CONFIG_BOOT_PRINTK_DELAY is not set 1255 + # CONFIG_RCU_TORTURE_TEST is not set 1256 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1257 + # CONFIG_KPROBES_SANITY_TEST is not set 1258 + # CONFIG_BACKTRACE_SELF_TEST is not set 1259 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1260 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1261 + # CONFIG_LKDTM is not set 1262 + # CONFIG_FAULT_INJECTION is not set 1263 + # CONFIG_PAGE_POISONING is not set 1264 + CONFIG_NOP_TRACER=y 1265 + CONFIG_RING_BUFFER=y 1266 + CONFIG_EVENT_TRACING=y 1267 + CONFIG_CONTEXT_SWITCH_TRACER=y 1268 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1269 + CONFIG_TRACING=y 1270 + CONFIG_TRACING_SUPPORT=y 1271 + CONFIG_FTRACE=y 1272 + # CONFIG_IRQSOFF_TRACER is not set 1273 + # CONFIG_SCHED_TRACER is not set 1274 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1275 + # CONFIG_BOOT_TRACER is not set 1276 + CONFIG_BRANCH_PROFILE_NONE=y 1277 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1278 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1279 + # CONFIG_KMEMTRACE is not set 1280 + # CONFIG_WORKQUEUE_TRACER is not set 1281 + # CONFIG_BLK_DEV_IO_TRACE is not set 1282 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1283 + # CONFIG_DYNAMIC_DEBUG is not set 1284 + # CONFIG_SAMPLES is not set 1285 + 1286 + # 1287 + # Security options 1288 + # 1289 + # CONFIG_KEYS is not set 1290 + # CONFIG_SECURITY is not set 1291 + # CONFIG_SECURITYFS is not set 1292 + # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1293 + CONFIG_CRYPTO=y 1294 + 1295 + # 1296 + # Crypto core or helper 1297 + # 1298 + # CONFIG_CRYPTO_FIPS is not set 1299 + CONFIG_CRYPTO_ALGAPI=y 1300 + CONFIG_CRYPTO_ALGAPI2=y 1301 + CONFIG_CRYPTO_AEAD=y 1302 + CONFIG_CRYPTO_AEAD2=y 1303 + CONFIG_CRYPTO_BLKCIPHER=y 1304 + CONFIG_CRYPTO_BLKCIPHER2=y 1305 + CONFIG_CRYPTO_HASH=y 1306 + CONFIG_CRYPTO_HASH2=y 1307 + CONFIG_CRYPTO_RNG=m 1308 + CONFIG_CRYPTO_RNG2=y 1309 + CONFIG_CRYPTO_PCOMP=y 1310 + CONFIG_CRYPTO_MANAGER=y 1311 + CONFIG_CRYPTO_MANAGER2=y 1312 + # CONFIG_CRYPTO_GF128MUL is not set 1313 + # CONFIG_CRYPTO_NULL is not set 1314 + CONFIG_CRYPTO_WORKQUEUE=y 1315 + # CONFIG_CRYPTO_CRYPTD is not set 1316 + CONFIG_CRYPTO_AUTHENC=y 1317 + # CONFIG_CRYPTO_TEST is not set 1318 + 1319 + # 1320 + # Authenticated Encryption with Associated Data 1321 + # 1322 + # CONFIG_CRYPTO_CCM is not set 1323 + # CONFIG_CRYPTO_GCM is not set 1324 + # CONFIG_CRYPTO_SEQIV is not set 1325 + 1326 + # 1327 + # Block modes 1328 + # 1329 + CONFIG_CRYPTO_CBC=y 1330 + # CONFIG_CRYPTO_CTR is not set 1331 + # CONFIG_CRYPTO_CTS is not set 1332 + CONFIG_CRYPTO_ECB=m 1333 + # CONFIG_CRYPTO_LRW is not set 1334 + CONFIG_CRYPTO_PCBC=m 1335 + # CONFIG_CRYPTO_XTS is not set 1336 + 1337 + # 1338 + # Hash modes 1339 + # 1340 + CONFIG_CRYPTO_HMAC=y 1341 + # CONFIG_CRYPTO_XCBC is not set 1342 + # CONFIG_CRYPTO_VMAC is not set 1343 + 1344 + # 1345 + # Digest 1346 + # 1347 + # CONFIG_CRYPTO_CRC32C is not set 1348 + # CONFIG_CRYPTO_GHASH is not set 1349 + # CONFIG_CRYPTO_MD4 is not set 1350 + CONFIG_CRYPTO_MD5=y 1351 + # CONFIG_CRYPTO_MICHAEL_MIC is not set 1352 + # CONFIG_CRYPTO_RMD128 is not set 1353 + # CONFIG_CRYPTO_RMD160 is not set 1354 + # CONFIG_CRYPTO_RMD256 is not set 1355 + # CONFIG_CRYPTO_RMD320 is not set 1356 + CONFIG_CRYPTO_SHA1=y 1357 + # CONFIG_CRYPTO_SHA256 is not set 1358 + # CONFIG_CRYPTO_SHA512 is not set 1359 + # CONFIG_CRYPTO_TGR192 is not set 1360 + # CONFIG_CRYPTO_WP512 is not set 1361 + 1362 + # 1363 + # Ciphers 1364 + # 1365 + CONFIG_CRYPTO_AES=m 1366 + # CONFIG_CRYPTO_ANUBIS is not set 1367 + CONFIG_CRYPTO_ARC4=m 1368 + # CONFIG_CRYPTO_BLOWFISH is not set 1369 + # CONFIG_CRYPTO_CAMELLIA is not set 1370 + # CONFIG_CRYPTO_CAST5 is not set 1371 + # CONFIG_CRYPTO_CAST6 is not set 1372 + CONFIG_CRYPTO_DES=y 1373 + # CONFIG_CRYPTO_FCRYPT is not set 1374 + # CONFIG_CRYPTO_KHAZAD is not set 1375 + # CONFIG_CRYPTO_SALSA20 is not set 1376 + # CONFIG_CRYPTO_SEED is not set 1377 + # CONFIG_CRYPTO_SERPENT is not set 1378 + # CONFIG_CRYPTO_TEA is not set 1379 + # CONFIG_CRYPTO_TWOFISH is not set 1380 + 1381 + # 1382 + # Compression 1383 + # 1384 + CONFIG_CRYPTO_DEFLATE=y 1385 + # CONFIG_CRYPTO_ZLIB is not set 1386 + # CONFIG_CRYPTO_LZO is not set 1387 + 1388 + # 1389 + # Random Number Generation 1390 + # 1391 + CONFIG_CRYPTO_ANSI_CPRNG=m 1392 + CONFIG_CRYPTO_HW=y 1393 + CONFIG_BINARY_PRINTF=y 1394 + 1395 + # 1396 + # Library routines 1397 + # 1398 + CONFIG_BITREVERSE=y 1399 + CONFIG_GENERIC_FIND_LAST_BIT=y 1400 + CONFIG_CRC_CCITT=m 1401 + # CONFIG_CRC16 is not set 1402 + # CONFIG_CRC_T10DIF is not set 1403 + CONFIG_CRC_ITU_T=m 1404 + CONFIG_CRC32=y 1405 + CONFIG_CRC7=m 1406 + # CONFIG_LIBCRC32C is not set 1407 + CONFIG_ZLIB_INFLATE=y 1408 + CONFIG_ZLIB_DEFLATE=y 1409 + CONFIG_DECOMPRESS_GZIP=y 1410 + CONFIG_GENERIC_ALLOCATOR=y 1411 + CONFIG_HAS_IOMEM=y 1412 + CONFIG_HAS_IOPORT=y 1413 + CONFIG_HAS_DMA=y 1414 + CONFIG_NLATTR=y
+1549
arch/avr32/configs/atngw100mkii_evklcd100_defconfig
··· 1 + # 2 + # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Nov 5 15:33:09 2009 5 + # 6 + CONFIG_AVR32=y 7 + CONFIG_GENERIC_GPIO=y 8 + CONFIG_GENERIC_HARDIRQS=y 9 + CONFIG_STACKTRACE_SUPPORT=y 10 + CONFIG_LOCKDEP_SUPPORT=y 11 + CONFIG_TRACE_IRQFLAGS_SUPPORT=y 12 + CONFIG_HARDIRQS_SW_RESEND=y 13 + CONFIG_GENERIC_IRQ_PROBE=y 14 + CONFIG_RWSEM_GENERIC_SPINLOCK=y 15 + CONFIG_GENERIC_TIME=y 16 + CONFIG_GENERIC_CLOCKEVENTS=y 17 + # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set 18 + # CONFIG_ARCH_HAS_ILOG2_U32 is not set 19 + # CONFIG_ARCH_HAS_ILOG2_U64 is not set 20 + CONFIG_GENERIC_HWEIGHT=y 21 + CONFIG_GENERIC_CALIBRATE_DELAY=y 22 + CONFIG_GENERIC_BUG=y 23 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 25 + 26 + # 27 + # General setup 28 + # 29 + CONFIG_EXPERIMENTAL=y 30 + CONFIG_BROKEN_ON_SMP=y 31 + CONFIG_INIT_ENV_ARG_LIMIT=32 32 + CONFIG_LOCALVERSION="" 33 + # CONFIG_LOCALVERSION_AUTO is not set 34 + CONFIG_SWAP=y 35 + CONFIG_SYSVIPC=y 36 + CONFIG_SYSVIPC_SYSCTL=y 37 + CONFIG_POSIX_MQUEUE=y 38 + CONFIG_POSIX_MQUEUE_SYSCTL=y 39 + CONFIG_BSD_PROCESS_ACCT=y 40 + CONFIG_BSD_PROCESS_ACCT_V3=y 41 + # CONFIG_TASKSTATS is not set 42 + # CONFIG_AUDIT is not set 43 + 44 + # 45 + # RCU Subsystem 46 + # 47 + CONFIG_TREE_RCU=y 48 + # CONFIG_TREE_PREEMPT_RCU is not set 49 + # CONFIG_RCU_TRACE is not set 50 + CONFIG_RCU_FANOUT=32 51 + # CONFIG_RCU_FANOUT_EXACT is not set 52 + # CONFIG_TREE_RCU_TRACE is not set 53 + # CONFIG_IKCONFIG is not set 54 + CONFIG_LOG_BUF_SHIFT=14 55 + # CONFIG_GROUP_SCHED is not set 56 + # CONFIG_CGROUPS is not set 57 + CONFIG_SYSFS_DEPRECATED=y 58 + CONFIG_SYSFS_DEPRECATED_V2=y 59 + # CONFIG_RELAY is not set 60 + # CONFIG_NAMESPACES is not set 61 + CONFIG_BLK_DEV_INITRD=y 62 + CONFIG_INITRAMFS_SOURCE="" 63 + CONFIG_RD_GZIP=y 64 + # CONFIG_RD_BZIP2 is not set 65 + # CONFIG_RD_LZMA is not set 66 + CONFIG_CC_OPTIMIZE_FOR_SIZE=y 67 + CONFIG_SYSCTL=y 68 + CONFIG_ANON_INODES=y 69 + CONFIG_EMBEDDED=y 70 + # CONFIG_SYSCTL_SYSCALL is not set 71 + CONFIG_KALLSYMS=y 72 + # CONFIG_KALLSYMS_ALL is not set 73 + # CONFIG_KALLSYMS_EXTRA_PASS is not set 74 + CONFIG_HOTPLUG=y 75 + CONFIG_PRINTK=y 76 + CONFIG_BUG=y 77 + CONFIG_ELF_CORE=y 78 + # CONFIG_BASE_FULL is not set 79 + CONFIG_FUTEX=y 80 + CONFIG_EPOLL=y 81 + CONFIG_SIGNALFD=y 82 + CONFIG_TIMERFD=y 83 + CONFIG_EVENTFD=y 84 + CONFIG_SHMEM=y 85 + CONFIG_AIO=y 86 + 87 + # 88 + # Kernel Performance Events And Counters 89 + # 90 + CONFIG_VM_EVENT_COUNTERS=y 91 + CONFIG_SLUB_DEBUG=y 92 + # CONFIG_COMPAT_BRK is not set 93 + # CONFIG_SLAB is not set 94 + CONFIG_SLUB=y 95 + # CONFIG_SLOB is not set 96 + CONFIG_PROFILING=y 97 + CONFIG_TRACEPOINTS=y 98 + CONFIG_OPROFILE=m 99 + CONFIG_HAVE_OPROFILE=y 100 + CONFIG_KPROBES=y 101 + CONFIG_HAVE_KPROBES=y 102 + CONFIG_HAVE_CLK=y 103 + 104 + # 105 + # GCOV-based kernel profiling 106 + # 107 + # CONFIG_GCOV_KERNEL is not set 108 + CONFIG_SLOW_WORK=y 109 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 110 + CONFIG_SLABINFO=y 111 + CONFIG_RT_MUTEXES=y 112 + CONFIG_BASE_SMALL=1 113 + CONFIG_MODULES=y 114 + # CONFIG_MODULE_FORCE_LOAD is not set 115 + CONFIG_MODULE_UNLOAD=y 116 + CONFIG_MODULE_FORCE_UNLOAD=y 117 + # CONFIG_MODVERSIONS is not set 118 + # CONFIG_MODULE_SRCVERSION_ALL is not set 119 + CONFIG_BLOCK=y 120 + CONFIG_LBDAF=y 121 + # CONFIG_BLK_DEV_BSG is not set 122 + # CONFIG_BLK_DEV_INTEGRITY is not set 123 + 124 + # 125 + # IO Schedulers 126 + # 127 + CONFIG_IOSCHED_NOOP=y 128 + # CONFIG_IOSCHED_AS is not set 129 + # CONFIG_IOSCHED_DEADLINE is not set 130 + CONFIG_IOSCHED_CFQ=y 131 + # CONFIG_DEFAULT_AS is not set 132 + # CONFIG_DEFAULT_DEADLINE is not set 133 + CONFIG_DEFAULT_CFQ=y 134 + # CONFIG_DEFAULT_NOOP is not set 135 + CONFIG_DEFAULT_IOSCHED="cfq" 136 + CONFIG_FREEZER=y 137 + 138 + # 139 + # System Type and features 140 + # 141 + CONFIG_TICK_ONESHOT=y 142 + CONFIG_NO_HZ=y 143 + CONFIG_HIGH_RES_TIMERS=y 144 + CONFIG_GENERIC_CLOCKEVENTS_BUILD=y 145 + CONFIG_SUBARCH_AVR32B=y 146 + CONFIG_MMU=y 147 + CONFIG_PERFORMANCE_COUNTERS=y 148 + CONFIG_PLATFORM_AT32AP=y 149 + CONFIG_CPU_AT32AP700X=y 150 + CONFIG_CPU_AT32AP7000=y 151 + CONFIG_BOARD_ATNGW100_COMMON=y 152 + # CONFIG_BOARD_ATSTK1000 is not set 153 + # CONFIG_BOARD_ATNGW100_MKI is not set 154 + CONFIG_BOARD_ATNGW100_MKII=y 155 + # CONFIG_BOARD_HAMMERHEAD is not set 156 + # CONFIG_BOARD_FAVR_32 is not set 157 + # CONFIG_BOARD_MERISC is not set 158 + # CONFIG_BOARD_MIMC200 is not set 159 + CONFIG_BOARD_ATNGW100_MKII_LCD=y 160 + # CONFIG_BOARD_ATNGW100_ADDON_NONE is not set 161 + CONFIG_BOARD_ATNGW100_EVKLCD10X=y 162 + # CONFIG_BOARD_ATNGW100_MRMT is not set 163 + CONFIG_BOARD_ATNGW100_EVKLCD10X_QVGA=y 164 + # CONFIG_BOARD_ATNGW100_EVKLCD10X_VGA is not set 165 + # CONFIG_BOARD_ATNGW100_EVKLCD10X_POW_QVGA is not set 166 + CONFIG_LOADER_U_BOOT=y 167 + 168 + # 169 + # Atmel AVR32 AP options 170 + # 171 + # CONFIG_AP700X_32_BIT_SMC is not set 172 + CONFIG_AP700X_16_BIT_SMC=y 173 + # CONFIG_AP700X_8_BIT_SMC is not set 174 + CONFIG_LOAD_ADDRESS=0x10000000 175 + CONFIG_ENTRY_ADDRESS=0x90000000 176 + CONFIG_PHYS_OFFSET=0x10000000 177 + CONFIG_PREEMPT_NONE=y 178 + # CONFIG_PREEMPT_VOLUNTARY is not set 179 + # CONFIG_PREEMPT is not set 180 + CONFIG_QUICKLIST=y 181 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 182 + # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 183 + # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 184 + CONFIG_ARCH_FLATMEM_ENABLE=y 185 + # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set 186 + # CONFIG_ARCH_SPARSEMEM_ENABLE is not set 187 + CONFIG_SELECT_MEMORY_MODEL=y 188 + CONFIG_FLATMEM_MANUAL=y 189 + # CONFIG_DISCONTIGMEM_MANUAL is not set 190 + # CONFIG_SPARSEMEM_MANUAL is not set 191 + CONFIG_FLATMEM=y 192 + CONFIG_FLAT_NODE_MEM_MAP=y 193 + CONFIG_PAGEFLAGS_EXTENDED=y 194 + CONFIG_SPLIT_PTLOCK_CPUS=4 195 + # CONFIG_PHYS_ADDR_T_64BIT is not set 196 + CONFIG_ZONE_DMA_FLAG=0 197 + CONFIG_NR_QUICK=2 198 + CONFIG_VIRT_TO_BUS=y 199 + CONFIG_HAVE_MLOCK=y 200 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 201 + # CONFIG_KSM is not set 202 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 203 + # CONFIG_OWNERSHIP_TRACE is not set 204 + CONFIG_NMI_DEBUGGING=y 205 + # CONFIG_HZ_100 is not set 206 + CONFIG_HZ_250=y 207 + # CONFIG_HZ_300 is not set 208 + # CONFIG_HZ_1000 is not set 209 + CONFIG_HZ=250 210 + CONFIG_SCHED_HRTICK=y 211 + CONFIG_CMDLINE="" 212 + 213 + # 214 + # Power management options 215 + # 216 + CONFIG_PM=y 217 + # CONFIG_PM_DEBUG is not set 218 + CONFIG_PM_SLEEP=y 219 + CONFIG_SUSPEND=y 220 + CONFIG_SUSPEND_FREEZER=y 221 + # CONFIG_PM_RUNTIME is not set 222 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 223 + 224 + # 225 + # CPU Frequency scaling 226 + # 227 + CONFIG_CPU_FREQ=y 228 + CONFIG_CPU_FREQ_TABLE=y 229 + # CONFIG_CPU_FREQ_DEBUG is not set 230 + # CONFIG_CPU_FREQ_STAT is not set 231 + # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 232 + # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 233 + # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 234 + CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y 235 + # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set 236 + CONFIG_CPU_FREQ_GOV_PERFORMANCE=y 237 + # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set 238 + CONFIG_CPU_FREQ_GOV_USERSPACE=y 239 + CONFIG_CPU_FREQ_GOV_ONDEMAND=y 240 + # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set 241 + CONFIG_CPU_FREQ_AT32AP=y 242 + 243 + # 244 + # Bus options 245 + # 246 + # CONFIG_ARCH_SUPPORTS_MSI is not set 247 + # CONFIG_PCCARD is not set 248 + 249 + # 250 + # Executable file formats 251 + # 252 + CONFIG_BINFMT_ELF=y 253 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 254 + # CONFIG_HAVE_AOUT is not set 255 + # CONFIG_BINFMT_MISC is not set 256 + CONFIG_NET=y 257 + 258 + # 259 + # Networking options 260 + # 261 + CONFIG_PACKET=y 262 + CONFIG_PACKET_MMAP=y 263 + CONFIG_UNIX=y 264 + CONFIG_XFRM=y 265 + CONFIG_XFRM_USER=y 266 + # CONFIG_XFRM_SUB_POLICY is not set 267 + # CONFIG_XFRM_MIGRATE is not set 268 + # CONFIG_XFRM_STATISTICS is not set 269 + CONFIG_XFRM_IPCOMP=y 270 + CONFIG_NET_KEY=y 271 + # CONFIG_NET_KEY_MIGRATE is not set 272 + CONFIG_INET=y 273 + CONFIG_IP_MULTICAST=y 274 + CONFIG_IP_ADVANCED_ROUTER=y 275 + CONFIG_ASK_IP_FIB_HASH=y 276 + # CONFIG_IP_FIB_TRIE is not set 277 + CONFIG_IP_FIB_HASH=y 278 + # CONFIG_IP_MULTIPLE_TABLES is not set 279 + # CONFIG_IP_ROUTE_MULTIPATH is not set 280 + # CONFIG_IP_ROUTE_VERBOSE is not set 281 + CONFIG_IP_PNP=y 282 + CONFIG_IP_PNP_DHCP=y 283 + # CONFIG_IP_PNP_BOOTP is not set 284 + # CONFIG_IP_PNP_RARP is not set 285 + # CONFIG_NET_IPIP is not set 286 + # CONFIG_NET_IPGRE is not set 287 + CONFIG_IP_MROUTE=y 288 + CONFIG_IP_PIMSM_V1=y 289 + # CONFIG_IP_PIMSM_V2 is not set 290 + # CONFIG_ARPD is not set 291 + CONFIG_SYN_COOKIES=y 292 + CONFIG_INET_AH=y 293 + CONFIG_INET_ESP=y 294 + CONFIG_INET_IPCOMP=y 295 + CONFIG_INET_XFRM_TUNNEL=y 296 + CONFIG_INET_TUNNEL=y 297 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 298 + CONFIG_INET_XFRM_MODE_TUNNEL=y 299 + CONFIG_INET_XFRM_MODE_BEET=y 300 + # CONFIG_INET_LRO is not set 301 + CONFIG_INET_DIAG=y 302 + CONFIG_INET_TCP_DIAG=y 303 + # CONFIG_TCP_CONG_ADVANCED is not set 304 + CONFIG_TCP_CONG_CUBIC=y 305 + CONFIG_DEFAULT_TCP_CONG="cubic" 306 + # CONFIG_TCP_MD5SIG is not set 307 + CONFIG_IPV6=y 308 + # CONFIG_IPV6_PRIVACY is not set 309 + # CONFIG_IPV6_ROUTER_PREF is not set 310 + # CONFIG_IPV6_OPTIMISTIC_DAD is not set 311 + CONFIG_INET6_AH=y 312 + CONFIG_INET6_ESP=y 313 + CONFIG_INET6_IPCOMP=y 314 + # CONFIG_IPV6_MIP6 is not set 315 + CONFIG_INET6_XFRM_TUNNEL=y 316 + CONFIG_INET6_TUNNEL=y 317 + CONFIG_INET6_XFRM_MODE_TRANSPORT=y 318 + CONFIG_INET6_XFRM_MODE_TUNNEL=y 319 + CONFIG_INET6_XFRM_MODE_BEET=y 320 + # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set 321 + CONFIG_IPV6_SIT=y 322 + CONFIG_IPV6_NDISC_NODETYPE=y 323 + # CONFIG_IPV6_TUNNEL is not set 324 + # CONFIG_IPV6_MULTIPLE_TABLES is not set 325 + # CONFIG_IPV6_MROUTE is not set 326 + # CONFIG_NETWORK_SECMARK is not set 327 + CONFIG_NETFILTER=y 328 + # CONFIG_NETFILTER_DEBUG is not set 329 + # CONFIG_NETFILTER_ADVANCED is not set 330 + 331 + # 332 + # Core Netfilter Configuration 333 + # 334 + CONFIG_NETFILTER_NETLINK=m 335 + CONFIG_NETFILTER_NETLINK_LOG=m 336 + CONFIG_NF_CONNTRACK=m 337 + CONFIG_NF_CONNTRACK_FTP=m 338 + CONFIG_NF_CONNTRACK_IRC=m 339 + CONFIG_NF_CONNTRACK_SIP=m 340 + CONFIG_NF_CT_NETLINK=m 341 + CONFIG_NETFILTER_XTABLES=y 342 + CONFIG_NETFILTER_XT_TARGET_MARK=m 343 + CONFIG_NETFILTER_XT_TARGET_NFLOG=m 344 + CONFIG_NETFILTER_XT_TARGET_TCPMSS=m 345 + CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m 346 + CONFIG_NETFILTER_XT_MATCH_MARK=m 347 + CONFIG_NETFILTER_XT_MATCH_POLICY=m 348 + CONFIG_NETFILTER_XT_MATCH_STATE=m 349 + # CONFIG_IP_VS is not set 350 + 351 + # 352 + # IP: Netfilter Configuration 353 + # 354 + CONFIG_NF_DEFRAG_IPV4=m 355 + CONFIG_NF_CONNTRACK_IPV4=m 356 + CONFIG_NF_CONNTRACK_PROC_COMPAT=y 357 + CONFIG_IP_NF_IPTABLES=m 358 + CONFIG_IP_NF_FILTER=m 359 + CONFIG_IP_NF_TARGET_REJECT=m 360 + CONFIG_IP_NF_TARGET_LOG=m 361 + # CONFIG_IP_NF_TARGET_ULOG is not set 362 + CONFIG_NF_NAT=m 363 + CONFIG_NF_NAT_NEEDED=y 364 + CONFIG_IP_NF_TARGET_MASQUERADE=m 365 + CONFIG_NF_NAT_FTP=m 366 + CONFIG_NF_NAT_IRC=m 367 + # CONFIG_NF_NAT_TFTP is not set 368 + # CONFIG_NF_NAT_AMANDA is not set 369 + # CONFIG_NF_NAT_PPTP is not set 370 + # CONFIG_NF_NAT_H323 is not set 371 + CONFIG_NF_NAT_SIP=m 372 + CONFIG_IP_NF_MANGLE=m 373 + 374 + # 375 + # IPv6: Netfilter Configuration 376 + # 377 + CONFIG_NF_CONNTRACK_IPV6=m 378 + CONFIG_IP6_NF_IPTABLES=m 379 + CONFIG_IP6_NF_MATCH_IPV6HEADER=m 380 + CONFIG_IP6_NF_TARGET_LOG=m 381 + CONFIG_IP6_NF_FILTER=m 382 + CONFIG_IP6_NF_TARGET_REJECT=m 383 + CONFIG_IP6_NF_MANGLE=m 384 + # CONFIG_IP_DCCP is not set 385 + # CONFIG_IP_SCTP is not set 386 + # CONFIG_RDS is not set 387 + # CONFIG_TIPC is not set 388 + # CONFIG_ATM is not set 389 + CONFIG_STP=m 390 + CONFIG_BRIDGE=m 391 + # CONFIG_NET_DSA is not set 392 + CONFIG_VLAN_8021Q=m 393 + # CONFIG_VLAN_8021Q_GVRP is not set 394 + # CONFIG_DECNET is not set 395 + CONFIG_LLC=m 396 + # CONFIG_LLC2 is not set 397 + # CONFIG_IPX is not set 398 + # CONFIG_ATALK is not set 399 + # CONFIG_X25 is not set 400 + # CONFIG_LAPB is not set 401 + # CONFIG_ECONET is not set 402 + # CONFIG_WAN_ROUTER is not set 403 + # CONFIG_PHONET is not set 404 + # CONFIG_IEEE802154 is not set 405 + # CONFIG_NET_SCHED is not set 406 + # CONFIG_DCB is not set 407 + 408 + # 409 + # Network testing 410 + # 411 + # CONFIG_NET_PKTGEN is not set 412 + # CONFIG_NET_TCPPROBE is not set 413 + # CONFIG_NET_DROP_MONITOR is not set 414 + # CONFIG_HAMRADIO is not set 415 + # CONFIG_CAN is not set 416 + # CONFIG_IRDA is not set 417 + # CONFIG_BT is not set 418 + # CONFIG_AF_RXRPC is not set 419 + CONFIG_WIRELESS=y 420 + # CONFIG_CFG80211 is not set 421 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 422 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 423 + # CONFIG_WIRELESS_EXT is not set 424 + # CONFIG_LIB80211 is not set 425 + 426 + # 427 + # CFG80211 needs to be enabled for MAC80211 428 + # 429 + # CONFIG_WIMAX is not set 430 + # CONFIG_RFKILL is not set 431 + # CONFIG_NET_9P is not set 432 + 433 + # 434 + # Device Drivers 435 + # 436 + 437 + # 438 + # Generic Driver Options 439 + # 440 + CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 441 + # CONFIG_DEVTMPFS is not set 442 + CONFIG_STANDALONE=y 443 + # CONFIG_PREVENT_FIRMWARE_BUILD is not set 444 + # CONFIG_FW_LOADER is not set 445 + # CONFIG_DEBUG_DRIVER is not set 446 + # CONFIG_DEBUG_DEVRES is not set 447 + # CONFIG_SYS_HYPERVISOR is not set 448 + # CONFIG_CONNECTOR is not set 449 + CONFIG_MTD=y 450 + # CONFIG_MTD_DEBUG is not set 451 + # CONFIG_MTD_TESTS is not set 452 + # CONFIG_MTD_CONCAT is not set 453 + CONFIG_MTD_PARTITIONS=y 454 + # CONFIG_MTD_REDBOOT_PARTS is not set 455 + CONFIG_MTD_CMDLINE_PARTS=y 456 + # CONFIG_MTD_AR7_PARTS is not set 457 + 458 + # 459 + # User Modules And Translation Layers 460 + # 461 + CONFIG_MTD_CHAR=y 462 + CONFIG_MTD_BLKDEVS=y 463 + CONFIG_MTD_BLOCK=y 464 + # CONFIG_FTL is not set 465 + # CONFIG_NFTL is not set 466 + # CONFIG_INFTL is not set 467 + # CONFIG_RFD_FTL is not set 468 + # CONFIG_SSFDC is not set 469 + # CONFIG_MTD_OOPS is not set 470 + 471 + # 472 + # RAM/ROM/Flash chip drivers 473 + # 474 + CONFIG_MTD_CFI=y 475 + # CONFIG_MTD_JEDECPROBE is not set 476 + CONFIG_MTD_GEN_PROBE=y 477 + # CONFIG_MTD_CFI_ADV_OPTIONS is not set 478 + CONFIG_MTD_MAP_BANK_WIDTH_1=y 479 + CONFIG_MTD_MAP_BANK_WIDTH_2=y 480 + CONFIG_MTD_MAP_BANK_WIDTH_4=y 481 + # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set 482 + # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set 483 + # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set 484 + CONFIG_MTD_CFI_I1=y 485 + CONFIG_MTD_CFI_I2=y 486 + # CONFIG_MTD_CFI_I4 is not set 487 + # CONFIG_MTD_CFI_I8 is not set 488 + CONFIG_MTD_CFI_INTELEXT=y 489 + # CONFIG_MTD_CFI_AMDSTD is not set 490 + # CONFIG_MTD_CFI_STAA is not set 491 + CONFIG_MTD_CFI_UTIL=y 492 + # CONFIG_MTD_RAM is not set 493 + # CONFIG_MTD_ROM is not set 494 + # CONFIG_MTD_ABSENT is not set 495 + 496 + # 497 + # Mapping drivers for chip access 498 + # 499 + # CONFIG_MTD_COMPLEX_MAPPINGS is not set 500 + CONFIG_MTD_PHYSMAP=y 501 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 502 + # CONFIG_MTD_PLATRAM is not set 503 + 504 + # 505 + # Self-contained MTD device drivers 506 + # 507 + CONFIG_MTD_DATAFLASH=y 508 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 509 + # CONFIG_MTD_DATAFLASH_OTP is not set 510 + # CONFIG_MTD_M25P80 is not set 511 + # CONFIG_MTD_SST25L is not set 512 + # CONFIG_MTD_SLRAM is not set 513 + # CONFIG_MTD_PHRAM is not set 514 + # CONFIG_MTD_MTDRAM is not set 515 + # CONFIG_MTD_BLOCK2MTD is not set 516 + 517 + # 518 + # Disk-On-Chip Device Drivers 519 + # 520 + # CONFIG_MTD_DOC2000 is not set 521 + # CONFIG_MTD_DOC2001 is not set 522 + # CONFIG_MTD_DOC2001PLUS is not set 523 + CONFIG_MTD_NAND=y 524 + # CONFIG_MTD_NAND_VERIFY_WRITE is not set 525 + # CONFIG_MTD_NAND_ECC_SMC is not set 526 + # CONFIG_MTD_NAND_MUSEUM_IDS is not set 527 + CONFIG_MTD_NAND_IDS=y 528 + # CONFIG_MTD_NAND_DISKONCHIP is not set 529 + CONFIG_MTD_NAND_ATMEL=y 530 + CONFIG_MTD_NAND_ATMEL_ECC_HW=y 531 + # CONFIG_MTD_NAND_ATMEL_ECC_SOFT is not set 532 + # CONFIG_MTD_NAND_ATMEL_ECC_NONE is not set 533 + # CONFIG_MTD_NAND_NANDSIM is not set 534 + # CONFIG_MTD_NAND_PLATFORM is not set 535 + # CONFIG_MTD_ONENAND is not set 536 + 537 + # 538 + # LPDDR flash memory drivers 539 + # 540 + # CONFIG_MTD_LPDDR is not set 541 + 542 + # 543 + # UBI - Unsorted block images 544 + # 545 + CONFIG_MTD_UBI=y 546 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 547 + CONFIG_MTD_UBI_BEB_RESERVE=1 548 + # CONFIG_MTD_UBI_GLUEBI is not set 549 + 550 + # 551 + # UBI debugging options 552 + # 553 + # CONFIG_MTD_UBI_DEBUG is not set 554 + # CONFIG_PARPORT is not set 555 + CONFIG_BLK_DEV=y 556 + # CONFIG_BLK_DEV_COW_COMMON is not set 557 + CONFIG_BLK_DEV_LOOP=m 558 + # CONFIG_BLK_DEV_CRYPTOLOOP is not set 559 + CONFIG_BLK_DEV_NBD=m 560 + CONFIG_BLK_DEV_RAM=m 561 + CONFIG_BLK_DEV_RAM_COUNT=16 562 + CONFIG_BLK_DEV_RAM_SIZE=4096 563 + # CONFIG_BLK_DEV_XIP is not set 564 + # CONFIG_CDROM_PKTCDVD is not set 565 + # CONFIG_ATA_OVER_ETH is not set 566 + CONFIG_MISC_DEVICES=y 567 + # CONFIG_ATMEL_PWM is not set 568 + CONFIG_ATMEL_TCLIB=y 569 + CONFIG_ATMEL_TCB_CLKSRC=y 570 + CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 571 + # CONFIG_ICS932S401 is not set 572 + # CONFIG_ATMEL_SSC is not set 573 + # CONFIG_ENCLOSURE_SERVICES is not set 574 + # CONFIG_ISL29003 is not set 575 + # CONFIG_C2PORT is not set 576 + 577 + # 578 + # EEPROM support 579 + # 580 + # CONFIG_EEPROM_AT24 is not set 581 + # CONFIG_EEPROM_AT25 is not set 582 + # CONFIG_EEPROM_LEGACY is not set 583 + # CONFIG_EEPROM_MAX6875 is not set 584 + # CONFIG_EEPROM_93CX6 is not set 585 + 586 + # 587 + # SCSI device support 588 + # 589 + # CONFIG_RAID_ATTRS is not set 590 + # CONFIG_SCSI is not set 591 + # CONFIG_SCSI_DMA is not set 592 + # CONFIG_SCSI_NETLINK is not set 593 + # CONFIG_ATA is not set 594 + # CONFIG_MD is not set 595 + CONFIG_NETDEVICES=y 596 + # CONFIG_DUMMY is not set 597 + # CONFIG_BONDING is not set 598 + # CONFIG_MACVLAN is not set 599 + # CONFIG_EQUALIZER is not set 600 + # CONFIG_TUN is not set 601 + # CONFIG_VETH is not set 602 + CONFIG_PHYLIB=y 603 + 604 + # 605 + # MII PHY device drivers 606 + # 607 + # CONFIG_MARVELL_PHY is not set 608 + # CONFIG_DAVICOM_PHY is not set 609 + # CONFIG_QSEMI_PHY is not set 610 + # CONFIG_LXT_PHY is not set 611 + # CONFIG_CICADA_PHY is not set 612 + # CONFIG_VITESSE_PHY is not set 613 + # CONFIG_SMSC_PHY is not set 614 + # CONFIG_BROADCOM_PHY is not set 615 + # CONFIG_ICPLUS_PHY is not set 616 + # CONFIG_REALTEK_PHY is not set 617 + # CONFIG_NATIONAL_PHY is not set 618 + # CONFIG_STE10XP is not set 619 + # CONFIG_LSI_ET1011C_PHY is not set 620 + # CONFIG_FIXED_PHY is not set 621 + # CONFIG_MDIO_BITBANG is not set 622 + CONFIG_NET_ETHERNET=y 623 + # CONFIG_MII is not set 624 + CONFIG_MACB=y 625 + # CONFIG_ENC28J60 is not set 626 + # CONFIG_ETHOC is not set 627 + # CONFIG_DNET is not set 628 + # CONFIG_IBM_NEW_EMAC_ZMII is not set 629 + # CONFIG_IBM_NEW_EMAC_RGMII is not set 630 + # CONFIG_IBM_NEW_EMAC_TAH is not set 631 + # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 632 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 633 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 634 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 635 + # CONFIG_B44 is not set 636 + # CONFIG_KS8842 is not set 637 + # CONFIG_KS8851 is not set 638 + # CONFIG_KS8851_MLL is not set 639 + # CONFIG_NETDEV_1000 is not set 640 + # CONFIG_NETDEV_10000 is not set 641 + CONFIG_WLAN=y 642 + # CONFIG_WLAN_PRE80211 is not set 643 + # CONFIG_WLAN_80211 is not set 644 + 645 + # 646 + # Enable WiMAX (Networking options) to see the WiMAX drivers 647 + # 648 + # CONFIG_WAN is not set 649 + CONFIG_PPP=m 650 + # CONFIG_PPP_MULTILINK is not set 651 + CONFIG_PPP_FILTER=y 652 + CONFIG_PPP_ASYNC=m 653 + # CONFIG_PPP_SYNC_TTY is not set 654 + CONFIG_PPP_DEFLATE=m 655 + CONFIG_PPP_BSDCOMP=m 656 + CONFIG_PPP_MPPE=m 657 + CONFIG_PPPOE=m 658 + # CONFIG_PPPOL2TP is not set 659 + # CONFIG_SLIP is not set 660 + CONFIG_SLHC=m 661 + # CONFIG_NETCONSOLE is not set 662 + # CONFIG_NETPOLL is not set 663 + # CONFIG_NET_POLL_CONTROLLER is not set 664 + # CONFIG_ISDN is not set 665 + # CONFIG_PHONE is not set 666 + 667 + # 668 + # Input device support 669 + # 670 + CONFIG_INPUT=y 671 + # CONFIG_INPUT_FF_MEMLESS is not set 672 + # CONFIG_INPUT_POLLDEV is not set 673 + 674 + # 675 + # Userland interfaces 676 + # 677 + # CONFIG_INPUT_MOUSEDEV is not set 678 + # CONFIG_INPUT_JOYDEV is not set 679 + CONFIG_INPUT_EVDEV=m 680 + # CONFIG_INPUT_EVBUG is not set 681 + 682 + # 683 + # Input Device Drivers 684 + # 685 + # CONFIG_INPUT_KEYBOARD is not set 686 + # CONFIG_INPUT_MOUSE is not set 687 + # CONFIG_INPUT_JOYSTICK is not set 688 + # CONFIG_INPUT_TABLET is not set 689 + CONFIG_INPUT_TOUCHSCREEN=y 690 + # CONFIG_TOUCHSCREEN_ADS7846 is not set 691 + # CONFIG_TOUCHSCREEN_AD7877 is not set 692 + # CONFIG_TOUCHSCREEN_AD7879_I2C is not set 693 + # CONFIG_TOUCHSCREEN_AD7879_SPI is not set 694 + # CONFIG_TOUCHSCREEN_AD7879 is not set 695 + # CONFIG_TOUCHSCREEN_EETI is not set 696 + # CONFIG_TOUCHSCREEN_FUJITSU is not set 697 + # CONFIG_TOUCHSCREEN_GUNZE is not set 698 + # CONFIG_TOUCHSCREEN_ELO is not set 699 + # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set 700 + # CONFIG_TOUCHSCREEN_MCS5000 is not set 701 + # CONFIG_TOUCHSCREEN_MTOUCH is not set 702 + # CONFIG_TOUCHSCREEN_INEXIO is not set 703 + # CONFIG_TOUCHSCREEN_MK712 is not set 704 + # CONFIG_TOUCHSCREEN_PENMOUNT is not set 705 + # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 706 + # CONFIG_TOUCHSCREEN_TOUCHWIN is not set 707 + CONFIG_TOUCHSCREEN_WM97XX=m 708 + CONFIG_TOUCHSCREEN_WM9705=y 709 + CONFIG_TOUCHSCREEN_WM9712=y 710 + CONFIG_TOUCHSCREEN_WM9713=y 711 + # CONFIG_TOUCHSCREEN_WM97XX_ATMEL is not set 712 + # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set 713 + # CONFIG_TOUCHSCREEN_TSC2007 is not set 714 + # CONFIG_TOUCHSCREEN_W90X900 is not set 715 + # CONFIG_INPUT_MISC is not set 716 + 717 + # 718 + # Hardware I/O ports 719 + # 720 + # CONFIG_SERIO is not set 721 + # CONFIG_GAMEPORT is not set 722 + 723 + # 724 + # Character devices 725 + # 726 + CONFIG_VT=y 727 + CONFIG_CONSOLE_TRANSLATIONS=y 728 + CONFIG_VT_CONSOLE=y 729 + CONFIG_HW_CONSOLE=y 730 + # CONFIG_VT_HW_CONSOLE_BINDING is not set 731 + CONFIG_DEVKMEM=y 732 + # CONFIG_SERIAL_NONSTANDARD is not set 733 + 734 + # 735 + # Serial drivers 736 + # 737 + # CONFIG_SERIAL_8250 is not set 738 + 739 + # 740 + # Non-8250 serial port support 741 + # 742 + CONFIG_SERIAL_ATMEL=y 743 + CONFIG_SERIAL_ATMEL_CONSOLE=y 744 + CONFIG_SERIAL_ATMEL_PDC=y 745 + # CONFIG_SERIAL_ATMEL_TTYAT is not set 746 + # CONFIG_SERIAL_MAX3100 is not set 747 + CONFIG_SERIAL_CORE=y 748 + CONFIG_SERIAL_CORE_CONSOLE=y 749 + CONFIG_UNIX98_PTYS=y 750 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 751 + # CONFIG_LEGACY_PTYS is not set 752 + # CONFIG_IPMI_HANDLER is not set 753 + # CONFIG_HW_RANDOM is not set 754 + # CONFIG_R3964 is not set 755 + # CONFIG_RAW_DRIVER is not set 756 + # CONFIG_TCG_TPM is not set 757 + CONFIG_I2C=m 758 + CONFIG_I2C_BOARDINFO=y 759 + CONFIG_I2C_COMPAT=y 760 + CONFIG_I2C_CHARDEV=m 761 + CONFIG_I2C_HELPER_AUTO=y 762 + CONFIG_I2C_ALGOBIT=m 763 + 764 + # 765 + # I2C Hardware Bus support 766 + # 767 + 768 + # 769 + # I2C system bus drivers (mostly embedded / system-on-chip) 770 + # 771 + # CONFIG_I2C_DESIGNWARE is not set 772 + CONFIG_I2C_GPIO=m 773 + # CONFIG_I2C_OCORES is not set 774 + # CONFIG_I2C_SIMTEC is not set 775 + 776 + # 777 + # External I2C/SMBus adapter drivers 778 + # 779 + # CONFIG_I2C_PARPORT_LIGHT is not set 780 + # CONFIG_I2C_TAOS_EVM is not set 781 + 782 + # 783 + # Other I2C/SMBus bus drivers 784 + # 785 + # CONFIG_I2C_PCA_PLATFORM is not set 786 + # CONFIG_I2C_STUB is not set 787 + 788 + # 789 + # Miscellaneous I2C Chip support 790 + # 791 + # CONFIG_DS1682 is not set 792 + # CONFIG_SENSORS_TSL2550 is not set 793 + # CONFIG_I2C_DEBUG_CORE is not set 794 + # CONFIG_I2C_DEBUG_ALGO is not set 795 + # CONFIG_I2C_DEBUG_BUS is not set 796 + # CONFIG_I2C_DEBUG_CHIP is not set 797 + CONFIG_SPI=y 798 + # CONFIG_SPI_DEBUG is not set 799 + CONFIG_SPI_MASTER=y 800 + 801 + # 802 + # SPI Master Controller Drivers 803 + # 804 + CONFIG_SPI_ATMEL=y 805 + # CONFIG_SPI_BITBANG is not set 806 + # CONFIG_SPI_GPIO is not set 807 + 808 + # 809 + # SPI Protocol Masters 810 + # 811 + CONFIG_SPI_SPIDEV=m 812 + # CONFIG_SPI_TLE62X0 is not set 813 + 814 + # 815 + # PPS support 816 + # 817 + # CONFIG_PPS is not set 818 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 819 + CONFIG_GPIOLIB=y 820 + # CONFIG_DEBUG_GPIO is not set 821 + # CONFIG_GPIO_SYSFS is not set 822 + 823 + # 824 + # Memory mapped GPIO expanders: 825 + # 826 + 827 + # 828 + # I2C GPIO expanders: 829 + # 830 + # CONFIG_GPIO_MAX732X is not set 831 + # CONFIG_GPIO_PCA953X is not set 832 + # CONFIG_GPIO_PCF857X is not set 833 + 834 + # 835 + # PCI GPIO expanders: 836 + # 837 + 838 + # 839 + # SPI GPIO expanders: 840 + # 841 + # CONFIG_GPIO_MAX7301 is not set 842 + # CONFIG_GPIO_MCP23S08 is not set 843 + # CONFIG_GPIO_MC33880 is not set 844 + 845 + # 846 + # AC97 GPIO expanders: 847 + # 848 + # CONFIG_W1 is not set 849 + # CONFIG_POWER_SUPPLY is not set 850 + # CONFIG_HWMON is not set 851 + # CONFIG_THERMAL is not set 852 + CONFIG_WATCHDOG=y 853 + # CONFIG_WATCHDOG_NOWAYOUT is not set 854 + 855 + # 856 + # Watchdog Device Drivers 857 + # 858 + # CONFIG_SOFT_WATCHDOG is not set 859 + CONFIG_AT32AP700X_WDT=y 860 + CONFIG_SSB_POSSIBLE=y 861 + 862 + # 863 + # Sonics Silicon Backplane 864 + # 865 + # CONFIG_SSB is not set 866 + 867 + # 868 + # Multifunction device drivers 869 + # 870 + # CONFIG_MFD_CORE is not set 871 + # CONFIG_MFD_SM501 is not set 872 + # CONFIG_HTC_PASIC3 is not set 873 + # CONFIG_UCB1400_CORE is not set 874 + # CONFIG_TPS65010 is not set 875 + # CONFIG_MFD_TMIO is not set 876 + # CONFIG_MFD_WM8400 is not set 877 + # CONFIG_MFD_WM831X is not set 878 + # CONFIG_MFD_WM8350_I2C is not set 879 + # CONFIG_MFD_PCF50633 is not set 880 + # CONFIG_MFD_MC13783 is not set 881 + # CONFIG_AB3100_CORE is not set 882 + # CONFIG_EZX_PCAP is not set 883 + # CONFIG_REGULATOR is not set 884 + # CONFIG_MEDIA_SUPPORT is not set 885 + 886 + # 887 + # Graphics support 888 + # 889 + # CONFIG_VGASTATE is not set 890 + # CONFIG_VIDEO_OUTPUT_CONTROL is not set 891 + CONFIG_FB=y 892 + # CONFIG_FIRMWARE_EDID is not set 893 + # CONFIG_FB_DDC is not set 894 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 895 + CONFIG_FB_CFB_FILLRECT=y 896 + CONFIG_FB_CFB_COPYAREA=y 897 + CONFIG_FB_CFB_IMAGEBLIT=y 898 + # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 899 + # CONFIG_FB_SYS_FILLRECT is not set 900 + # CONFIG_FB_SYS_COPYAREA is not set 901 + # CONFIG_FB_SYS_IMAGEBLIT is not set 902 + # CONFIG_FB_FOREIGN_ENDIAN is not set 903 + # CONFIG_FB_SYS_FOPS is not set 904 + # CONFIG_FB_SVGALIB is not set 905 + # CONFIG_FB_MACMODES is not set 906 + # CONFIG_FB_BACKLIGHT is not set 907 + # CONFIG_FB_MODE_HELPERS is not set 908 + # CONFIG_FB_TILEBLITTING is not set 909 + 910 + # 911 + # Frame buffer hardware drivers 912 + # 913 + # CONFIG_FB_S1D13XXX is not set 914 + CONFIG_FB_ATMEL=y 915 + # CONFIG_FB_VIRTUAL is not set 916 + # CONFIG_FB_METRONOME is not set 917 + # CONFIG_FB_MB862XX is not set 918 + # CONFIG_FB_BROADSHEET is not set 919 + # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 920 + 921 + # 922 + # Display device support 923 + # 924 + # CONFIG_DISPLAY_SUPPORT is not set 925 + 926 + # 927 + # Console display driver support 928 + # 929 + CONFIG_DUMMY_CONSOLE=y 930 + # CONFIG_FRAMEBUFFER_CONSOLE is not set 931 + # CONFIG_LOGO is not set 932 + CONFIG_SOUND=y 933 + CONFIG_SOUND_OSS_CORE=y 934 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 935 + CONFIG_SND=y 936 + CONFIG_SND_TIMER=y 937 + CONFIG_SND_PCM=m 938 + # CONFIG_SND_SEQUENCER is not set 939 + CONFIG_SND_OSSEMUL=y 940 + CONFIG_SND_MIXER_OSS=m 941 + CONFIG_SND_PCM_OSS=m 942 + CONFIG_SND_PCM_OSS_PLUGINS=y 943 + CONFIG_SND_HRTIMER=y 944 + # CONFIG_SND_DYNAMIC_MINORS is not set 945 + # CONFIG_SND_SUPPORT_OLD_API is not set 946 + CONFIG_SND_VERBOSE_PROCFS=y 947 + # CONFIG_SND_VERBOSE_PRINTK is not set 948 + # CONFIG_SND_DEBUG is not set 949 + CONFIG_SND_VMASTER=y 950 + # CONFIG_SND_RAWMIDI_SEQ is not set 951 + # CONFIG_SND_OPL3_LIB_SEQ is not set 952 + # CONFIG_SND_OPL4_LIB_SEQ is not set 953 + # CONFIG_SND_SBAWE_SEQ is not set 954 + # CONFIG_SND_EMU10K1_SEQ is not set 955 + CONFIG_SND_AC97_CODEC=m 956 + # CONFIG_SND_DRIVERS is not set 957 + 958 + # 959 + # Atmel devices (AVR32 and AT91) 960 + # 961 + # CONFIG_SND_ATMEL_ABDAC is not set 962 + CONFIG_SND_ATMEL_AC97C=m 963 + # CONFIG_SND_SPI is not set 964 + # CONFIG_SND_SOC is not set 965 + # CONFIG_SOUND_PRIME is not set 966 + CONFIG_AC97_BUS=m 967 + CONFIG_HID_SUPPORT=y 968 + CONFIG_HID=y 969 + # CONFIG_HIDRAW is not set 970 + # CONFIG_HID_PID is not set 971 + 972 + # 973 + # Special HID drivers 974 + # 975 + CONFIG_USB_SUPPORT=y 976 + # CONFIG_USB_ARCH_HAS_HCD is not set 977 + # CONFIG_USB_ARCH_HAS_OHCI is not set 978 + # CONFIG_USB_ARCH_HAS_EHCI is not set 979 + # CONFIG_USB_OTG_WHITELIST is not set 980 + # CONFIG_USB_OTG_BLACKLIST_HUB is not set 981 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 982 + 983 + # 984 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 985 + # 986 + CONFIG_USB_GADGET=y 987 + # CONFIG_USB_GADGET_DEBUG is not set 988 + # CONFIG_USB_GADGET_DEBUG_FILES is not set 989 + # CONFIG_USB_GADGET_DEBUG_FS is not set 990 + CONFIG_USB_GADGET_VBUS_DRAW=350 991 + CONFIG_USB_GADGET_SELECTED=y 992 + # CONFIG_USB_GADGET_AT91 is not set 993 + CONFIG_USB_GADGET_ATMEL_USBA=y 994 + CONFIG_USB_ATMEL_USBA=y 995 + # CONFIG_USB_GADGET_FSL_USB2 is not set 996 + # CONFIG_USB_GADGET_LH7A40X is not set 997 + # CONFIG_USB_GADGET_OMAP is not set 998 + # CONFIG_USB_GADGET_PXA25X is not set 999 + # CONFIG_USB_GADGET_R8A66597 is not set 1000 + # CONFIG_USB_GADGET_PXA27X is not set 1001 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 1002 + # CONFIG_USB_GADGET_IMX is not set 1003 + # CONFIG_USB_GADGET_S3C2410 is not set 1004 + # CONFIG_USB_GADGET_M66592 is not set 1005 + # CONFIG_USB_GADGET_AMD5536UDC is not set 1006 + # CONFIG_USB_GADGET_FSL_QE is not set 1007 + # CONFIG_USB_GADGET_CI13XXX is not set 1008 + # CONFIG_USB_GADGET_NET2280 is not set 1009 + # CONFIG_USB_GADGET_GOKU is not set 1010 + # CONFIG_USB_GADGET_LANGWELL is not set 1011 + # CONFIG_USB_GADGET_DUMMY_HCD is not set 1012 + CONFIG_USB_GADGET_DUALSPEED=y 1013 + CONFIG_USB_ZERO=m 1014 + # CONFIG_USB_AUDIO is not set 1015 + CONFIG_USB_ETH=m 1016 + CONFIG_USB_ETH_RNDIS=y 1017 + # CONFIG_USB_ETH_EEM is not set 1018 + CONFIG_USB_GADGETFS=m 1019 + CONFIG_USB_FILE_STORAGE=m 1020 + # CONFIG_USB_FILE_STORAGE_TEST is not set 1021 + CONFIG_USB_G_SERIAL=m 1022 + # CONFIG_USB_MIDI_GADGET is not set 1023 + # CONFIG_USB_G_PRINTER is not set 1024 + CONFIG_USB_CDC_COMPOSITE=m 1025 + 1026 + # 1027 + # OTG and related infrastructure 1028 + # 1029 + # CONFIG_USB_GPIO_VBUS is not set 1030 + # CONFIG_NOP_USB_XCEIV is not set 1031 + CONFIG_MMC=y 1032 + # CONFIG_MMC_DEBUG is not set 1033 + # CONFIG_MMC_UNSAFE_RESUME is not set 1034 + 1035 + # 1036 + # MMC/SD/SDIO Card Drivers 1037 + # 1038 + CONFIG_MMC_BLOCK=y 1039 + CONFIG_MMC_BLOCK_BOUNCE=y 1040 + # CONFIG_SDIO_UART is not set 1041 + # CONFIG_MMC_TEST is not set 1042 + 1043 + # 1044 + # MMC/SD/SDIO Host Controller Drivers 1045 + # 1046 + # CONFIG_MMC_SDHCI is not set 1047 + # CONFIG_MMC_AT91 is not set 1048 + CONFIG_MMC_ATMELMCI=y 1049 + # CONFIG_MMC_ATMELMCI_DMA is not set 1050 + # CONFIG_MMC_SPI is not set 1051 + # CONFIG_MEMSTICK is not set 1052 + CONFIG_NEW_LEDS=y 1053 + CONFIG_LEDS_CLASS=y 1054 + 1055 + # 1056 + # LED drivers 1057 + # 1058 + # CONFIG_LEDS_PCA9532 is not set 1059 + CONFIG_LEDS_GPIO=y 1060 + CONFIG_LEDS_GPIO_PLATFORM=y 1061 + # CONFIG_LEDS_LP3944 is not set 1062 + # CONFIG_LEDS_PCA955X is not set 1063 + # CONFIG_LEDS_DAC124S085 is not set 1064 + # CONFIG_LEDS_BD2802 is not set 1065 + 1066 + # 1067 + # LED Triggers 1068 + # 1069 + CONFIG_LEDS_TRIGGERS=y 1070 + CONFIG_LEDS_TRIGGER_TIMER=y 1071 + CONFIG_LEDS_TRIGGER_HEARTBEAT=y 1072 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 1073 + # CONFIG_LEDS_TRIGGER_GPIO is not set 1074 + # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 1075 + 1076 + # 1077 + # iptables trigger is under Netfilter config (LED target) 1078 + # 1079 + # CONFIG_ACCESSIBILITY is not set 1080 + CONFIG_RTC_LIB=y 1081 + CONFIG_RTC_CLASS=y 1082 + CONFIG_RTC_HCTOSYS=y 1083 + CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 1084 + # CONFIG_RTC_DEBUG is not set 1085 + 1086 + # 1087 + # RTC interfaces 1088 + # 1089 + CONFIG_RTC_INTF_SYSFS=y 1090 + CONFIG_RTC_INTF_PROC=y 1091 + CONFIG_RTC_INTF_DEV=y 1092 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 1093 + # CONFIG_RTC_DRV_TEST is not set 1094 + 1095 + # 1096 + # I2C RTC drivers 1097 + # 1098 + # CONFIG_RTC_DRV_DS1307 is not set 1099 + # CONFIG_RTC_DRV_DS1374 is not set 1100 + # CONFIG_RTC_DRV_DS1672 is not set 1101 + # CONFIG_RTC_DRV_MAX6900 is not set 1102 + # CONFIG_RTC_DRV_RS5C372 is not set 1103 + # CONFIG_RTC_DRV_ISL1208 is not set 1104 + # CONFIG_RTC_DRV_X1205 is not set 1105 + # CONFIG_RTC_DRV_PCF8563 is not set 1106 + # CONFIG_RTC_DRV_PCF8583 is not set 1107 + # CONFIG_RTC_DRV_M41T80 is not set 1108 + # CONFIG_RTC_DRV_S35390A is not set 1109 + # CONFIG_RTC_DRV_FM3130 is not set 1110 + # CONFIG_RTC_DRV_RX8581 is not set 1111 + # CONFIG_RTC_DRV_RX8025 is not set 1112 + 1113 + # 1114 + # SPI RTC drivers 1115 + # 1116 + # CONFIG_RTC_DRV_M41T94 is not set 1117 + # CONFIG_RTC_DRV_DS1305 is not set 1118 + # CONFIG_RTC_DRV_DS1390 is not set 1119 + # CONFIG_RTC_DRV_MAX6902 is not set 1120 + # CONFIG_RTC_DRV_R9701 is not set 1121 + # CONFIG_RTC_DRV_RS5C348 is not set 1122 + # CONFIG_RTC_DRV_DS3234 is not set 1123 + # CONFIG_RTC_DRV_PCF2123 is not set 1124 + 1125 + # 1126 + # Platform RTC drivers 1127 + # 1128 + # CONFIG_RTC_DRV_DS1286 is not set 1129 + # CONFIG_RTC_DRV_DS1511 is not set 1130 + # CONFIG_RTC_DRV_DS1553 is not set 1131 + # CONFIG_RTC_DRV_DS1742 is not set 1132 + # CONFIG_RTC_DRV_STK17TA8 is not set 1133 + # CONFIG_RTC_DRV_M48T86 is not set 1134 + # CONFIG_RTC_DRV_M48T35 is not set 1135 + # CONFIG_RTC_DRV_M48T59 is not set 1136 + # CONFIG_RTC_DRV_BQ4802 is not set 1137 + # CONFIG_RTC_DRV_V3020 is not set 1138 + 1139 + # 1140 + # on-CPU RTC drivers 1141 + # 1142 + CONFIG_RTC_DRV_AT32AP700X=y 1143 + CONFIG_DMADEVICES=y 1144 + 1145 + # 1146 + # DMA Devices 1147 + # 1148 + CONFIG_DW_DMAC=y 1149 + CONFIG_DMA_ENGINE=y 1150 + 1151 + # 1152 + # DMA Clients 1153 + # 1154 + # CONFIG_NET_DMA is not set 1155 + # CONFIG_ASYNC_TX_DMA is not set 1156 + # CONFIG_DMATEST is not set 1157 + # CONFIG_AUXDISPLAY is not set 1158 + # CONFIG_UIO is not set 1159 + 1160 + # 1161 + # TI VLYNQ 1162 + # 1163 + # CONFIG_STAGING is not set 1164 + 1165 + # 1166 + # File systems 1167 + # 1168 + CONFIG_EXT2_FS=y 1169 + # CONFIG_EXT2_FS_XATTR is not set 1170 + # CONFIG_EXT2_FS_XIP is not set 1171 + CONFIG_EXT3_FS=y 1172 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1173 + # CONFIG_EXT3_FS_XATTR is not set 1174 + # CONFIG_EXT4_FS is not set 1175 + CONFIG_JBD=y 1176 + # CONFIG_JBD_DEBUG is not set 1177 + # CONFIG_REISERFS_FS is not set 1178 + # CONFIG_JFS_FS is not set 1179 + # CONFIG_FS_POSIX_ACL is not set 1180 + # CONFIG_XFS_FS is not set 1181 + # CONFIG_GFS2_FS is not set 1182 + # CONFIG_OCFS2_FS is not set 1183 + # CONFIG_BTRFS_FS is not set 1184 + # CONFIG_NILFS2_FS is not set 1185 + CONFIG_FILE_LOCKING=y 1186 + CONFIG_FSNOTIFY=y 1187 + # CONFIG_DNOTIFY is not set 1188 + CONFIG_INOTIFY=y 1189 + CONFIG_INOTIFY_USER=y 1190 + # CONFIG_QUOTA is not set 1191 + # CONFIG_AUTOFS_FS is not set 1192 + # CONFIG_AUTOFS4_FS is not set 1193 + CONFIG_FUSE_FS=m 1194 + # CONFIG_CUSE is not set 1195 + 1196 + # 1197 + # Caches 1198 + # 1199 + # CONFIG_FSCACHE is not set 1200 + 1201 + # 1202 + # CD-ROM/DVD Filesystems 1203 + # 1204 + # CONFIG_ISO9660_FS is not set 1205 + # CONFIG_UDF_FS is not set 1206 + 1207 + # 1208 + # DOS/FAT/NT Filesystems 1209 + # 1210 + CONFIG_FAT_FS=m 1211 + CONFIG_MSDOS_FS=m 1212 + CONFIG_VFAT_FS=m 1213 + CONFIG_FAT_DEFAULT_CODEPAGE=850 1214 + CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" 1215 + # CONFIG_NTFS_FS is not set 1216 + 1217 + # 1218 + # Pseudo filesystems 1219 + # 1220 + CONFIG_PROC_FS=y 1221 + # CONFIG_PROC_KCORE is not set 1222 + CONFIG_PROC_SYSCTL=y 1223 + CONFIG_PROC_PAGE_MONITOR=y 1224 + CONFIG_SYSFS=y 1225 + CONFIG_TMPFS=y 1226 + # CONFIG_TMPFS_POSIX_ACL is not set 1227 + # CONFIG_HUGETLB_PAGE is not set 1228 + CONFIG_CONFIGFS_FS=y 1229 + CONFIG_MISC_FILESYSTEMS=y 1230 + # CONFIG_ADFS_FS is not set 1231 + # CONFIG_AFFS_FS is not set 1232 + # CONFIG_HFS_FS is not set 1233 + # CONFIG_HFSPLUS_FS is not set 1234 + # CONFIG_BEFS_FS is not set 1235 + # CONFIG_BFS_FS is not set 1236 + # CONFIG_EFS_FS is not set 1237 + CONFIG_JFFS2_FS=y 1238 + CONFIG_JFFS2_FS_DEBUG=0 1239 + CONFIG_JFFS2_FS_WRITEBUFFER=y 1240 + # CONFIG_JFFS2_FS_WBUF_VERIFY is not set 1241 + # CONFIG_JFFS2_SUMMARY is not set 1242 + # CONFIG_JFFS2_FS_XATTR is not set 1243 + # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1244 + CONFIG_JFFS2_ZLIB=y 1245 + # CONFIG_JFFS2_LZO is not set 1246 + CONFIG_JFFS2_RTIME=y 1247 + # CONFIG_JFFS2_RUBIN is not set 1248 + CONFIG_UBIFS_FS=y 1249 + # CONFIG_UBIFS_FS_XATTR is not set 1250 + # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set 1251 + CONFIG_UBIFS_FS_LZO=y 1252 + CONFIG_UBIFS_FS_ZLIB=y 1253 + # CONFIG_UBIFS_FS_DEBUG is not set 1254 + # CONFIG_CRAMFS is not set 1255 + # CONFIG_SQUASHFS is not set 1256 + # CONFIG_VXFS_FS is not set 1257 + # CONFIG_MINIX_FS is not set 1258 + # CONFIG_OMFS_FS is not set 1259 + # CONFIG_HPFS_FS is not set 1260 + # CONFIG_QNX4FS_FS is not set 1261 + # CONFIG_ROMFS_FS is not set 1262 + # CONFIG_SYSV_FS is not set 1263 + # CONFIG_UFS_FS is not set 1264 + CONFIG_NETWORK_FILESYSTEMS=y 1265 + CONFIG_NFS_FS=y 1266 + CONFIG_NFS_V3=y 1267 + # CONFIG_NFS_V3_ACL is not set 1268 + # CONFIG_NFS_V4 is not set 1269 + CONFIG_ROOT_NFS=y 1270 + CONFIG_NFSD=m 1271 + CONFIG_NFSD_V3=y 1272 + # CONFIG_NFSD_V3_ACL is not set 1273 + # CONFIG_NFSD_V4 is not set 1274 + CONFIG_LOCKD=y 1275 + CONFIG_LOCKD_V4=y 1276 + CONFIG_EXPORTFS=m 1277 + CONFIG_NFS_COMMON=y 1278 + CONFIG_SUNRPC=y 1279 + # CONFIG_RPCSEC_GSS_KRB5 is not set 1280 + # CONFIG_RPCSEC_GSS_SPKM3 is not set 1281 + CONFIG_SMB_FS=m 1282 + # CONFIG_SMB_NLS_DEFAULT is not set 1283 + CONFIG_CIFS=m 1284 + # CONFIG_CIFS_STATS is not set 1285 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1286 + # CONFIG_CIFS_XATTR is not set 1287 + # CONFIG_CIFS_DEBUG2 is not set 1288 + # CONFIG_CIFS_EXPERIMENTAL is not set 1289 + # CONFIG_NCP_FS is not set 1290 + # CONFIG_CODA_FS is not set 1291 + # CONFIG_AFS_FS is not set 1292 + 1293 + # 1294 + # Partition Types 1295 + # 1296 + # CONFIG_PARTITION_ADVANCED is not set 1297 + CONFIG_MSDOS_PARTITION=y 1298 + CONFIG_NLS=m 1299 + CONFIG_NLS_DEFAULT="iso8859-1" 1300 + CONFIG_NLS_CODEPAGE_437=m 1301 + # CONFIG_NLS_CODEPAGE_737 is not set 1302 + # CONFIG_NLS_CODEPAGE_775 is not set 1303 + CONFIG_NLS_CODEPAGE_850=m 1304 + # CONFIG_NLS_CODEPAGE_852 is not set 1305 + # CONFIG_NLS_CODEPAGE_855 is not set 1306 + # CONFIG_NLS_CODEPAGE_857 is not set 1307 + # CONFIG_NLS_CODEPAGE_860 is not set 1308 + # CONFIG_NLS_CODEPAGE_861 is not set 1309 + # CONFIG_NLS_CODEPAGE_862 is not set 1310 + # CONFIG_NLS_CODEPAGE_863 is not set 1311 + # CONFIG_NLS_CODEPAGE_864 is not set 1312 + # CONFIG_NLS_CODEPAGE_865 is not set 1313 + # CONFIG_NLS_CODEPAGE_866 is not set 1314 + # CONFIG_NLS_CODEPAGE_869 is not set 1315 + # CONFIG_NLS_CODEPAGE_936 is not set 1316 + # CONFIG_NLS_CODEPAGE_950 is not set 1317 + # CONFIG_NLS_CODEPAGE_932 is not set 1318 + # CONFIG_NLS_CODEPAGE_949 is not set 1319 + # CONFIG_NLS_CODEPAGE_874 is not set 1320 + # CONFIG_NLS_ISO8859_8 is not set 1321 + # CONFIG_NLS_CODEPAGE_1250 is not set 1322 + # CONFIG_NLS_CODEPAGE_1251 is not set 1323 + # CONFIG_NLS_ASCII is not set 1324 + CONFIG_NLS_ISO8859_1=m 1325 + # CONFIG_NLS_ISO8859_2 is not set 1326 + # CONFIG_NLS_ISO8859_3 is not set 1327 + # CONFIG_NLS_ISO8859_4 is not set 1328 + # CONFIG_NLS_ISO8859_5 is not set 1329 + # CONFIG_NLS_ISO8859_6 is not set 1330 + # CONFIG_NLS_ISO8859_7 is not set 1331 + # CONFIG_NLS_ISO8859_9 is not set 1332 + # CONFIG_NLS_ISO8859_13 is not set 1333 + # CONFIG_NLS_ISO8859_14 is not set 1334 + # CONFIG_NLS_ISO8859_15 is not set 1335 + # CONFIG_NLS_KOI8_R is not set 1336 + # CONFIG_NLS_KOI8_U is not set 1337 + CONFIG_NLS_UTF8=m 1338 + # CONFIG_DLM is not set 1339 + 1340 + # 1341 + # Kernel hacking 1342 + # 1343 + # CONFIG_PRINTK_TIME is not set 1344 + CONFIG_ENABLE_WARN_DEPRECATED=y 1345 + CONFIG_ENABLE_MUST_CHECK=y 1346 + CONFIG_FRAME_WARN=1024 1347 + CONFIG_MAGIC_SYSRQ=y 1348 + # CONFIG_STRIP_ASM_SYMS is not set 1349 + # CONFIG_UNUSED_SYMBOLS is not set 1350 + CONFIG_DEBUG_FS=y 1351 + # CONFIG_HEADERS_CHECK is not set 1352 + CONFIG_DEBUG_KERNEL=y 1353 + # CONFIG_DEBUG_SHIRQ is not set 1354 + CONFIG_DETECT_SOFTLOCKUP=y 1355 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1356 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1357 + CONFIG_DETECT_HUNG_TASK=y 1358 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1359 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1360 + CONFIG_SCHED_DEBUG=y 1361 + # CONFIG_SCHEDSTATS is not set 1362 + # CONFIG_TIMER_STATS is not set 1363 + # CONFIG_DEBUG_OBJECTS is not set 1364 + # CONFIG_SLUB_DEBUG_ON is not set 1365 + # CONFIG_SLUB_STATS is not set 1366 + # CONFIG_DEBUG_RT_MUTEXES is not set 1367 + # CONFIG_RT_MUTEX_TESTER is not set 1368 + # CONFIG_DEBUG_SPINLOCK is not set 1369 + # CONFIG_DEBUG_MUTEXES is not set 1370 + # CONFIG_DEBUG_LOCK_ALLOC is not set 1371 + # CONFIG_PROVE_LOCKING is not set 1372 + # CONFIG_LOCK_STAT is not set 1373 + # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1374 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1375 + CONFIG_STACKTRACE=y 1376 + # CONFIG_DEBUG_KOBJECT is not set 1377 + CONFIG_DEBUG_BUGVERBOSE=y 1378 + # CONFIG_DEBUG_INFO is not set 1379 + # CONFIG_DEBUG_VM is not set 1380 + # CONFIG_DEBUG_WRITECOUNT is not set 1381 + # CONFIG_DEBUG_MEMORY_INIT is not set 1382 + # CONFIG_DEBUG_LIST is not set 1383 + # CONFIG_DEBUG_SG is not set 1384 + # CONFIG_DEBUG_NOTIFIERS is not set 1385 + # CONFIG_DEBUG_CREDENTIALS is not set 1386 + CONFIG_FRAME_POINTER=y 1387 + # CONFIG_BOOT_PRINTK_DELAY is not set 1388 + # CONFIG_RCU_TORTURE_TEST is not set 1389 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1390 + # CONFIG_KPROBES_SANITY_TEST is not set 1391 + # CONFIG_BACKTRACE_SELF_TEST is not set 1392 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1393 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1394 + # CONFIG_LKDTM is not set 1395 + # CONFIG_FAULT_INJECTION is not set 1396 + # CONFIG_PAGE_POISONING is not set 1397 + CONFIG_NOP_TRACER=y 1398 + CONFIG_RING_BUFFER=y 1399 + CONFIG_EVENT_TRACING=y 1400 + CONFIG_CONTEXT_SWITCH_TRACER=y 1401 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1402 + CONFIG_TRACING=y 1403 + CONFIG_TRACING_SUPPORT=y 1404 + CONFIG_FTRACE=y 1405 + # CONFIG_IRQSOFF_TRACER is not set 1406 + # CONFIG_SCHED_TRACER is not set 1407 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1408 + # CONFIG_BOOT_TRACER is not set 1409 + CONFIG_BRANCH_PROFILE_NONE=y 1410 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1411 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1412 + # CONFIG_KMEMTRACE is not set 1413 + # CONFIG_WORKQUEUE_TRACER is not set 1414 + # CONFIG_BLK_DEV_IO_TRACE is not set 1415 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1416 + # CONFIG_DYNAMIC_DEBUG is not set 1417 + # CONFIG_SAMPLES is not set 1418 + 1419 + # 1420 + # Security options 1421 + # 1422 + # CONFIG_KEYS is not set 1423 + # CONFIG_SECURITY is not set 1424 + # CONFIG_SECURITYFS is not set 1425 + # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1426 + CONFIG_CRYPTO=y 1427 + 1428 + # 1429 + # Crypto core or helper 1430 + # 1431 + # CONFIG_CRYPTO_FIPS is not set 1432 + CONFIG_CRYPTO_ALGAPI=y 1433 + CONFIG_CRYPTO_ALGAPI2=y 1434 + CONFIG_CRYPTO_AEAD=y 1435 + CONFIG_CRYPTO_AEAD2=y 1436 + CONFIG_CRYPTO_BLKCIPHER=y 1437 + CONFIG_CRYPTO_BLKCIPHER2=y 1438 + CONFIG_CRYPTO_HASH=y 1439 + CONFIG_CRYPTO_HASH2=y 1440 + CONFIG_CRYPTO_RNG=m 1441 + CONFIG_CRYPTO_RNG2=y 1442 + CONFIG_CRYPTO_PCOMP=y 1443 + CONFIG_CRYPTO_MANAGER=y 1444 + CONFIG_CRYPTO_MANAGER2=y 1445 + # CONFIG_CRYPTO_GF128MUL is not set 1446 + # CONFIG_CRYPTO_NULL is not set 1447 + CONFIG_CRYPTO_WORKQUEUE=y 1448 + # CONFIG_CRYPTO_CRYPTD is not set 1449 + CONFIG_CRYPTO_AUTHENC=y 1450 + # CONFIG_CRYPTO_TEST is not set 1451 + 1452 + # 1453 + # Authenticated Encryption with Associated Data 1454 + # 1455 + # CONFIG_CRYPTO_CCM is not set 1456 + # CONFIG_CRYPTO_GCM is not set 1457 + # CONFIG_CRYPTO_SEQIV is not set 1458 + 1459 + # 1460 + # Block modes 1461 + # 1462 + CONFIG_CRYPTO_CBC=y 1463 + # CONFIG_CRYPTO_CTR is not set 1464 + # CONFIG_CRYPTO_CTS is not set 1465 + CONFIG_CRYPTO_ECB=m 1466 + # CONFIG_CRYPTO_LRW is not set 1467 + # CONFIG_CRYPTO_PCBC is not set 1468 + # CONFIG_CRYPTO_XTS is not set 1469 + 1470 + # 1471 + # Hash modes 1472 + # 1473 + CONFIG_CRYPTO_HMAC=y 1474 + # CONFIG_CRYPTO_XCBC is not set 1475 + # CONFIG_CRYPTO_VMAC is not set 1476 + 1477 + # 1478 + # Digest 1479 + # 1480 + # CONFIG_CRYPTO_CRC32C is not set 1481 + # CONFIG_CRYPTO_GHASH is not set 1482 + # CONFIG_CRYPTO_MD4 is not set 1483 + CONFIG_CRYPTO_MD5=y 1484 + # CONFIG_CRYPTO_MICHAEL_MIC is not set 1485 + # CONFIG_CRYPTO_RMD128 is not set 1486 + # CONFIG_CRYPTO_RMD160 is not set 1487 + # CONFIG_CRYPTO_RMD256 is not set 1488 + # CONFIG_CRYPTO_RMD320 is not set 1489 + CONFIG_CRYPTO_SHA1=y 1490 + # CONFIG_CRYPTO_SHA256 is not set 1491 + # CONFIG_CRYPTO_SHA512 is not set 1492 + # CONFIG_CRYPTO_TGR192 is not set 1493 + # CONFIG_CRYPTO_WP512 is not set 1494 + 1495 + # 1496 + # Ciphers 1497 + # 1498 + CONFIG_CRYPTO_AES=m 1499 + # CONFIG_CRYPTO_ANUBIS is not set 1500 + CONFIG_CRYPTO_ARC4=m 1501 + # CONFIG_CRYPTO_BLOWFISH is not set 1502 + # CONFIG_CRYPTO_CAMELLIA is not set 1503 + # CONFIG_CRYPTO_CAST5 is not set 1504 + # CONFIG_CRYPTO_CAST6 is not set 1505 + CONFIG_CRYPTO_DES=y 1506 + # CONFIG_CRYPTO_FCRYPT is not set 1507 + # CONFIG_CRYPTO_KHAZAD is not set 1508 + # CONFIG_CRYPTO_SALSA20 is not set 1509 + # CONFIG_CRYPTO_SEED is not set 1510 + # CONFIG_CRYPTO_SERPENT is not set 1511 + # CONFIG_CRYPTO_TEA is not set 1512 + # CONFIG_CRYPTO_TWOFISH is not set 1513 + 1514 + # 1515 + # Compression 1516 + # 1517 + CONFIG_CRYPTO_DEFLATE=y 1518 + # CONFIG_CRYPTO_ZLIB is not set 1519 + CONFIG_CRYPTO_LZO=y 1520 + 1521 + # 1522 + # Random Number Generation 1523 + # 1524 + CONFIG_CRYPTO_ANSI_CPRNG=m 1525 + CONFIG_CRYPTO_HW=y 1526 + CONFIG_BINARY_PRINTF=y 1527 + 1528 + # 1529 + # Library routines 1530 + # 1531 + CONFIG_BITREVERSE=y 1532 + CONFIG_GENERIC_FIND_LAST_BIT=y 1533 + CONFIG_CRC_CCITT=m 1534 + CONFIG_CRC16=y 1535 + # CONFIG_CRC_T10DIF is not set 1536 + # CONFIG_CRC_ITU_T is not set 1537 + CONFIG_CRC32=y 1538 + # CONFIG_CRC7 is not set 1539 + # CONFIG_LIBCRC32C is not set 1540 + CONFIG_ZLIB_INFLATE=y 1541 + CONFIG_ZLIB_DEFLATE=y 1542 + CONFIG_LZO_COMPRESS=y 1543 + CONFIG_LZO_DECOMPRESS=y 1544 + CONFIG_DECOMPRESS_GZIP=y 1545 + CONFIG_GENERIC_ALLOCATOR=y 1546 + CONFIG_HAS_IOMEM=y 1547 + CONFIG_HAS_IOPORT=y 1548 + CONFIG_HAS_DMA=y 1549 + CONFIG_NLATTR=y
+1549
arch/avr32/configs/atngw100mkii_evklcd101_defconfig
··· 1 + # 2 + # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Nov 5 15:33:32 2009 5 + # 6 + CONFIG_AVR32=y 7 + CONFIG_GENERIC_GPIO=y 8 + CONFIG_GENERIC_HARDIRQS=y 9 + CONFIG_STACKTRACE_SUPPORT=y 10 + CONFIG_LOCKDEP_SUPPORT=y 11 + CONFIG_TRACE_IRQFLAGS_SUPPORT=y 12 + CONFIG_HARDIRQS_SW_RESEND=y 13 + CONFIG_GENERIC_IRQ_PROBE=y 14 + CONFIG_RWSEM_GENERIC_SPINLOCK=y 15 + CONFIG_GENERIC_TIME=y 16 + CONFIG_GENERIC_CLOCKEVENTS=y 17 + # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set 18 + # CONFIG_ARCH_HAS_ILOG2_U32 is not set 19 + # CONFIG_ARCH_HAS_ILOG2_U64 is not set 20 + CONFIG_GENERIC_HWEIGHT=y 21 + CONFIG_GENERIC_CALIBRATE_DELAY=y 22 + CONFIG_GENERIC_BUG=y 23 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 25 + 26 + # 27 + # General setup 28 + # 29 + CONFIG_EXPERIMENTAL=y 30 + CONFIG_BROKEN_ON_SMP=y 31 + CONFIG_INIT_ENV_ARG_LIMIT=32 32 + CONFIG_LOCALVERSION="" 33 + # CONFIG_LOCALVERSION_AUTO is not set 34 + CONFIG_SWAP=y 35 + CONFIG_SYSVIPC=y 36 + CONFIG_SYSVIPC_SYSCTL=y 37 + CONFIG_POSIX_MQUEUE=y 38 + CONFIG_POSIX_MQUEUE_SYSCTL=y 39 + CONFIG_BSD_PROCESS_ACCT=y 40 + CONFIG_BSD_PROCESS_ACCT_V3=y 41 + # CONFIG_TASKSTATS is not set 42 + # CONFIG_AUDIT is not set 43 + 44 + # 45 + # RCU Subsystem 46 + # 47 + CONFIG_TREE_RCU=y 48 + # CONFIG_TREE_PREEMPT_RCU is not set 49 + # CONFIG_RCU_TRACE is not set 50 + CONFIG_RCU_FANOUT=32 51 + # CONFIG_RCU_FANOUT_EXACT is not set 52 + # CONFIG_TREE_RCU_TRACE is not set 53 + # CONFIG_IKCONFIG is not set 54 + CONFIG_LOG_BUF_SHIFT=14 55 + # CONFIG_GROUP_SCHED is not set 56 + # CONFIG_CGROUPS is not set 57 + CONFIG_SYSFS_DEPRECATED=y 58 + CONFIG_SYSFS_DEPRECATED_V2=y 59 + # CONFIG_RELAY is not set 60 + # CONFIG_NAMESPACES is not set 61 + CONFIG_BLK_DEV_INITRD=y 62 + CONFIG_INITRAMFS_SOURCE="" 63 + CONFIG_RD_GZIP=y 64 + # CONFIG_RD_BZIP2 is not set 65 + # CONFIG_RD_LZMA is not set 66 + CONFIG_CC_OPTIMIZE_FOR_SIZE=y 67 + CONFIG_SYSCTL=y 68 + CONFIG_ANON_INODES=y 69 + CONFIG_EMBEDDED=y 70 + # CONFIG_SYSCTL_SYSCALL is not set 71 + CONFIG_KALLSYMS=y 72 + # CONFIG_KALLSYMS_ALL is not set 73 + # CONFIG_KALLSYMS_EXTRA_PASS is not set 74 + CONFIG_HOTPLUG=y 75 + CONFIG_PRINTK=y 76 + CONFIG_BUG=y 77 + CONFIG_ELF_CORE=y 78 + # CONFIG_BASE_FULL is not set 79 + CONFIG_FUTEX=y 80 + CONFIG_EPOLL=y 81 + CONFIG_SIGNALFD=y 82 + CONFIG_TIMERFD=y 83 + CONFIG_EVENTFD=y 84 + CONFIG_SHMEM=y 85 + CONFIG_AIO=y 86 + 87 + # 88 + # Kernel Performance Events And Counters 89 + # 90 + CONFIG_VM_EVENT_COUNTERS=y 91 + CONFIG_SLUB_DEBUG=y 92 + # CONFIG_COMPAT_BRK is not set 93 + # CONFIG_SLAB is not set 94 + CONFIG_SLUB=y 95 + # CONFIG_SLOB is not set 96 + CONFIG_PROFILING=y 97 + CONFIG_TRACEPOINTS=y 98 + CONFIG_OPROFILE=m 99 + CONFIG_HAVE_OPROFILE=y 100 + CONFIG_KPROBES=y 101 + CONFIG_HAVE_KPROBES=y 102 + CONFIG_HAVE_CLK=y 103 + 104 + # 105 + # GCOV-based kernel profiling 106 + # 107 + # CONFIG_GCOV_KERNEL is not set 108 + CONFIG_SLOW_WORK=y 109 + # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 110 + CONFIG_SLABINFO=y 111 + CONFIG_RT_MUTEXES=y 112 + CONFIG_BASE_SMALL=1 113 + CONFIG_MODULES=y 114 + # CONFIG_MODULE_FORCE_LOAD is not set 115 + CONFIG_MODULE_UNLOAD=y 116 + CONFIG_MODULE_FORCE_UNLOAD=y 117 + # CONFIG_MODVERSIONS is not set 118 + # CONFIG_MODULE_SRCVERSION_ALL is not set 119 + CONFIG_BLOCK=y 120 + CONFIG_LBDAF=y 121 + # CONFIG_BLK_DEV_BSG is not set 122 + # CONFIG_BLK_DEV_INTEGRITY is not set 123 + 124 + # 125 + # IO Schedulers 126 + # 127 + CONFIG_IOSCHED_NOOP=y 128 + # CONFIG_IOSCHED_AS is not set 129 + # CONFIG_IOSCHED_DEADLINE is not set 130 + CONFIG_IOSCHED_CFQ=y 131 + # CONFIG_DEFAULT_AS is not set 132 + # CONFIG_DEFAULT_DEADLINE is not set 133 + CONFIG_DEFAULT_CFQ=y 134 + # CONFIG_DEFAULT_NOOP is not set 135 + CONFIG_DEFAULT_IOSCHED="cfq" 136 + CONFIG_FREEZER=y 137 + 138 + # 139 + # System Type and features 140 + # 141 + CONFIG_TICK_ONESHOT=y 142 + CONFIG_NO_HZ=y 143 + CONFIG_HIGH_RES_TIMERS=y 144 + CONFIG_GENERIC_CLOCKEVENTS_BUILD=y 145 + CONFIG_SUBARCH_AVR32B=y 146 + CONFIG_MMU=y 147 + CONFIG_PERFORMANCE_COUNTERS=y 148 + CONFIG_PLATFORM_AT32AP=y 149 + CONFIG_CPU_AT32AP700X=y 150 + CONFIG_CPU_AT32AP7000=y 151 + CONFIG_BOARD_ATNGW100_COMMON=y 152 + # CONFIG_BOARD_ATSTK1000 is not set 153 + # CONFIG_BOARD_ATNGW100_MKI is not set 154 + CONFIG_BOARD_ATNGW100_MKII=y 155 + # CONFIG_BOARD_HAMMERHEAD is not set 156 + # CONFIG_BOARD_FAVR_32 is not set 157 + # CONFIG_BOARD_MERISC is not set 158 + # CONFIG_BOARD_MIMC200 is not set 159 + CONFIG_BOARD_ATNGW100_MKII_LCD=y 160 + # CONFIG_BOARD_ATNGW100_ADDON_NONE is not set 161 + CONFIG_BOARD_ATNGW100_EVKLCD10X=y 162 + # CONFIG_BOARD_ATNGW100_MRMT is not set 163 + # CONFIG_BOARD_ATNGW100_EVKLCD10X_QVGA is not set 164 + CONFIG_BOARD_ATNGW100_EVKLCD10X_VGA=y 165 + # CONFIG_BOARD_ATNGW100_EVKLCD10X_POW_QVGA is not set 166 + CONFIG_LOADER_U_BOOT=y 167 + 168 + # 169 + # Atmel AVR32 AP options 170 + # 171 + # CONFIG_AP700X_32_BIT_SMC is not set 172 + CONFIG_AP700X_16_BIT_SMC=y 173 + # CONFIG_AP700X_8_BIT_SMC is not set 174 + CONFIG_LOAD_ADDRESS=0x10000000 175 + CONFIG_ENTRY_ADDRESS=0x90000000 176 + CONFIG_PHYS_OFFSET=0x10000000 177 + CONFIG_PREEMPT_NONE=y 178 + # CONFIG_PREEMPT_VOLUNTARY is not set 179 + # CONFIG_PREEMPT is not set 180 + CONFIG_QUICKLIST=y 181 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 182 + # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 183 + # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 184 + CONFIG_ARCH_FLATMEM_ENABLE=y 185 + # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set 186 + # CONFIG_ARCH_SPARSEMEM_ENABLE is not set 187 + CONFIG_SELECT_MEMORY_MODEL=y 188 + CONFIG_FLATMEM_MANUAL=y 189 + # CONFIG_DISCONTIGMEM_MANUAL is not set 190 + # CONFIG_SPARSEMEM_MANUAL is not set 191 + CONFIG_FLATMEM=y 192 + CONFIG_FLAT_NODE_MEM_MAP=y 193 + CONFIG_PAGEFLAGS_EXTENDED=y 194 + CONFIG_SPLIT_PTLOCK_CPUS=4 195 + # CONFIG_PHYS_ADDR_T_64BIT is not set 196 + CONFIG_ZONE_DMA_FLAG=0 197 + CONFIG_NR_QUICK=2 198 + CONFIG_VIRT_TO_BUS=y 199 + CONFIG_HAVE_MLOCK=y 200 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 201 + # CONFIG_KSM is not set 202 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 203 + # CONFIG_OWNERSHIP_TRACE is not set 204 + CONFIG_NMI_DEBUGGING=y 205 + # CONFIG_HZ_100 is not set 206 + CONFIG_HZ_250=y 207 + # CONFIG_HZ_300 is not set 208 + # CONFIG_HZ_1000 is not set 209 + CONFIG_HZ=250 210 + CONFIG_SCHED_HRTICK=y 211 + CONFIG_CMDLINE="" 212 + 213 + # 214 + # Power management options 215 + # 216 + CONFIG_PM=y 217 + # CONFIG_PM_DEBUG is not set 218 + CONFIG_PM_SLEEP=y 219 + CONFIG_SUSPEND=y 220 + CONFIG_SUSPEND_FREEZER=y 221 + # CONFIG_PM_RUNTIME is not set 222 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 223 + 224 + # 225 + # CPU Frequency scaling 226 + # 227 + CONFIG_CPU_FREQ=y 228 + CONFIG_CPU_FREQ_TABLE=y 229 + # CONFIG_CPU_FREQ_DEBUG is not set 230 + # CONFIG_CPU_FREQ_STAT is not set 231 + # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set 232 + # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set 233 + # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set 234 + CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y 235 + # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set 236 + CONFIG_CPU_FREQ_GOV_PERFORMANCE=y 237 + # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set 238 + CONFIG_CPU_FREQ_GOV_USERSPACE=y 239 + CONFIG_CPU_FREQ_GOV_ONDEMAND=y 240 + # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set 241 + CONFIG_CPU_FREQ_AT32AP=y 242 + 243 + # 244 + # Bus options 245 + # 246 + # CONFIG_ARCH_SUPPORTS_MSI is not set 247 + # CONFIG_PCCARD is not set 248 + 249 + # 250 + # Executable file formats 251 + # 252 + CONFIG_BINFMT_ELF=y 253 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 254 + # CONFIG_HAVE_AOUT is not set 255 + # CONFIG_BINFMT_MISC is not set 256 + CONFIG_NET=y 257 + 258 + # 259 + # Networking options 260 + # 261 + CONFIG_PACKET=y 262 + CONFIG_PACKET_MMAP=y 263 + CONFIG_UNIX=y 264 + CONFIG_XFRM=y 265 + CONFIG_XFRM_USER=y 266 + # CONFIG_XFRM_SUB_POLICY is not set 267 + # CONFIG_XFRM_MIGRATE is not set 268 + # CONFIG_XFRM_STATISTICS is not set 269 + CONFIG_XFRM_IPCOMP=y 270 + CONFIG_NET_KEY=y 271 + # CONFIG_NET_KEY_MIGRATE is not set 272 + CONFIG_INET=y 273 + CONFIG_IP_MULTICAST=y 274 + CONFIG_IP_ADVANCED_ROUTER=y 275 + CONFIG_ASK_IP_FIB_HASH=y 276 + # CONFIG_IP_FIB_TRIE is not set 277 + CONFIG_IP_FIB_HASH=y 278 + # CONFIG_IP_MULTIPLE_TABLES is not set 279 + # CONFIG_IP_ROUTE_MULTIPATH is not set 280 + # CONFIG_IP_ROUTE_VERBOSE is not set 281 + CONFIG_IP_PNP=y 282 + CONFIG_IP_PNP_DHCP=y 283 + # CONFIG_IP_PNP_BOOTP is not set 284 + # CONFIG_IP_PNP_RARP is not set 285 + # CONFIG_NET_IPIP is not set 286 + # CONFIG_NET_IPGRE is not set 287 + CONFIG_IP_MROUTE=y 288 + CONFIG_IP_PIMSM_V1=y 289 + # CONFIG_IP_PIMSM_V2 is not set 290 + # CONFIG_ARPD is not set 291 + CONFIG_SYN_COOKIES=y 292 + CONFIG_INET_AH=y 293 + CONFIG_INET_ESP=y 294 + CONFIG_INET_IPCOMP=y 295 + CONFIG_INET_XFRM_TUNNEL=y 296 + CONFIG_INET_TUNNEL=y 297 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 298 + CONFIG_INET_XFRM_MODE_TUNNEL=y 299 + CONFIG_INET_XFRM_MODE_BEET=y 300 + # CONFIG_INET_LRO is not set 301 + CONFIG_INET_DIAG=y 302 + CONFIG_INET_TCP_DIAG=y 303 + # CONFIG_TCP_CONG_ADVANCED is not set 304 + CONFIG_TCP_CONG_CUBIC=y 305 + CONFIG_DEFAULT_TCP_CONG="cubic" 306 + # CONFIG_TCP_MD5SIG is not set 307 + CONFIG_IPV6=y 308 + # CONFIG_IPV6_PRIVACY is not set 309 + # CONFIG_IPV6_ROUTER_PREF is not set 310 + # CONFIG_IPV6_OPTIMISTIC_DAD is not set 311 + CONFIG_INET6_AH=y 312 + CONFIG_INET6_ESP=y 313 + CONFIG_INET6_IPCOMP=y 314 + # CONFIG_IPV6_MIP6 is not set 315 + CONFIG_INET6_XFRM_TUNNEL=y 316 + CONFIG_INET6_TUNNEL=y 317 + CONFIG_INET6_XFRM_MODE_TRANSPORT=y 318 + CONFIG_INET6_XFRM_MODE_TUNNEL=y 319 + CONFIG_INET6_XFRM_MODE_BEET=y 320 + # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set 321 + CONFIG_IPV6_SIT=y 322 + CONFIG_IPV6_NDISC_NODETYPE=y 323 + # CONFIG_IPV6_TUNNEL is not set 324 + # CONFIG_IPV6_MULTIPLE_TABLES is not set 325 + # CONFIG_IPV6_MROUTE is not set 326 + # CONFIG_NETWORK_SECMARK is not set 327 + CONFIG_NETFILTER=y 328 + # CONFIG_NETFILTER_DEBUG is not set 329 + # CONFIG_NETFILTER_ADVANCED is not set 330 + 331 + # 332 + # Core Netfilter Configuration 333 + # 334 + CONFIG_NETFILTER_NETLINK=m 335 + CONFIG_NETFILTER_NETLINK_LOG=m 336 + CONFIG_NF_CONNTRACK=m 337 + CONFIG_NF_CONNTRACK_FTP=m 338 + CONFIG_NF_CONNTRACK_IRC=m 339 + CONFIG_NF_CONNTRACK_SIP=m 340 + CONFIG_NF_CT_NETLINK=m 341 + CONFIG_NETFILTER_XTABLES=y 342 + CONFIG_NETFILTER_XT_TARGET_MARK=m 343 + CONFIG_NETFILTER_XT_TARGET_NFLOG=m 344 + CONFIG_NETFILTER_XT_TARGET_TCPMSS=m 345 + CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m 346 + CONFIG_NETFILTER_XT_MATCH_MARK=m 347 + CONFIG_NETFILTER_XT_MATCH_POLICY=m 348 + CONFIG_NETFILTER_XT_MATCH_STATE=m 349 + # CONFIG_IP_VS is not set 350 + 351 + # 352 + # IP: Netfilter Configuration 353 + # 354 + CONFIG_NF_DEFRAG_IPV4=m 355 + CONFIG_NF_CONNTRACK_IPV4=m 356 + CONFIG_NF_CONNTRACK_PROC_COMPAT=y 357 + CONFIG_IP_NF_IPTABLES=m 358 + CONFIG_IP_NF_FILTER=m 359 + CONFIG_IP_NF_TARGET_REJECT=m 360 + CONFIG_IP_NF_TARGET_LOG=m 361 + # CONFIG_IP_NF_TARGET_ULOG is not set 362 + CONFIG_NF_NAT=m 363 + CONFIG_NF_NAT_NEEDED=y 364 + CONFIG_IP_NF_TARGET_MASQUERADE=m 365 + CONFIG_NF_NAT_FTP=m 366 + CONFIG_NF_NAT_IRC=m 367 + # CONFIG_NF_NAT_TFTP is not set 368 + # CONFIG_NF_NAT_AMANDA is not set 369 + # CONFIG_NF_NAT_PPTP is not set 370 + # CONFIG_NF_NAT_H323 is not set 371 + CONFIG_NF_NAT_SIP=m 372 + CONFIG_IP_NF_MANGLE=m 373 + 374 + # 375 + # IPv6: Netfilter Configuration 376 + # 377 + CONFIG_NF_CONNTRACK_IPV6=m 378 + CONFIG_IP6_NF_IPTABLES=m 379 + CONFIG_IP6_NF_MATCH_IPV6HEADER=m 380 + CONFIG_IP6_NF_TARGET_LOG=m 381 + CONFIG_IP6_NF_FILTER=m 382 + CONFIG_IP6_NF_TARGET_REJECT=m 383 + CONFIG_IP6_NF_MANGLE=m 384 + # CONFIG_IP_DCCP is not set 385 + # CONFIG_IP_SCTP is not set 386 + # CONFIG_RDS is not set 387 + # CONFIG_TIPC is not set 388 + # CONFIG_ATM is not set 389 + CONFIG_STP=m 390 + CONFIG_BRIDGE=m 391 + # CONFIG_NET_DSA is not set 392 + CONFIG_VLAN_8021Q=m 393 + # CONFIG_VLAN_8021Q_GVRP is not set 394 + # CONFIG_DECNET is not set 395 + CONFIG_LLC=m 396 + # CONFIG_LLC2 is not set 397 + # CONFIG_IPX is not set 398 + # CONFIG_ATALK is not set 399 + # CONFIG_X25 is not set 400 + # CONFIG_LAPB is not set 401 + # CONFIG_ECONET is not set 402 + # CONFIG_WAN_ROUTER is not set 403 + # CONFIG_PHONET is not set 404 + # CONFIG_IEEE802154 is not set 405 + # CONFIG_NET_SCHED is not set 406 + # CONFIG_DCB is not set 407 + 408 + # 409 + # Network testing 410 + # 411 + # CONFIG_NET_PKTGEN is not set 412 + # CONFIG_NET_TCPPROBE is not set 413 + # CONFIG_NET_DROP_MONITOR is not set 414 + # CONFIG_HAMRADIO is not set 415 + # CONFIG_CAN is not set 416 + # CONFIG_IRDA is not set 417 + # CONFIG_BT is not set 418 + # CONFIG_AF_RXRPC is not set 419 + CONFIG_WIRELESS=y 420 + # CONFIG_CFG80211 is not set 421 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 422 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 423 + # CONFIG_WIRELESS_EXT is not set 424 + # CONFIG_LIB80211 is not set 425 + 426 + # 427 + # CFG80211 needs to be enabled for MAC80211 428 + # 429 + # CONFIG_WIMAX is not set 430 + # CONFIG_RFKILL is not set 431 + # CONFIG_NET_9P is not set 432 + 433 + # 434 + # Device Drivers 435 + # 436 + 437 + # 438 + # Generic Driver Options 439 + # 440 + CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 441 + # CONFIG_DEVTMPFS is not set 442 + CONFIG_STANDALONE=y 443 + # CONFIG_PREVENT_FIRMWARE_BUILD is not set 444 + # CONFIG_FW_LOADER is not set 445 + # CONFIG_DEBUG_DRIVER is not set 446 + # CONFIG_DEBUG_DEVRES is not set 447 + # CONFIG_SYS_HYPERVISOR is not set 448 + # CONFIG_CONNECTOR is not set 449 + CONFIG_MTD=y 450 + # CONFIG_MTD_DEBUG is not set 451 + # CONFIG_MTD_TESTS is not set 452 + # CONFIG_MTD_CONCAT is not set 453 + CONFIG_MTD_PARTITIONS=y 454 + # CONFIG_MTD_REDBOOT_PARTS is not set 455 + CONFIG_MTD_CMDLINE_PARTS=y 456 + # CONFIG_MTD_AR7_PARTS is not set 457 + 458 + # 459 + # User Modules And Translation Layers 460 + # 461 + CONFIG_MTD_CHAR=y 462 + CONFIG_MTD_BLKDEVS=y 463 + CONFIG_MTD_BLOCK=y 464 + # CONFIG_FTL is not set 465 + # CONFIG_NFTL is not set 466 + # CONFIG_INFTL is not set 467 + # CONFIG_RFD_FTL is not set 468 + # CONFIG_SSFDC is not set 469 + # CONFIG_MTD_OOPS is not set 470 + 471 + # 472 + # RAM/ROM/Flash chip drivers 473 + # 474 + CONFIG_MTD_CFI=y 475 + # CONFIG_MTD_JEDECPROBE is not set 476 + CONFIG_MTD_GEN_PROBE=y 477 + # CONFIG_MTD_CFI_ADV_OPTIONS is not set 478 + CONFIG_MTD_MAP_BANK_WIDTH_1=y 479 + CONFIG_MTD_MAP_BANK_WIDTH_2=y 480 + CONFIG_MTD_MAP_BANK_WIDTH_4=y 481 + # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set 482 + # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set 483 + # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set 484 + CONFIG_MTD_CFI_I1=y 485 + CONFIG_MTD_CFI_I2=y 486 + # CONFIG_MTD_CFI_I4 is not set 487 + # CONFIG_MTD_CFI_I8 is not set 488 + CONFIG_MTD_CFI_INTELEXT=y 489 + # CONFIG_MTD_CFI_AMDSTD is not set 490 + # CONFIG_MTD_CFI_STAA is not set 491 + CONFIG_MTD_CFI_UTIL=y 492 + # CONFIG_MTD_RAM is not set 493 + # CONFIG_MTD_ROM is not set 494 + # CONFIG_MTD_ABSENT is not set 495 + 496 + # 497 + # Mapping drivers for chip access 498 + # 499 + # CONFIG_MTD_COMPLEX_MAPPINGS is not set 500 + CONFIG_MTD_PHYSMAP=y 501 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 502 + # CONFIG_MTD_PLATRAM is not set 503 + 504 + # 505 + # Self-contained MTD device drivers 506 + # 507 + CONFIG_MTD_DATAFLASH=y 508 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 509 + # CONFIG_MTD_DATAFLASH_OTP is not set 510 + # CONFIG_MTD_M25P80 is not set 511 + # CONFIG_MTD_SST25L is not set 512 + # CONFIG_MTD_SLRAM is not set 513 + # CONFIG_MTD_PHRAM is not set 514 + # CONFIG_MTD_MTDRAM is not set 515 + # CONFIG_MTD_BLOCK2MTD is not set 516 + 517 + # 518 + # Disk-On-Chip Device Drivers 519 + # 520 + # CONFIG_MTD_DOC2000 is not set 521 + # CONFIG_MTD_DOC2001 is not set 522 + # CONFIG_MTD_DOC2001PLUS is not set 523 + CONFIG_MTD_NAND=y 524 + # CONFIG_MTD_NAND_VERIFY_WRITE is not set 525 + # CONFIG_MTD_NAND_ECC_SMC is not set 526 + # CONFIG_MTD_NAND_MUSEUM_IDS is not set 527 + CONFIG_MTD_NAND_IDS=y 528 + # CONFIG_MTD_NAND_DISKONCHIP is not set 529 + CONFIG_MTD_NAND_ATMEL=y 530 + CONFIG_MTD_NAND_ATMEL_ECC_HW=y 531 + # CONFIG_MTD_NAND_ATMEL_ECC_SOFT is not set 532 + # CONFIG_MTD_NAND_ATMEL_ECC_NONE is not set 533 + # CONFIG_MTD_NAND_NANDSIM is not set 534 + # CONFIG_MTD_NAND_PLATFORM is not set 535 + # CONFIG_MTD_ONENAND is not set 536 + 537 + # 538 + # LPDDR flash memory drivers 539 + # 540 + # CONFIG_MTD_LPDDR is not set 541 + 542 + # 543 + # UBI - Unsorted block images 544 + # 545 + CONFIG_MTD_UBI=y 546 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 547 + CONFIG_MTD_UBI_BEB_RESERVE=1 548 + # CONFIG_MTD_UBI_GLUEBI is not set 549 + 550 + # 551 + # UBI debugging options 552 + # 553 + # CONFIG_MTD_UBI_DEBUG is not set 554 + # CONFIG_PARPORT is not set 555 + CONFIG_BLK_DEV=y 556 + # CONFIG_BLK_DEV_COW_COMMON is not set 557 + CONFIG_BLK_DEV_LOOP=m 558 + # CONFIG_BLK_DEV_CRYPTOLOOP is not set 559 + CONFIG_BLK_DEV_NBD=m 560 + CONFIG_BLK_DEV_RAM=m 561 + CONFIG_BLK_DEV_RAM_COUNT=16 562 + CONFIG_BLK_DEV_RAM_SIZE=4096 563 + # CONFIG_BLK_DEV_XIP is not set 564 + # CONFIG_CDROM_PKTCDVD is not set 565 + # CONFIG_ATA_OVER_ETH is not set 566 + CONFIG_MISC_DEVICES=y 567 + # CONFIG_ATMEL_PWM is not set 568 + CONFIG_ATMEL_TCLIB=y 569 + CONFIG_ATMEL_TCB_CLKSRC=y 570 + CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 571 + # CONFIG_ICS932S401 is not set 572 + # CONFIG_ATMEL_SSC is not set 573 + # CONFIG_ENCLOSURE_SERVICES is not set 574 + # CONFIG_ISL29003 is not set 575 + # CONFIG_C2PORT is not set 576 + 577 + # 578 + # EEPROM support 579 + # 580 + # CONFIG_EEPROM_AT24 is not set 581 + # CONFIG_EEPROM_AT25 is not set 582 + # CONFIG_EEPROM_LEGACY is not set 583 + # CONFIG_EEPROM_MAX6875 is not set 584 + # CONFIG_EEPROM_93CX6 is not set 585 + 586 + # 587 + # SCSI device support 588 + # 589 + # CONFIG_RAID_ATTRS is not set 590 + # CONFIG_SCSI is not set 591 + # CONFIG_SCSI_DMA is not set 592 + # CONFIG_SCSI_NETLINK is not set 593 + # CONFIG_ATA is not set 594 + # CONFIG_MD is not set 595 + CONFIG_NETDEVICES=y 596 + # CONFIG_DUMMY is not set 597 + # CONFIG_BONDING is not set 598 + # CONFIG_MACVLAN is not set 599 + # CONFIG_EQUALIZER is not set 600 + # CONFIG_TUN is not set 601 + # CONFIG_VETH is not set 602 + CONFIG_PHYLIB=y 603 + 604 + # 605 + # MII PHY device drivers 606 + # 607 + # CONFIG_MARVELL_PHY is not set 608 + # CONFIG_DAVICOM_PHY is not set 609 + # CONFIG_QSEMI_PHY is not set 610 + # CONFIG_LXT_PHY is not set 611 + # CONFIG_CICADA_PHY is not set 612 + # CONFIG_VITESSE_PHY is not set 613 + # CONFIG_SMSC_PHY is not set 614 + # CONFIG_BROADCOM_PHY is not set 615 + # CONFIG_ICPLUS_PHY is not set 616 + # CONFIG_REALTEK_PHY is not set 617 + # CONFIG_NATIONAL_PHY is not set 618 + # CONFIG_STE10XP is not set 619 + # CONFIG_LSI_ET1011C_PHY is not set 620 + # CONFIG_FIXED_PHY is not set 621 + # CONFIG_MDIO_BITBANG is not set 622 + CONFIG_NET_ETHERNET=y 623 + # CONFIG_MII is not set 624 + CONFIG_MACB=y 625 + # CONFIG_ENC28J60 is not set 626 + # CONFIG_ETHOC is not set 627 + # CONFIG_DNET is not set 628 + # CONFIG_IBM_NEW_EMAC_ZMII is not set 629 + # CONFIG_IBM_NEW_EMAC_RGMII is not set 630 + # CONFIG_IBM_NEW_EMAC_TAH is not set 631 + # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 632 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 633 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 634 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 635 + # CONFIG_B44 is not set 636 + # CONFIG_KS8842 is not set 637 + # CONFIG_KS8851 is not set 638 + # CONFIG_KS8851_MLL is not set 639 + # CONFIG_NETDEV_1000 is not set 640 + # CONFIG_NETDEV_10000 is not set 641 + CONFIG_WLAN=y 642 + # CONFIG_WLAN_PRE80211 is not set 643 + # CONFIG_WLAN_80211 is not set 644 + 645 + # 646 + # Enable WiMAX (Networking options) to see the WiMAX drivers 647 + # 648 + # CONFIG_WAN is not set 649 + CONFIG_PPP=m 650 + # CONFIG_PPP_MULTILINK is not set 651 + CONFIG_PPP_FILTER=y 652 + CONFIG_PPP_ASYNC=m 653 + # CONFIG_PPP_SYNC_TTY is not set 654 + CONFIG_PPP_DEFLATE=m 655 + CONFIG_PPP_BSDCOMP=m 656 + CONFIG_PPP_MPPE=m 657 + CONFIG_PPPOE=m 658 + # CONFIG_PPPOL2TP is not set 659 + # CONFIG_SLIP is not set 660 + CONFIG_SLHC=m 661 + # CONFIG_NETCONSOLE is not set 662 + # CONFIG_NETPOLL is not set 663 + # CONFIG_NET_POLL_CONTROLLER is not set 664 + # CONFIG_ISDN is not set 665 + # CONFIG_PHONE is not set 666 + 667 + # 668 + # Input device support 669 + # 670 + CONFIG_INPUT=y 671 + # CONFIG_INPUT_FF_MEMLESS is not set 672 + # CONFIG_INPUT_POLLDEV is not set 673 + 674 + # 675 + # Userland interfaces 676 + # 677 + # CONFIG_INPUT_MOUSEDEV is not set 678 + # CONFIG_INPUT_JOYDEV is not set 679 + CONFIG_INPUT_EVDEV=m 680 + # CONFIG_INPUT_EVBUG is not set 681 + 682 + # 683 + # Input Device Drivers 684 + # 685 + # CONFIG_INPUT_KEYBOARD is not set 686 + # CONFIG_INPUT_MOUSE is not set 687 + # CONFIG_INPUT_JOYSTICK is not set 688 + # CONFIG_INPUT_TABLET is not set 689 + CONFIG_INPUT_TOUCHSCREEN=y 690 + # CONFIG_TOUCHSCREEN_ADS7846 is not set 691 + # CONFIG_TOUCHSCREEN_AD7877 is not set 692 + # CONFIG_TOUCHSCREEN_AD7879_I2C is not set 693 + # CONFIG_TOUCHSCREEN_AD7879_SPI is not set 694 + # CONFIG_TOUCHSCREEN_AD7879 is not set 695 + # CONFIG_TOUCHSCREEN_EETI is not set 696 + # CONFIG_TOUCHSCREEN_FUJITSU is not set 697 + # CONFIG_TOUCHSCREEN_GUNZE is not set 698 + # CONFIG_TOUCHSCREEN_ELO is not set 699 + # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set 700 + # CONFIG_TOUCHSCREEN_MCS5000 is not set 701 + # CONFIG_TOUCHSCREEN_MTOUCH is not set 702 + # CONFIG_TOUCHSCREEN_INEXIO is not set 703 + # CONFIG_TOUCHSCREEN_MK712 is not set 704 + # CONFIG_TOUCHSCREEN_PENMOUNT is not set 705 + # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 706 + # CONFIG_TOUCHSCREEN_TOUCHWIN is not set 707 + CONFIG_TOUCHSCREEN_WM97XX=m 708 + CONFIG_TOUCHSCREEN_WM9705=y 709 + CONFIG_TOUCHSCREEN_WM9712=y 710 + CONFIG_TOUCHSCREEN_WM9713=y 711 + # CONFIG_TOUCHSCREEN_WM97XX_ATMEL is not set 712 + # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set 713 + # CONFIG_TOUCHSCREEN_TSC2007 is not set 714 + # CONFIG_TOUCHSCREEN_W90X900 is not set 715 + # CONFIG_INPUT_MISC is not set 716 + 717 + # 718 + # Hardware I/O ports 719 + # 720 + # CONFIG_SERIO is not set 721 + # CONFIG_GAMEPORT is not set 722 + 723 + # 724 + # Character devices 725 + # 726 + CONFIG_VT=y 727 + CONFIG_CONSOLE_TRANSLATIONS=y 728 + CONFIG_VT_CONSOLE=y 729 + CONFIG_HW_CONSOLE=y 730 + # CONFIG_VT_HW_CONSOLE_BINDING is not set 731 + CONFIG_DEVKMEM=y 732 + # CONFIG_SERIAL_NONSTANDARD is not set 733 + 734 + # 735 + # Serial drivers 736 + # 737 + # CONFIG_SERIAL_8250 is not set 738 + 739 + # 740 + # Non-8250 serial port support 741 + # 742 + CONFIG_SERIAL_ATMEL=y 743 + CONFIG_SERIAL_ATMEL_CONSOLE=y 744 + CONFIG_SERIAL_ATMEL_PDC=y 745 + # CONFIG_SERIAL_ATMEL_TTYAT is not set 746 + # CONFIG_SERIAL_MAX3100 is not set 747 + CONFIG_SERIAL_CORE=y 748 + CONFIG_SERIAL_CORE_CONSOLE=y 749 + CONFIG_UNIX98_PTYS=y 750 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 751 + # CONFIG_LEGACY_PTYS is not set 752 + # CONFIG_IPMI_HANDLER is not set 753 + # CONFIG_HW_RANDOM is not set 754 + # CONFIG_R3964 is not set 755 + # CONFIG_RAW_DRIVER is not set 756 + # CONFIG_TCG_TPM is not set 757 + CONFIG_I2C=m 758 + CONFIG_I2C_BOARDINFO=y 759 + CONFIG_I2C_COMPAT=y 760 + CONFIG_I2C_CHARDEV=m 761 + CONFIG_I2C_HELPER_AUTO=y 762 + CONFIG_I2C_ALGOBIT=m 763 + 764 + # 765 + # I2C Hardware Bus support 766 + # 767 + 768 + # 769 + # I2C system bus drivers (mostly embedded / system-on-chip) 770 + # 771 + # CONFIG_I2C_DESIGNWARE is not set 772 + CONFIG_I2C_GPIO=m 773 + # CONFIG_I2C_OCORES is not set 774 + # CONFIG_I2C_SIMTEC is not set 775 + 776 + # 777 + # External I2C/SMBus adapter drivers 778 + # 779 + # CONFIG_I2C_PARPORT_LIGHT is not set 780 + # CONFIG_I2C_TAOS_EVM is not set 781 + 782 + # 783 + # Other I2C/SMBus bus drivers 784 + # 785 + # CONFIG_I2C_PCA_PLATFORM is not set 786 + # CONFIG_I2C_STUB is not set 787 + 788 + # 789 + # Miscellaneous I2C Chip support 790 + # 791 + # CONFIG_DS1682 is not set 792 + # CONFIG_SENSORS_TSL2550 is not set 793 + # CONFIG_I2C_DEBUG_CORE is not set 794 + # CONFIG_I2C_DEBUG_ALGO is not set 795 + # CONFIG_I2C_DEBUG_BUS is not set 796 + # CONFIG_I2C_DEBUG_CHIP is not set 797 + CONFIG_SPI=y 798 + # CONFIG_SPI_DEBUG is not set 799 + CONFIG_SPI_MASTER=y 800 + 801 + # 802 + # SPI Master Controller Drivers 803 + # 804 + CONFIG_SPI_ATMEL=y 805 + # CONFIG_SPI_BITBANG is not set 806 + # CONFIG_SPI_GPIO is not set 807 + 808 + # 809 + # SPI Protocol Masters 810 + # 811 + CONFIG_SPI_SPIDEV=m 812 + # CONFIG_SPI_TLE62X0 is not set 813 + 814 + # 815 + # PPS support 816 + # 817 + # CONFIG_PPS is not set 818 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 819 + CONFIG_GPIOLIB=y 820 + # CONFIG_DEBUG_GPIO is not set 821 + # CONFIG_GPIO_SYSFS is not set 822 + 823 + # 824 + # Memory mapped GPIO expanders: 825 + # 826 + 827 + # 828 + # I2C GPIO expanders: 829 + # 830 + # CONFIG_GPIO_MAX732X is not set 831 + # CONFIG_GPIO_PCA953X is not set 832 + # CONFIG_GPIO_PCF857X is not set 833 + 834 + # 835 + # PCI GPIO expanders: 836 + # 837 + 838 + # 839 + # SPI GPIO expanders: 840 + # 841 + # CONFIG_GPIO_MAX7301 is not set 842 + # CONFIG_GPIO_MCP23S08 is not set 843 + # CONFIG_GPIO_MC33880 is not set 844 + 845 + # 846 + # AC97 GPIO expanders: 847 + # 848 + # CONFIG_W1 is not set 849 + # CONFIG_POWER_SUPPLY is not set 850 + # CONFIG_HWMON is not set 851 + # CONFIG_THERMAL is not set 852 + CONFIG_WATCHDOG=y 853 + # CONFIG_WATCHDOG_NOWAYOUT is not set 854 + 855 + # 856 + # Watchdog Device Drivers 857 + # 858 + # CONFIG_SOFT_WATCHDOG is not set 859 + CONFIG_AT32AP700X_WDT=y 860 + CONFIG_SSB_POSSIBLE=y 861 + 862 + # 863 + # Sonics Silicon Backplane 864 + # 865 + # CONFIG_SSB is not set 866 + 867 + # 868 + # Multifunction device drivers 869 + # 870 + # CONFIG_MFD_CORE is not set 871 + # CONFIG_MFD_SM501 is not set 872 + # CONFIG_HTC_PASIC3 is not set 873 + # CONFIG_UCB1400_CORE is not set 874 + # CONFIG_TPS65010 is not set 875 + # CONFIG_MFD_TMIO is not set 876 + # CONFIG_MFD_WM8400 is not set 877 + # CONFIG_MFD_WM831X is not set 878 + # CONFIG_MFD_WM8350_I2C is not set 879 + # CONFIG_MFD_PCF50633 is not set 880 + # CONFIG_MFD_MC13783 is not set 881 + # CONFIG_AB3100_CORE is not set 882 + # CONFIG_EZX_PCAP is not set 883 + # CONFIG_REGULATOR is not set 884 + # CONFIG_MEDIA_SUPPORT is not set 885 + 886 + # 887 + # Graphics support 888 + # 889 + # CONFIG_VGASTATE is not set 890 + # CONFIG_VIDEO_OUTPUT_CONTROL is not set 891 + CONFIG_FB=y 892 + # CONFIG_FIRMWARE_EDID is not set 893 + # CONFIG_FB_DDC is not set 894 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 895 + CONFIG_FB_CFB_FILLRECT=y 896 + CONFIG_FB_CFB_COPYAREA=y 897 + CONFIG_FB_CFB_IMAGEBLIT=y 898 + # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 899 + # CONFIG_FB_SYS_FILLRECT is not set 900 + # CONFIG_FB_SYS_COPYAREA is not set 901 + # CONFIG_FB_SYS_IMAGEBLIT is not set 902 + # CONFIG_FB_FOREIGN_ENDIAN is not set 903 + # CONFIG_FB_SYS_FOPS is not set 904 + # CONFIG_FB_SVGALIB is not set 905 + # CONFIG_FB_MACMODES is not set 906 + # CONFIG_FB_BACKLIGHT is not set 907 + # CONFIG_FB_MODE_HELPERS is not set 908 + # CONFIG_FB_TILEBLITTING is not set 909 + 910 + # 911 + # Frame buffer hardware drivers 912 + # 913 + # CONFIG_FB_S1D13XXX is not set 914 + CONFIG_FB_ATMEL=y 915 + # CONFIG_FB_VIRTUAL is not set 916 + # CONFIG_FB_METRONOME is not set 917 + # CONFIG_FB_MB862XX is not set 918 + # CONFIG_FB_BROADSHEET is not set 919 + # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 920 + 921 + # 922 + # Display device support 923 + # 924 + # CONFIG_DISPLAY_SUPPORT is not set 925 + 926 + # 927 + # Console display driver support 928 + # 929 + CONFIG_DUMMY_CONSOLE=y 930 + # CONFIG_FRAMEBUFFER_CONSOLE is not set 931 + # CONFIG_LOGO is not set 932 + CONFIG_SOUND=y 933 + CONFIG_SOUND_OSS_CORE=y 934 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 935 + CONFIG_SND=y 936 + CONFIG_SND_TIMER=y 937 + CONFIG_SND_PCM=m 938 + # CONFIG_SND_SEQUENCER is not set 939 + CONFIG_SND_OSSEMUL=y 940 + CONFIG_SND_MIXER_OSS=m 941 + CONFIG_SND_PCM_OSS=m 942 + CONFIG_SND_PCM_OSS_PLUGINS=y 943 + CONFIG_SND_HRTIMER=y 944 + # CONFIG_SND_DYNAMIC_MINORS is not set 945 + # CONFIG_SND_SUPPORT_OLD_API is not set 946 + CONFIG_SND_VERBOSE_PROCFS=y 947 + # CONFIG_SND_VERBOSE_PRINTK is not set 948 + # CONFIG_SND_DEBUG is not set 949 + CONFIG_SND_VMASTER=y 950 + # CONFIG_SND_RAWMIDI_SEQ is not set 951 + # CONFIG_SND_OPL3_LIB_SEQ is not set 952 + # CONFIG_SND_OPL4_LIB_SEQ is not set 953 + # CONFIG_SND_SBAWE_SEQ is not set 954 + # CONFIG_SND_EMU10K1_SEQ is not set 955 + CONFIG_SND_AC97_CODEC=m 956 + # CONFIG_SND_DRIVERS is not set 957 + 958 + # 959 + # Atmel devices (AVR32 and AT91) 960 + # 961 + # CONFIG_SND_ATMEL_ABDAC is not set 962 + CONFIG_SND_ATMEL_AC97C=m 963 + # CONFIG_SND_SPI is not set 964 + # CONFIG_SND_SOC is not set 965 + # CONFIG_SOUND_PRIME is not set 966 + CONFIG_AC97_BUS=m 967 + CONFIG_HID_SUPPORT=y 968 + CONFIG_HID=y 969 + # CONFIG_HIDRAW is not set 970 + # CONFIG_HID_PID is not set 971 + 972 + # 973 + # Special HID drivers 974 + # 975 + CONFIG_USB_SUPPORT=y 976 + # CONFIG_USB_ARCH_HAS_HCD is not set 977 + # CONFIG_USB_ARCH_HAS_OHCI is not set 978 + # CONFIG_USB_ARCH_HAS_EHCI is not set 979 + # CONFIG_USB_OTG_WHITELIST is not set 980 + # CONFIG_USB_OTG_BLACKLIST_HUB is not set 981 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 982 + 983 + # 984 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 985 + # 986 + CONFIG_USB_GADGET=y 987 + # CONFIG_USB_GADGET_DEBUG is not set 988 + # CONFIG_USB_GADGET_DEBUG_FILES is not set 989 + # CONFIG_USB_GADGET_DEBUG_FS is not set 990 + CONFIG_USB_GADGET_VBUS_DRAW=350 991 + CONFIG_USB_GADGET_SELECTED=y 992 + # CONFIG_USB_GADGET_AT91 is not set 993 + CONFIG_USB_GADGET_ATMEL_USBA=y 994 + CONFIG_USB_ATMEL_USBA=y 995 + # CONFIG_USB_GADGET_FSL_USB2 is not set 996 + # CONFIG_USB_GADGET_LH7A40X is not set 997 + # CONFIG_USB_GADGET_OMAP is not set 998 + # CONFIG_USB_GADGET_PXA25X is not set 999 + # CONFIG_USB_GADGET_R8A66597 is not set 1000 + # CONFIG_USB_GADGET_PXA27X is not set 1001 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 1002 + # CONFIG_USB_GADGET_IMX is not set 1003 + # CONFIG_USB_GADGET_S3C2410 is not set 1004 + # CONFIG_USB_GADGET_M66592 is not set 1005 + # CONFIG_USB_GADGET_AMD5536UDC is not set 1006 + # CONFIG_USB_GADGET_FSL_QE is not set 1007 + # CONFIG_USB_GADGET_CI13XXX is not set 1008 + # CONFIG_USB_GADGET_NET2280 is not set 1009 + # CONFIG_USB_GADGET_GOKU is not set 1010 + # CONFIG_USB_GADGET_LANGWELL is not set 1011 + # CONFIG_USB_GADGET_DUMMY_HCD is not set 1012 + CONFIG_USB_GADGET_DUALSPEED=y 1013 + CONFIG_USB_ZERO=m 1014 + # CONFIG_USB_AUDIO is not set 1015 + CONFIG_USB_ETH=m 1016 + CONFIG_USB_ETH_RNDIS=y 1017 + # CONFIG_USB_ETH_EEM is not set 1018 + CONFIG_USB_GADGETFS=m 1019 + CONFIG_USB_FILE_STORAGE=m 1020 + # CONFIG_USB_FILE_STORAGE_TEST is not set 1021 + CONFIG_USB_G_SERIAL=m 1022 + # CONFIG_USB_MIDI_GADGET is not set 1023 + # CONFIG_USB_G_PRINTER is not set 1024 + CONFIG_USB_CDC_COMPOSITE=m 1025 + 1026 + # 1027 + # OTG and related infrastructure 1028 + # 1029 + # CONFIG_USB_GPIO_VBUS is not set 1030 + # CONFIG_NOP_USB_XCEIV is not set 1031 + CONFIG_MMC=y 1032 + # CONFIG_MMC_DEBUG is not set 1033 + # CONFIG_MMC_UNSAFE_RESUME is not set 1034 + 1035 + # 1036 + # MMC/SD/SDIO Card Drivers 1037 + # 1038 + CONFIG_MMC_BLOCK=y 1039 + CONFIG_MMC_BLOCK_BOUNCE=y 1040 + # CONFIG_SDIO_UART is not set 1041 + # CONFIG_MMC_TEST is not set 1042 + 1043 + # 1044 + # MMC/SD/SDIO Host Controller Drivers 1045 + # 1046 + # CONFIG_MMC_SDHCI is not set 1047 + # CONFIG_MMC_AT91 is not set 1048 + CONFIG_MMC_ATMELMCI=y 1049 + # CONFIG_MMC_ATMELMCI_DMA is not set 1050 + # CONFIG_MMC_SPI is not set 1051 + # CONFIG_MEMSTICK is not set 1052 + CONFIG_NEW_LEDS=y 1053 + CONFIG_LEDS_CLASS=y 1054 + 1055 + # 1056 + # LED drivers 1057 + # 1058 + # CONFIG_LEDS_PCA9532 is not set 1059 + CONFIG_LEDS_GPIO=y 1060 + CONFIG_LEDS_GPIO_PLATFORM=y 1061 + # CONFIG_LEDS_LP3944 is not set 1062 + # CONFIG_LEDS_PCA955X is not set 1063 + # CONFIG_LEDS_DAC124S085 is not set 1064 + # CONFIG_LEDS_BD2802 is not set 1065 + 1066 + # 1067 + # LED Triggers 1068 + # 1069 + CONFIG_LEDS_TRIGGERS=y 1070 + CONFIG_LEDS_TRIGGER_TIMER=y 1071 + CONFIG_LEDS_TRIGGER_HEARTBEAT=y 1072 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 1073 + # CONFIG_LEDS_TRIGGER_GPIO is not set 1074 + # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 1075 + 1076 + # 1077 + # iptables trigger is under Netfilter config (LED target) 1078 + # 1079 + # CONFIG_ACCESSIBILITY is not set 1080 + CONFIG_RTC_LIB=y 1081 + CONFIG_RTC_CLASS=y 1082 + CONFIG_RTC_HCTOSYS=y 1083 + CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 1084 + # CONFIG_RTC_DEBUG is not set 1085 + 1086 + # 1087 + # RTC interfaces 1088 + # 1089 + CONFIG_RTC_INTF_SYSFS=y 1090 + CONFIG_RTC_INTF_PROC=y 1091 + CONFIG_RTC_INTF_DEV=y 1092 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 1093 + # CONFIG_RTC_DRV_TEST is not set 1094 + 1095 + # 1096 + # I2C RTC drivers 1097 + # 1098 + # CONFIG_RTC_DRV_DS1307 is not set 1099 + # CONFIG_RTC_DRV_DS1374 is not set 1100 + # CONFIG_RTC_DRV_DS1672 is not set 1101 + # CONFIG_RTC_DRV_MAX6900 is not set 1102 + # CONFIG_RTC_DRV_RS5C372 is not set 1103 + # CONFIG_RTC_DRV_ISL1208 is not set 1104 + # CONFIG_RTC_DRV_X1205 is not set 1105 + # CONFIG_RTC_DRV_PCF8563 is not set 1106 + # CONFIG_RTC_DRV_PCF8583 is not set 1107 + # CONFIG_RTC_DRV_M41T80 is not set 1108 + # CONFIG_RTC_DRV_S35390A is not set 1109 + # CONFIG_RTC_DRV_FM3130 is not set 1110 + # CONFIG_RTC_DRV_RX8581 is not set 1111 + # CONFIG_RTC_DRV_RX8025 is not set 1112 + 1113 + # 1114 + # SPI RTC drivers 1115 + # 1116 + # CONFIG_RTC_DRV_M41T94 is not set 1117 + # CONFIG_RTC_DRV_DS1305 is not set 1118 + # CONFIG_RTC_DRV_DS1390 is not set 1119 + # CONFIG_RTC_DRV_MAX6902 is not set 1120 + # CONFIG_RTC_DRV_R9701 is not set 1121 + # CONFIG_RTC_DRV_RS5C348 is not set 1122 + # CONFIG_RTC_DRV_DS3234 is not set 1123 + # CONFIG_RTC_DRV_PCF2123 is not set 1124 + 1125 + # 1126 + # Platform RTC drivers 1127 + # 1128 + # CONFIG_RTC_DRV_DS1286 is not set 1129 + # CONFIG_RTC_DRV_DS1511 is not set 1130 + # CONFIG_RTC_DRV_DS1553 is not set 1131 + # CONFIG_RTC_DRV_DS1742 is not set 1132 + # CONFIG_RTC_DRV_STK17TA8 is not set 1133 + # CONFIG_RTC_DRV_M48T86 is not set 1134 + # CONFIG_RTC_DRV_M48T35 is not set 1135 + # CONFIG_RTC_DRV_M48T59 is not set 1136 + # CONFIG_RTC_DRV_BQ4802 is not set 1137 + # CONFIG_RTC_DRV_V3020 is not set 1138 + 1139 + # 1140 + # on-CPU RTC drivers 1141 + # 1142 + CONFIG_RTC_DRV_AT32AP700X=y 1143 + CONFIG_DMADEVICES=y 1144 + 1145 + # 1146 + # DMA Devices 1147 + # 1148 + CONFIG_DW_DMAC=y 1149 + CONFIG_DMA_ENGINE=y 1150 + 1151 + # 1152 + # DMA Clients 1153 + # 1154 + # CONFIG_NET_DMA is not set 1155 + # CONFIG_ASYNC_TX_DMA is not set 1156 + # CONFIG_DMATEST is not set 1157 + # CONFIG_AUXDISPLAY is not set 1158 + # CONFIG_UIO is not set 1159 + 1160 + # 1161 + # TI VLYNQ 1162 + # 1163 + # CONFIG_STAGING is not set 1164 + 1165 + # 1166 + # File systems 1167 + # 1168 + CONFIG_EXT2_FS=y 1169 + # CONFIG_EXT2_FS_XATTR is not set 1170 + # CONFIG_EXT2_FS_XIP is not set 1171 + CONFIG_EXT3_FS=y 1172 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1173 + # CONFIG_EXT3_FS_XATTR is not set 1174 + # CONFIG_EXT4_FS is not set 1175 + CONFIG_JBD=y 1176 + # CONFIG_JBD_DEBUG is not set 1177 + # CONFIG_REISERFS_FS is not set 1178 + # CONFIG_JFS_FS is not set 1179 + # CONFIG_FS_POSIX_ACL is not set 1180 + # CONFIG_XFS_FS is not set 1181 + # CONFIG_GFS2_FS is not set 1182 + # CONFIG_OCFS2_FS is not set 1183 + # CONFIG_BTRFS_FS is not set 1184 + # CONFIG_NILFS2_FS is not set 1185 + CONFIG_FILE_LOCKING=y 1186 + CONFIG_FSNOTIFY=y 1187 + # CONFIG_DNOTIFY is not set 1188 + CONFIG_INOTIFY=y 1189 + CONFIG_INOTIFY_USER=y 1190 + # CONFIG_QUOTA is not set 1191 + # CONFIG_AUTOFS_FS is not set 1192 + # CONFIG_AUTOFS4_FS is not set 1193 + CONFIG_FUSE_FS=m 1194 + # CONFIG_CUSE is not set 1195 + 1196 + # 1197 + # Caches 1198 + # 1199 + # CONFIG_FSCACHE is not set 1200 + 1201 + # 1202 + # CD-ROM/DVD Filesystems 1203 + # 1204 + # CONFIG_ISO9660_FS is not set 1205 + # CONFIG_UDF_FS is not set 1206 + 1207 + # 1208 + # DOS/FAT/NT Filesystems 1209 + # 1210 + CONFIG_FAT_FS=m 1211 + CONFIG_MSDOS_FS=m 1212 + CONFIG_VFAT_FS=m 1213 + CONFIG_FAT_DEFAULT_CODEPAGE=850 1214 + CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" 1215 + # CONFIG_NTFS_FS is not set 1216 + 1217 + # 1218 + # Pseudo filesystems 1219 + # 1220 + CONFIG_PROC_FS=y 1221 + # CONFIG_PROC_KCORE is not set 1222 + CONFIG_PROC_SYSCTL=y 1223 + CONFIG_PROC_PAGE_MONITOR=y 1224 + CONFIG_SYSFS=y 1225 + CONFIG_TMPFS=y 1226 + # CONFIG_TMPFS_POSIX_ACL is not set 1227 + # CONFIG_HUGETLB_PAGE is not set 1228 + CONFIG_CONFIGFS_FS=y 1229 + CONFIG_MISC_FILESYSTEMS=y 1230 + # CONFIG_ADFS_FS is not set 1231 + # CONFIG_AFFS_FS is not set 1232 + # CONFIG_HFS_FS is not set 1233 + # CONFIG_HFSPLUS_FS is not set 1234 + # CONFIG_BEFS_FS is not set 1235 + # CONFIG_BFS_FS is not set 1236 + # CONFIG_EFS_FS is not set 1237 + CONFIG_JFFS2_FS=y 1238 + CONFIG_JFFS2_FS_DEBUG=0 1239 + CONFIG_JFFS2_FS_WRITEBUFFER=y 1240 + # CONFIG_JFFS2_FS_WBUF_VERIFY is not set 1241 + # CONFIG_JFFS2_SUMMARY is not set 1242 + # CONFIG_JFFS2_FS_XATTR is not set 1243 + # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1244 + CONFIG_JFFS2_ZLIB=y 1245 + # CONFIG_JFFS2_LZO is not set 1246 + CONFIG_JFFS2_RTIME=y 1247 + # CONFIG_JFFS2_RUBIN is not set 1248 + CONFIG_UBIFS_FS=y 1249 + # CONFIG_UBIFS_FS_XATTR is not set 1250 + # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set 1251 + CONFIG_UBIFS_FS_LZO=y 1252 + CONFIG_UBIFS_FS_ZLIB=y 1253 + # CONFIG_UBIFS_FS_DEBUG is not set 1254 + # CONFIG_CRAMFS is not set 1255 + # CONFIG_SQUASHFS is not set 1256 + # CONFIG_VXFS_FS is not set 1257 + # CONFIG_MINIX_FS is not set 1258 + # CONFIG_OMFS_FS is not set 1259 + # CONFIG_HPFS_FS is not set 1260 + # CONFIG_QNX4FS_FS is not set 1261 + # CONFIG_ROMFS_FS is not set 1262 + # CONFIG_SYSV_FS is not set 1263 + # CONFIG_UFS_FS is not set 1264 + CONFIG_NETWORK_FILESYSTEMS=y 1265 + CONFIG_NFS_FS=y 1266 + CONFIG_NFS_V3=y 1267 + # CONFIG_NFS_V3_ACL is not set 1268 + # CONFIG_NFS_V4 is not set 1269 + CONFIG_ROOT_NFS=y 1270 + CONFIG_NFSD=m 1271 + CONFIG_NFSD_V3=y 1272 + # CONFIG_NFSD_V3_ACL is not set 1273 + # CONFIG_NFSD_V4 is not set 1274 + CONFIG_LOCKD=y 1275 + CONFIG_LOCKD_V4=y 1276 + CONFIG_EXPORTFS=m 1277 + CONFIG_NFS_COMMON=y 1278 + CONFIG_SUNRPC=y 1279 + # CONFIG_RPCSEC_GSS_KRB5 is not set 1280 + # CONFIG_RPCSEC_GSS_SPKM3 is not set 1281 + CONFIG_SMB_FS=m 1282 + # CONFIG_SMB_NLS_DEFAULT is not set 1283 + CONFIG_CIFS=m 1284 + # CONFIG_CIFS_STATS is not set 1285 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1286 + # CONFIG_CIFS_XATTR is not set 1287 + # CONFIG_CIFS_DEBUG2 is not set 1288 + # CONFIG_CIFS_EXPERIMENTAL is not set 1289 + # CONFIG_NCP_FS is not set 1290 + # CONFIG_CODA_FS is not set 1291 + # CONFIG_AFS_FS is not set 1292 + 1293 + # 1294 + # Partition Types 1295 + # 1296 + # CONFIG_PARTITION_ADVANCED is not set 1297 + CONFIG_MSDOS_PARTITION=y 1298 + CONFIG_NLS=m 1299 + CONFIG_NLS_DEFAULT="iso8859-1" 1300 + CONFIG_NLS_CODEPAGE_437=m 1301 + # CONFIG_NLS_CODEPAGE_737 is not set 1302 + # CONFIG_NLS_CODEPAGE_775 is not set 1303 + CONFIG_NLS_CODEPAGE_850=m 1304 + # CONFIG_NLS_CODEPAGE_852 is not set 1305 + # CONFIG_NLS_CODEPAGE_855 is not set 1306 + # CONFIG_NLS_CODEPAGE_857 is not set 1307 + # CONFIG_NLS_CODEPAGE_860 is not set 1308 + # CONFIG_NLS_CODEPAGE_861 is not set 1309 + # CONFIG_NLS_CODEPAGE_862 is not set 1310 + # CONFIG_NLS_CODEPAGE_863 is not set 1311 + # CONFIG_NLS_CODEPAGE_864 is not set 1312 + # CONFIG_NLS_CODEPAGE_865 is not set 1313 + # CONFIG_NLS_CODEPAGE_866 is not set 1314 + # CONFIG_NLS_CODEPAGE_869 is not set 1315 + # CONFIG_NLS_CODEPAGE_936 is not set 1316 + # CONFIG_NLS_CODEPAGE_950 is not set 1317 + # CONFIG_NLS_CODEPAGE_932 is not set 1318 + # CONFIG_NLS_CODEPAGE_949 is not set 1319 + # CONFIG_NLS_CODEPAGE_874 is not set 1320 + # CONFIG_NLS_ISO8859_8 is not set 1321 + # CONFIG_NLS_CODEPAGE_1250 is not set 1322 + # CONFIG_NLS_CODEPAGE_1251 is not set 1323 + # CONFIG_NLS_ASCII is not set 1324 + CONFIG_NLS_ISO8859_1=m 1325 + # CONFIG_NLS_ISO8859_2 is not set 1326 + # CONFIG_NLS_ISO8859_3 is not set 1327 + # CONFIG_NLS_ISO8859_4 is not set 1328 + # CONFIG_NLS_ISO8859_5 is not set 1329 + # CONFIG_NLS_ISO8859_6 is not set 1330 + # CONFIG_NLS_ISO8859_7 is not set 1331 + # CONFIG_NLS_ISO8859_9 is not set 1332 + # CONFIG_NLS_ISO8859_13 is not set 1333 + # CONFIG_NLS_ISO8859_14 is not set 1334 + # CONFIG_NLS_ISO8859_15 is not set 1335 + # CONFIG_NLS_KOI8_R is not set 1336 + # CONFIG_NLS_KOI8_U is not set 1337 + CONFIG_NLS_UTF8=m 1338 + # CONFIG_DLM is not set 1339 + 1340 + # 1341 + # Kernel hacking 1342 + # 1343 + # CONFIG_PRINTK_TIME is not set 1344 + CONFIG_ENABLE_WARN_DEPRECATED=y 1345 + CONFIG_ENABLE_MUST_CHECK=y 1346 + CONFIG_FRAME_WARN=1024 1347 + CONFIG_MAGIC_SYSRQ=y 1348 + # CONFIG_STRIP_ASM_SYMS is not set 1349 + # CONFIG_UNUSED_SYMBOLS is not set 1350 + CONFIG_DEBUG_FS=y 1351 + # CONFIG_HEADERS_CHECK is not set 1352 + CONFIG_DEBUG_KERNEL=y 1353 + # CONFIG_DEBUG_SHIRQ is not set 1354 + CONFIG_DETECT_SOFTLOCKUP=y 1355 + # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1356 + CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1357 + CONFIG_DETECT_HUNG_TASK=y 1358 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1359 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1360 + CONFIG_SCHED_DEBUG=y 1361 + # CONFIG_SCHEDSTATS is not set 1362 + # CONFIG_TIMER_STATS is not set 1363 + # CONFIG_DEBUG_OBJECTS is not set 1364 + # CONFIG_SLUB_DEBUG_ON is not set 1365 + # CONFIG_SLUB_STATS is not set 1366 + # CONFIG_DEBUG_RT_MUTEXES is not set 1367 + # CONFIG_RT_MUTEX_TESTER is not set 1368 + # CONFIG_DEBUG_SPINLOCK is not set 1369 + # CONFIG_DEBUG_MUTEXES is not set 1370 + # CONFIG_DEBUG_LOCK_ALLOC is not set 1371 + # CONFIG_PROVE_LOCKING is not set 1372 + # CONFIG_LOCK_STAT is not set 1373 + # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1374 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1375 + CONFIG_STACKTRACE=y 1376 + # CONFIG_DEBUG_KOBJECT is not set 1377 + CONFIG_DEBUG_BUGVERBOSE=y 1378 + # CONFIG_DEBUG_INFO is not set 1379 + # CONFIG_DEBUG_VM is not set 1380 + # CONFIG_DEBUG_WRITECOUNT is not set 1381 + # CONFIG_DEBUG_MEMORY_INIT is not set 1382 + # CONFIG_DEBUG_LIST is not set 1383 + # CONFIG_DEBUG_SG is not set 1384 + # CONFIG_DEBUG_NOTIFIERS is not set 1385 + # CONFIG_DEBUG_CREDENTIALS is not set 1386 + CONFIG_FRAME_POINTER=y 1387 + # CONFIG_BOOT_PRINTK_DELAY is not set 1388 + # CONFIG_RCU_TORTURE_TEST is not set 1389 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1390 + # CONFIG_KPROBES_SANITY_TEST is not set 1391 + # CONFIG_BACKTRACE_SELF_TEST is not set 1392 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1393 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1394 + # CONFIG_LKDTM is not set 1395 + # CONFIG_FAULT_INJECTION is not set 1396 + # CONFIG_PAGE_POISONING is not set 1397 + CONFIG_NOP_TRACER=y 1398 + CONFIG_RING_BUFFER=y 1399 + CONFIG_EVENT_TRACING=y 1400 + CONFIG_CONTEXT_SWITCH_TRACER=y 1401 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1402 + CONFIG_TRACING=y 1403 + CONFIG_TRACING_SUPPORT=y 1404 + CONFIG_FTRACE=y 1405 + # CONFIG_IRQSOFF_TRACER is not set 1406 + # CONFIG_SCHED_TRACER is not set 1407 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1408 + # CONFIG_BOOT_TRACER is not set 1409 + CONFIG_BRANCH_PROFILE_NONE=y 1410 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1411 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1412 + # CONFIG_KMEMTRACE is not set 1413 + # CONFIG_WORKQUEUE_TRACER is not set 1414 + # CONFIG_BLK_DEV_IO_TRACE is not set 1415 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1416 + # CONFIG_DYNAMIC_DEBUG is not set 1417 + # CONFIG_SAMPLES is not set 1418 + 1419 + # 1420 + # Security options 1421 + # 1422 + # CONFIG_KEYS is not set 1423 + # CONFIG_SECURITY is not set 1424 + # CONFIG_SECURITYFS is not set 1425 + # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1426 + CONFIG_CRYPTO=y 1427 + 1428 + # 1429 + # Crypto core or helper 1430 + # 1431 + # CONFIG_CRYPTO_FIPS is not set 1432 + CONFIG_CRYPTO_ALGAPI=y 1433 + CONFIG_CRYPTO_ALGAPI2=y 1434 + CONFIG_CRYPTO_AEAD=y 1435 + CONFIG_CRYPTO_AEAD2=y 1436 + CONFIG_CRYPTO_BLKCIPHER=y 1437 + CONFIG_CRYPTO_BLKCIPHER2=y 1438 + CONFIG_CRYPTO_HASH=y 1439 + CONFIG_CRYPTO_HASH2=y 1440 + CONFIG_CRYPTO_RNG=m 1441 + CONFIG_CRYPTO_RNG2=y 1442 + CONFIG_CRYPTO_PCOMP=y 1443 + CONFIG_CRYPTO_MANAGER=y 1444 + CONFIG_CRYPTO_MANAGER2=y 1445 + # CONFIG_CRYPTO_GF128MUL is not set 1446 + # CONFIG_CRYPTO_NULL is not set 1447 + CONFIG_CRYPTO_WORKQUEUE=y 1448 + # CONFIG_CRYPTO_CRYPTD is not set 1449 + CONFIG_CRYPTO_AUTHENC=y 1450 + # CONFIG_CRYPTO_TEST is not set 1451 + 1452 + # 1453 + # Authenticated Encryption with Associated Data 1454 + # 1455 + # CONFIG_CRYPTO_CCM is not set 1456 + # CONFIG_CRYPTO_GCM is not set 1457 + # CONFIG_CRYPTO_SEQIV is not set 1458 + 1459 + # 1460 + # Block modes 1461 + # 1462 + CONFIG_CRYPTO_CBC=y 1463 + # CONFIG_CRYPTO_CTR is not set 1464 + # CONFIG_CRYPTO_CTS is not set 1465 + CONFIG_CRYPTO_ECB=m 1466 + # CONFIG_CRYPTO_LRW is not set 1467 + # CONFIG_CRYPTO_PCBC is not set 1468 + # CONFIG_CRYPTO_XTS is not set 1469 + 1470 + # 1471 + # Hash modes 1472 + # 1473 + CONFIG_CRYPTO_HMAC=y 1474 + # CONFIG_CRYPTO_XCBC is not set 1475 + # CONFIG_CRYPTO_VMAC is not set 1476 + 1477 + # 1478 + # Digest 1479 + # 1480 + # CONFIG_CRYPTO_CRC32C is not set 1481 + # CONFIG_CRYPTO_GHASH is not set 1482 + # CONFIG_CRYPTO_MD4 is not set 1483 + CONFIG_CRYPTO_MD5=y 1484 + # CONFIG_CRYPTO_MICHAEL_MIC is not set 1485 + # CONFIG_CRYPTO_RMD128 is not set 1486 + # CONFIG_CRYPTO_RMD160 is not set 1487 + # CONFIG_CRYPTO_RMD256 is not set 1488 + # CONFIG_CRYPTO_RMD320 is not set 1489 + CONFIG_CRYPTO_SHA1=y 1490 + # CONFIG_CRYPTO_SHA256 is not set 1491 + # CONFIG_CRYPTO_SHA512 is not set 1492 + # CONFIG_CRYPTO_TGR192 is not set 1493 + # CONFIG_CRYPTO_WP512 is not set 1494 + 1495 + # 1496 + # Ciphers 1497 + # 1498 + CONFIG_CRYPTO_AES=m 1499 + # CONFIG_CRYPTO_ANUBIS is not set 1500 + CONFIG_CRYPTO_ARC4=m 1501 + # CONFIG_CRYPTO_BLOWFISH is not set 1502 + # CONFIG_CRYPTO_CAMELLIA is not set 1503 + # CONFIG_CRYPTO_CAST5 is not set 1504 + # CONFIG_CRYPTO_CAST6 is not set 1505 + CONFIG_CRYPTO_DES=y 1506 + # CONFIG_CRYPTO_FCRYPT is not set 1507 + # CONFIG_CRYPTO_KHAZAD is not set 1508 + # CONFIG_CRYPTO_SALSA20 is not set 1509 + # CONFIG_CRYPTO_SEED is not set 1510 + # CONFIG_CRYPTO_SERPENT is not set 1511 + # CONFIG_CRYPTO_TEA is not set 1512 + # CONFIG_CRYPTO_TWOFISH is not set 1513 + 1514 + # 1515 + # Compression 1516 + # 1517 + CONFIG_CRYPTO_DEFLATE=y 1518 + # CONFIG_CRYPTO_ZLIB is not set 1519 + CONFIG_CRYPTO_LZO=y 1520 + 1521 + # 1522 + # Random Number Generation 1523 + # 1524 + CONFIG_CRYPTO_ANSI_CPRNG=m 1525 + CONFIG_CRYPTO_HW=y 1526 + CONFIG_BINARY_PRINTF=y 1527 + 1528 + # 1529 + # Library routines 1530 + # 1531 + CONFIG_BITREVERSE=y 1532 + CONFIG_GENERIC_FIND_LAST_BIT=y 1533 + CONFIG_CRC_CCITT=m 1534 + CONFIG_CRC16=y 1535 + # CONFIG_CRC_T10DIF is not set 1536 + # CONFIG_CRC_ITU_T is not set 1537 + CONFIG_CRC32=y 1538 + # CONFIG_CRC7 is not set 1539 + # CONFIG_LIBCRC32C is not set 1540 + CONFIG_ZLIB_INFLATE=y 1541 + CONFIG_ZLIB_DEFLATE=y 1542 + CONFIG_LZO_COMPRESS=y 1543 + CONFIG_LZO_DECOMPRESS=y 1544 + CONFIG_DECOMPRESS_GZIP=y 1545 + CONFIG_GENERIC_ALLOCATOR=y 1546 + CONFIG_HAS_IOMEM=y 1547 + CONFIG_HAS_IOPORT=y 1548 + CONFIG_HAS_DMA=y 1549 + CONFIG_NLATTR=y
+320 -99
arch/avr32/configs/atstk1002_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27-rc1 4 - # Mon Aug 4 16:02:27 2008 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Oct 29 13:00:55 2009 5 5 # 6 6 CONFIG_AVR32=y 7 7 CONFIG_GENERIC_GPIO=y ··· 21 21 CONFIG_GENERIC_CALIBRATE_DELAY=y 22 22 CONFIG_GENERIC_BUG=y 23 23 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 24 25 25 26 # 26 27 # General setup ··· 35 34 CONFIG_SYSVIPC=y 36 35 CONFIG_SYSVIPC_SYSCTL=y 37 36 CONFIG_POSIX_MQUEUE=y 37 + CONFIG_POSIX_MQUEUE_SYSCTL=y 38 38 # CONFIG_BSD_PROCESS_ACCT is not set 39 39 # CONFIG_TASKSTATS is not set 40 40 # CONFIG_AUDIT is not set 41 + 42 + # 43 + # RCU Subsystem 44 + # 45 + CONFIG_TREE_RCU=y 46 + # CONFIG_TREE_PREEMPT_RCU is not set 47 + # CONFIG_RCU_TRACE is not set 48 + CONFIG_RCU_FANOUT=32 49 + # CONFIG_RCU_FANOUT_EXACT is not set 50 + # CONFIG_TREE_RCU_TRACE is not set 41 51 # CONFIG_IKCONFIG is not set 42 52 CONFIG_LOG_BUF_SHIFT=14 43 - # CONFIG_CGROUPS is not set 44 53 # CONFIG_GROUP_SCHED is not set 54 + # CONFIG_CGROUPS is not set 45 55 CONFIG_SYSFS_DEPRECATED=y 46 56 CONFIG_SYSFS_DEPRECATED_V2=y 47 57 CONFIG_RELAY=y 48 58 # CONFIG_NAMESPACES is not set 49 59 CONFIG_BLK_DEV_INITRD=y 50 60 CONFIG_INITRAMFS_SOURCE="" 61 + CONFIG_RD_GZIP=y 62 + # CONFIG_RD_BZIP2 is not set 63 + # CONFIG_RD_LZMA is not set 51 64 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 52 65 CONFIG_SYSCTL=y 66 + CONFIG_ANON_INODES=y 53 67 CONFIG_EMBEDDED=y 54 68 # CONFIG_SYSCTL_SYSCALL is not set 55 69 CONFIG_KALLSYMS=y ··· 74 58 CONFIG_PRINTK=y 75 59 CONFIG_BUG=y 76 60 CONFIG_ELF_CORE=y 77 - # CONFIG_COMPAT_BRK is not set 78 61 # CONFIG_BASE_FULL is not set 79 62 CONFIG_FUTEX=y 80 - CONFIG_ANON_INODES=y 81 63 CONFIG_EPOLL=y 82 64 CONFIG_SIGNALFD=y 83 65 CONFIG_TIMERFD=y 84 66 CONFIG_EVENTFD=y 85 67 CONFIG_SHMEM=y 68 + CONFIG_AIO=y 69 + 70 + # 71 + # Kernel Performance Events And Counters 72 + # 86 73 CONFIG_VM_EVENT_COUNTERS=y 87 74 CONFIG_SLUB_DEBUG=y 75 + # CONFIG_COMPAT_BRK is not set 88 76 # CONFIG_SLAB is not set 89 77 CONFIG_SLUB=y 90 78 # CONFIG_SLOB is not set 91 79 CONFIG_PROFILING=y 92 - # CONFIG_MARKERS is not set 80 + CONFIG_TRACEPOINTS=y 93 81 CONFIG_OPROFILE=m 94 82 CONFIG_HAVE_OPROFILE=y 95 83 CONFIG_KPROBES=y 96 - # CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is not set 97 - # CONFIG_HAVE_IOREMAP_PROT is not set 98 84 CONFIG_HAVE_KPROBES=y 99 - # CONFIG_HAVE_KRETPROBES is not set 100 - # CONFIG_HAVE_ARCH_TRACEHOOK is not set 101 - # CONFIG_HAVE_DMA_ATTRS is not set 102 - # CONFIG_USE_GENERIC_SMP_HELPERS is not set 103 85 CONFIG_HAVE_CLK=y 104 - CONFIG_PROC_PAGE_MONITOR=y 86 + 87 + # 88 + # GCOV-based kernel profiling 89 + # 90 + # CONFIG_GCOV_KERNEL is not set 91 + # CONFIG_SLOW_WORK is not set 105 92 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 106 93 CONFIG_SLABINFO=y 107 94 CONFIG_RT_MUTEXES=y 108 - # CONFIG_TINY_SHMEM is not set 109 95 CONFIG_BASE_SMALL=1 110 96 CONFIG_MODULES=y 111 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 115 97 # CONFIG_MODULE_FORCE_UNLOAD is not set 116 98 # CONFIG_MODVERSIONS is not set 117 99 # CONFIG_MODULE_SRCVERSION_ALL is not set 118 - CONFIG_KMOD=y 119 100 CONFIG_BLOCK=y 120 - # CONFIG_LBD is not set 121 - # CONFIG_BLK_DEV_IO_TRACE is not set 122 - # CONFIG_LSF is not set 101 + CONFIG_LBDAF=y 123 102 # CONFIG_BLK_DEV_BSG is not set 124 103 # CONFIG_BLK_DEV_INTEGRITY is not set 125 104 ··· 132 117 CONFIG_DEFAULT_CFQ=y 133 118 # CONFIG_DEFAULT_NOOP is not set 134 119 CONFIG_DEFAULT_IOSCHED="cfq" 135 - CONFIG_CLASSIC_RCU=y 120 + CONFIG_FREEZER=y 136 121 137 122 # 138 123 # System Type and features ··· 148 133 CONFIG_CPU_AT32AP700X=y 149 134 CONFIG_CPU_AT32AP7000=y 150 135 CONFIG_BOARD_ATSTK1000=y 151 - # CONFIG_BOARD_ATNGW100 is not set 136 + # CONFIG_BOARD_ATNGW100_MKI is not set 137 + # CONFIG_BOARD_ATNGW100_MKII is not set 138 + # CONFIG_BOARD_HAMMERHEAD is not set 139 + # CONFIG_BOARD_FAVR_32 is not set 140 + # CONFIG_BOARD_MERISC is not set 141 + # CONFIG_BOARD_MIMC200 is not set 152 142 CONFIG_BOARD_ATSTK1002=y 153 143 # CONFIG_BOARD_ATSTK1003 is not set 154 144 # CONFIG_BOARD_ATSTK1004 is not set ··· 179 159 # CONFIG_PREEMPT_VOLUNTARY is not set 180 160 # CONFIG_PREEMPT is not set 181 161 CONFIG_QUICKLIST=y 182 - # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set 162 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 183 163 # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 184 164 # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 185 165 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 191 171 # CONFIG_SPARSEMEM_MANUAL is not set 192 172 CONFIG_FLATMEM=y 193 173 CONFIG_FLAT_NODE_MEM_MAP=y 194 - # CONFIG_SPARSEMEM_STATIC is not set 195 - # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set 196 174 CONFIG_PAGEFLAGS_EXTENDED=y 197 175 CONFIG_SPLIT_PTLOCK_CPUS=4 198 - # CONFIG_RESOURCES_64BIT is not set 176 + # CONFIG_PHYS_ADDR_T_64BIT is not set 199 177 CONFIG_ZONE_DMA_FLAG=0 200 178 CONFIG_NR_QUICK=2 201 179 CONFIG_VIRT_TO_BUS=y 180 + CONFIG_HAVE_MLOCK=y 181 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 182 + # CONFIG_KSM is not set 183 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 202 184 # CONFIG_OWNERSHIP_TRACE is not set 203 185 CONFIG_NMI_DEBUGGING=y 204 186 # CONFIG_HZ_100 is not set ··· 208 186 # CONFIG_HZ_300 is not set 209 187 # CONFIG_HZ_1000 is not set 210 188 CONFIG_HZ=250 211 - # CONFIG_SCHED_HRTICK is not set 189 + CONFIG_SCHED_HRTICK=y 212 190 CONFIG_CMDLINE="" 213 191 214 192 # ··· 219 197 CONFIG_PM_SLEEP=y 220 198 CONFIG_SUSPEND=y 221 199 CONFIG_SUSPEND_FREEZER=y 200 + # CONFIG_PM_RUNTIME is not set 222 201 CONFIG_ARCH_SUSPEND_POSSIBLE=y 223 202 224 203 # ··· 251 228 # Executable file formats 252 229 # 253 230 CONFIG_BINFMT_ELF=y 231 + # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 232 + # CONFIG_HAVE_AOUT is not set 254 233 # CONFIG_BINFMT_MISC is not set 255 234 CONFIG_NET=y 256 235 ··· 320 295 # CONFIG_NETFILTER is not set 321 296 # CONFIG_IP_DCCP is not set 322 297 # CONFIG_IP_SCTP is not set 298 + # CONFIG_RDS is not set 323 299 # CONFIG_TIPC is not set 324 300 # CONFIG_ATM is not set 325 301 CONFIG_STP=m 326 302 CONFIG_BRIDGE=m 303 + # CONFIG_NET_DSA is not set 327 304 # CONFIG_VLAN_8021Q is not set 328 305 # CONFIG_DECNET is not set 329 306 CONFIG_LLC=m ··· 336 309 # CONFIG_LAPB is not set 337 310 # CONFIG_ECONET is not set 338 311 # CONFIG_WAN_ROUTER is not set 312 + # CONFIG_PHONET is not set 313 + # CONFIG_IEEE802154 is not set 339 314 # CONFIG_NET_SCHED is not set 315 + # CONFIG_DCB is not set 340 316 341 317 # 342 318 # Network testing 343 319 # 344 320 # CONFIG_NET_PKTGEN is not set 345 321 # CONFIG_NET_TCPPROBE is not set 322 + # CONFIG_NET_DROP_MONITOR is not set 346 323 # CONFIG_HAMRADIO is not set 347 324 # CONFIG_CAN is not set 348 325 # CONFIG_IRDA is not set 349 326 # CONFIG_BT is not set 350 327 # CONFIG_AF_RXRPC is not set 328 + CONFIG_WIRELESS=y 329 + # CONFIG_CFG80211 is not set 330 + CONFIG_CFG80211_DEFAULT_PS_VALUE=0 331 + # CONFIG_WIRELESS_OLD_REGULATORY is not set 332 + # CONFIG_WIRELESS_EXT is not set 333 + # CONFIG_LIB80211 is not set 351 334 352 335 # 353 - # Wireless 336 + # CFG80211 needs to be enabled for MAC80211 354 337 # 355 - # CONFIG_CFG80211 is not set 356 - # CONFIG_WIRELESS_EXT is not set 357 - # CONFIG_MAC80211 is not set 358 - # CONFIG_IEEE80211 is not set 338 + # CONFIG_WIMAX is not set 359 339 # CONFIG_RFKILL is not set 360 340 # CONFIG_NET_9P is not set 361 341 ··· 374 340 # Generic Driver Options 375 341 # 376 342 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 343 + # CONFIG_DEVTMPFS is not set 377 344 CONFIG_STANDALONE=y 378 345 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 379 346 # CONFIG_FW_LOADER is not set ··· 384 349 # CONFIG_CONNECTOR is not set 385 350 CONFIG_MTD=y 386 351 # CONFIG_MTD_DEBUG is not set 352 + # CONFIG_MTD_TESTS is not set 387 353 # CONFIG_MTD_CONCAT is not set 388 354 CONFIG_MTD_PARTITIONS=y 389 355 # CONFIG_MTD_REDBOOT_PARTS is not set ··· 434 398 # 435 399 # CONFIG_MTD_COMPLEX_MAPPINGS is not set 436 400 CONFIG_MTD_PHYSMAP=y 437 - CONFIG_MTD_PHYSMAP_START=0x8000000 438 - CONFIG_MTD_PHYSMAP_LEN=0x0 439 - CONFIG_MTD_PHYSMAP_BANKWIDTH=2 401 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 440 402 # CONFIG_MTD_PLATRAM is not set 441 403 442 404 # 443 405 # Self-contained MTD device drivers 444 406 # 445 407 CONFIG_MTD_DATAFLASH=m 408 + # CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set 409 + # CONFIG_MTD_DATAFLASH_OTP is not set 446 410 CONFIG_MTD_M25P80=m 447 411 CONFIG_M25PXX_USE_FAST_READ=y 412 + # CONFIG_MTD_SST25L is not set 448 413 # CONFIG_MTD_SLRAM is not set 449 414 # CONFIG_MTD_PHRAM is not set 450 415 # CONFIG_MTD_MTDRAM is not set ··· 461 424 # CONFIG_MTD_ONENAND is not set 462 425 463 426 # 427 + # LPDDR flash memory drivers 428 + # 429 + # CONFIG_MTD_LPDDR is not set 430 + 431 + # 464 432 # UBI - Unsorted block images 465 433 # 466 - # CONFIG_MTD_UBI is not set 434 + CONFIG_MTD_UBI=y 435 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 436 + CONFIG_MTD_UBI_BEB_RESERVE=1 437 + # CONFIG_MTD_UBI_GLUEBI is not set 438 + 439 + # 440 + # UBI debugging options 441 + # 442 + # CONFIG_MTD_UBI_DEBUG is not set 467 443 # CONFIG_PARPORT is not set 468 444 CONFIG_BLK_DEV=y 469 445 # CONFIG_BLK_DEV_COW_COMMON is not set ··· 494 444 CONFIG_ATMEL_TCLIB=y 495 445 CONFIG_ATMEL_TCB_CLKSRC=y 496 446 CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 497 - # CONFIG_EEPROM_93CX6 is not set 447 + # CONFIG_ICS932S401 is not set 498 448 CONFIG_ATMEL_SSC=m 499 449 # CONFIG_ENCLOSURE_SERVICES is not set 500 - # CONFIG_HAVE_IDE is not set 450 + # CONFIG_ISL29003 is not set 451 + # CONFIG_C2PORT is not set 452 + 453 + # 454 + # EEPROM support 455 + # 456 + CONFIG_EEPROM_AT24=m 457 + # CONFIG_EEPROM_AT25 is not set 458 + # CONFIG_EEPROM_LEGACY is not set 459 + # CONFIG_EEPROM_MAX6875 is not set 460 + # CONFIG_EEPROM_93CX6 is not set 501 461 502 462 # 503 463 # SCSI device support ··· 529 469 # CONFIG_BLK_DEV_SR_VENDOR is not set 530 470 # CONFIG_CHR_DEV_SG is not set 531 471 # CONFIG_CHR_DEV_SCH is not set 532 - 533 - # 534 - # Some SCSI devices (e.g. CD jukebox) support multiple LUNs 535 - # 536 472 # CONFIG_SCSI_MULTI_LUN is not set 537 473 # CONFIG_SCSI_CONSTANTS is not set 538 474 # CONFIG_SCSI_LOGGING is not set ··· 545 489 # CONFIG_SCSI_SRP_ATTRS is not set 546 490 # CONFIG_SCSI_LOWLEVEL is not set 547 491 # CONFIG_SCSI_DH is not set 492 + # CONFIG_SCSI_OSD_INITIATOR is not set 548 493 CONFIG_ATA=m 549 494 # CONFIG_ATA_NONSTANDARD is not set 495 + CONFIG_ATA_VERBOSE_ERROR=y 550 496 # CONFIG_SATA_PMP is not set 551 497 CONFIG_ATA_SFF=y 552 498 # CONFIG_SATA_MV is not set ··· 577 519 # CONFIG_BROADCOM_PHY is not set 578 520 # CONFIG_ICPLUS_PHY is not set 579 521 # CONFIG_REALTEK_PHY is not set 522 + # CONFIG_NATIONAL_PHY is not set 523 + # CONFIG_STE10XP is not set 524 + # CONFIG_LSI_ET1011C_PHY is not set 580 525 # CONFIG_FIXED_PHY is not set 581 526 # CONFIG_MDIO_BITBANG is not set 582 527 CONFIG_NET_ETHERNET=y 583 528 # CONFIG_MII is not set 584 529 CONFIG_MACB=y 585 530 # CONFIG_ENC28J60 is not set 531 + # CONFIG_ETHOC is not set 532 + # CONFIG_DNET is not set 586 533 # CONFIG_IBM_NEW_EMAC_ZMII is not set 587 534 # CONFIG_IBM_NEW_EMAC_RGMII is not set 588 535 # CONFIG_IBM_NEW_EMAC_TAH is not set 589 536 # CONFIG_IBM_NEW_EMAC_EMAC4 is not set 537 + # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set 538 + # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 539 + # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 590 540 # CONFIG_B44 is not set 541 + # CONFIG_KS8842 is not set 542 + # CONFIG_KS8851 is not set 543 + # CONFIG_KS8851_MLL is not set 591 544 # CONFIG_NETDEV_1000 is not set 592 545 # CONFIG_NETDEV_10000 is not set 593 - 594 - # 595 - # Wireless LAN 596 - # 546 + CONFIG_WLAN=y 597 547 # CONFIG_WLAN_PRE80211 is not set 598 548 # CONFIG_WLAN_80211 is not set 599 - # CONFIG_IWLWIFI_LEDS is not set 549 + 550 + # 551 + # Enable WiMAX (Networking options) to see the WiMAX drivers 552 + # 600 553 # CONFIG_WAN is not set 601 554 CONFIG_PPP=m 602 555 # CONFIG_PPP_MULTILINK is not set ··· 649 580 # Input Device Drivers 650 581 # 651 582 CONFIG_INPUT_KEYBOARD=y 583 + # CONFIG_KEYBOARD_ADP5588 is not set 652 584 # CONFIG_KEYBOARD_ATKBD is not set 653 - # CONFIG_KEYBOARD_SUNKBD is not set 585 + # CONFIG_QT2160 is not set 654 586 # CONFIG_KEYBOARD_LKKBD is not set 655 - # CONFIG_KEYBOARD_XTKBD is not set 656 - # CONFIG_KEYBOARD_NEWTON is not set 657 - # CONFIG_KEYBOARD_STOWAWAY is not set 658 587 CONFIG_KEYBOARD_GPIO=m 588 + # CONFIG_KEYBOARD_MATRIX is not set 589 + # CONFIG_KEYBOARD_LM8323 is not set 590 + # CONFIG_KEYBOARD_MAX7359 is not set 591 + # CONFIG_KEYBOARD_NEWTON is not set 592 + # CONFIG_KEYBOARD_OPENCORES is not set 593 + # CONFIG_KEYBOARD_STOWAWAY is not set 594 + # CONFIG_KEYBOARD_SUNKBD is not set 595 + # CONFIG_KEYBOARD_XTKBD is not set 659 596 CONFIG_INPUT_MOUSE=y 660 597 # CONFIG_MOUSE_PS2 is not set 661 598 # CONFIG_MOUSE_SERIAL is not set 662 599 # CONFIG_MOUSE_VSXXXAA is not set 663 600 CONFIG_MOUSE_GPIO=m 601 + # CONFIG_MOUSE_SYNAPTICS_I2C is not set 664 602 # CONFIG_INPUT_JOYSTICK is not set 665 603 # CONFIG_INPUT_TABLET is not set 666 604 # CONFIG_INPUT_TOUCHSCREEN is not set ··· 698 622 CONFIG_SERIAL_ATMEL_CONSOLE=y 699 623 CONFIG_SERIAL_ATMEL_PDC=y 700 624 # CONFIG_SERIAL_ATMEL_TTYAT is not set 625 + # CONFIG_SERIAL_MAX3100 is not set 701 626 CONFIG_SERIAL_CORE=y 702 627 CONFIG_SERIAL_CORE_CONSOLE=y 703 628 CONFIG_UNIX98_PTYS=y 629 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 704 630 # CONFIG_LEGACY_PTYS is not set 705 631 # CONFIG_IPMI_HANDLER is not set 706 632 # CONFIG_HW_RANDOM is not set ··· 711 633 # CONFIG_TCG_TPM is not set 712 634 CONFIG_I2C=m 713 635 CONFIG_I2C_BOARDINFO=y 636 + CONFIG_I2C_COMPAT=y 714 637 CONFIG_I2C_CHARDEV=m 638 + CONFIG_I2C_HELPER_AUTO=y 715 639 CONFIG_I2C_ALGOBIT=m 716 640 717 641 # ··· 723 643 # 724 644 # I2C system bus drivers (mostly embedded / system-on-chip) 725 645 # 646 + # CONFIG_I2C_DESIGNWARE is not set 726 647 CONFIG_I2C_GPIO=m 727 648 # CONFIG_I2C_OCORES is not set 728 649 # CONFIG_I2C_SIMTEC is not set ··· 744 663 # Miscellaneous I2C Chip support 745 664 # 746 665 # CONFIG_DS1682 is not set 747 - CONFIG_EEPROM_AT24=m 748 - # CONFIG_EEPROM_LEGACY is not set 749 - # CONFIG_SENSORS_PCF8574 is not set 750 - # CONFIG_PCF8575 is not set 751 - # CONFIG_SENSORS_PCA9539 is not set 752 - # CONFIG_SENSORS_PCF8591 is not set 753 - # CONFIG_TPS65010 is not set 754 - # CONFIG_SENSORS_MAX6875 is not set 755 666 # CONFIG_SENSORS_TSL2550 is not set 756 667 # CONFIG_I2C_DEBUG_CORE is not set 757 668 # CONFIG_I2C_DEBUG_ALGO is not set ··· 758 685 # 759 686 CONFIG_SPI_ATMEL=y 760 687 # CONFIG_SPI_BITBANG is not set 688 + # CONFIG_SPI_GPIO is not set 761 689 762 690 # 763 691 # SPI Protocol Masters 764 692 # 765 - # CONFIG_EEPROM_AT25 is not set 766 693 CONFIG_SPI_SPIDEV=m 767 694 # CONFIG_SPI_TLE62X0 is not set 695 + 696 + # 697 + # PPS support 698 + # 699 + # CONFIG_PPS is not set 768 700 CONFIG_ARCH_REQUIRE_GPIOLIB=y 769 701 CONFIG_GPIOLIB=y 770 702 # CONFIG_DEBUG_GPIO is not set 771 703 CONFIG_GPIO_SYSFS=y 704 + 705 + # 706 + # Memory mapped GPIO expanders: 707 + # 772 708 773 709 # 774 710 # I2C GPIO expanders: ··· 795 713 # 796 714 # CONFIG_GPIO_MAX7301 is not set 797 715 # CONFIG_GPIO_MCP23S08 is not set 716 + # CONFIG_GPIO_MC33880 is not set 717 + 718 + # 719 + # AC97 GPIO expanders: 720 + # 798 721 # CONFIG_W1 is not set 799 722 # CONFIG_POWER_SUPPLY is not set 800 723 # CONFIG_HWMON is not set 801 724 # CONFIG_THERMAL is not set 802 - # CONFIG_THERMAL_HWMON is not set 803 725 CONFIG_WATCHDOG=y 804 726 # CONFIG_WATCHDOG_NOWAYOUT is not set 805 727 ··· 812 726 # 813 727 # CONFIG_SOFT_WATCHDOG is not set 814 728 CONFIG_AT32AP700X_WDT=y 729 + CONFIG_SSB_POSSIBLE=y 815 730 816 731 # 817 732 # Sonics Silicon Backplane 818 733 # 819 - CONFIG_SSB_POSSIBLE=y 820 734 # CONFIG_SSB is not set 821 735 822 736 # ··· 825 739 # CONFIG_MFD_CORE is not set 826 740 # CONFIG_MFD_SM501 is not set 827 741 # CONFIG_HTC_PASIC3 is not set 828 - 829 - # 830 - # Multimedia devices 831 - # 832 - 833 - # 834 - # Multimedia core support 835 - # 836 - # CONFIG_VIDEO_DEV is not set 837 - # CONFIG_DVB_CORE is not set 838 - # CONFIG_VIDEO_MEDIA is not set 839 - 840 - # 841 - # Multimedia drivers 842 - # 843 - # CONFIG_DAB is not set 742 + # CONFIG_TPS65010 is not set 743 + # CONFIG_MFD_TMIO is not set 744 + # CONFIG_MFD_WM8400 is not set 745 + # CONFIG_MFD_WM831X is not set 746 + # CONFIG_MFD_WM8350_I2C is not set 747 + # CONFIG_MFD_PCF50633 is not set 748 + # CONFIG_MFD_MC13783 is not set 749 + # CONFIG_AB3100_CORE is not set 750 + # CONFIG_EZX_PCAP is not set 751 + # CONFIG_REGULATOR is not set 752 + # CONFIG_MEDIA_SUPPORT is not set 844 753 845 754 # 846 755 # Graphics support ··· 845 764 CONFIG_FB=y 846 765 # CONFIG_FIRMWARE_EDID is not set 847 766 # CONFIG_FB_DDC is not set 767 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 848 768 CONFIG_FB_CFB_FILLRECT=y 849 769 CONFIG_FB_CFB_COPYAREA=y 850 770 CONFIG_FB_CFB_IMAGEBLIT=y ··· 867 785 # CONFIG_FB_S1D13XXX is not set 868 786 CONFIG_FB_ATMEL=y 869 787 # CONFIG_FB_VIRTUAL is not set 788 + # CONFIG_FB_METRONOME is not set 789 + # CONFIG_FB_MB862XX is not set 790 + # CONFIG_FB_BROADSHEET is not set 870 791 CONFIG_BACKLIGHT_LCD_SUPPORT=y 871 792 CONFIG_LCD_CLASS_DEVICE=y 793 + # CONFIG_LCD_LMS283GF05 is not set 872 794 CONFIG_LCD_LTV350QV=y 873 795 # CONFIG_LCD_ILI9320 is not set 796 + # CONFIG_LCD_TDO24M is not set 874 797 # CONFIG_LCD_VGG2432A4 is not set 875 798 # CONFIG_LCD_PLATFORM is not set 876 799 # CONFIG_BACKLIGHT_CLASS_DEVICE is not set ··· 886 799 # CONFIG_DISPLAY_SUPPORT is not set 887 800 # CONFIG_LOGO is not set 888 801 CONFIG_SOUND=m 802 + CONFIG_SOUND_OSS_CORE=y 803 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 889 804 CONFIG_SND=m 890 805 CONFIG_SND_TIMER=m 891 806 CONFIG_SND_PCM=m ··· 896 807 CONFIG_SND_MIXER_OSS=m 897 808 CONFIG_SND_PCM_OSS=m 898 809 CONFIG_SND_PCM_OSS_PLUGINS=y 810 + # CONFIG_SND_HRTIMER is not set 899 811 # CONFIG_SND_DYNAMIC_MINORS is not set 900 812 # CONFIG_SND_SUPPORT_OLD_API is not set 901 813 # CONFIG_SND_VERBOSE_PROCFS is not set 902 814 # CONFIG_SND_VERBOSE_PRINTK is not set 903 815 # CONFIG_SND_DEBUG is not set 816 + # CONFIG_SND_RAWMIDI_SEQ is not set 817 + # CONFIG_SND_OPL3_LIB_SEQ is not set 818 + # CONFIG_SND_OPL4_LIB_SEQ is not set 819 + # CONFIG_SND_SBAWE_SEQ is not set 820 + # CONFIG_SND_EMU10K1_SEQ is not set 904 821 # CONFIG_SND_DRIVERS is not set 822 + 823 + # 824 + # Atmel devices (AVR32 and AT91) 825 + # 826 + # CONFIG_SND_ATMEL_ABDAC is not set 827 + # CONFIG_SND_ATMEL_AC97C is not set 905 828 CONFIG_SND_SPI=y 906 829 CONFIG_SND_AT73C213=m 907 830 CONFIG_SND_AT73C213_TARGET_BITRATE=48000 ··· 926 825 # CONFIG_USB_ARCH_HAS_EHCI is not set 927 826 # CONFIG_USB_OTG_WHITELIST is not set 928 827 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 828 + # CONFIG_USB_GADGET_MUSB_HDRC is not set 929 829 930 830 # 931 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 831 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 932 832 # 933 833 CONFIG_USB_GADGET=y 934 834 # CONFIG_USB_GADGET_DEBUG is not set 935 835 # CONFIG_USB_GADGET_DEBUG_FILES is not set 936 836 # CONFIG_USB_GADGET_DEBUG_FS is not set 837 + CONFIG_USB_GADGET_VBUS_DRAW=2 937 838 CONFIG_USB_GADGET_SELECTED=y 938 - # CONFIG_USB_GADGET_AMD5536UDC is not set 839 + # CONFIG_USB_GADGET_AT91 is not set 939 840 CONFIG_USB_GADGET_ATMEL_USBA=y 940 841 CONFIG_USB_ATMEL_USBA=y 941 842 # CONFIG_USB_GADGET_FSL_USB2 is not set 942 - # CONFIG_USB_GADGET_NET2280 is not set 943 - # CONFIG_USB_GADGET_PXA25X is not set 944 - # CONFIG_USB_GADGET_M66592 is not set 945 - # CONFIG_USB_GADGET_PXA27X is not set 946 - # CONFIG_USB_GADGET_GOKU is not set 947 843 # CONFIG_USB_GADGET_LH7A40X is not set 948 844 # CONFIG_USB_GADGET_OMAP is not set 845 + # CONFIG_USB_GADGET_PXA25X is not set 846 + # CONFIG_USB_GADGET_R8A66597 is not set 847 + # CONFIG_USB_GADGET_PXA27X is not set 848 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 849 + # CONFIG_USB_GADGET_IMX is not set 949 850 # CONFIG_USB_GADGET_S3C2410 is not set 950 - # CONFIG_USB_GADGET_AT91 is not set 851 + # CONFIG_USB_GADGET_M66592 is not set 852 + # CONFIG_USB_GADGET_AMD5536UDC is not set 853 + # CONFIG_USB_GADGET_FSL_QE is not set 854 + # CONFIG_USB_GADGET_CI13XXX is not set 855 + # CONFIG_USB_GADGET_NET2280 is not set 856 + # CONFIG_USB_GADGET_GOKU is not set 857 + # CONFIG_USB_GADGET_LANGWELL is not set 951 858 # CONFIG_USB_GADGET_DUMMY_HCD is not set 952 859 CONFIG_USB_GADGET_DUALSPEED=y 953 860 CONFIG_USB_ZERO=m 861 + # CONFIG_USB_AUDIO is not set 954 862 CONFIG_USB_ETH=m 955 863 CONFIG_USB_ETH_RNDIS=y 864 + # CONFIG_USB_ETH_EEM is not set 956 865 CONFIG_USB_GADGETFS=m 957 866 CONFIG_USB_FILE_STORAGE=m 958 867 # CONFIG_USB_FILE_STORAGE_TEST is not set ··· 970 859 # CONFIG_USB_MIDI_GADGET is not set 971 860 # CONFIG_USB_G_PRINTER is not set 972 861 CONFIG_USB_CDC_COMPOSITE=m 862 + 863 + # 864 + # OTG and related infrastructure 865 + # 866 + # CONFIG_USB_GPIO_VBUS is not set 867 + # CONFIG_NOP_USB_XCEIV is not set 973 868 CONFIG_MMC=y 974 869 # CONFIG_MMC_DEBUG is not set 975 870 # CONFIG_MMC_UNSAFE_RESUME is not set 976 871 977 872 # 978 - # MMC/SD Card Drivers 873 + # MMC/SD/SDIO Card Drivers 979 874 # 980 875 CONFIG_MMC_BLOCK=y 981 876 CONFIG_MMC_BLOCK_BOUNCE=y ··· 989 872 # CONFIG_MMC_TEST is not set 990 873 991 874 # 992 - # MMC/SD Host Controller Drivers 875 + # MMC/SD/SDIO Host Controller Drivers 993 876 # 994 877 # CONFIG_MMC_SDHCI is not set 878 + # CONFIG_MMC_AT91 is not set 995 879 CONFIG_MMC_ATMELMCI=y 880 + # CONFIG_MMC_ATMELMCI_DMA is not set 996 881 CONFIG_MMC_SPI=m 997 882 # CONFIG_MEMSTICK is not set 998 883 CONFIG_NEW_LEDS=y ··· 1006 887 CONFIG_LEDS_ATMEL_PWM=m 1007 888 # CONFIG_LEDS_PCA9532 is not set 1008 889 CONFIG_LEDS_GPIO=m 890 + CONFIG_LEDS_GPIO_PLATFORM=y 891 + # CONFIG_LEDS_LP3944 is not set 1009 892 # CONFIG_LEDS_PCA955X is not set 893 + # CONFIG_LEDS_DAC124S085 is not set 894 + # CONFIG_LEDS_BD2802 is not set 1010 895 1011 896 # 1012 897 # LED Triggers ··· 1018 895 CONFIG_LEDS_TRIGGERS=y 1019 896 CONFIG_LEDS_TRIGGER_TIMER=m 1020 897 CONFIG_LEDS_TRIGGER_HEARTBEAT=m 898 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 899 + # CONFIG_LEDS_TRIGGER_GPIO is not set 1021 900 CONFIG_LEDS_TRIGGER_DEFAULT_ON=m 901 + 902 + # 903 + # iptables trigger is under Netfilter config (LED target) 904 + # 1022 905 # CONFIG_ACCESSIBILITY is not set 1023 906 CONFIG_RTC_LIB=y 1024 907 CONFIG_RTC_CLASS=y ··· 1056 927 # CONFIG_RTC_DRV_M41T80 is not set 1057 928 # CONFIG_RTC_DRV_S35390A is not set 1058 929 # CONFIG_RTC_DRV_FM3130 is not set 930 + # CONFIG_RTC_DRV_RX8581 is not set 931 + # CONFIG_RTC_DRV_RX8025 is not set 1059 932 1060 933 # 1061 934 # SPI RTC drivers 1062 935 # 1063 936 # CONFIG_RTC_DRV_M41T94 is not set 1064 937 # CONFIG_RTC_DRV_DS1305 is not set 938 + # CONFIG_RTC_DRV_DS1390 is not set 1065 939 # CONFIG_RTC_DRV_MAX6902 is not set 1066 940 # CONFIG_RTC_DRV_R9701 is not set 1067 941 # CONFIG_RTC_DRV_RS5C348 is not set 942 + # CONFIG_RTC_DRV_DS3234 is not set 943 + # CONFIG_RTC_DRV_PCF2123 is not set 1068 944 1069 945 # 1070 946 # Platform RTC drivers 1071 947 # 948 + # CONFIG_RTC_DRV_DS1286 is not set 1072 949 # CONFIG_RTC_DRV_DS1511 is not set 1073 950 # CONFIG_RTC_DRV_DS1553 is not set 1074 951 # CONFIG_RTC_DRV_DS1742 is not set 1075 952 # CONFIG_RTC_DRV_STK17TA8 is not set 1076 953 # CONFIG_RTC_DRV_M48T86 is not set 954 + # CONFIG_RTC_DRV_M48T35 is not set 1077 955 # CONFIG_RTC_DRV_M48T59 is not set 956 + # CONFIG_RTC_DRV_BQ4802 is not set 1078 957 # CONFIG_RTC_DRV_V3020 is not set 1079 958 1080 959 # ··· 1101 964 # DMA Clients 1102 965 # 1103 966 # CONFIG_NET_DMA is not set 967 + # CONFIG_ASYNC_TX_DMA is not set 1104 968 # CONFIG_DMATEST is not set 969 + # CONFIG_AUXDISPLAY is not set 1105 970 # CONFIG_UIO is not set 971 + 972 + # 973 + # TI VLYNQ 974 + # 975 + # CONFIG_STAGING is not set 1106 976 1107 977 # 1108 978 # File systems ··· 1118 974 # CONFIG_EXT2_FS_XATTR is not set 1119 975 # CONFIG_EXT2_FS_XIP is not set 1120 976 CONFIG_EXT3_FS=y 977 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1121 978 # CONFIG_EXT3_FS_XATTR is not set 1122 - # CONFIG_EXT4DEV_FS is not set 979 + CONFIG_EXT4_FS=y 980 + CONFIG_EXT4_FS_XATTR=y 981 + # CONFIG_EXT4_FS_POSIX_ACL is not set 982 + # CONFIG_EXT4_FS_SECURITY is not set 983 + # CONFIG_EXT4_DEBUG is not set 1123 984 CONFIG_JBD=y 1124 985 # CONFIG_JBD_DEBUG is not set 986 + CONFIG_JBD2=y 987 + # CONFIG_JBD2_DEBUG is not set 988 + CONFIG_FS_MBCACHE=y 1125 989 # CONFIG_REISERFS_FS is not set 1126 990 # CONFIG_JFS_FS is not set 1127 991 # CONFIG_FS_POSIX_ACL is not set 1128 992 # CONFIG_XFS_FS is not set 993 + # CONFIG_GFS2_FS is not set 1129 994 # CONFIG_OCFS2_FS is not set 995 + # CONFIG_BTRFS_FS is not set 996 + # CONFIG_NILFS2_FS is not set 997 + CONFIG_FILE_LOCKING=y 998 + CONFIG_FSNOTIFY=y 1130 999 # CONFIG_DNOTIFY is not set 1131 1000 CONFIG_INOTIFY=y 1132 1001 CONFIG_INOTIFY_USER=y ··· 1147 990 # CONFIG_AUTOFS_FS is not set 1148 991 # CONFIG_AUTOFS4_FS is not set 1149 992 CONFIG_FUSE_FS=m 993 + # CONFIG_CUSE is not set 994 + 995 + # 996 + # Caches 997 + # 998 + # CONFIG_FSCACHE is not set 1150 999 1151 1000 # 1152 1001 # CD-ROM/DVD Filesystems ··· 1176 1013 CONFIG_PROC_FS=y 1177 1014 CONFIG_PROC_KCORE=y 1178 1015 CONFIG_PROC_SYSCTL=y 1016 + CONFIG_PROC_PAGE_MONITOR=y 1179 1017 CONFIG_SYSFS=y 1180 1018 CONFIG_TMPFS=y 1181 1019 # CONFIG_TMPFS_POSIX_ACL is not set 1182 1020 # CONFIG_HUGETLB_PAGE is not set 1183 1021 # CONFIG_CONFIGFS_FS is not set 1184 - 1185 - # 1186 - # Miscellaneous filesystems 1187 - # 1022 + CONFIG_MISC_FILESYSTEMS=y 1188 1023 # CONFIG_ADFS_FS is not set 1189 1024 # CONFIG_AFFS_FS is not set 1190 1025 # CONFIG_HFS_FS is not set ··· 1200 1039 # CONFIG_JFFS2_LZO is not set 1201 1040 CONFIG_JFFS2_RTIME=y 1202 1041 # CONFIG_JFFS2_RUBIN is not set 1042 + CONFIG_UBIFS_FS=y 1043 + # CONFIG_UBIFS_FS_XATTR is not set 1044 + # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set 1045 + CONFIG_UBIFS_FS_LZO=y 1046 + CONFIG_UBIFS_FS_ZLIB=y 1047 + # CONFIG_UBIFS_FS_DEBUG is not set 1203 1048 # CONFIG_CRAMFS is not set 1049 + # CONFIG_SQUASHFS is not set 1204 1050 # CONFIG_VXFS_FS is not set 1205 1051 CONFIG_MINIX_FS=m 1206 1052 # CONFIG_OMFS_FS is not set ··· 1290 1122 CONFIG_ENABLE_MUST_CHECK=y 1291 1123 CONFIG_FRAME_WARN=1024 1292 1124 CONFIG_MAGIC_SYSRQ=y 1125 + # CONFIG_STRIP_ASM_SYMS is not set 1293 1126 # CONFIG_UNUSED_SYMBOLS is not set 1294 1127 CONFIG_DEBUG_FS=y 1295 1128 # CONFIG_HEADERS_CHECK is not set ··· 1299 1130 CONFIG_DETECT_SOFTLOCKUP=y 1300 1131 # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1301 1132 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1133 + CONFIG_DETECT_HUNG_TASK=y 1134 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1135 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1302 1136 CONFIG_SCHED_DEBUG=y 1303 1137 # CONFIG_SCHEDSTATS is not set 1304 1138 # CONFIG_TIMER_STATS is not set ··· 1317 1145 # CONFIG_LOCK_STAT is not set 1318 1146 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1319 1147 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1148 + CONFIG_STACKTRACE=y 1320 1149 # CONFIG_DEBUG_KOBJECT is not set 1321 1150 CONFIG_DEBUG_BUGVERBOSE=y 1322 1151 # CONFIG_DEBUG_INFO is not set ··· 1326 1153 # CONFIG_DEBUG_MEMORY_INIT is not set 1327 1154 # CONFIG_DEBUG_LIST is not set 1328 1155 # CONFIG_DEBUG_SG is not set 1156 + # CONFIG_DEBUG_NOTIFIERS is not set 1157 + # CONFIG_DEBUG_CREDENTIALS is not set 1329 1158 CONFIG_FRAME_POINTER=y 1330 1159 # CONFIG_BOOT_PRINTK_DELAY is not set 1331 1160 # CONFIG_RCU_TORTURE_TEST is not set 1161 + # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1332 1162 # CONFIG_KPROBES_SANITY_TEST is not set 1333 1163 # CONFIG_BACKTRACE_SELF_TEST is not set 1164 + # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1165 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1334 1166 # CONFIG_LKDTM is not set 1335 1167 # CONFIG_FAULT_INJECTION is not set 1168 + # CONFIG_PAGE_POISONING is not set 1169 + CONFIG_NOP_TRACER=y 1170 + CONFIG_RING_BUFFER=y 1171 + CONFIG_EVENT_TRACING=y 1172 + CONFIG_CONTEXT_SWITCH_TRACER=y 1173 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1174 + CONFIG_TRACING=y 1175 + CONFIG_TRACING_SUPPORT=y 1176 + CONFIG_FTRACE=y 1177 + # CONFIG_IRQSOFF_TRACER is not set 1178 + # CONFIG_SCHED_TRACER is not set 1179 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1180 + # CONFIG_BOOT_TRACER is not set 1181 + CONFIG_BRANCH_PROFILE_NONE=y 1182 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1183 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1184 + # CONFIG_KMEMTRACE is not set 1185 + # CONFIG_WORKQUEUE_TRACER is not set 1186 + # CONFIG_BLK_DEV_IO_TRACE is not set 1187 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1188 + # CONFIG_DYNAMIC_DEBUG is not set 1336 1189 # CONFIG_SAMPLES is not set 1337 1190 1338 1191 # ··· 1366 1167 # 1367 1168 # CONFIG_KEYS is not set 1368 1169 # CONFIG_SECURITY is not set 1170 + # CONFIG_SECURITYFS is not set 1369 1171 # CONFIG_SECURITY_FILE_CAPABILITIES is not set 1370 1172 CONFIG_CRYPTO=y 1371 1173 1372 1174 # 1373 1175 # Crypto core or helper 1374 1176 # 1375 - CONFIG_CRYPTO_ALGAPI=m 1177 + # CONFIG_CRYPTO_FIPS is not set 1178 + CONFIG_CRYPTO_ALGAPI=y 1179 + CONFIG_CRYPTO_ALGAPI2=y 1376 1180 CONFIG_CRYPTO_AEAD=m 1181 + CONFIG_CRYPTO_AEAD2=y 1377 1182 CONFIG_CRYPTO_BLKCIPHER=m 1183 + CONFIG_CRYPTO_BLKCIPHER2=y 1378 1184 CONFIG_CRYPTO_HASH=m 1185 + CONFIG_CRYPTO_HASH2=y 1186 + CONFIG_CRYPTO_RNG=m 1187 + CONFIG_CRYPTO_RNG2=y 1188 + CONFIG_CRYPTO_PCOMP=y 1379 1189 CONFIG_CRYPTO_MANAGER=m 1190 + CONFIG_CRYPTO_MANAGER2=y 1380 1191 # CONFIG_CRYPTO_GF128MUL is not set 1381 1192 # CONFIG_CRYPTO_NULL is not set 1193 + CONFIG_CRYPTO_WORKQUEUE=y 1382 1194 # CONFIG_CRYPTO_CRYPTD is not set 1383 1195 CONFIG_CRYPTO_AUTHENC=m 1384 1196 # CONFIG_CRYPTO_TEST is not set ··· 1417 1207 # 1418 1208 CONFIG_CRYPTO_HMAC=m 1419 1209 # CONFIG_CRYPTO_XCBC is not set 1210 + # CONFIG_CRYPTO_VMAC is not set 1420 1211 1421 1212 # 1422 1213 # Digest 1423 1214 # 1424 1215 # CONFIG_CRYPTO_CRC32C is not set 1216 + # CONFIG_CRYPTO_GHASH is not set 1425 1217 # CONFIG_CRYPTO_MD4 is not set 1426 1218 CONFIG_CRYPTO_MD5=m 1427 1219 # CONFIG_CRYPTO_MICHAEL_MIC is not set ··· 1440 1228 # 1441 1229 # Ciphers 1442 1230 # 1443 - # CONFIG_CRYPTO_AES is not set 1231 + CONFIG_CRYPTO_AES=m 1444 1232 # CONFIG_CRYPTO_ANUBIS is not set 1445 1233 # CONFIG_CRYPTO_ARC4 is not set 1446 1234 # CONFIG_CRYPTO_BLOWFISH is not set ··· 1459 1247 # 1460 1248 # Compression 1461 1249 # 1462 - CONFIG_CRYPTO_DEFLATE=m 1463 - # CONFIG_CRYPTO_LZO is not set 1250 + CONFIG_CRYPTO_DEFLATE=y 1251 + # CONFIG_CRYPTO_ZLIB is not set 1252 + CONFIG_CRYPTO_LZO=y 1253 + 1254 + # 1255 + # Random Number Generation 1256 + # 1257 + CONFIG_CRYPTO_ANSI_CPRNG=m 1464 1258 # CONFIG_CRYPTO_HW is not set 1259 + CONFIG_BINARY_PRINTF=y 1465 1260 1466 1261 # 1467 1262 # Library routines 1468 1263 # 1469 1264 CONFIG_BITREVERSE=y 1470 - # CONFIG_GENERIC_FIND_FIRST_BIT is not set 1471 - # CONFIG_GENERIC_FIND_NEXT_BIT is not set 1265 + CONFIG_GENERIC_FIND_LAST_BIT=y 1472 1266 CONFIG_CRC_CCITT=m 1473 - # CONFIG_CRC16 is not set 1267 + CONFIG_CRC16=y 1474 1268 CONFIG_CRC_T10DIF=m 1475 1269 CONFIG_CRC_ITU_T=m 1476 1270 CONFIG_CRC32=y ··· 1484 1266 # CONFIG_LIBCRC32C is not set 1485 1267 CONFIG_ZLIB_INFLATE=y 1486 1268 CONFIG_ZLIB_DEFLATE=y 1269 + CONFIG_LZO_COMPRESS=y 1270 + CONFIG_LZO_DECOMPRESS=y 1271 + CONFIG_DECOMPRESS_GZIP=y 1487 1272 CONFIG_GENERIC_ALLOCATOR=y 1488 - CONFIG_PLIST=y 1489 1273 CONFIG_HAS_IOMEM=y 1490 1274 CONFIG_HAS_IOPORT=y 1491 1275 CONFIG_HAS_DMA=y 1276 + CONFIG_NLATTR=y
+218 -83
arch/avr32/configs/atstk1006_defconfig
··· 1 1 # 2 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc8 4 - # Thu Dec 18 11:22:23 2008 3 + # Linux kernel version: 2.6.32-rc5 4 + # Thu Oct 29 13:00:25 2009 5 5 # 6 6 CONFIG_AVR32=y 7 7 CONFIG_GENERIC_GPIO=y ··· 21 21 CONFIG_GENERIC_CALIBRATE_DELAY=y 22 22 CONFIG_GENERIC_BUG=y 23 23 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 24 + CONFIG_CONSTRUCTORS=y 24 25 25 26 # 26 27 # General setup ··· 35 34 CONFIG_SYSVIPC=y 36 35 CONFIG_SYSVIPC_SYSCTL=y 37 36 CONFIG_POSIX_MQUEUE=y 37 + CONFIG_POSIX_MQUEUE_SYSCTL=y 38 38 # CONFIG_BSD_PROCESS_ACCT is not set 39 39 # CONFIG_TASKSTATS is not set 40 40 # CONFIG_AUDIT is not set 41 + 42 + # 43 + # RCU Subsystem 44 + # 45 + CONFIG_TREE_RCU=y 46 + # CONFIG_TREE_PREEMPT_RCU is not set 47 + # CONFIG_RCU_TRACE is not set 48 + CONFIG_RCU_FANOUT=32 49 + # CONFIG_RCU_FANOUT_EXACT is not set 50 + # CONFIG_TREE_RCU_TRACE is not set 41 51 # CONFIG_IKCONFIG is not set 42 52 CONFIG_LOG_BUF_SHIFT=14 43 - # CONFIG_CGROUPS is not set 44 53 # CONFIG_GROUP_SCHED is not set 54 + # CONFIG_CGROUPS is not set 45 55 CONFIG_SYSFS_DEPRECATED=y 46 56 CONFIG_SYSFS_DEPRECATED_V2=y 47 57 CONFIG_RELAY=y 48 58 # CONFIG_NAMESPACES is not set 49 59 CONFIG_BLK_DEV_INITRD=y 50 60 CONFIG_INITRAMFS_SOURCE="" 61 + CONFIG_RD_GZIP=y 62 + # CONFIG_RD_BZIP2 is not set 63 + # CONFIG_RD_LZMA is not set 51 64 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 52 65 CONFIG_SYSCTL=y 66 + CONFIG_ANON_INODES=y 53 67 CONFIG_EMBEDDED=y 54 68 # CONFIG_SYSCTL_SYSCALL is not set 55 69 CONFIG_KALLSYMS=y ··· 74 58 CONFIG_PRINTK=y 75 59 CONFIG_BUG=y 76 60 CONFIG_ELF_CORE=y 77 - # CONFIG_COMPAT_BRK is not set 78 61 # CONFIG_BASE_FULL is not set 79 62 CONFIG_FUTEX=y 80 - CONFIG_ANON_INODES=y 81 63 CONFIG_EPOLL=y 82 64 CONFIG_SIGNALFD=y 83 65 CONFIG_TIMERFD=y 84 66 CONFIG_EVENTFD=y 85 67 CONFIG_SHMEM=y 86 68 CONFIG_AIO=y 69 + 70 + # 71 + # Kernel Performance Events And Counters 72 + # 87 73 CONFIG_VM_EVENT_COUNTERS=y 88 74 CONFIG_SLUB_DEBUG=y 75 + # CONFIG_COMPAT_BRK is not set 89 76 # CONFIG_SLAB is not set 90 77 CONFIG_SLUB=y 91 78 # CONFIG_SLOB is not set 92 79 CONFIG_PROFILING=y 93 - # CONFIG_MARKERS is not set 80 + CONFIG_TRACEPOINTS=y 94 81 CONFIG_OPROFILE=m 95 82 CONFIG_HAVE_OPROFILE=y 96 83 CONFIG_KPROBES=y 97 84 CONFIG_HAVE_KPROBES=y 98 85 CONFIG_HAVE_CLK=y 86 + 87 + # 88 + # GCOV-based kernel profiling 89 + # 90 + # CONFIG_GCOV_KERNEL is not set 91 + # CONFIG_SLOW_WORK is not set 99 92 # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set 100 93 CONFIG_SLABINFO=y 101 94 CONFIG_RT_MUTEXES=y 102 - # CONFIG_TINY_SHMEM is not set 103 95 CONFIG_BASE_SMALL=1 104 96 CONFIG_MODULES=y 105 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 115 91 # CONFIG_MODULE_FORCE_UNLOAD is not set 116 92 # CONFIG_MODVERSIONS is not set 117 93 # CONFIG_MODULE_SRCVERSION_ALL is not set 118 - CONFIG_KMOD=y 119 94 CONFIG_BLOCK=y 120 - # CONFIG_LBD is not set 121 - # CONFIG_BLK_DEV_IO_TRACE is not set 122 - # CONFIG_LSF is not set 95 + CONFIG_LBDAF=y 123 96 # CONFIG_BLK_DEV_BSG is not set 124 97 # CONFIG_BLK_DEV_INTEGRITY is not set 125 98 ··· 132 111 CONFIG_DEFAULT_CFQ=y 133 112 # CONFIG_DEFAULT_NOOP is not set 134 113 CONFIG_DEFAULT_IOSCHED="cfq" 135 - CONFIG_CLASSIC_RCU=y 136 114 CONFIG_FREEZER=y 137 115 138 116 # ··· 148 128 CONFIG_CPU_AT32AP700X=y 149 129 CONFIG_CPU_AT32AP7000=y 150 130 CONFIG_BOARD_ATSTK1000=y 151 - # CONFIG_BOARD_ATNGW100 is not set 131 + # CONFIG_BOARD_ATNGW100_MKI is not set 132 + # CONFIG_BOARD_ATNGW100_MKII is not set 133 + # CONFIG_BOARD_HAMMERHEAD is not set 152 134 # CONFIG_BOARD_FAVR_32 is not set 135 + # CONFIG_BOARD_MERISC is not set 153 136 # CONFIG_BOARD_MIMC200 is not set 154 137 # CONFIG_BOARD_ATSTK1002 is not set 155 138 # CONFIG_BOARD_ATSTK1003 is not set ··· 179 156 # CONFIG_PREEMPT_VOLUNTARY is not set 180 157 # CONFIG_PREEMPT is not set 181 158 CONFIG_QUICKLIST=y 182 - # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set 159 + # CONFIG_HAVE_ARCH_BOOTMEM is not set 183 160 # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set 184 161 # CONFIG_NEED_NODE_MEMMAP_SIZE is not set 185 162 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 193 170 CONFIG_FLAT_NODE_MEM_MAP=y 194 171 CONFIG_PAGEFLAGS_EXTENDED=y 195 172 CONFIG_SPLIT_PTLOCK_CPUS=4 196 - # CONFIG_RESOURCES_64BIT is not set 197 173 # CONFIG_PHYS_ADDR_T_64BIT is not set 198 174 CONFIG_ZONE_DMA_FLAG=0 199 175 CONFIG_NR_QUICK=2 200 176 CONFIG_VIRT_TO_BUS=y 201 - CONFIG_UNEVICTABLE_LRU=y 177 + CONFIG_HAVE_MLOCK=y 178 + CONFIG_HAVE_MLOCKED_PAGE_BIT=y 179 + # CONFIG_KSM is not set 180 + CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 202 181 # CONFIG_OWNERSHIP_TRACE is not set 203 182 CONFIG_NMI_DEBUGGING=y 204 183 # CONFIG_HZ_100 is not set ··· 219 194 CONFIG_PM_SLEEP=y 220 195 CONFIG_SUSPEND=y 221 196 CONFIG_SUSPEND_FREEZER=y 197 + # CONFIG_PM_RUNTIME is not set 222 198 CONFIG_ARCH_SUSPEND_POSSIBLE=y 223 199 224 200 # ··· 320 294 # CONFIG_NETFILTER is not set 321 295 # CONFIG_IP_DCCP is not set 322 296 # CONFIG_IP_SCTP is not set 297 + # CONFIG_RDS is not set 323 298 # CONFIG_TIPC is not set 324 299 # CONFIG_ATM is not set 325 300 CONFIG_STP=m ··· 336 309 # CONFIG_LAPB is not set 337 310 # CONFIG_ECONET is not set 338 311 # CONFIG_WAN_ROUTER is not set 312 + # CONFIG_PHONET is not set 313 + # CONFIG_IEEE802154 is not set 339 314 # CONFIG_NET_SCHED is not set 315 + # CONFIG_DCB is not set 340 316 341 317 # 342 318 # Network testing 343 319 # 344 320 # CONFIG_NET_PKTGEN is not set 345 321 # CONFIG_NET_TCPPROBE is not set 322 + # CONFIG_NET_DROP_MONITOR is not set 346 323 # CONFIG_HAMRADIO is not set 347 324 # CONFIG_CAN is not set 348 325 # CONFIG_IRDA is not set 349 326 # CONFIG_BT is not set 350 327 # CONFIG_AF_RXRPC is not set 351 - # CONFIG_PHONET is not set 352 328 # CONFIG_WIRELESS is not set 329 + # CONFIG_WIMAX is not set 353 330 # CONFIG_RFKILL is not set 354 331 # CONFIG_NET_9P is not set 355 332 ··· 365 334 # Generic Driver Options 366 335 # 367 336 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" 337 + # CONFIG_DEVTMPFS is not set 368 338 CONFIG_STANDALONE=y 369 339 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 370 340 # CONFIG_FW_LOADER is not set ··· 375 343 # CONFIG_CONNECTOR is not set 376 344 CONFIG_MTD=y 377 345 # CONFIG_MTD_DEBUG is not set 346 + # CONFIG_MTD_TESTS is not set 378 347 # CONFIG_MTD_CONCAT is not set 379 348 CONFIG_MTD_PARTITIONS=y 380 349 # CONFIG_MTD_REDBOOT_PARTS is not set ··· 426 393 # 427 394 # CONFIG_MTD_COMPLEX_MAPPINGS is not set 428 395 CONFIG_MTD_PHYSMAP=y 429 - CONFIG_MTD_PHYSMAP_START=0x8000000 430 - CONFIG_MTD_PHYSMAP_LEN=0x0 431 - CONFIG_MTD_PHYSMAP_BANKWIDTH=2 396 + # CONFIG_MTD_PHYSMAP_COMPAT is not set 432 397 # CONFIG_MTD_PLATRAM is not set 433 398 434 399 # ··· 437 406 CONFIG_MTD_DATAFLASH_OTP=y 438 407 CONFIG_MTD_M25P80=m 439 408 CONFIG_M25PXX_USE_FAST_READ=y 409 + # CONFIG_MTD_SST25L is not set 440 410 # CONFIG_MTD_SLRAM is not set 441 411 # CONFIG_MTD_PHRAM is not set 442 412 # CONFIG_MTD_MTDRAM is not set ··· 462 430 # CONFIG_MTD_NAND_NANDSIM is not set 463 431 # CONFIG_MTD_NAND_PLATFORM is not set 464 432 # CONFIG_MTD_ONENAND is not set 433 + 434 + # 435 + # LPDDR flash memory drivers 436 + # 437 + # CONFIG_MTD_LPDDR is not set 465 438 466 439 # 467 440 # UBI - Unsorted block images ··· 497 460 CONFIG_ATMEL_TCLIB=y 498 461 CONFIG_ATMEL_TCB_CLKSRC=y 499 462 CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0 500 - # CONFIG_EEPROM_93CX6 is not set 501 463 # CONFIG_ICS932S401 is not set 502 464 CONFIG_ATMEL_SSC=m 503 465 # CONFIG_ENCLOSURE_SERVICES is not set 466 + # CONFIG_ISL29003 is not set 504 467 # CONFIG_C2PORT is not set 468 + 469 + # 470 + # EEPROM support 471 + # 472 + # CONFIG_EEPROM_AT24 is not set 473 + # CONFIG_EEPROM_AT25 is not set 474 + # CONFIG_EEPROM_LEGACY is not set 475 + # CONFIG_EEPROM_MAX6875 is not set 476 + # CONFIG_EEPROM_93CX6 is not set 505 477 506 478 # 507 479 # SCSI device support ··· 532 486 # CONFIG_BLK_DEV_SR_VENDOR is not set 533 487 # CONFIG_CHR_DEV_SG is not set 534 488 # CONFIG_CHR_DEV_SCH is not set 535 - 536 - # 537 - # Some SCSI devices (e.g. CD jukebox) support multiple LUNs 538 - # 539 489 # CONFIG_SCSI_MULTI_LUN is not set 540 490 # CONFIG_SCSI_CONSTANTS is not set 541 491 # CONFIG_SCSI_LOGGING is not set ··· 548 506 # CONFIG_SCSI_SRP_ATTRS is not set 549 507 # CONFIG_SCSI_LOWLEVEL is not set 550 508 # CONFIG_SCSI_DH is not set 509 + # CONFIG_SCSI_OSD_INITIATOR is not set 551 510 CONFIG_ATA=m 552 511 # CONFIG_ATA_NONSTANDARD is not set 512 + CONFIG_ATA_VERBOSE_ERROR=y 553 513 # CONFIG_SATA_PMP is not set 554 514 CONFIG_ATA_SFF=y 555 515 # CONFIG_SATA_MV is not set ··· 580 536 # CONFIG_BROADCOM_PHY is not set 581 537 # CONFIG_ICPLUS_PHY is not set 582 538 # CONFIG_REALTEK_PHY is not set 539 + # CONFIG_NATIONAL_PHY is not set 540 + # CONFIG_STE10XP is not set 541 + # CONFIG_LSI_ET1011C_PHY is not set 583 542 # CONFIG_FIXED_PHY is not set 584 543 # CONFIG_MDIO_BITBANG is not set 585 544 CONFIG_NET_ETHERNET=y 586 545 # CONFIG_MII is not set 587 546 CONFIG_MACB=y 588 547 # CONFIG_ENC28J60 is not set 548 + # CONFIG_ETHOC is not set 549 + # CONFIG_DNET is not set 589 550 # CONFIG_IBM_NEW_EMAC_ZMII is not set 590 551 # CONFIG_IBM_NEW_EMAC_RGMII is not set 591 552 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 599 550 # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set 600 551 # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set 601 552 # CONFIG_B44 is not set 553 + # CONFIG_KS8842 is not set 554 + # CONFIG_KS8851 is not set 555 + # CONFIG_KS8851_MLL is not set 602 556 # CONFIG_NETDEV_1000 is not set 603 557 # CONFIG_NETDEV_10000 is not set 604 - 605 - # 606 - # Wireless LAN 607 - # 558 + CONFIG_WLAN=y 608 559 # CONFIG_WLAN_PRE80211 is not set 609 560 # CONFIG_WLAN_80211 is not set 610 - # CONFIG_IWLWIFI_LEDS is not set 561 + 562 + # 563 + # Enable WiMAX (Networking options) to see the WiMAX drivers 564 + # 611 565 # CONFIG_WAN is not set 612 566 CONFIG_PPP=m 613 567 # CONFIG_PPP_MULTILINK is not set ··· 652 600 # Input Device Drivers 653 601 # 654 602 CONFIG_INPUT_KEYBOARD=y 603 + # CONFIG_KEYBOARD_ADP5588 is not set 655 604 # CONFIG_KEYBOARD_ATKBD is not set 656 - # CONFIG_KEYBOARD_SUNKBD is not set 605 + # CONFIG_QT2160 is not set 657 606 # CONFIG_KEYBOARD_LKKBD is not set 658 - # CONFIG_KEYBOARD_XTKBD is not set 659 - # CONFIG_KEYBOARD_NEWTON is not set 660 - # CONFIG_KEYBOARD_STOWAWAY is not set 661 607 CONFIG_KEYBOARD_GPIO=m 608 + # CONFIG_KEYBOARD_MATRIX is not set 609 + # CONFIG_KEYBOARD_LM8323 is not set 610 + # CONFIG_KEYBOARD_MAX7359 is not set 611 + # CONFIG_KEYBOARD_NEWTON is not set 612 + # CONFIG_KEYBOARD_OPENCORES is not set 613 + # CONFIG_KEYBOARD_STOWAWAY is not set 614 + # CONFIG_KEYBOARD_SUNKBD is not set 615 + # CONFIG_KEYBOARD_XTKBD is not set 662 616 CONFIG_INPUT_MOUSE=y 663 617 # CONFIG_MOUSE_PS2 is not set 664 618 # CONFIG_MOUSE_SERIAL is not set 665 619 # CONFIG_MOUSE_VSXXXAA is not set 666 620 CONFIG_MOUSE_GPIO=m 621 + # CONFIG_MOUSE_SYNAPTICS_I2C is not set 667 622 # CONFIG_INPUT_JOYSTICK is not set 668 623 # CONFIG_INPUT_TABLET is not set 669 624 # CONFIG_INPUT_TOUCHSCREEN is not set ··· 701 642 CONFIG_SERIAL_ATMEL_CONSOLE=y 702 643 CONFIG_SERIAL_ATMEL_PDC=y 703 644 # CONFIG_SERIAL_ATMEL_TTYAT is not set 645 + # CONFIG_SERIAL_MAX3100 is not set 704 646 CONFIG_SERIAL_CORE=y 705 647 CONFIG_SERIAL_CORE_CONSOLE=y 706 648 CONFIG_UNIX98_PTYS=y 649 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 707 650 # CONFIG_LEGACY_PTYS is not set 708 651 # CONFIG_IPMI_HANDLER is not set 709 652 # CONFIG_HW_RANDOM is not set ··· 714 653 # CONFIG_TCG_TPM is not set 715 654 CONFIG_I2C=m 716 655 CONFIG_I2C_BOARDINFO=y 656 + CONFIG_I2C_COMPAT=y 717 657 CONFIG_I2C_CHARDEV=m 718 658 CONFIG_I2C_HELPER_AUTO=y 719 659 CONFIG_I2C_ALGOBIT=m ··· 726 664 # 727 665 # I2C system bus drivers (mostly embedded / system-on-chip) 728 666 # 667 + # CONFIG_I2C_DESIGNWARE is not set 729 668 CONFIG_I2C_GPIO=m 730 669 # CONFIG_I2C_OCORES is not set 731 670 # CONFIG_I2C_SIMTEC is not set ··· 747 684 # Miscellaneous I2C Chip support 748 685 # 749 686 # CONFIG_DS1682 is not set 750 - # CONFIG_EEPROM_AT24 is not set 751 - # CONFIG_EEPROM_LEGACY is not set 752 - # CONFIG_SENSORS_PCF8574 is not set 753 - # CONFIG_PCF8575 is not set 754 - # CONFIG_SENSORS_PCA9539 is not set 755 - # CONFIG_SENSORS_PCF8591 is not set 756 - # CONFIG_TPS65010 is not set 757 - # CONFIG_SENSORS_MAX6875 is not set 758 687 # CONFIG_SENSORS_TSL2550 is not set 759 688 # CONFIG_I2C_DEBUG_CORE is not set 760 689 # CONFIG_I2C_DEBUG_ALGO is not set ··· 761 706 # 762 707 CONFIG_SPI_ATMEL=y 763 708 # CONFIG_SPI_BITBANG is not set 709 + # CONFIG_SPI_GPIO is not set 764 710 765 711 # 766 712 # SPI Protocol Masters 767 713 # 768 - # CONFIG_EEPROM_AT25 is not set 769 714 CONFIG_SPI_SPIDEV=m 770 715 # CONFIG_SPI_TLE62X0 is not set 716 + 717 + # 718 + # PPS support 719 + # 720 + # CONFIG_PPS is not set 771 721 CONFIG_ARCH_REQUIRE_GPIOLIB=y 772 722 CONFIG_GPIOLIB=y 773 723 # CONFIG_DEBUG_GPIO is not set ··· 798 738 # 799 739 # CONFIG_GPIO_MAX7301 is not set 800 740 # CONFIG_GPIO_MCP23S08 is not set 741 + # CONFIG_GPIO_MC33880 is not set 742 + 743 + # 744 + # AC97 GPIO expanders: 745 + # 801 746 # CONFIG_W1 is not set 802 747 # CONFIG_POWER_SUPPLY is not set 803 748 # CONFIG_HWMON is not set 804 749 # CONFIG_THERMAL is not set 805 - # CONFIG_THERMAL_HWMON is not set 806 750 CONFIG_WATCHDOG=y 807 751 # CONFIG_WATCHDOG_NOWAYOUT is not set 808 752 ··· 828 764 # CONFIG_MFD_CORE is not set 829 765 # CONFIG_MFD_SM501 is not set 830 766 # CONFIG_HTC_PASIC3 is not set 767 + # CONFIG_TPS65010 is not set 831 768 # CONFIG_MFD_TMIO is not set 832 769 # CONFIG_MFD_WM8400 is not set 770 + # CONFIG_MFD_WM831X is not set 833 771 # CONFIG_MFD_WM8350_I2C is not set 772 + # CONFIG_MFD_PCF50633 is not set 773 + # CONFIG_MFD_MC13783 is not set 774 + # CONFIG_AB3100_CORE is not set 775 + # CONFIG_EZX_PCAP is not set 834 776 # CONFIG_REGULATOR is not set 835 - 836 - # 837 - # Multimedia devices 838 - # 839 - 840 - # 841 - # Multimedia core support 842 - # 843 - # CONFIG_VIDEO_DEV is not set 844 - # CONFIG_DVB_CORE is not set 845 - # CONFIG_VIDEO_MEDIA is not set 846 - 847 - # 848 - # Multimedia drivers 849 - # 850 - # CONFIG_DAB is not set 777 + # CONFIG_MEDIA_SUPPORT is not set 851 778 852 779 # 853 780 # Graphics support ··· 872 817 # CONFIG_FB_VIRTUAL is not set 873 818 # CONFIG_FB_METRONOME is not set 874 819 # CONFIG_FB_MB862XX is not set 820 + # CONFIG_FB_BROADSHEET is not set 875 821 CONFIG_BACKLIGHT_LCD_SUPPORT=y 876 822 CONFIG_LCD_CLASS_DEVICE=y 823 + # CONFIG_LCD_LMS283GF05 is not set 877 824 CONFIG_LCD_LTV350QV=y 878 825 # CONFIG_LCD_ILI9320 is not set 879 826 # CONFIG_LCD_TDO24M is not set ··· 890 833 # CONFIG_LOGO is not set 891 834 CONFIG_SOUND=m 892 835 CONFIG_SOUND_OSS_CORE=y 836 + CONFIG_SOUND_OSS_CORE_PRECLAIM=y 893 837 CONFIG_SND=m 894 838 CONFIG_SND_TIMER=m 895 839 CONFIG_SND_PCM=m ··· 899 841 CONFIG_SND_MIXER_OSS=m 900 842 CONFIG_SND_PCM_OSS=m 901 843 CONFIG_SND_PCM_OSS_PLUGINS=y 844 + # CONFIG_SND_HRTIMER is not set 902 845 # CONFIG_SND_DYNAMIC_MINORS is not set 903 846 # CONFIG_SND_SUPPORT_OLD_API is not set 904 847 # CONFIG_SND_VERBOSE_PROCFS is not set 905 848 # CONFIG_SND_VERBOSE_PRINTK is not set 906 849 # CONFIG_SND_DEBUG is not set 850 + # CONFIG_SND_RAWMIDI_SEQ is not set 851 + # CONFIG_SND_OPL3_LIB_SEQ is not set 852 + # CONFIG_SND_OPL4_LIB_SEQ is not set 853 + # CONFIG_SND_SBAWE_SEQ is not set 854 + # CONFIG_SND_EMU10K1_SEQ is not set 907 855 CONFIG_SND_DRIVERS=y 908 856 # CONFIG_SND_DUMMY is not set 909 857 # CONFIG_SND_MTPAV is not set 910 858 # CONFIG_SND_SERIAL_U16550 is not set 911 859 # CONFIG_SND_MPU401 is not set 860 + 861 + # 862 + # Atmel devices (AVR32 and AT91) 863 + # 864 + # CONFIG_SND_ATMEL_ABDAC is not set 865 + # CONFIG_SND_ATMEL_AC97C is not set 912 866 CONFIG_SND_SPI=y 913 867 CONFIG_SND_AT73C213=m 914 868 CONFIG_SND_AT73C213_TARGET_BITRATE=48000 ··· 933 863 # CONFIG_USB_ARCH_HAS_EHCI is not set 934 864 # CONFIG_USB_OTG_WHITELIST is not set 935 865 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 936 - # CONFIG_USB_MUSB_HDRC is not set 937 866 # CONFIG_USB_GADGET_MUSB_HDRC is not set 938 867 939 868 # 940 - # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 869 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may 941 870 # 942 871 CONFIG_USB_GADGET=y 943 872 # CONFIG_USB_GADGET_DEBUG is not set ··· 951 882 # CONFIG_USB_GADGET_LH7A40X is not set 952 883 # CONFIG_USB_GADGET_OMAP is not set 953 884 # CONFIG_USB_GADGET_PXA25X is not set 885 + # CONFIG_USB_GADGET_R8A66597 is not set 954 886 # CONFIG_USB_GADGET_PXA27X is not set 887 + # CONFIG_USB_GADGET_S3C_HSOTG is not set 888 + # CONFIG_USB_GADGET_IMX is not set 955 889 # CONFIG_USB_GADGET_S3C2410 is not set 956 890 # CONFIG_USB_GADGET_M66592 is not set 957 891 # CONFIG_USB_GADGET_AMD5536UDC is not set 958 892 # CONFIG_USB_GADGET_FSL_QE is not set 893 + # CONFIG_USB_GADGET_CI13XXX is not set 959 894 # CONFIG_USB_GADGET_NET2280 is not set 960 895 # CONFIG_USB_GADGET_GOKU is not set 896 + # CONFIG_USB_GADGET_LANGWELL is not set 961 897 # CONFIG_USB_GADGET_DUMMY_HCD is not set 962 898 CONFIG_USB_GADGET_DUALSPEED=y 963 899 CONFIG_USB_ZERO=m 900 + # CONFIG_USB_AUDIO is not set 964 901 CONFIG_USB_ETH=m 965 902 CONFIG_USB_ETH_RNDIS=y 903 + # CONFIG_USB_ETH_EEM is not set 966 904 CONFIG_USB_GADGETFS=m 967 905 CONFIG_USB_FILE_STORAGE=m 968 906 # CONFIG_USB_FILE_STORAGE_TEST is not set ··· 977 901 # CONFIG_USB_MIDI_GADGET is not set 978 902 # CONFIG_USB_G_PRINTER is not set 979 903 # CONFIG_USB_CDC_COMPOSITE is not set 904 + 905 + # 906 + # OTG and related infrastructure 907 + # 908 + # CONFIG_USB_GPIO_VBUS is not set 909 + # CONFIG_NOP_USB_XCEIV is not set 980 910 CONFIG_MMC=y 981 911 # CONFIG_MMC_DEBUG is not set 982 912 # CONFIG_MMC_UNSAFE_RESUME is not set ··· 999 917 # MMC/SD/SDIO Host Controller Drivers 1000 918 # 1001 919 # CONFIG_MMC_SDHCI is not set 920 + # CONFIG_MMC_AT91 is not set 1002 921 CONFIG_MMC_ATMELMCI=y 1003 922 # CONFIG_MMC_ATMELMCI_DMA is not set 1004 923 CONFIG_MMC_SPI=m ··· 1013 930 CONFIG_LEDS_ATMEL_PWM=m 1014 931 # CONFIG_LEDS_PCA9532 is not set 1015 932 CONFIG_LEDS_GPIO=m 933 + CONFIG_LEDS_GPIO_PLATFORM=y 934 + # CONFIG_LEDS_LP3944 is not set 1016 935 # CONFIG_LEDS_PCA955X is not set 936 + # CONFIG_LEDS_DAC124S085 is not set 937 + # CONFIG_LEDS_BD2802 is not set 1017 938 1018 939 # 1019 940 # LED Triggers ··· 1026 939 CONFIG_LEDS_TRIGGER_TIMER=m 1027 940 CONFIG_LEDS_TRIGGER_HEARTBEAT=m 1028 941 # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 942 + # CONFIG_LEDS_TRIGGER_GPIO is not set 1029 943 CONFIG_LEDS_TRIGGER_DEFAULT_ON=m 944 + 945 + # 946 + # iptables trigger is under Netfilter config (LED target) 947 + # 1030 948 # CONFIG_ACCESSIBILITY is not set 1031 949 CONFIG_RTC_LIB=y 1032 950 CONFIG_RTC_CLASS=y ··· 1064 972 # CONFIG_RTC_DRV_S35390A is not set 1065 973 # CONFIG_RTC_DRV_FM3130 is not set 1066 974 # CONFIG_RTC_DRV_RX8581 is not set 975 + # CONFIG_RTC_DRV_RX8025 is not set 1067 976 1068 977 # 1069 978 # SPI RTC drivers ··· 1076 983 # CONFIG_RTC_DRV_R9701 is not set 1077 984 # CONFIG_RTC_DRV_RS5C348 is not set 1078 985 # CONFIG_RTC_DRV_DS3234 is not set 986 + # CONFIG_RTC_DRV_PCF2123 is not set 1079 987 1080 988 # 1081 989 # Platform RTC drivers ··· 1108 1014 # DMA Clients 1109 1015 # 1110 1016 # CONFIG_NET_DMA is not set 1017 + # CONFIG_ASYNC_TX_DMA is not set 1111 1018 # CONFIG_DMATEST is not set 1019 + # CONFIG_AUXDISPLAY is not set 1112 1020 # CONFIG_UIO is not set 1021 + 1022 + # 1023 + # TI VLYNQ 1024 + # 1113 1025 # CONFIG_STAGING is not set 1114 - CONFIG_STAGING_EXCLUDE_BUILD=y 1115 1026 1116 1027 # 1117 1028 # File systems 1118 1029 # 1119 - CONFIG_EXT2_FS=m 1030 + CONFIG_EXT2_FS=y 1120 1031 # CONFIG_EXT2_FS_XATTR is not set 1121 1032 # CONFIG_EXT2_FS_XIP is not set 1122 - CONFIG_EXT3_FS=m 1033 + CONFIG_EXT3_FS=y 1034 + # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set 1123 1035 # CONFIG_EXT3_FS_XATTR is not set 1124 - CONFIG_EXT4_FS=m 1125 - CONFIG_EXT4DEV_COMPAT=y 1036 + CONFIG_EXT4_FS=y 1126 1037 # CONFIG_EXT4_FS_XATTR is not set 1127 - CONFIG_JBD=m 1038 + # CONFIG_EXT4_DEBUG is not set 1039 + CONFIG_JBD=y 1128 1040 # CONFIG_JBD_DEBUG is not set 1129 - CONFIG_JBD2=m 1041 + CONFIG_JBD2=y 1130 1042 # CONFIG_JBD2_DEBUG is not set 1131 1043 # CONFIG_REISERFS_FS is not set 1132 1044 # CONFIG_JFS_FS is not set 1133 1045 # CONFIG_FS_POSIX_ACL is not set 1134 - CONFIG_FILE_LOCKING=y 1135 1046 # CONFIG_XFS_FS is not set 1047 + # CONFIG_GFS2_FS is not set 1136 1048 # CONFIG_OCFS2_FS is not set 1049 + # CONFIG_BTRFS_FS is not set 1050 + # CONFIG_NILFS2_FS is not set 1051 + CONFIG_FILE_LOCKING=y 1052 + CONFIG_FSNOTIFY=y 1137 1053 # CONFIG_DNOTIFY is not set 1138 1054 CONFIG_INOTIFY=y 1139 1055 CONFIG_INOTIFY_USER=y ··· 1151 1047 # CONFIG_AUTOFS_FS is not set 1152 1048 # CONFIG_AUTOFS4_FS is not set 1153 1049 CONFIG_FUSE_FS=m 1050 + # CONFIG_CUSE is not set 1051 + 1052 + # 1053 + # Caches 1054 + # 1055 + # CONFIG_FSCACHE is not set 1154 1056 1155 1057 # 1156 1058 # CD-ROM/DVD Filesystems ··· 1186 1076 # CONFIG_TMPFS_POSIX_ACL is not set 1187 1077 # CONFIG_HUGETLB_PAGE is not set 1188 1078 # CONFIG_CONFIGFS_FS is not set 1189 - 1190 - # 1191 - # Miscellaneous filesystems 1192 - # 1079 + CONFIG_MISC_FILESYSTEMS=y 1193 1080 # CONFIG_ADFS_FS is not set 1194 1081 # CONFIG_AFFS_FS is not set 1195 1082 # CONFIG_HFS_FS is not set ··· 1206 1099 CONFIG_JFFS2_RTIME=y 1207 1100 # CONFIG_JFFS2_RUBIN is not set 1208 1101 CONFIG_UBIFS_FS=y 1209 - CONFIG_UBIFS_FS_XATTR=y 1102 + # CONFIG_UBIFS_FS_XATTR is not set 1210 1103 # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set 1211 1104 CONFIG_UBIFS_FS_LZO=y 1212 1105 CONFIG_UBIFS_FS_ZLIB=y 1213 1106 # CONFIG_UBIFS_FS_DEBUG is not set 1214 1107 # CONFIG_CRAMFS is not set 1108 + # CONFIG_SQUASHFS is not set 1215 1109 # CONFIG_VXFS_FS is not set 1216 1110 CONFIG_MINIX_FS=m 1217 1111 # CONFIG_OMFS_FS is not set ··· 1232 1124 CONFIG_LOCKD_V4=y 1233 1125 CONFIG_NFS_COMMON=y 1234 1126 CONFIG_SUNRPC=y 1235 - # CONFIG_SUNRPC_REGISTER_V4 is not set 1236 1127 # CONFIG_RPCSEC_GSS_KRB5 is not set 1237 1128 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1238 1129 # CONFIG_SMB_FS is not set ··· 1295 1188 CONFIG_ENABLE_MUST_CHECK=y 1296 1189 CONFIG_FRAME_WARN=1024 1297 1190 CONFIG_MAGIC_SYSRQ=y 1191 + # CONFIG_STRIP_ASM_SYMS is not set 1298 1192 # CONFIG_UNUSED_SYMBOLS is not set 1299 1193 CONFIG_DEBUG_FS=y 1300 1194 # CONFIG_HEADERS_CHECK is not set ··· 1304 1196 CONFIG_DETECT_SOFTLOCKUP=y 1305 1197 # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set 1306 1198 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 1199 + CONFIG_DETECT_HUNG_TASK=y 1200 + # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set 1201 + CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 1307 1202 CONFIG_SCHED_DEBUG=y 1308 1203 # CONFIG_SCHEDSTATS is not set 1309 1204 # CONFIG_TIMER_STATS is not set ··· 1322 1211 # CONFIG_LOCK_STAT is not set 1323 1212 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1324 1213 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1214 + CONFIG_STACKTRACE=y 1325 1215 # CONFIG_DEBUG_KOBJECT is not set 1326 1216 CONFIG_DEBUG_BUGVERBOSE=y 1327 1217 # CONFIG_DEBUG_INFO is not set ··· 1331 1219 # CONFIG_DEBUG_MEMORY_INIT is not set 1332 1220 # CONFIG_DEBUG_LIST is not set 1333 1221 # CONFIG_DEBUG_SG is not set 1222 + # CONFIG_DEBUG_NOTIFIERS is not set 1223 + # CONFIG_DEBUG_CREDENTIALS is not set 1334 1224 CONFIG_FRAME_POINTER=y 1335 1225 # CONFIG_BOOT_PRINTK_DELAY is not set 1336 1226 # CONFIG_RCU_TORTURE_TEST is not set ··· 1340 1226 # CONFIG_KPROBES_SANITY_TEST is not set 1341 1227 # CONFIG_BACKTRACE_SELF_TEST is not set 1342 1228 # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1229 + # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set 1343 1230 # CONFIG_LKDTM is not set 1344 1231 # CONFIG_FAULT_INJECTION is not set 1345 - 1346 - # 1347 - # Tracers 1348 - # 1232 + # CONFIG_PAGE_POISONING is not set 1233 + CONFIG_NOP_TRACER=y 1234 + CONFIG_RING_BUFFER=y 1235 + CONFIG_EVENT_TRACING=y 1236 + CONFIG_CONTEXT_SWITCH_TRACER=y 1237 + CONFIG_RING_BUFFER_ALLOW_SWAP=y 1238 + CONFIG_TRACING=y 1239 + CONFIG_TRACING_SUPPORT=y 1240 + CONFIG_FTRACE=y 1349 1241 # CONFIG_IRQSOFF_TRACER is not set 1350 1242 # CONFIG_SCHED_TRACER is not set 1351 - # CONFIG_CONTEXT_SWITCH_TRACER is not set 1243 + # CONFIG_ENABLE_DEFAULT_TRACERS is not set 1352 1244 # CONFIG_BOOT_TRACER is not set 1353 - # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1245 + CONFIG_BRANCH_PROFILE_NONE=y 1246 + # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set 1247 + # CONFIG_PROFILE_ALL_BRANCHES is not set 1248 + # CONFIG_KMEMTRACE is not set 1249 + # CONFIG_WORKQUEUE_TRACER is not set 1250 + # CONFIG_BLK_DEV_IO_TRACE is not set 1251 + # CONFIG_RING_BUFFER_BENCHMARK is not set 1252 + # CONFIG_DYNAMIC_DEBUG is not set 1354 1253 # CONFIG_SAMPLES is not set 1355 1254 1356 1255 # ··· 1389 1262 CONFIG_CRYPTO_HASH2=y 1390 1263 CONFIG_CRYPTO_RNG=m 1391 1264 CONFIG_CRYPTO_RNG2=y 1265 + CONFIG_CRYPTO_PCOMP=y 1392 1266 CONFIG_CRYPTO_MANAGER=m 1393 1267 CONFIG_CRYPTO_MANAGER2=y 1394 1268 # CONFIG_CRYPTO_GF128MUL is not set 1395 1269 # CONFIG_CRYPTO_NULL is not set 1270 + CONFIG_CRYPTO_WORKQUEUE=y 1396 1271 # CONFIG_CRYPTO_CRYPTD is not set 1397 1272 CONFIG_CRYPTO_AUTHENC=m 1398 1273 # CONFIG_CRYPTO_TEST is not set ··· 1422 1293 # 1423 1294 CONFIG_CRYPTO_HMAC=m 1424 1295 # CONFIG_CRYPTO_XCBC is not set 1296 + # CONFIG_CRYPTO_VMAC is not set 1425 1297 1426 1298 # 1427 1299 # Digest 1428 1300 # 1429 1301 # CONFIG_CRYPTO_CRC32C is not set 1302 + # CONFIG_CRYPTO_GHASH is not set 1430 1303 # CONFIG_CRYPTO_MD4 is not set 1431 1304 CONFIG_CRYPTO_MD5=m 1432 1305 # CONFIG_CRYPTO_MICHAEL_MIC is not set ··· 1465 1334 # Compression 1466 1335 # 1467 1336 CONFIG_CRYPTO_DEFLATE=y 1337 + # CONFIG_CRYPTO_ZLIB is not set 1468 1338 CONFIG_CRYPTO_LZO=y 1469 1339 1470 1340 # ··· 1473 1341 # 1474 1342 CONFIG_CRYPTO_ANSI_CPRNG=m 1475 1343 # CONFIG_CRYPTO_HW is not set 1344 + CONFIG_BINARY_PRINTF=y 1476 1345 1477 1346 # 1478 1347 # Library routines 1479 1348 # 1480 1349 CONFIG_BITREVERSE=y 1350 + CONFIG_GENERIC_FIND_LAST_BIT=y 1481 1351 CONFIG_CRC_CCITT=m 1482 1352 CONFIG_CRC16=y 1483 1353 CONFIG_CRC_T10DIF=m ··· 1491 1357 CONFIG_ZLIB_DEFLATE=y 1492 1358 CONFIG_LZO_COMPRESS=y 1493 1359 CONFIG_LZO_DECOMPRESS=y 1360 + CONFIG_DECOMPRESS_GZIP=y 1494 1361 CONFIG_GENERIC_ALLOCATOR=y 1495 - CONFIG_PLIST=y 1496 1362 CONFIG_HAS_IOMEM=y 1497 1363 CONFIG_HAS_IOPORT=y 1498 1364 CONFIG_HAS_DMA=y 1365 + CONFIG_NLATTR=y
+1 -18
arch/avr32/include/asm/hardirq.h
··· 1 1 #ifndef __ASM_AVR32_HARDIRQ_H 2 2 #define __ASM_AVR32_HARDIRQ_H 3 - 4 - #include <linux/threads.h> 5 - #include <asm/irq.h> 6 - 7 3 #ifndef __ASSEMBLY__ 8 - 9 - #include <linux/cache.h> 10 - 11 - /* entry.S is sensitive to the offsets of these fields */ 12 - typedef struct { 13 - unsigned int __softirq_pending; 14 - } ____cacheline_aligned irq_cpustat_t; 15 - 16 - void ack_bad_irq(unsigned int irq); 17 - 18 - /* Standard mappings for irq_cpustat_t above */ 19 - #include <linux/irq_cpustat.h> 20 - 4 + #include <asm-generic/hardirq.h> 21 5 #endif /* __ASSEMBLY__ */ 22 - 23 6 #endif /* __ASM_AVR32_HARDIRQ_H */
-9
arch/avr32/kernel/irq.c
··· 16 16 #include <linux/seq_file.h> 17 17 #include <linux/sysdev.h> 18 18 19 - /* 20 - * 'what should we do if we get a hw irq event on an illegal vector'. 21 - * each architecture has to answer this themselves. 22 - */ 23 - void ack_bad_irq(unsigned int irq) 24 - { 25 - printk("unexpected IRQ %u\n", irq); 26 - } 27 - 28 19 /* May be overridden by platform code */ 29 20 int __weak nmi_enable(void) 30 21 {
+9 -55
arch/avr32/kernel/vmlinux.lds.S
··· 39 39 __tagtable_begin = .; 40 40 *(.taglist.init) 41 41 __tagtable_end = .; 42 - INIT_DATA 43 - . = ALIGN(16); 44 - __setup_start = .; 45 - *(.init.setup) 46 - __setup_end = .; 47 - . = ALIGN(4); 48 - __initcall_start = .; 49 - INITCALLS 50 - __initcall_end = .; 51 - __con_initcall_start = .; 52 - *(.con_initcall.init) 53 - __con_initcall_end = .; 54 - __security_initcall_start = .; 55 - *(.security_initcall.init) 56 - __security_initcall_end = .; 57 - #ifdef CONFIG_BLK_DEV_INITRD 58 - . = ALIGN(32); 59 - __initramfs_start = .; 60 - *(.init.ramfs) 61 - __initramfs_end = .; 62 - #endif 63 - . = ALIGN(PAGE_SIZE); 64 - __init_end = .; 65 42 } 43 + INIT_DATA_SECTION(16) 44 + . = ALIGN(PAGE_SIZE); 45 + __init_end = .; 66 46 67 47 .text : AT(ADDR(.text) - LOAD_OFFSET) { 68 48 _evba = .; ··· 58 78 _etext = .; 59 79 } = 0xd703d703 60 80 61 - . = ALIGN(4); 62 - __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { 63 - __start___ex_table = .; 64 - *(__ex_table) 65 - __stop___ex_table = .; 66 - } 67 - 81 + EXCEPTION_TABLE(4) 68 82 RODATA 69 - 70 - . = ALIGN(THREAD_SIZE); 71 83 72 84 .data : AT(ADDR(.data) - LOAD_OFFSET) { 73 85 _data = .; 74 86 _sdata = .; 75 - /* 76 - * First, the init task union, aligned to an 8K boundary. 77 - */ 78 - *(.data.init_task) 79 87 80 - /* Then, the page-aligned data */ 81 - . = ALIGN(PAGE_SIZE); 82 - *(.data.page_aligned) 83 - 84 - /* Then, the cacheline aligned data */ 85 - . = ALIGN(L1_CACHE_BYTES); 86 - *(.data.cacheline_aligned) 87 - 88 - /* And the rest... */ 88 + INIT_TASK_DATA(THREAD_SIZE) 89 + PAGE_ALIGNED_DATA(PAGE_SIZE); 90 + CACHELINE_ALIGNED_DATA(L1_CACHE_BYTES) 89 91 *(.data.rel*) 90 92 DATA_DATA 91 93 CONSTRUCTORS ··· 75 113 _edata = .; 76 114 } 77 115 78 - 79 - . = ALIGN(8); 80 - .bss : AT(ADDR(.bss) - LOAD_OFFSET) { 81 - __bss_start = .; 82 - *(.bss) 83 - *(COMMON) 84 - . = ALIGN(8); 85 - __bss_stop = .; 86 - _end = .; 87 - } 116 + BSS_SECTION(0, 8, 8) 117 + _end = .; 88 118 89 119 DWARF_DEBUG 90 120
+19 -16
arch/avr32/mach-at32ap/at32ap700x.c
··· 1183 1183 DEFINE_DEV(atmel_spi, 1); 1184 1184 DEV_CLK(spi_clk, atmel_spi1, pba, 1); 1185 1185 1186 - static void __init 1187 - at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, 1188 - unsigned int n, const u8 *pins) 1186 + void __init 1187 + at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, unsigned int n) 1189 1188 { 1189 + /* 1190 + * Manage the chipselects as GPIOs, normally using the same pins 1191 + * the SPI controller expects; but boards can use other pins. 1192 + */ 1193 + static u8 __initdata spi_pins[][4] = { 1194 + { GPIO_PIN_PA(3), GPIO_PIN_PA(4), 1195 + GPIO_PIN_PA(5), GPIO_PIN_PA(20) }, 1196 + { GPIO_PIN_PB(2), GPIO_PIN_PB(3), 1197 + GPIO_PIN_PB(4), GPIO_PIN_PA(27) }, 1198 + }; 1190 1199 unsigned int pin, mode; 1200 + 1201 + /* There are only 2 SPI controllers */ 1202 + if (bus_num > 1) 1203 + return; 1191 1204 1192 1205 for (; n; n--, b++) { 1193 1206 b->bus_num = bus_num; ··· 1208 1195 continue; 1209 1196 pin = (unsigned)b->controller_data; 1210 1197 if (!pin) { 1211 - pin = pins[b->chip_select]; 1198 + pin = spi_pins[bus_num][b->chip_select]; 1212 1199 b->controller_data = (void *)pin; 1213 1200 } 1214 1201 mode = AT32_GPIOF_OUTPUT; ··· 1221 1208 struct platform_device *__init 1222 1209 at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n) 1223 1210 { 1224 - /* 1225 - * Manage the chipselects as GPIOs, normally using the same pins 1226 - * the SPI controller expects; but boards can use other pins. 1227 - */ 1228 - static u8 __initdata spi0_pins[] = 1229 - { GPIO_PIN_PA(3), GPIO_PIN_PA(4), 1230 - GPIO_PIN_PA(5), GPIO_PIN_PA(20), }; 1231 - static u8 __initdata spi1_pins[] = 1232 - { GPIO_PIN_PB(2), GPIO_PIN_PB(3), 1233 - GPIO_PIN_PB(4), GPIO_PIN_PA(27), }; 1234 1211 struct platform_device *pdev; 1235 1212 u32 pin_mask; 1236 1213 ··· 1233 1230 select_peripheral(PIOA, (1 << 0), PERIPH_A, AT32_GPIOF_PULLUP); 1234 1231 select_peripheral(PIOA, pin_mask, PERIPH_A, 0); 1235 1232 1236 - at32_spi_setup_slaves(0, b, n, spi0_pins); 1233 + at32_spi_setup_slaves(0, b, n); 1237 1234 break; 1238 1235 1239 1236 case 1: ··· 1244 1241 select_peripheral(PIOB, (1 << 0), PERIPH_B, AT32_GPIOF_PULLUP); 1245 1242 select_peripheral(PIOB, pin_mask, PERIPH_B, 0); 1246 1243 1247 - at32_spi_setup_slaves(1, b, n, spi1_pins); 1244 + at32_spi_setup_slaves(1, b, n); 1248 1245 break; 1249 1246 1250 1247 default:
+1
arch/avr32/mach-at32ap/include/mach/board.h
··· 49 49 struct spi_board_info; 50 50 struct platform_device * 51 51 at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n); 52 + void at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, unsigned int n); 52 53 53 54 struct atmel_lcdfb_info; 54 55 struct platform_device *