Merge branch 'sh/for-2.6.29' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6

* 'sh/for-2.6.29' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6: (22 commits)
dma-coherent: Restore dma_alloc_from_coherent() large alloc fall back policy.
dma-coherent: per-device coherent area is in pages, not bytes.
sh: fix unaligned and nonexistent address handling
nommu: Stub in vm_map_ram()/vm_unmap_ram()/vm_unmap_aliases().
sh: fix sh-sci / early printk build on sh7723
sh: export the sh7343 JPU to user space
sh: update defconfigs.
serial: sh-sci: Fix up SH7720/SH7721 SCI build.
sh: Kill off obsolete busses from arch/sh/Kconfig.
sh: sh7785lcr/highlander/hp6xx need linux/irq.h.
sh: Migo-R MMC support using spi_gpio and mmc_spi.
sh: ap325rxa MMC support using spi_gpio and mmc_spi
sh: mach-x3proto: needs linux/irq.h.
sh: Drop the BKL from sys_execve() on SH-5.
sh: convert rsk7203 to use smsc911x.
sh: convert magicpanelr2 platform to use smsc911x.
sh: convert ap325rxa platform to use smsc911x.
sh: mach-migor: Add tw9910 support.
sh: mach-migor: Delete soc_camera_platform setup.
sh: mach-migor: Add ov772x support.
...

+2368 -1094
+11 -52
arch/sh/Kconfig
··· 644 645 menu "Bus options" 646 647 - # Even on SuperH devices which don't have an ISA bus, 648 - # this variable helps the PCMCIA modules handle 649 - # IRQ requesting properly -- Greg Banks. 650 - # 651 - # Though we're generally not interested in it when 652 - # we're not using PCMCIA, so we make it dependent on 653 - # PCMCIA outright. -- PFM. 654 - config ISA 655 - def_bool y 656 - depends on PCMCIA && HD6446X_SERIES 657 - help 658 - Find out whether you have ISA slots on your motherboard. ISA is the 659 - name of a bus system, i.e. the way the CPU talks to the other stuff 660 - inside your box. Other bus systems are PCI, EISA, MicroChannel 661 - (MCA) or VESA. ISA is an older system, now being displaced by PCI; 662 - newer boards don't support it. If you have ISA, say Y, otherwise N. 663 - 664 - config EISA 665 - bool 666 - ---help--- 667 - The Extended Industry Standard Architecture (EISA) bus was 668 - developed as an open alternative to the IBM MicroChannel bus. 669 - 670 - The EISA bus provided some of the features of the IBM MicroChannel 671 - bus while maintaining backward compatibility with cards made for 672 - the older ISA bus. The EISA bus saw limited use between 1988 and 673 - 1995 when it was made obsolete by the PCI bus. 674 - 675 - Say Y here if you are building a kernel for an EISA-based machine. 676 - 677 - Otherwise, say N. 678 - 679 - config MCA 680 - bool 681 - help 682 - MicroChannel Architecture is found in some IBM PS/2 machines and 683 - laptops. It is a bus system similar to PCI or ISA. See 684 - <file:Documentation/mca.txt> (and especially the web page given 685 - there) before attempting to build an MCA bus kernel. 686 - 687 - config SBUS 688 - bool 689 - 690 config SUPERHYWAY 691 tristate "SuperHyway Bus support" 692 depends on CPU_SUBTYPE_SH4_202 693 694 config MAPLE 695 - bool "Maple Bus support" 696 - depends on SH_DREAMCAST 697 - help 698 - The Maple Bus is SEGA's serial communication bus for peripherals 699 - on the Dreamcast. Without this bus support you won't be able to 700 - get your Dreamcast keyboard etc to work, so most users 701 - probably want to say 'Y' here, unless you are only using the 702 - Dreamcast with a serial line terminal or a remote network 703 - connection. 704 705 source "arch/sh/drivers/pci/Kconfig" 706 707 source "drivers/pci/Kconfig" 708
··· 644 645 menu "Bus options" 646 647 config SUPERHYWAY 648 tristate "SuperHyway Bus support" 649 depends on CPU_SUBTYPE_SH4_202 650 651 config MAPLE 652 + bool "Maple Bus support" 653 + depends on SH_DREAMCAST 654 + help 655 + The Maple Bus is SEGA's serial communication bus for peripherals 656 + on the Dreamcast. Without this bus support you won't be able to 657 + get your Dreamcast keyboard etc to work, so most users 658 + probably want to say 'Y' here, unless you are only using the 659 + Dreamcast with a serial line terminal or a remote network 660 + connection. 661 662 source "arch/sh/drivers/pci/Kconfig" 663 + 664 + source "drivers/pci/pcie/Kconfig" 665 666 source "drivers/pci/Kconfig" 667
+42 -11
arch/sh/boards/board-ap325rxa.c
··· 18 #include <linux/mtd/sh_flctl.h> 19 #include <linux/delay.h> 20 #include <linux/i2c.h> 21 - #include <linux/smc911x.h> 22 #include <linux/gpio.h> 23 #include <media/soc_camera_platform.h> 24 #include <media/sh_mobile_ceu.h> 25 #include <video/sh_mobile_lcdc.h> ··· 29 #include <asm/clock.h> 30 #include <cpu/sh7723.h> 31 32 - static struct smc911x_platdata smc911x_info = { 33 - .flags = SMC911X_USE_32BIT, 34 - .irq_flags = IRQF_TRIGGER_LOW, 35 }; 36 37 - static struct resource smc9118_resources[] = { 38 [0] = { 39 .start = 0xb6080000, 40 .end = 0xb60fffff, ··· 49 } 50 }; 51 52 - static struct platform_device smc9118_device = { 53 - .name = "smc911x", 54 .id = -1, 55 - .num_resources = ARRAY_SIZE(smc9118_resources), 56 - .resource = smc9118_resources, 57 .dev = { 58 - .platform_data = &smc911x_info, 59 }, 60 }; 61 ··· 319 }, 320 }; 321 322 static struct platform_device *ap325rxa_devices[] __initdata = { 323 - &smc9118_device, 324 &ap325rxa_nor_flash_device, 325 &lcdc_device, 326 &ceu_device, ··· 342 &camera_device, 343 #endif 344 &nand_flash_device, 345 }; 346 347 static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { 348 { 349 I2C_BOARD_INFO("pcf8563", 0x51), 350 }, 351 }; 352 ··· 456 457 i2c_register_board_info(0, ap325rxa_i2c_devices, 458 ARRAY_SIZE(ap325rxa_i2c_devices)); 459 460 return platform_add_devices(ap325rxa_devices, 461 ARRAY_SIZE(ap325rxa_devices));
··· 18 #include <linux/mtd/sh_flctl.h> 19 #include <linux/delay.h> 20 #include <linux/i2c.h> 21 + #include <linux/smsc911x.h> 22 #include <linux/gpio.h> 23 + #include <linux/spi/spi.h> 24 + #include <linux/spi/spi_gpio.h> 25 #include <media/soc_camera_platform.h> 26 #include <media/sh_mobile_ceu.h> 27 #include <video/sh_mobile_lcdc.h> ··· 27 #include <asm/clock.h> 28 #include <cpu/sh7723.h> 29 30 + static struct smsc911x_platform_config smsc911x_config = { 31 + .phy_interface = PHY_INTERFACE_MODE_MII, 32 + .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, 33 + .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN, 34 + .flags = SMSC911X_USE_32BIT, 35 }; 36 37 + static struct resource smsc9118_resources[] = { 38 [0] = { 39 .start = 0xb6080000, 40 .end = 0xb60fffff, ··· 45 } 46 }; 47 48 + static struct platform_device smsc9118_device = { 49 + .name = "smsc911x", 50 .id = -1, 51 + .num_resources = ARRAY_SIZE(smsc9118_resources), 52 + .resource = smsc9118_resources, 53 .dev = { 54 + .platform_data = &smsc911x_config, 55 }, 56 }; 57 ··· 315 }, 316 }; 317 318 + struct spi_gpio_platform_data sdcard_cn3_platform_data = { 319 + .sck = GPIO_PTD0, 320 + .mosi = GPIO_PTD1, 321 + .miso = GPIO_PTD2, 322 + .num_chipselect = 1, 323 + }; 324 + 325 + static struct platform_device sdcard_cn3_device = { 326 + .name = "spi_gpio", 327 + .dev = { 328 + .platform_data = &sdcard_cn3_platform_data, 329 + }, 330 + }; 331 + 332 static struct platform_device *ap325rxa_devices[] __initdata = { 333 + &smsc9118_device, 334 &ap325rxa_nor_flash_device, 335 &lcdc_device, 336 &ceu_device, ··· 324 &camera_device, 325 #endif 326 &nand_flash_device, 327 + &sdcard_cn3_device, 328 }; 329 330 static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { 331 { 332 I2C_BOARD_INFO("pcf8563", 0x51), 333 + }, 334 + }; 335 + 336 + static struct spi_board_info ap325rxa_spi_devices[] = { 337 + { 338 + .modalias = "mmc_spi", 339 + .max_speed_hz = 5000000, 340 + .chip_select = 0, 341 + .controller_data = (void *) GPIO_PTD5, 342 }, 343 }; 344 ··· 428 429 i2c_register_board_info(0, ap325rxa_i2c_devices, 430 ARRAY_SIZE(ap325rxa_i2c_devices)); 431 + 432 + spi_register_board_info(ap325rxa_spi_devices, 433 + ARRAY_SIZE(ap325rxa_spi_devices)); 434 435 return platform_add_devices(ap325rxa_devices, 436 ARRAY_SIZE(ap325rxa_devices));
+17 -6
arch/sh/boards/board-magicpanelr2.c
··· 14 #include <linux/platform_device.h> 15 #include <linux/delay.h> 16 #include <linux/gpio.h> 17 #include <linux/mtd/mtd.h> 18 #include <linux/mtd/partitions.h> 19 #include <linux/mtd/physmap.h> ··· 243 printk(KERN_WARNING "Ethernet not ready\n"); 244 } 245 246 - static struct resource smc911x_resources[] = { 247 [0] = { 248 .start = 0xa8000000, 249 .end = 0xabffffff, ··· 256 }, 257 }; 258 259 - static struct platform_device smc911x_device = { 260 - .name = "smc911x", 261 .id = -1, 262 - .num_resources = ARRAY_SIZE(smc911x_resources), 263 - .resource = smc911x_resources, 264 }; 265 266 static struct resource heartbeat_resources[] = { ··· 371 372 static struct platform_device *mpr2_devices[] __initdata = { 373 &heartbeat_device, 374 - &smc911x_device, 375 &flash_device, 376 }; 377
··· 14 #include <linux/platform_device.h> 15 #include <linux/delay.h> 16 #include <linux/gpio.h> 17 + #include <linux/smsc911x.h> 18 #include <linux/mtd/mtd.h> 19 #include <linux/mtd/partitions.h> 20 #include <linux/mtd/physmap.h> ··· 242 printk(KERN_WARNING "Ethernet not ready\n"); 243 } 244 245 + static struct resource smsc911x_resources[] = { 246 [0] = { 247 .start = 0xa8000000, 248 .end = 0xabffffff, ··· 255 }, 256 }; 257 258 + static struct smsc911x_platform_config smsc911x_config = { 259 + .phy_interface = PHY_INTERFACE_MODE_MII, 260 + .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, 261 + .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN, 262 + .flags = SMSC911X_USE_32BIT, 263 + }; 264 + 265 + static struct platform_device smsc911x_device = { 266 + .name = "smsc911x", 267 .id = -1, 268 + .num_resources = ARRAY_SIZE(smsc911x_resources), 269 + .resource = smsc911x_resources, 270 + .dev = { 271 + .platform_data = &smsc911x_config, 272 + }, 273 }; 274 275 static struct resource heartbeat_resources[] = { ··· 360 361 static struct platform_device *mpr2_devices[] __initdata = { 362 &heartbeat_device, 363 + &smsc911x_device, 364 &flash_device, 365 }; 366
+1
arch/sh/boards/board-sh7785lcr.c
··· 18 #include <linux/i2c.h> 19 #include <linux/i2c-pca-platform.h> 20 #include <linux/i2c-algo-pca.h> 21 #include <asm/heartbeat.h> 22 #include <mach/sh7785lcr.h> 23
··· 18 #include <linux/i2c.h> 19 #include <linux/i2c-pca-platform.h> 20 #include <linux/i2c-algo-pca.h> 21 + #include <linux/irq.h> 22 #include <asm/heartbeat.h> 23 #include <mach/sh7785lcr.h> 24
+1
arch/sh/boards/mach-highlander/setup.c
··· 18 #include <linux/ata_platform.h> 19 #include <linux/types.h> 20 #include <linux/i2c.h> 21 #include <net/ax88796.h> 22 #include <asm/machvec.h> 23 #include <mach/highlander.h>
··· 18 #include <linux/ata_platform.h> 19 #include <linux/types.h> 20 #include <linux/i2c.h> 21 + #include <linux/irq.h> 22 #include <net/ax88796.h> 23 #include <asm/machvec.h> 24 #include <mach/highlander.h>
+1 -1
arch/sh/boards/mach-hp6xx/setup.c
··· 12 #include <linux/types.h> 13 #include <linux/init.h> 14 #include <linux/platform_device.h> 15 #include <asm/hd64461.h> 16 #include <asm/io.h> 17 - #include <asm/irq.h> 18 #include <mach/hp6xx.h> 19 #include <cpu/dac.h> 20
··· 12 #include <linux/types.h> 13 #include <linux/init.h> 14 #include <linux/platform_device.h> 15 + #include <linux/irq.h> 16 #include <asm/hd64461.h> 17 #include <asm/io.h> 18 #include <mach/hp6xx.h> 19 #include <cpu/dac.h> 20
+76 -95
arch/sh/boards/mach-migor/setup.c
··· 18 #include <linux/delay.h> 19 #include <linux/clk.h> 20 #include <linux/gpio.h> 21 - #include <media/soc_camera_platform.h> 22 - #include <media/sh_mobile_ceu.h> 23 #include <video/sh_mobile_lcdc.h> 24 #include <asm/clock.h> 25 #include <asm/machvec.h> 26 #include <asm/io.h> ··· 295 }; 296 297 static struct clk *camera_clk; 298 299 - static void camera_power_on(void) 300 { 301 /* Use 10 MHz VIO_CKO instead of 24 MHz to work 302 * around signal quality issues on Panel Board V2.1. 303 */ ··· 310 311 /* use VIO_RST to take camera out of reset */ 312 mdelay(10); 313 gpio_set_value(GPIO_PTT3, 0); 314 mdelay(10); 315 gpio_set_value(GPIO_PTT3, 1); ··· 328 clk_put(camera_clk); 329 330 gpio_set_value(GPIO_PTT3, 0); 331 } 332 333 - static void camera_power(int mode) 334 { 335 if (mode) 336 - camera_power_on(); 337 else 338 camera_power_off(); 339 } 340 341 - #ifdef CONFIG_I2C 342 - static unsigned char camera_ov772x_magic[] = 343 { 344 - 0x09, 0x01, 0x0c, 0x20, 0x0d, 0x41, 0x0e, 0x01, 345 - 0x12, 0x00, 0x13, 0x8F, 0x14, 0x4A, 0x15, 0x00, 346 - 0x16, 0x00, 0x17, 0x23, 0x18, 0xa0, 0x19, 0x07, 347 - 0x1a, 0xf0, 0x1b, 0x40, 0x1f, 0x00, 0x20, 0x10, 348 - 0x22, 0xff, 0x23, 0x01, 0x28, 0x00, 0x29, 0xa0, 349 - 0x2a, 0x00, 0x2b, 0x00, 0x2c, 0xf0, 0x2d, 0x00, 350 - 0x2e, 0x00, 0x30, 0x80, 0x31, 0x60, 0x32, 0x00, 351 - 0x33, 0x00, 0x34, 0x00, 0x3d, 0x80, 0x3e, 0xe2, 352 - 0x3f, 0x1f, 0x42, 0x80, 0x43, 0x80, 0x44, 0x80, 353 - 0x45, 0x80, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 354 - 0x49, 0x50, 0x4a, 0x30, 0x4b, 0x50, 0x4c, 0x50, 355 - 0x4d, 0x00, 0x4e, 0xef, 0x4f, 0x10, 0x50, 0x60, 356 - 0x51, 0x00, 0x52, 0x00, 0x53, 0x24, 0x54, 0x7a, 357 - 0x55, 0xfc, 0x62, 0xff, 0x63, 0xf0, 0x64, 0x1f, 358 - 0x65, 0x00, 0x66, 0x10, 0x67, 0x00, 0x68, 0x00, 359 - 0x69, 0x5c, 0x6a, 0x11, 0x6b, 0xa2, 0x6c, 0x01, 360 - 0x6d, 0x50, 0x6e, 0x80, 0x6f, 0x80, 0x70, 0x0f, 361 - 0x71, 0x00, 0x72, 0x00, 0x73, 0x0f, 0x74, 0x0f, 362 - 0x75, 0xff, 0x78, 0x10, 0x79, 0x70, 0x7a, 0x70, 363 - 0x7b, 0xf0, 0x7c, 0xf0, 0x7d, 0xf0, 0x7e, 0x0e, 364 - 0x7f, 0x1a, 0x80, 0x31, 0x81, 0x5a, 0x82, 0x69, 365 - 0x83, 0x75, 0x84, 0x7e, 0x85, 0x88, 0x86, 0x8f, 366 - 0x87, 0x96, 0x88, 0xa3, 0x89, 0xaf, 0x8a, 0xc4, 367 - 0x8b, 0xd7, 0x8c, 0xe8, 0x8d, 0x20, 0x8e, 0x00, 368 - 0x8f, 0x00, 0x90, 0x08, 0x91, 0x10, 0x92, 0x1f, 369 - 0x93, 0x01, 0x94, 0x2c, 0x95, 0x24, 0x96, 0x08, 370 - 0x97, 0x14, 0x98, 0x24, 0x99, 0x38, 0x9a, 0x9e, 371 - 0x9b, 0x00, 0x9c, 0x40, 0x9e, 0x11, 0x9f, 0x02, 372 - 0xa0, 0x00, 0xa1, 0x40, 0xa2, 0x40, 0xa3, 0x06, 373 - 0xa4, 0x00, 0xa6, 0x00, 0xa7, 0x40, 0xa8, 0x40, 374 - 0xa9, 0x80, 0xaa, 0x80, 0xab, 0x06, 0xac, 0xff, 375 - 0x12, 0x06, 0x64, 0x3f, 0x12, 0x46, 0x17, 0x3f, 376 - 0x18, 0x50, 0x19, 0x03, 0x1a, 0x78, 0x29, 0x50, 377 - 0x2c, 0x78, 378 - }; 379 380 - static int ov772x_set_capture(struct soc_camera_platform_info *info, 381 - int enable) 382 - { 383 - struct i2c_adapter *a = i2c_get_adapter(0); 384 - struct i2c_msg msg; 385 - int ret = 0; 386 - int i; 387 - 388 - if (!enable) 389 - return 0; /* camera_power_off() is enough */ 390 - 391 - for (i = 0; i < ARRAY_SIZE(camera_ov772x_magic); i += 2) { 392 - u_int8_t buf[8]; 393 - 394 - msg.addr = 0x21; 395 - msg.buf = buf; 396 - msg.len = 2; 397 - msg.flags = 0; 398 - 399 - buf[0] = camera_ov772x_magic[i]; 400 - buf[1] = camera_ov772x_magic[i + 1]; 401 - 402 - ret = (ret < 0) ? ret : i2c_transfer(a, &msg, 1); 403 - } 404 - 405 - return ret; 406 } 407 - 408 - static struct soc_camera_platform_info ov772x_info = { 409 - .iface = 0, 410 - .format_name = "RGB565", 411 - .format_depth = 16, 412 - .format = { 413 - .pixelformat = V4L2_PIX_FMT_RGB565, 414 - .colorspace = V4L2_COLORSPACE_SRGB, 415 - .width = 320, 416 - .height = 240, 417 - }, 418 - .bus_param = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | 419 - SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, 420 - .power = camera_power, 421 - .set_capture = ov772x_set_capture, 422 - }; 423 - 424 - static struct platform_device migor_camera_device = { 425 - .name = "soc_camera_platform", 426 - .dev = { 427 - .platform_data = &ov772x_info, 428 - }, 429 - }; 430 - #endif /* CONFIG_I2C */ 431 432 static struct sh_mobile_ceu_info sh_mobile_ceu_info = { 433 .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING \ ··· 382 }, 383 }; 384 385 static struct platform_device *migor_devices[] __initdata = { 386 &smc91x_eth_device, 387 &sh_keysc_device, 388 &migor_lcdc_device, 389 &migor_ceu_device, 390 - #ifdef CONFIG_I2C 391 - &migor_camera_device, 392 - #endif 393 &migor_nor_flash_device, 394 &migor_nand_flash_device, 395 }; 396 397 static struct i2c_board_info migor_i2c_devices[] = { ··· 428 { 429 I2C_BOARD_INFO("migor_ts", 0x51), 430 .irq = 38, /* IRQ6 */ 431 }, 432 }; 433 ··· 569 570 i2c_register_board_info(0, migor_i2c_devices, 571 ARRAY_SIZE(migor_i2c_devices)); 572 573 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); 574 }
··· 18 #include <linux/delay.h> 19 #include <linux/clk.h> 20 #include <linux/gpio.h> 21 + #include <linux/spi/spi.h> 22 + #include <linux/spi/spi_gpio.h> 23 #include <video/sh_mobile_lcdc.h> 24 + #include <media/sh_mobile_ceu.h> 25 + #include <media/ov772x.h> 26 + #include <media/tw9910.h> 27 #include <asm/clock.h> 28 #include <asm/machvec.h> 29 #include <asm/io.h> ··· 292 }; 293 294 static struct clk *camera_clk; 295 + static DEFINE_MUTEX(camera_lock); 296 297 + static void camera_power_on(int is_tw) 298 { 299 + mutex_lock(&camera_lock); 300 + 301 /* Use 10 MHz VIO_CKO instead of 24 MHz to work 302 * around signal quality issues on Panel Board V2.1. 303 */ ··· 304 305 /* use VIO_RST to take camera out of reset */ 306 mdelay(10); 307 + if (is_tw) { 308 + gpio_set_value(GPIO_PTT2, 0); 309 + gpio_set_value(GPIO_PTT0, 0); 310 + } else { 311 + gpio_set_value(GPIO_PTT0, 1); 312 + } 313 gpio_set_value(GPIO_PTT3, 0); 314 mdelay(10); 315 gpio_set_value(GPIO_PTT3, 1); ··· 316 clk_put(camera_clk); 317 318 gpio_set_value(GPIO_PTT3, 0); 319 + mutex_unlock(&camera_lock); 320 } 321 322 + static int ov7725_power(struct device *dev, int mode) 323 { 324 if (mode) 325 + camera_power_on(0); 326 else 327 camera_power_off(); 328 + 329 + return 0; 330 } 331 332 + static int tw9910_power(struct device *dev, int mode) 333 { 334 + if (mode) 335 + camera_power_on(1); 336 + else 337 + camera_power_off(); 338 339 + return 0; 340 } 341 342 static struct sh_mobile_ceu_info sh_mobile_ceu_info = { 343 .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING \ ··· 448 }, 449 }; 450 451 + static struct ov772x_camera_info ov7725_info = { 452 + .buswidth = SOCAM_DATAWIDTH_8, 453 + .link = { 454 + .power = ov7725_power, 455 + }, 456 + }; 457 + 458 + static struct tw9910_video_info tw9910_info = { 459 + .buswidth = SOCAM_DATAWIDTH_8, 460 + .mpout = TW9910_MPO_FIELD, 461 + .link = { 462 + .power = tw9910_power, 463 + } 464 + }; 465 + 466 + struct spi_gpio_platform_data sdcard_cn9_platform_data = { 467 + .sck = GPIO_PTD0, 468 + .mosi = GPIO_PTD1, 469 + .miso = GPIO_PTD2, 470 + .num_chipselect = 1, 471 + }; 472 + 473 + static struct platform_device sdcard_cn9_device = { 474 + .name = "spi_gpio", 475 + .dev = { 476 + .platform_data = &sdcard_cn9_platform_data, 477 + }, 478 + }; 479 + 480 static struct platform_device *migor_devices[] __initdata = { 481 &smc91x_eth_device, 482 &sh_keysc_device, 483 &migor_lcdc_device, 484 &migor_ceu_device, 485 &migor_nor_flash_device, 486 &migor_nand_flash_device, 487 + &sdcard_cn9_device, 488 }; 489 490 static struct i2c_board_info migor_i2c_devices[] = { ··· 467 { 468 I2C_BOARD_INFO("migor_ts", 0x51), 469 .irq = 38, /* IRQ6 */ 470 + }, 471 + { 472 + I2C_BOARD_INFO("ov772x", 0x21), 473 + .platform_data = &ov7725_info, 474 + }, 475 + { 476 + I2C_BOARD_INFO("tw9910", 0x45), 477 + .platform_data = &tw9910_info, 478 + }, 479 + }; 480 + 481 + static struct spi_board_info migor_spi_devices[] = { 482 + { 483 + .modalias = "mmc_spi", 484 + .max_speed_hz = 5000000, 485 + .chip_select = 0, 486 + .controller_data = (void *) GPIO_PTD5, 487 }, 488 }; 489 ··· 591 592 i2c_register_board_info(0, migor_i2c_devices, 593 ARRAY_SIZE(migor_i2c_devices)); 594 + 595 + spi_register_board_info(migor_spi_devices, 596 + ARRAY_SIZE(migor_spi_devices)); 597 598 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); 599 }
+13 -11
arch/sh/boards/mach-rsk/devices-rsk7203.c
··· 15 #include <linux/mtd/partitions.h> 16 #include <linux/mtd/physmap.h> 17 #include <linux/mtd/map.h> 18 - #include <linux/smc911x.h> 19 #include <linux/gpio.h> 20 #include <linux/leds.h> 21 #include <asm/machvec.h> 22 #include <asm/io.h> 23 #include <cpu/sh7203.h> 24 25 - static struct smc911x_platdata smc911x_info = { 26 - .flags = SMC911X_USE_16BIT, 27 - .irq_flags = IRQF_TRIGGER_LOW, 28 }; 29 30 - static struct resource smc911x_resources[] = { 31 [0] = { 32 .start = 0x24000000, 33 .end = 0x24000000 + 0x100, ··· 42 }, 43 }; 44 45 - static struct platform_device smc911x_device = { 46 - .name = "smc911x", 47 .id = -1, 48 - .num_resources = ARRAY_SIZE(smc911x_resources), 49 - .resource = smc911x_resources, 50 .dev = { 51 - .platform_data = &smc911x_info, 52 }, 53 }; 54 ··· 89 }; 90 91 static struct platform_device *rsk7203_devices[] __initdata = { 92 - &smc911x_device, 93 &led_device, 94 }; 95
··· 15 #include <linux/mtd/partitions.h> 16 #include <linux/mtd/physmap.h> 17 #include <linux/mtd/map.h> 18 + #include <linux/smsc911x.h> 19 #include <linux/gpio.h> 20 #include <linux/leds.h> 21 #include <asm/machvec.h> 22 #include <asm/io.h> 23 #include <cpu/sh7203.h> 24 25 + static struct smsc911x_platform_config smsc911x_config = { 26 + .phy_interface = PHY_INTERFACE_MODE_MII, 27 + .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, 28 + .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN, 29 + .flags = SMSC911X_USE_16BIT, 30 }; 31 32 + static struct resource smsc911x_resources[] = { 33 [0] = { 34 .start = 0x24000000, 35 .end = 0x24000000 + 0x100, ··· 40 }, 41 }; 42 43 + static struct platform_device smsc911x_device = { 44 + .name = "smsc911x", 45 .id = -1, 46 + .num_resources = ARRAY_SIZE(smsc911x_resources), 47 + .resource = smsc911x_resources, 48 .dev = { 49 + .platform_data = &smsc911x_config, 50 }, 51 }; 52 ··· 87 }; 88 89 static struct platform_device *rsk7203_devices[] __initdata = { 90 + &smsc911x_device, 91 &led_device, 92 }; 93
+1
arch/sh/boards/mach-x3proto/setup.c
··· 14 #include <linux/kernel.h> 15 #include <linux/io.h> 16 #include <linux/smc91x.h> 17 #include <asm/ilsel.h> 18 19 static struct resource heartbeat_resources[] = {
··· 14 #include <linux/kernel.h> 15 #include <linux/io.h> 16 #include <linux/smc91x.h> 17 + #include <linux/irq.h> 18 #include <asm/ilsel.h> 19 20 static struct resource heartbeat_resources[] = {
+322 -33
arch/sh/configs/ap325rxa_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Tue Oct 21 18:20:06 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 77 CONFIG_SHMEM=y 78 CONFIG_AIO=y 79 CONFIG_VM_EVENT_COUNTERS=y 80 - CONFIG_PCI_QUIRKS=y 81 CONFIG_SLAB=y 82 # CONFIG_SLUB is not set 83 # CONFIG_SLOB is not set 84 # CONFIG_PROFILING is not set 85 - # CONFIG_MARKERS is not set 86 CONFIG_HAVE_OPROFILE=y 87 CONFIG_HAVE_IOREMAP_PROT=y 88 CONFIG_HAVE_KPROBES=y ··· 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_RT_MUTEXES=y 93 - # CONFIG_TINY_SHMEM is not set 94 CONFIG_BASE_SMALL=0 95 CONFIG_MODULES=y 96 # CONFIG_MODULE_FORCE_LOAD is not set ··· 97 # CONFIG_MODULE_FORCE_UNLOAD is not set 98 # CONFIG_MODVERSIONS is not set 99 # CONFIG_MODULE_SRCVERSION_ALL is not set 100 - CONFIG_KMOD=y 101 CONFIG_BLOCK=y 102 # CONFIG_LBD is not set 103 # CONFIG_BLK_DEV_IO_TRACE is not set 104 - # CONFIG_LSF is not set 105 # CONFIG_BLK_DEV_BSG is not set 106 # CONFIG_BLK_DEV_INTEGRITY is not set 107 ··· 116 # CONFIG_DEFAULT_NOOP is not set 117 CONFIG_DEFAULT_IOSCHED="cfq" 118 CONFIG_CLASSIC_RCU=y 119 # CONFIG_FREEZER is not set 120 121 # ··· 129 CONFIG_CPU_SH4A=y 130 CONFIG_CPU_SHX2=y 131 # CONFIG_CPU_SUBTYPE_SH7619 is not set 132 # CONFIG_CPU_SUBTYPE_SH7203 is not set 133 # CONFIG_CPU_SUBTYPE_SH7206 is not set 134 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 194 CONFIG_SPARSEMEM_STATIC=y 195 CONFIG_PAGEFLAGS_EXTENDED=y 196 CONFIG_SPLIT_PTLOCK_CPUS=4 197 - # CONFIG_RESOURCES_64BIT is not set 198 # CONFIG_PHYS_ADDR_T_64BIT is not set 199 CONFIG_ZONE_DMA_FLAG=0 200 CONFIG_NR_QUICK=2 ··· 270 # CONFIG_PREEMPT_NONE is not set 271 # CONFIG_PREEMPT_VOLUNTARY is not set 272 CONFIG_PREEMPT=y 273 - # CONFIG_PREEMPT_RCU is not set 274 CONFIG_GUSA=y 275 276 # ··· 293 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 294 # CONFIG_HAVE_AOUT is not set 295 # CONFIG_BINFMT_MISC is not set 296 CONFIG_NET=y 297 298 # 299 # Networking options 300 # 301 CONFIG_PACKET=y 302 # CONFIG_PACKET_MMAP is not set 303 CONFIG_UNIX=y ··· 360 # CONFIG_ECONET is not set 361 # CONFIG_WAN_ROUTER is not set 362 # CONFIG_NET_SCHED is not set 363 364 # 365 # Network testing ··· 376 # CONFIG_CFG80211 is not set 377 # CONFIG_WIRELESS_OLD_REGULATORY is not set 378 # CONFIG_WIRELESS_EXT is not set 379 # CONFIG_MAC80211 is not set 380 - # CONFIG_IEEE80211 is not set 381 # CONFIG_RFKILL is not set 382 # CONFIG_NET_9P is not set 383 ··· 455 # 456 # Self-contained MTD device drivers 457 # 458 # CONFIG_MTD_SLRAM is not set 459 # CONFIG_MTD_PHRAM is not set 460 # CONFIG_MTD_MTDRAM is not set ··· 482 # 483 # UBI - Unsorted block images 484 # 485 - # CONFIG_MTD_UBI is not set 486 # CONFIG_PARPORT is not set 487 CONFIG_BLK_DEV=y 488 # CONFIG_BLK_DEV_COW_COMMON is not set ··· 505 # CONFIG_BLK_DEV_HD is not set 506 CONFIG_MISC_DEVICES=y 507 # CONFIG_EEPROM_93CX6 is not set 508 # CONFIG_ENCLOSURE_SERVICES is not set 509 CONFIG_HAVE_IDE=y 510 # CONFIG_IDE is not set 511 ··· 550 # CONFIG_SCSI_SRP_ATTRS is not set 551 CONFIG_SCSI_LOWLEVEL=y 552 # CONFIG_ISCSI_TCP is not set 553 # CONFIG_SCSI_DEBUG is not set 554 # CONFIG_SCSI_DH is not set 555 # CONFIG_ATA is not set ··· 562 # CONFIG_EQUALIZER is not set 563 # CONFIG_TUN is not set 564 # CONFIG_VETH is not set 565 - # CONFIG_PHYLIB is not set 566 CONFIG_NET_ETHERNET=y 567 CONFIG_MII=y 568 # CONFIG_AX88796 is not set 569 # CONFIG_STNIC is not set 570 # CONFIG_SMC91X is not set 571 - CONFIG_SMC911X=y 572 # CONFIG_IBM_NEW_EMAC_ZMII is not set 573 # CONFIG_IBM_NEW_EMAC_RGMII is not set 574 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 672 CONFIG_SERIAL_CORE=y 673 CONFIG_SERIAL_CORE_CONSOLE=y 674 CONFIG_UNIX98_PTYS=y 675 CONFIG_LEGACY_PTYS=y 676 CONFIG_LEGACY_PTY_COUNT=256 677 # CONFIG_IPMI_HANDLER is not set ··· 680 # CONFIG_R3964 is not set 681 # CONFIG_RAW_DRIVER is not set 682 # CONFIG_TCG_TPM is not set 683 - # CONFIG_I2C is not set 684 - # CONFIG_SPI is not set 685 # CONFIG_W1 is not set 686 # CONFIG_POWER_SUPPLY is not set 687 # CONFIG_HWMON is not set 688 # CONFIG_THERMAL is not set 689 # CONFIG_THERMAL_HWMON is not set 690 # CONFIG_WATCHDOG is not set 691 692 # 693 # Sonics Silicon Backplane 694 # 695 - CONFIG_SSB_POSSIBLE=y 696 # CONFIG_SSB is not set 697 698 # ··· 784 # CONFIG_MFD_CORE is not set 785 # CONFIG_MFD_SM501 is not set 786 # CONFIG_HTC_PASIC3 is not set 787 # CONFIG_MFD_TMIO is not set 788 # CONFIG_MFD_WM8400 is not set 789 790 # 791 # Multimedia devices ··· 799 # 800 # Multimedia core support 801 # 802 - # CONFIG_VIDEO_DEV is not set 803 # CONFIG_DVB_CORE is not set 804 - # CONFIG_VIDEO_MEDIA is not set 805 806 # 807 # Multimedia drivers 808 # 809 # CONFIG_DAB is not set 810 811 # ··· 847 # 848 # CONFIG_VGASTATE is not set 849 # CONFIG_VIDEO_OUTPUT_CONTROL is not set 850 - # CONFIG_FB is not set 851 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 852 853 # ··· 886 # Console display driver support 887 # 888 CONFIG_DUMMY_CONSOLE=y 889 # CONFIG_SOUND is not set 890 # CONFIG_HID_SUPPORT is not set 891 # CONFIG_USB_SUPPORT is not set 892 - # CONFIG_MMC is not set 893 # CONFIG_MEMSTICK is not set 894 # CONFIG_NEW_LEDS is not set 895 # CONFIG_ACCESSIBILITY is not set 896 - # CONFIG_RTC_CLASS is not set 897 # CONFIG_DMADEVICES is not set 898 CONFIG_UIO=y 899 # CONFIG_UIO_PDRV is not set ··· 1049 # CONFIG_HUGETLBFS is not set 1050 # CONFIG_HUGETLB_PAGE is not set 1051 # CONFIG_CONFIGFS_FS is not set 1052 - 1053 - # 1054 - # Miscellaneous filesystems 1055 - # 1056 # CONFIG_ADFS_FS is not set 1057 # CONFIG_AFFS_FS is not set 1058 # CONFIG_HFS_FS is not set ··· 1058 # CONFIG_BFS_FS is not set 1059 # CONFIG_EFS_FS is not set 1060 # CONFIG_JFFS2_FS is not set 1061 # CONFIG_CRAMFS is not set 1062 # CONFIG_VXFS_FS is not set 1063 # CONFIG_MINIX_FS is not set ··· 1157 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1158 # CONFIG_LATENCYTOP is not set 1159 CONFIG_SYSCTL_SYSCALL_CHECK=y 1160 - CONFIG_NOP_TRACER=y 1161 - CONFIG_HAVE_FTRACE=y 1162 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1163 # CONFIG_SAMPLES is not set 1164 # CONFIG_SH_STANDARD_BIOS is not set 1165 # CONFIG_EARLY_SCIF_CONSOLE is not set 1166 - # CONFIG_SH_KGDB is not set 1167 1168 # 1169 # Security options ··· 1185 # 1186 # CONFIG_CRYPTO_FIPS is not set 1187 CONFIG_CRYPTO_ALGAPI=y 1188 - CONFIG_CRYPTO_AEAD=y 1189 CONFIG_CRYPTO_BLKCIPHER=y 1190 - CONFIG_CRYPTO_HASH=y 1191 - CONFIG_CRYPTO_RNG=y 1192 CONFIG_CRYPTO_MANAGER=y 1193 # CONFIG_CRYPTO_GF128MUL is not set 1194 # CONFIG_CRYPTO_NULL is not set 1195 # CONFIG_CRYPTO_CRYPTD is not set ··· 1275 # Library routines 1276 # 1277 CONFIG_BITREVERSE=y 1278 # CONFIG_CRC_CCITT is not set 1279 # CONFIG_CRC16 is not set 1280 CONFIG_CRC_T10DIF=y 1281 - # CONFIG_CRC_ITU_T is not set 1282 CONFIG_CRC32=y 1283 - # CONFIG_CRC7 is not set 1284 # CONFIG_LIBCRC32C is not set 1285 CONFIG_PLIST=y 1286 CONFIG_HAS_IOMEM=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:54:19 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 75 CONFIG_SHMEM=y 76 CONFIG_AIO=y 77 CONFIG_VM_EVENT_COUNTERS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 CONFIG_HAVE_OPROFILE=y 83 CONFIG_HAVE_IOREMAP_PROT=y 84 CONFIG_HAVE_KPROBES=y ··· 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_RT_MUTEXES=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 # CONFIG_MODULE_FORCE_UNLOAD is not set 99 # CONFIG_MODVERSIONS is not set 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 101 CONFIG_BLOCK=y 102 # CONFIG_LBD is not set 103 # CONFIG_BLK_DEV_IO_TRACE is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 119 # CONFIG_DEFAULT_NOOP is not set 120 CONFIG_DEFAULT_IOSCHED="cfq" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 128 CONFIG_CPU_SH4A=y 129 CONFIG_CPU_SHX2=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 132 # CONFIG_CPU_SUBTYPE_SH7203 is not set 133 # CONFIG_CPU_SUBTYPE_SH7206 is not set 134 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=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 ··· 269 # CONFIG_PREEMPT_NONE is not set 270 # CONFIG_PREEMPT_VOLUNTARY is not set 271 CONFIG_PREEMPT=y 272 CONFIG_GUSA=y 273 274 # ··· 293 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 294 # CONFIG_HAVE_AOUT is not set 295 # CONFIG_BINFMT_MISC is not set 296 + 297 + # 298 + # Power management options (EXPERIMENTAL) 299 + # 300 + # CONFIG_PM is not set 301 + # CONFIG_CPU_IDLE is not set 302 CONFIG_NET=y 303 304 # 305 # Networking options 306 # 307 + CONFIG_COMPAT_NET_DEV_OPS=y 308 CONFIG_PACKET=y 309 # CONFIG_PACKET_MMAP is not set 310 CONFIG_UNIX=y ··· 353 # CONFIG_ECONET is not set 354 # CONFIG_WAN_ROUTER is not set 355 # CONFIG_NET_SCHED is not set 356 + # CONFIG_DCB is not set 357 358 # 359 # Network testing ··· 368 # CONFIG_CFG80211 is not set 369 # CONFIG_WIRELESS_OLD_REGULATORY is not set 370 # CONFIG_WIRELESS_EXT is not set 371 + # CONFIG_LIB80211 is not set 372 # CONFIG_MAC80211 is not set 373 # CONFIG_RFKILL is not set 374 # CONFIG_NET_9P is not set 375 ··· 447 # 448 # Self-contained MTD device drivers 449 # 450 + # CONFIG_MTD_DATAFLASH is not set 451 + # CONFIG_MTD_M25P80 is not set 452 # CONFIG_MTD_SLRAM is not set 453 # CONFIG_MTD_PHRAM is not set 454 # CONFIG_MTD_MTDRAM is not set ··· 472 # 473 # UBI - Unsorted block images 474 # 475 + CONFIG_MTD_UBI=y 476 + CONFIG_MTD_UBI_WL_THRESHOLD=4096 477 + CONFIG_MTD_UBI_BEB_RESERVE=1 478 + # CONFIG_MTD_UBI_GLUEBI is not set 479 + 480 + # 481 + # UBI debugging options 482 + # 483 + # CONFIG_MTD_UBI_DEBUG is not set 484 # CONFIG_PARPORT is not set 485 CONFIG_BLK_DEV=y 486 # CONFIG_BLK_DEV_COW_COMMON is not set ··· 487 # CONFIG_BLK_DEV_HD is not set 488 CONFIG_MISC_DEVICES=y 489 # CONFIG_EEPROM_93CX6 is not set 490 + # CONFIG_ICS932S401 is not set 491 # CONFIG_ENCLOSURE_SERVICES is not set 492 + # CONFIG_C2PORT is not set 493 CONFIG_HAVE_IDE=y 494 # CONFIG_IDE is not set 495 ··· 530 # CONFIG_SCSI_SRP_ATTRS is not set 531 CONFIG_SCSI_LOWLEVEL=y 532 # CONFIG_ISCSI_TCP is not set 533 + # CONFIG_LIBFC is not set 534 # CONFIG_SCSI_DEBUG is not set 535 # CONFIG_SCSI_DH is not set 536 # CONFIG_ATA is not set ··· 541 # CONFIG_EQUALIZER is not set 542 # CONFIG_TUN is not set 543 # CONFIG_VETH is not set 544 + CONFIG_PHYLIB=y 545 + 546 + # 547 + # MII PHY device drivers 548 + # 549 + # CONFIG_MARVELL_PHY is not set 550 + # CONFIG_DAVICOM_PHY is not set 551 + # CONFIG_QSEMI_PHY is not set 552 + # CONFIG_LXT_PHY is not set 553 + # CONFIG_CICADA_PHY is not set 554 + # CONFIG_VITESSE_PHY is not set 555 + CONFIG_SMSC_PHY=y 556 + # CONFIG_BROADCOM_PHY is not set 557 + # CONFIG_ICPLUS_PHY is not set 558 + # CONFIG_REALTEK_PHY is not set 559 + # CONFIG_NATIONAL_PHY is not set 560 + # CONFIG_STE10XP is not set 561 + # CONFIG_LSI_ET1011C_PHY is not set 562 + # CONFIG_FIXED_PHY is not set 563 + # CONFIG_MDIO_BITBANG is not set 564 CONFIG_NET_ETHERNET=y 565 CONFIG_MII=y 566 # CONFIG_AX88796 is not set 567 # CONFIG_STNIC is not set 568 # CONFIG_SMC91X is not set 569 + # CONFIG_ENC28J60 is not set 570 + # CONFIG_SMC911X is not set 571 + CONFIG_SMSC911X=y 572 # CONFIG_IBM_NEW_EMAC_ZMII is not set 573 # CONFIG_IBM_NEW_EMAC_RGMII is not set 574 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 630 CONFIG_SERIAL_CORE=y 631 CONFIG_SERIAL_CORE_CONSOLE=y 632 CONFIG_UNIX98_PTYS=y 633 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 634 CONFIG_LEGACY_PTYS=y 635 CONFIG_LEGACY_PTY_COUNT=256 636 # CONFIG_IPMI_HANDLER is not set ··· 637 # CONFIG_R3964 is not set 638 # CONFIG_RAW_DRIVER is not set 639 # CONFIG_TCG_TPM is not set 640 + CONFIG_I2C=y 641 + CONFIG_I2C_BOARDINFO=y 642 + CONFIG_I2C_CHARDEV=y 643 + CONFIG_I2C_HELPER_AUTO=y 644 + 645 + # 646 + # I2C Hardware Bus support 647 + # 648 + 649 + # 650 + # I2C system bus drivers (mostly embedded / system-on-chip) 651 + # 652 + # CONFIG_I2C_GPIO is not set 653 + # CONFIG_I2C_OCORES is not set 654 + CONFIG_I2C_SH_MOBILE=y 655 + # CONFIG_I2C_SIMTEC is not set 656 + 657 + # 658 + # External I2C/SMBus adapter drivers 659 + # 660 + # CONFIG_I2C_PARPORT_LIGHT is not set 661 + # CONFIG_I2C_TAOS_EVM is not set 662 + 663 + # 664 + # Other I2C/SMBus bus drivers 665 + # 666 + # CONFIG_I2C_PCA_PLATFORM is not set 667 + # CONFIG_I2C_STUB is not set 668 + 669 + # 670 + # Miscellaneous I2C Chip support 671 + # 672 + # CONFIG_DS1682 is not set 673 + # CONFIG_AT24 is not set 674 + # CONFIG_SENSORS_EEPROM is not set 675 + # CONFIG_SENSORS_PCF8574 is not set 676 + # CONFIG_PCF8575 is not set 677 + # CONFIG_SENSORS_PCA9539 is not set 678 + # CONFIG_SENSORS_PCF8591 is not set 679 + # CONFIG_SENSORS_MAX6875 is not set 680 + # CONFIG_SENSORS_TSL2550 is not set 681 + # CONFIG_I2C_DEBUG_CORE is not set 682 + # CONFIG_I2C_DEBUG_ALGO is not set 683 + # CONFIG_I2C_DEBUG_BUS is not set 684 + # CONFIG_I2C_DEBUG_CHIP is not set 685 + CONFIG_SPI=y 686 + CONFIG_SPI_MASTER=y 687 + 688 + # 689 + # SPI Master Controller Drivers 690 + # 691 + CONFIG_SPI_BITBANG=y 692 + CONFIG_SPI_GPIO=y 693 + # CONFIG_SPI_SH_SCI is not set 694 + 695 + # 696 + # SPI Protocol Masters 697 + # 698 + # CONFIG_SPI_AT25 is not set 699 + # CONFIG_SPI_SPIDEV is not set 700 + # CONFIG_SPI_TLE62X0 is not set 701 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 702 + CONFIG_GPIOLIB=y 703 + # CONFIG_GPIO_SYSFS is not set 704 + 705 + # 706 + # Memory mapped GPIO expanders: 707 + # 708 + 709 + # 710 + # I2C GPIO expanders: 711 + # 712 + # CONFIG_GPIO_MAX732X is not set 713 + # CONFIG_GPIO_PCA953X is not set 714 + # CONFIG_GPIO_PCF857X is not set 715 + 716 + # 717 + # PCI GPIO expanders: 718 + # 719 + 720 + # 721 + # SPI GPIO expanders: 722 + # 723 + # CONFIG_GPIO_MAX7301 is not set 724 + # CONFIG_GPIO_MCP23S08 is not set 725 # CONFIG_W1 is not set 726 # CONFIG_POWER_SUPPLY is not set 727 # CONFIG_HWMON is not set 728 # CONFIG_THERMAL is not set 729 # CONFIG_THERMAL_HWMON is not set 730 # CONFIG_WATCHDOG is not set 731 + CONFIG_SSB_POSSIBLE=y 732 733 # 734 # Sonics Silicon Backplane 735 # 736 # CONFIG_SSB is not set 737 738 # ··· 658 # CONFIG_MFD_CORE is not set 659 # CONFIG_MFD_SM501 is not set 660 # CONFIG_HTC_PASIC3 is not set 661 + # CONFIG_TPS65010 is not set 662 + # CONFIG_TWL4030_CORE is not set 663 # CONFIG_MFD_TMIO is not set 664 + # CONFIG_PMIC_DA903X is not set 665 # CONFIG_MFD_WM8400 is not set 666 + # CONFIG_MFD_WM8350_I2C is not set 667 + # CONFIG_REGULATOR is not set 668 669 # 670 # Multimedia devices ··· 668 # 669 # Multimedia core support 670 # 671 + CONFIG_VIDEO_DEV=y 672 + CONFIG_VIDEO_V4L2_COMMON=y 673 + # CONFIG_VIDEO_ALLOW_V4L1 is not set 674 + CONFIG_VIDEO_V4L1_COMPAT=y 675 # CONFIG_DVB_CORE is not set 676 + CONFIG_VIDEO_MEDIA=y 677 678 # 679 # Multimedia drivers 680 # 681 + # CONFIG_MEDIA_ATTACH is not set 682 + CONFIG_MEDIA_TUNER=y 683 + # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set 684 + CONFIG_MEDIA_TUNER_SIMPLE=y 685 + CONFIG_MEDIA_TUNER_TDA8290=y 686 + CONFIG_MEDIA_TUNER_TDA9887=y 687 + CONFIG_MEDIA_TUNER_TEA5761=y 688 + CONFIG_MEDIA_TUNER_TEA5767=y 689 + CONFIG_MEDIA_TUNER_MT20XX=y 690 + CONFIG_MEDIA_TUNER_XC2028=y 691 + CONFIG_MEDIA_TUNER_XC5000=y 692 + CONFIG_VIDEO_V4L2=y 693 + CONFIG_VIDEOBUF_GEN=y 694 + CONFIG_VIDEOBUF_DMA_CONTIG=y 695 + CONFIG_VIDEO_CAPTURE_DRIVERS=y 696 + # CONFIG_VIDEO_ADV_DEBUG is not set 697 + # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set 698 + CONFIG_VIDEO_HELPER_CHIPS_AUTO=y 699 + # CONFIG_VIDEO_VIVI is not set 700 + # CONFIG_VIDEO_SAA5246A is not set 701 + # CONFIG_VIDEO_SAA5249 is not set 702 + CONFIG_SOC_CAMERA=y 703 + # CONFIG_SOC_CAMERA_MT9M001 is not set 704 + # CONFIG_SOC_CAMERA_MT9M111 is not set 705 + # CONFIG_SOC_CAMERA_MT9T031 is not set 706 + # CONFIG_SOC_CAMERA_MT9V022 is not set 707 + # CONFIG_SOC_CAMERA_TW9910 is not set 708 + CONFIG_SOC_CAMERA_PLATFORM=y 709 + # CONFIG_SOC_CAMERA_OV772X is not set 710 + CONFIG_VIDEO_SH_MOBILE_CEU=y 711 + # CONFIG_RADIO_ADAPTERS is not set 712 # CONFIG_DAB is not set 713 714 # ··· 682 # 683 # CONFIG_VGASTATE is not set 684 # CONFIG_VIDEO_OUTPUT_CONTROL is not set 685 + CONFIG_FB=y 686 + # CONFIG_FIRMWARE_EDID is not set 687 + # CONFIG_FB_DDC is not set 688 + # CONFIG_FB_BOOT_VESA_SUPPORT is not set 689 + # CONFIG_FB_CFB_FILLRECT is not set 690 + # CONFIG_FB_CFB_COPYAREA is not set 691 + # CONFIG_FB_CFB_IMAGEBLIT is not set 692 + # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 693 + CONFIG_FB_SYS_FILLRECT=y 694 + CONFIG_FB_SYS_COPYAREA=y 695 + CONFIG_FB_SYS_IMAGEBLIT=y 696 + # CONFIG_FB_FOREIGN_ENDIAN is not set 697 + CONFIG_FB_SYS_FOPS=y 698 + CONFIG_FB_DEFERRED_IO=y 699 + # CONFIG_FB_SVGALIB is not set 700 + # CONFIG_FB_MACMODES is not set 701 + # CONFIG_FB_BACKLIGHT is not set 702 + # CONFIG_FB_MODE_HELPERS is not set 703 + # CONFIG_FB_TILEBLITTING is not set 704 + 705 + # 706 + # Frame buffer hardware drivers 707 + # 708 + # CONFIG_FB_S1D13XXX is not set 709 + CONFIG_FB_SH_MOBILE_LCDC=y 710 + # CONFIG_FB_VIRTUAL is not set 711 + # CONFIG_FB_METRONOME is not set 712 + # CONFIG_FB_MB862XX is not set 713 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 714 715 # ··· 694 # Console display driver support 695 # 696 CONFIG_DUMMY_CONSOLE=y 697 + CONFIG_FRAMEBUFFER_CONSOLE=y 698 + # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set 699 + # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set 700 + # CONFIG_FONTS is not set 701 + CONFIG_FONT_8x8=y 702 + CONFIG_FONT_8x16=y 703 + CONFIG_LOGO=y 704 + CONFIG_LOGO_LINUX_MONO=y 705 + CONFIG_LOGO_LINUX_VGA16=y 706 + CONFIG_LOGO_LINUX_CLUT224=y 707 + CONFIG_LOGO_SUPERH_MONO=y 708 + CONFIG_LOGO_SUPERH_VGA16=y 709 + CONFIG_LOGO_SUPERH_CLUT224=y 710 # CONFIG_SOUND is not set 711 # CONFIG_HID_SUPPORT is not set 712 # CONFIG_USB_SUPPORT is not set 713 + CONFIG_MMC=y 714 + # CONFIG_MMC_DEBUG is not set 715 + # CONFIG_MMC_UNSAFE_RESUME is not set 716 + 717 + # 718 + # MMC/SD/SDIO Card Drivers 719 + # 720 + CONFIG_MMC_BLOCK=y 721 + CONFIG_MMC_BLOCK_BOUNCE=y 722 + # CONFIG_SDIO_UART is not set 723 + # CONFIG_MMC_TEST is not set 724 + 725 + # 726 + # MMC/SD/SDIO Host Controller Drivers 727 + # 728 + # CONFIG_MMC_SDHCI is not set 729 + CONFIG_MMC_SPI=y 730 # CONFIG_MEMSTICK is not set 731 # CONFIG_NEW_LEDS is not set 732 # CONFIG_ACCESSIBILITY is not set 733 + CONFIG_RTC_LIB=y 734 + CONFIG_RTC_CLASS=y 735 + CONFIG_RTC_HCTOSYS=y 736 + CONFIG_RTC_HCTOSYS_DEVICE="rtc0" 737 + # CONFIG_RTC_DEBUG is not set 738 + 739 + # 740 + # RTC interfaces 741 + # 742 + CONFIG_RTC_INTF_SYSFS=y 743 + CONFIG_RTC_INTF_PROC=y 744 + CONFIG_RTC_INTF_DEV=y 745 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 746 + # CONFIG_RTC_DRV_TEST is not set 747 + 748 + # 749 + # I2C RTC drivers 750 + # 751 + # CONFIG_RTC_DRV_DS1307 is not set 752 + # CONFIG_RTC_DRV_DS1374 is not set 753 + # CONFIG_RTC_DRV_DS1672 is not set 754 + # CONFIG_RTC_DRV_MAX6900 is not set 755 + # CONFIG_RTC_DRV_RS5C372 is not set 756 + # CONFIG_RTC_DRV_ISL1208 is not set 757 + # CONFIG_RTC_DRV_X1205 is not set 758 + CONFIG_RTC_DRV_PCF8563=y 759 + # CONFIG_RTC_DRV_PCF8583 is not set 760 + # CONFIG_RTC_DRV_M41T80 is not set 761 + # CONFIG_RTC_DRV_S35390A is not set 762 + # CONFIG_RTC_DRV_FM3130 is not set 763 + # CONFIG_RTC_DRV_RX8581 is not set 764 + 765 + # 766 + # SPI RTC drivers 767 + # 768 + # CONFIG_RTC_DRV_M41T94 is not set 769 + # CONFIG_RTC_DRV_DS1305 is not set 770 + # CONFIG_RTC_DRV_DS1390 is not set 771 + # CONFIG_RTC_DRV_MAX6902 is not set 772 + # CONFIG_RTC_DRV_R9701 is not set 773 + # CONFIG_RTC_DRV_RS5C348 is not set 774 + # CONFIG_RTC_DRV_DS3234 is not set 775 + 776 + # 777 + # Platform RTC drivers 778 + # 779 + # CONFIG_RTC_DRV_DS1286 is not set 780 + # CONFIG_RTC_DRV_DS1511 is not set 781 + # CONFIG_RTC_DRV_DS1553 is not set 782 + # CONFIG_RTC_DRV_DS1742 is not set 783 + # CONFIG_RTC_DRV_STK17TA8 is not set 784 + # CONFIG_RTC_DRV_M48T86 is not set 785 + # CONFIG_RTC_DRV_M48T35 is not set 786 + # CONFIG_RTC_DRV_M48T59 is not set 787 + # CONFIG_RTC_DRV_BQ4802 is not set 788 + # CONFIG_RTC_DRV_V3020 is not set 789 + 790 + # 791 + # on-CPU RTC drivers 792 + # 793 + # CONFIG_RTC_DRV_SH is not set 794 # CONFIG_DMADEVICES is not set 795 CONFIG_UIO=y 796 # CONFIG_UIO_PDRV is not set ··· 768 # CONFIG_HUGETLBFS is not set 769 # CONFIG_HUGETLB_PAGE is not set 770 # CONFIG_CONFIGFS_FS is not set 771 + CONFIG_MISC_FILESYSTEMS=y 772 # CONFIG_ADFS_FS is not set 773 # CONFIG_AFFS_FS is not set 774 # CONFIG_HFS_FS is not set ··· 780 # CONFIG_BFS_FS is not set 781 # CONFIG_EFS_FS is not set 782 # CONFIG_JFFS2_FS is not set 783 + # CONFIG_UBIFS_FS is not set 784 # CONFIG_CRAMFS is not set 785 # CONFIG_VXFS_FS is not set 786 # CONFIG_MINIX_FS is not set ··· 878 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 879 # CONFIG_LATENCYTOP is not set 880 CONFIG_SYSCTL_SYSCALL_CHECK=y 881 + CONFIG_HAVE_FUNCTION_TRACER=y 882 + CONFIG_HAVE_DYNAMIC_FTRACE=y 883 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 884 + 885 + # 886 + # Tracers 887 + # 888 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 889 # CONFIG_SAMPLES is not set 890 + CONFIG_HAVE_ARCH_KGDB=y 891 # CONFIG_SH_STANDARD_BIOS is not set 892 # CONFIG_EARLY_SCIF_CONSOLE is not set 893 + # CONFIG_MORE_COMPILE_OPTIONS is not set 894 895 # 896 # Security options ··· 900 # 901 # CONFIG_CRYPTO_FIPS is not set 902 CONFIG_CRYPTO_ALGAPI=y 903 + CONFIG_CRYPTO_ALGAPI2=y 904 + CONFIG_CRYPTO_AEAD2=y 905 CONFIG_CRYPTO_BLKCIPHER=y 906 + CONFIG_CRYPTO_BLKCIPHER2=y 907 + CONFIG_CRYPTO_HASH2=y 908 + CONFIG_CRYPTO_RNG2=y 909 CONFIG_CRYPTO_MANAGER=y 910 + CONFIG_CRYPTO_MANAGER2=y 911 # CONFIG_CRYPTO_GF128MUL is not set 912 # CONFIG_CRYPTO_NULL is not set 913 # CONFIG_CRYPTO_CRYPTD is not set ··· 987 # Library routines 988 # 989 CONFIG_BITREVERSE=y 990 + CONFIG_GENERIC_FIND_LAST_BIT=y 991 # CONFIG_CRC_CCITT is not set 992 # CONFIG_CRC16 is not set 993 CONFIG_CRC_T10DIF=y 994 + CONFIG_CRC_ITU_T=y 995 CONFIG_CRC32=y 996 + CONFIG_CRC7=y 997 # CONFIG_LIBCRC32C is not set 998 CONFIG_PLIST=y 999 CONFIG_HAS_IOMEM=y
+40 -20
arch/sh/configs/dreamcast_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:18:02 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 80 # CONFIG_SLUB is not set 81 # CONFIG_SLOB is not set 82 CONFIG_PROFILING=y 83 - # CONFIG_MARKERS is not set 84 # CONFIG_OPROFILE is not set 85 CONFIG_HAVE_OPROFILE=y 86 # CONFIG_KPROBES is not set ··· 91 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 92 CONFIG_SLABINFO=y 93 CONFIG_RT_MUTEXES=y 94 - # CONFIG_TINY_SHMEM is not set 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 # CONFIG_MODULE_FORCE_UNLOAD is not set 99 # CONFIG_MODVERSIONS is not set 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 101 - CONFIG_KMOD=y 102 CONFIG_BLOCK=y 103 # CONFIG_LBD is not set 104 # CONFIG_BLK_DEV_IO_TRACE is not set 105 - # CONFIG_LSF is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH4=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 198 CONFIG_SPARSEMEM_STATIC=y 199 CONFIG_PAGEFLAGS_EXTENDED=y 200 CONFIG_SPLIT_PTLOCK_CPUS=4 201 - # CONFIG_RESOURCES_64BIT is not set 202 # CONFIG_PHYS_ADDR_T_64BIT is not set 203 CONFIG_ZONE_DMA_FLAG=0 204 CONFIG_NR_QUICK=2 ··· 292 # CONFIG_PREEMPT_NONE is not set 293 # CONFIG_PREEMPT_VOLUNTARY is not set 294 CONFIG_PREEMPT=y 295 - # CONFIG_PREEMPT_RCU is not set 296 CONFIG_GUSA=y 297 # CONFIG_GUSA_RB is not set 298 ··· 311 CONFIG_PCI=y 312 CONFIG_SH_PCIDMA_NONCOHERENT=y 313 CONFIG_PCI_AUTO=y 314 # CONFIG_ARCH_SUPPORTS_MSI is not set 315 CONFIG_PCI_LEGACY=y 316 # CONFIG_PCCARD is not set ··· 324 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 325 # CONFIG_HAVE_AOUT is not set 326 # CONFIG_BINFMT_MISC is not set 327 CONFIG_NET=y 328 329 # 330 # Networking options 331 # 332 CONFIG_PACKET=y 333 # CONFIG_PACKET_MMAP is not set 334 CONFIG_UNIX=y ··· 388 # CONFIG_ECONET is not set 389 # CONFIG_WAN_ROUTER is not set 390 # CONFIG_NET_SCHED is not set 391 392 # 393 # Network testing ··· 404 # CONFIG_CFG80211 is not set 405 # CONFIG_WIRELESS_OLD_REGULATORY is not set 406 # CONFIG_WIRELESS_EXT is not set 407 # CONFIG_MAC80211 is not set 408 - # CONFIG_IEEE80211 is not set 409 # CONFIG_RFKILL is not set 410 # CONFIG_NET_9P is not set 411 ··· 444 # CONFIG_TIFM_CORE is not set 445 # CONFIG_ENCLOSURE_SERVICES is not set 446 # CONFIG_HP_ILO is not set 447 CONFIG_HAVE_IDE=y 448 # CONFIG_IDE is not set 449 ··· 488 # CONFIG_NET_VENDOR_3COM is not set 489 # CONFIG_SMC91X is not set 490 # CONFIG_SMC911X is not set 491 # CONFIG_NET_TULIP is not set 492 # CONFIG_HP100 is not set 493 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 504 # CONFIG_ADAPTEC_STARFIRE is not set 505 # CONFIG_B44 is not set 506 # CONFIG_FORCEDETH is not set 507 - # CONFIG_EEPRO100 is not set 508 # CONFIG_E100 is not set 509 # CONFIG_FEALNX is not set 510 # CONFIG_NATSEMI is not set ··· 517 # CONFIG_R6040 is not set 518 # CONFIG_SIS900 is not set 519 # CONFIG_EPIC100 is not set 520 # CONFIG_SUNDANCE is not set 521 # CONFIG_TLAN is not set 522 # CONFIG_VIA_RHINE is not set ··· 623 CONFIG_SERIAL_CORE_CONSOLE=y 624 # CONFIG_SERIAL_JSM is not set 625 CONFIG_UNIX98_PTYS=y 626 CONFIG_LEGACY_PTYS=y 627 CONFIG_LEGACY_PTY_COUNT=256 628 # CONFIG_IPMI_HANDLER is not set ··· 656 # 657 # CONFIG_PCIPCWATCHDOG is not set 658 # CONFIG_WDTPCI is not set 659 660 # 661 # Sonics Silicon Backplane 662 # 663 - CONFIG_SSB_POSSIBLE=y 664 # CONFIG_SSB is not set 665 666 # ··· 670 # CONFIG_MFD_SM501 is not set 671 # CONFIG_HTC_PASIC3 is not set 672 # CONFIG_MFD_TMIO is not set 673 - # CONFIG_MFD_WM8400 is not set 674 675 # 676 # Multimedia devices ··· 745 # CONFIG_FB_SH_MOBILE_LCDC is not set 746 # CONFIG_FB_VIRTUAL is not set 747 # CONFIG_FB_METRONOME is not set 748 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 749 750 # ··· 802 # 803 804 # 805 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 806 # 807 # CONFIG_USB_GADGET is not set 808 # CONFIG_MMC is not set 809 # CONFIG_MEMSTICK is not set 810 # CONFIG_NEW_LEDS is not set ··· 862 CONFIG_HUGETLBFS=y 863 CONFIG_HUGETLB_PAGE=y 864 # CONFIG_CONFIGFS_FS is not set 865 - 866 - # 867 - # Miscellaneous filesystems 868 - # 869 # CONFIG_ADFS_FS is not set 870 # CONFIG_AFFS_FS is not set 871 # CONFIG_HFS_FS is not set ··· 913 # CONFIG_DEBUG_MEMORY_INIT is not set 914 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 915 # CONFIG_LATENCYTOP is not set 916 - CONFIG_NOP_TRACER=y 917 - CONFIG_HAVE_FTRACE=y 918 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 919 # CONFIG_SAMPLES is not set 920 # CONFIG_SH_STANDARD_BIOS is not set 921 # CONFIG_EARLY_SCIF_CONSOLE is not set 922 - # CONFIG_SH_KGDB is not set 923 924 # 925 # Security options ··· 941 # 942 # CONFIG_CRYPTO_FIPS is not set 943 # CONFIG_CRYPTO_MANAGER is not set 944 # CONFIG_CRYPTO_GF128MUL is not set 945 # CONFIG_CRYPTO_NULL is not set 946 # CONFIG_CRYPTO_CRYPTD is not set ··· 1025 # Library routines 1026 # 1027 CONFIG_BITREVERSE=y 1028 # CONFIG_CRC_CCITT is not set 1029 # CONFIG_CRC16 is not set 1030 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:54:55 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 CONFIG_PROFILING=y 81 # CONFIG_OPROFILE is not set 82 CONFIG_HAVE_OPROFILE=y 83 # CONFIG_KPROBES is not set ··· 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_RT_MUTEXES=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 # CONFIG_MODULE_FORCE_UNLOAD is not set 99 # CONFIG_MODVERSIONS is not set 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 101 CONFIG_BLOCK=y 102 # CONFIG_LBD is not set 103 # CONFIG_BLK_DEV_IO_TRACE is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 119 # CONFIG_DEFAULT_NOOP is not set 120 CONFIG_DEFAULT_IOSCHED="anticipatory" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 126 # 127 CONFIG_CPU_SH4=y 128 # CONFIG_CPU_SUBTYPE_SH7619 is not set 129 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 130 # CONFIG_CPU_SUBTYPE_SH7203 is not set 131 # CONFIG_CPU_SUBTYPE_SH7206 is not set 132 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 195 CONFIG_SPARSEMEM_STATIC=y 196 CONFIG_PAGEFLAGS_EXTENDED=y 197 CONFIG_SPLIT_PTLOCK_CPUS=4 198 # CONFIG_PHYS_ADDR_T_64BIT is not set 199 CONFIG_ZONE_DMA_FLAG=0 200 CONFIG_NR_QUICK=2 ··· 290 # CONFIG_PREEMPT_NONE is not set 291 # CONFIG_PREEMPT_VOLUNTARY is not set 292 CONFIG_PREEMPT=y 293 CONFIG_GUSA=y 294 # CONFIG_GUSA_RB is not set 295 ··· 310 CONFIG_PCI=y 311 CONFIG_SH_PCIDMA_NONCOHERENT=y 312 CONFIG_PCI_AUTO=y 313 + # CONFIG_PCIEPORTBUS is not set 314 # CONFIG_ARCH_SUPPORTS_MSI is not set 315 CONFIG_PCI_LEGACY=y 316 # CONFIG_PCCARD is not set ··· 322 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 323 # CONFIG_HAVE_AOUT is not set 324 # CONFIG_BINFMT_MISC is not set 325 + 326 + # 327 + # Power management options (EXPERIMENTAL) 328 + # 329 + # CONFIG_PM is not set 330 + # CONFIG_CPU_IDLE is not set 331 CONFIG_NET=y 332 333 # 334 # Networking options 335 # 336 + CONFIG_COMPAT_NET_DEV_OPS=y 337 CONFIG_PACKET=y 338 # CONFIG_PACKET_MMAP is not set 339 CONFIG_UNIX=y ··· 379 # CONFIG_ECONET is not set 380 # CONFIG_WAN_ROUTER is not set 381 # CONFIG_NET_SCHED is not set 382 + # CONFIG_DCB is not set 383 384 # 385 # Network testing ··· 394 # CONFIG_CFG80211 is not set 395 # CONFIG_WIRELESS_OLD_REGULATORY is not set 396 # CONFIG_WIRELESS_EXT is not set 397 + # CONFIG_LIB80211 is not set 398 # CONFIG_MAC80211 is not set 399 # CONFIG_RFKILL is not set 400 # CONFIG_NET_9P is not set 401 ··· 434 # CONFIG_TIFM_CORE is not set 435 # CONFIG_ENCLOSURE_SERVICES is not set 436 # CONFIG_HP_ILO is not set 437 + # CONFIG_C2PORT is not set 438 CONFIG_HAVE_IDE=y 439 # CONFIG_IDE is not set 440 ··· 477 # CONFIG_NET_VENDOR_3COM is not set 478 # CONFIG_SMC91X is not set 479 # CONFIG_SMC911X is not set 480 + # CONFIG_SMSC911X is not set 481 # CONFIG_NET_TULIP is not set 482 # CONFIG_HP100 is not set 483 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 492 # CONFIG_ADAPTEC_STARFIRE is not set 493 # CONFIG_B44 is not set 494 # CONFIG_FORCEDETH is not set 495 # CONFIG_E100 is not set 496 # CONFIG_FEALNX is not set 497 # CONFIG_NATSEMI is not set ··· 506 # CONFIG_R6040 is not set 507 # CONFIG_SIS900 is not set 508 # CONFIG_EPIC100 is not set 509 + # CONFIG_SMSC9420 is not set 510 # CONFIG_SUNDANCE is not set 511 # CONFIG_TLAN is not set 512 # CONFIG_VIA_RHINE is not set ··· 611 CONFIG_SERIAL_CORE_CONSOLE=y 612 # CONFIG_SERIAL_JSM is not set 613 CONFIG_UNIX98_PTYS=y 614 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 615 CONFIG_LEGACY_PTYS=y 616 CONFIG_LEGACY_PTY_COUNT=256 617 # CONFIG_IPMI_HANDLER is not set ··· 643 # 644 # CONFIG_PCIPCWATCHDOG is not set 645 # CONFIG_WDTPCI is not set 646 + CONFIG_SSB_POSSIBLE=y 647 648 # 649 # Sonics Silicon Backplane 650 # 651 # CONFIG_SSB is not set 652 653 # ··· 657 # CONFIG_MFD_SM501 is not set 658 # CONFIG_HTC_PASIC3 is not set 659 # CONFIG_MFD_TMIO is not set 660 + # CONFIG_REGULATOR is not set 661 662 # 663 # Multimedia devices ··· 732 # CONFIG_FB_SH_MOBILE_LCDC is not set 733 # CONFIG_FB_VIRTUAL is not set 734 # CONFIG_FB_METRONOME is not set 735 + # CONFIG_FB_MB862XX is not set 736 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 737 738 # ··· 788 # 789 790 # 791 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 792 # 793 # CONFIG_USB_GADGET is not set 794 + # CONFIG_UWB is not set 795 # CONFIG_MMC is not set 796 # CONFIG_MEMSTICK is not set 797 # CONFIG_NEW_LEDS is not set ··· 847 CONFIG_HUGETLBFS=y 848 CONFIG_HUGETLB_PAGE=y 849 # CONFIG_CONFIGFS_FS is not set 850 + CONFIG_MISC_FILESYSTEMS=y 851 # CONFIG_ADFS_FS is not set 852 # CONFIG_AFFS_FS is not set 853 # CONFIG_HFS_FS is not set ··· 901 # CONFIG_DEBUG_MEMORY_INIT is not set 902 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 903 # CONFIG_LATENCYTOP is not set 904 + CONFIG_HAVE_FUNCTION_TRACER=y 905 + CONFIG_HAVE_DYNAMIC_FTRACE=y 906 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 907 + 908 + # 909 + # Tracers 910 + # 911 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 912 # CONFIG_SAMPLES is not set 913 + CONFIG_HAVE_ARCH_KGDB=y 914 # CONFIG_SH_STANDARD_BIOS is not set 915 # CONFIG_EARLY_SCIF_CONSOLE is not set 916 + # CONFIG_MORE_COMPILE_OPTIONS is not set 917 918 # 919 # Security options ··· 923 # 924 # CONFIG_CRYPTO_FIPS is not set 925 # CONFIG_CRYPTO_MANAGER is not set 926 + # CONFIG_CRYPTO_MANAGER2 is not set 927 # CONFIG_CRYPTO_GF128MUL is not set 928 # CONFIG_CRYPTO_NULL is not set 929 # CONFIG_CRYPTO_CRYPTD is not set ··· 1006 # Library routines 1007 # 1008 CONFIG_BITREVERSE=y 1009 + CONFIG_GENERIC_FIND_LAST_BIT=y 1010 # CONFIG_CRC_CCITT is not set 1011 # CONFIG_CRC16 is not set 1012 # CONFIG_CRC_T10DIF is not set
+8 -10
arch/sh/configs/edosk7705_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc6 4 - # Wed Dec 17 13:53:02 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 64 CONFIG_SLUB=y 65 # CONFIG_SLOB is not set 66 # CONFIG_PROFILING is not set 67 - # CONFIG_MARKERS is not set 68 CONFIG_HAVE_OPROFILE=y 69 CONFIG_HAVE_IOREMAP_PROT=y 70 CONFIG_HAVE_KPROBES=y ··· 71 CONFIG_HAVE_ARCH_TRACEHOOK=y 72 CONFIG_HAVE_CLK=y 73 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 74 - # CONFIG_TINY_SHMEM is not set 75 CONFIG_BASE_SMALL=1 76 # CONFIG_MODULES is not set 77 # CONFIG_BLOCK is not set 78 CONFIG_CLASSIC_RCU=y 79 # CONFIG_FREEZER is not set 80 81 # ··· 153 CONFIG_PAGEFLAGS_EXTENDED=y 154 CONFIG_SPLIT_PTLOCK_CPUS=4 155 CONFIG_MIGRATION=y 156 - # CONFIG_RESOURCES_64BIT is not set 157 # CONFIG_PHYS_ADDR_T_64BIT is not set 158 CONFIG_ZONE_DMA_FLAG=0 159 CONFIG_NR_QUICK=2 ··· 363 # CONFIG_DMADEVICES is not set 364 # CONFIG_UIO is not set 365 # CONFIG_STAGING is not set 366 - CONFIG_STAGING_EXCLUDE_BUILD=y 367 368 # 369 # File systems ··· 382 # CONFIG_TMPFS is not set 383 # CONFIG_HUGETLBFS is not set 384 # CONFIG_HUGETLB_PAGE is not set 385 - 386 - # 387 - # Miscellaneous filesystems 388 - # 389 # CONFIG_NLS is not set 390 391 # ··· 423 # 424 # Library routines 425 # 426 # CONFIG_CRC_CCITT is not set 427 # CONFIG_CRC16 is not set 428 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:55:29 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 64 CONFIG_SLUB=y 65 # CONFIG_SLOB is not set 66 # CONFIG_PROFILING is not set 67 CONFIG_HAVE_OPROFILE=y 68 CONFIG_HAVE_IOREMAP_PROT=y 69 CONFIG_HAVE_KPROBES=y ··· 72 CONFIG_HAVE_ARCH_TRACEHOOK=y 73 CONFIG_HAVE_CLK=y 74 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 75 CONFIG_BASE_SMALL=1 76 # CONFIG_MODULES is not set 77 # CONFIG_BLOCK is not set 78 CONFIG_CLASSIC_RCU=y 79 + # CONFIG_TREE_RCU is not set 80 + # CONFIG_PREEMPT_RCU is not set 81 + # CONFIG_TREE_RCU_TRACE is not set 82 + # CONFIG_PREEMPT_RCU_TRACE is not set 83 # CONFIG_FREEZER is not set 84 85 # ··· 151 CONFIG_PAGEFLAGS_EXTENDED=y 152 CONFIG_SPLIT_PTLOCK_CPUS=4 153 CONFIG_MIGRATION=y 154 # CONFIG_PHYS_ADDR_T_64BIT is not set 155 CONFIG_ZONE_DMA_FLAG=0 156 CONFIG_NR_QUICK=2 ··· 362 # CONFIG_DMADEVICES is not set 363 # CONFIG_UIO is not set 364 # CONFIG_STAGING is not set 365 366 # 367 # File systems ··· 382 # CONFIG_TMPFS is not set 383 # CONFIG_HUGETLBFS is not set 384 # CONFIG_HUGETLB_PAGE is not set 385 + CONFIG_MISC_FILESYSTEMS=y 386 # CONFIG_NLS is not set 387 388 # ··· 426 # 427 # Library routines 428 # 429 + CONFIG_GENERIC_FIND_LAST_BIT=y 430 # CONFIG_CRC_CCITT is not set 431 # CONFIG_CRC16 is not set 432 # CONFIG_CRC_T10DIF is not set
+57 -26
arch/sh/configs/edosk7760_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:20:09 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 61 CONFIG_SYSCTL_SYSCALL=y 62 CONFIG_KALLSYMS=y 63 CONFIG_KALLSYMS_ALL=y 64 # CONFIG_KALLSYMS_EXTRA_PASS is not set 65 CONFIG_HOTPLUG=y 66 CONFIG_PRINTK=y ··· 78 CONFIG_SHMEM=y 79 CONFIG_AIO=y 80 CONFIG_VM_EVENT_COUNTERS=y 81 - CONFIG_PCI_QUIRKS=y 82 CONFIG_SLUB_DEBUG=y 83 # CONFIG_SLAB is not set 84 CONFIG_SLUB=y 85 # CONFIG_SLOB is not set 86 # CONFIG_PROFILING is not set 87 - # CONFIG_MARKERS is not set 88 CONFIG_HAVE_OPROFILE=y 89 # CONFIG_KPROBES is not set 90 CONFIG_HAVE_IOREMAP_PROT=y ··· 93 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 94 CONFIG_SLABINFO=y 95 CONFIG_RT_MUTEXES=y 96 - # CONFIG_TINY_SHMEM is not set 97 CONFIG_BASE_SMALL=0 98 CONFIG_MODULES=y 99 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 CONFIG_MODULE_FORCE_UNLOAD=y 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 - CONFIG_KMOD=y 104 CONFIG_BLOCK=y 105 # CONFIG_LBD is not set 106 # CONFIG_BLK_DEV_IO_TRACE is not set 107 - # CONFIG_LSF is not set 108 # CONFIG_BLK_DEV_BSG is not set 109 # CONFIG_BLK_DEV_INTEGRITY is not set 110 ··· 119 # CONFIG_DEFAULT_NOOP is not set 120 CONFIG_DEFAULT_IOSCHED="cfq" 121 CONFIG_CLASSIC_RCU=y 122 # CONFIG_FREEZER is not set 123 124 # ··· 130 # 131 CONFIG_CPU_SH4=y 132 # CONFIG_CPU_SUBTYPE_SH7619 is not set 133 # CONFIG_CPU_SUBTYPE_SH7203 is not set 134 # CONFIG_CPU_SUBTYPE_SH7206 is not set 135 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 194 CONFIG_SPARSEMEM_STATIC=y 195 CONFIG_PAGEFLAGS_EXTENDED=y 196 CONFIG_SPLIT_PTLOCK_CPUS=4 197 - # CONFIG_RESOURCES_64BIT is not set 198 # CONFIG_PHYS_ADDR_T_64BIT is not set 199 CONFIG_ZONE_DMA_FLAG=0 200 CONFIG_NR_QUICK=2 ··· 274 # CONFIG_PREEMPT_NONE is not set 275 # CONFIG_PREEMPT_VOLUNTARY is not set 276 CONFIG_PREEMPT=y 277 - # CONFIG_PREEMPT_RCU is not set 278 CONFIG_GUSA=y 279 # CONFIG_GUSA_RB is not set 280 ··· 299 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 300 # CONFIG_HAVE_AOUT is not set 301 # CONFIG_BINFMT_MISC is not set 302 CONFIG_NET=y 303 304 # 305 # Networking options 306 # 307 CONFIG_PACKET=y 308 # CONFIG_PACKET_MMAP is not set 309 CONFIG_UNIX=y ··· 361 # CONFIG_ECONET is not set 362 # CONFIG_WAN_ROUTER is not set 363 # CONFIG_NET_SCHED is not set 364 365 # 366 # Network testing ··· 377 # CONFIG_CFG80211 is not set 378 # CONFIG_WIRELESS_OLD_REGULATORY is not set 379 # CONFIG_WIRELESS_EXT is not set 380 # CONFIG_MAC80211 is not set 381 - # CONFIG_IEEE80211 is not set 382 # CONFIG_RFKILL is not set 383 # CONFIG_NET_9P is not set 384 ··· 519 # CONFIG_STNIC is not set 520 CONFIG_SMC91X=y 521 # CONFIG_SMC911X is not set 522 # CONFIG_IBM_NEW_EMAC_ZMII is not set 523 # CONFIG_IBM_NEW_EMAC_RGMII is not set 524 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 602 CONFIG_SERIAL_CORE=y 603 CONFIG_SERIAL_CORE_CONSOLE=y 604 CONFIG_UNIX98_PTYS=y 605 CONFIG_LEGACY_PTYS=y 606 CONFIG_LEGACY_PTY_COUNT=256 607 # CONFIG_IPMI_HANDLER is not set ··· 662 # CONFIG_THERMAL is not set 663 # CONFIG_THERMAL_HWMON is not set 664 # CONFIG_WATCHDOG is not set 665 666 # 667 # Sonics Silicon Backplane 668 # 669 - CONFIG_SSB_POSSIBLE=y 670 # CONFIG_SSB is not set 671 672 # ··· 675 # CONFIG_MFD_CORE is not set 676 # CONFIG_MFD_SM501 is not set 677 # CONFIG_HTC_PASIC3 is not set 678 # CONFIG_MFD_TMIO is not set 679 # CONFIG_MFD_WM8400 is not set 680 # CONFIG_MFD_WM8350_I2C is not set 681 682 # 683 # Multimedia devices ··· 707 # CONFIG_FIRMWARE_EDID is not set 708 # CONFIG_FB_DDC is not set 709 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 710 - CONFIG_FB_CFB_FILLRECT=m 711 - CONFIG_FB_CFB_COPYAREA=m 712 - CONFIG_FB_CFB_IMAGEBLIT=m 713 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 714 - # CONFIG_FB_SYS_FILLRECT is not set 715 - # CONFIG_FB_SYS_COPYAREA is not set 716 - # CONFIG_FB_SYS_IMAGEBLIT is not set 717 # CONFIG_FB_FOREIGN_ENDIAN is not set 718 - # CONFIG_FB_SYS_FOPS is not set 719 # CONFIG_FB_SVGALIB is not set 720 # CONFIG_FB_MACMODES is not set 721 # CONFIG_FB_BACKLIGHT is not set ··· 731 # CONFIG_FB_SH7760 is not set 732 # CONFIG_FB_VIRTUAL is not set 733 # CONFIG_FB_METRONOME is not set 734 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 735 736 # ··· 753 # CONFIG_SND_SEQUENCER is not set 754 # CONFIG_SND_MIXER_OSS is not set 755 # CONFIG_SND_PCM_OSS is not set 756 # CONFIG_SND_DYNAMIC_MINORS is not set 757 # CONFIG_SND_SUPPORT_OLD_API is not set 758 # CONFIG_SND_VERBOSE_PROCFS is not set ··· 770 # 771 # SoC Audio support for SuperH 772 # 773 # CONFIG_SND_SOC_ALL_CODECS is not set 774 # CONFIG_SOUND_PRIME is not set 775 # CONFIG_HID_SUPPORT is not set ··· 841 # CONFIG_HUGETLBFS is not set 842 # CONFIG_HUGETLB_PAGE is not set 843 # CONFIG_CONFIGFS_FS is not set 844 - 845 - # 846 - # Miscellaneous filesystems 847 - # 848 # CONFIG_ADFS_FS is not set 849 # CONFIG_AFFS_FS is not set 850 # CONFIG_HFS_FS is not set ··· 965 # CONFIG_DEBUG_MEMORY_INIT is not set 966 # CONFIG_DEBUG_LIST is not set 967 # CONFIG_DEBUG_SG is not set 968 # CONFIG_FRAME_POINTER is not set 969 # CONFIG_RCU_TORTURE_TEST is not set 970 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 974 # CONFIG_FAULT_INJECTION is not set 975 # CONFIG_LATENCYTOP is not set 976 CONFIG_SYSCTL_SYSCALL_CHECK=y 977 - CONFIG_NOP_TRACER=y 978 - CONFIG_HAVE_FTRACE=y 979 - # CONFIG_FTRACE is not set 980 # CONFIG_IRQSOFF_TRACER is not set 981 # CONFIG_PREEMPT_TRACER is not set 982 # CONFIG_SCHED_TRACER is not set 983 # CONFIG_CONTEXT_SWITCH_TRACER is not set 984 # CONFIG_BOOT_TRACER is not set 985 # CONFIG_STACK_TRACER is not set 986 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 987 # CONFIG_SAMPLES is not set 988 # CONFIG_SH_STANDARD_BIOS is not set 989 CONFIG_EARLY_SCIF_CONSOLE=y 990 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 ··· 1002 # CONFIG_DEBUG_STACK_USAGE is not set 1003 # CONFIG_4KSTACKS is not set 1004 # CONFIG_IRQSTACKS is not set 1005 - # CONFIG_SH_KGDB is not set 1006 1007 # 1008 # Security options ··· 1020 # 1021 # CONFIG_CRYPTO_FIPS is not set 1022 CONFIG_CRYPTO_ALGAPI=y 1023 # CONFIG_CRYPTO_MANAGER is not set 1024 # CONFIG_CRYPTO_GF128MUL is not set 1025 # CONFIG_CRYPTO_NULL is not set 1026 # CONFIG_CRYPTO_CRYPTD is not set ··· 1107 # Library routines 1108 # 1109 CONFIG_BITREVERSE=y 1110 # CONFIG_CRC_CCITT is not set 1111 # CONFIG_CRC16 is not set 1112 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:55:48 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 59 CONFIG_SYSCTL_SYSCALL=y 60 CONFIG_KALLSYMS=y 61 CONFIG_KALLSYMS_ALL=y 62 + CONFIG_KALLSYMS_STRIP_GENERATED=y 63 # CONFIG_KALLSYMS_EXTRA_PASS is not set 64 CONFIG_HOTPLUG=y 65 CONFIG_PRINTK=y ··· 75 CONFIG_SHMEM=y 76 CONFIG_AIO=y 77 CONFIG_VM_EVENT_COUNTERS=y 78 CONFIG_SLUB_DEBUG=y 79 # CONFIG_SLAB is not set 80 CONFIG_SLUB=y 81 # CONFIG_SLOB is not set 82 # CONFIG_PROFILING is not set 83 CONFIG_HAVE_OPROFILE=y 84 # CONFIG_KPROBES is not set 85 CONFIG_HAVE_IOREMAP_PROT=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 CONFIG_MODULE_FORCE_UNLOAD=y 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 121 # CONFIG_DEFAULT_NOOP is not set 122 CONFIG_DEFAULT_IOSCHED="cfq" 123 CONFIG_CLASSIC_RCU=y 124 + # CONFIG_TREE_RCU is not set 125 + # CONFIG_PREEMPT_RCU is not set 126 + # CONFIG_TREE_RCU_TRACE is not set 127 + # CONFIG_PREEMPT_RCU_TRACE is not set 128 # CONFIG_FREEZER is not set 129 130 # ··· 128 # 129 CONFIG_CPU_SH4=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 132 # CONFIG_CPU_SUBTYPE_SH7203 is not set 133 # CONFIG_CPU_SUBTYPE_SH7206 is not set 134 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 191 CONFIG_SPARSEMEM_STATIC=y 192 CONFIG_PAGEFLAGS_EXTENDED=y 193 CONFIG_SPLIT_PTLOCK_CPUS=4 194 # CONFIG_PHYS_ADDR_T_64BIT is not set 195 CONFIG_ZONE_DMA_FLAG=0 196 CONFIG_NR_QUICK=2 ··· 272 # CONFIG_PREEMPT_NONE is not set 273 # CONFIG_PREEMPT_VOLUNTARY is not set 274 CONFIG_PREEMPT=y 275 CONFIG_GUSA=y 276 # CONFIG_GUSA_RB is not set 277 ··· 298 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 299 # CONFIG_HAVE_AOUT is not set 300 # CONFIG_BINFMT_MISC is not set 301 + 302 + # 303 + # Power management options (EXPERIMENTAL) 304 + # 305 + # CONFIG_PM is not set 306 + # CONFIG_CPU_IDLE is not set 307 CONFIG_NET=y 308 309 # 310 # Networking options 311 # 312 + CONFIG_COMPAT_NET_DEV_OPS=y 313 CONFIG_PACKET=y 314 # CONFIG_PACKET_MMAP is not set 315 CONFIG_UNIX=y ··· 353 # CONFIG_ECONET is not set 354 # CONFIG_WAN_ROUTER is not set 355 # CONFIG_NET_SCHED is not set 356 + # CONFIG_DCB is not set 357 358 # 359 # Network testing ··· 368 # CONFIG_CFG80211 is not set 369 # CONFIG_WIRELESS_OLD_REGULATORY is not set 370 # CONFIG_WIRELESS_EXT is not set 371 + # CONFIG_LIB80211 is not set 372 # CONFIG_MAC80211 is not set 373 # CONFIG_RFKILL is not set 374 # CONFIG_NET_9P is not set 375 ··· 510 # CONFIG_STNIC is not set 511 CONFIG_SMC91X=y 512 # CONFIG_SMC911X is not set 513 + # CONFIG_SMSC911X is not set 514 # CONFIG_IBM_NEW_EMAC_ZMII is not set 515 # CONFIG_IBM_NEW_EMAC_RGMII is not set 516 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 592 CONFIG_SERIAL_CORE=y 593 CONFIG_SERIAL_CORE_CONSOLE=y 594 CONFIG_UNIX98_PTYS=y 595 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 596 CONFIG_LEGACY_PTYS=y 597 CONFIG_LEGACY_PTY_COUNT=256 598 # CONFIG_IPMI_HANDLER is not set ··· 651 # CONFIG_THERMAL is not set 652 # CONFIG_THERMAL_HWMON is not set 653 # CONFIG_WATCHDOG is not set 654 + CONFIG_SSB_POSSIBLE=y 655 656 # 657 # Sonics Silicon Backplane 658 # 659 # CONFIG_SSB is not set 660 661 # ··· 664 # CONFIG_MFD_CORE is not set 665 # CONFIG_MFD_SM501 is not set 666 # CONFIG_HTC_PASIC3 is not set 667 + # CONFIG_TWL4030_CORE is not set 668 # CONFIG_MFD_TMIO is not set 669 + # CONFIG_PMIC_DA903X is not set 670 # CONFIG_MFD_WM8400 is not set 671 # CONFIG_MFD_WM8350_I2C is not set 672 + # CONFIG_REGULATOR is not set 673 674 # 675 # Multimedia devices ··· 693 # CONFIG_FIRMWARE_EDID is not set 694 # CONFIG_FB_DDC is not set 695 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 696 + # CONFIG_FB_CFB_FILLRECT is not set 697 + # CONFIG_FB_CFB_COPYAREA is not set 698 + # CONFIG_FB_CFB_IMAGEBLIT is not set 699 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 700 + CONFIG_FB_SYS_FILLRECT=m 701 + CONFIG_FB_SYS_COPYAREA=m 702 + CONFIG_FB_SYS_IMAGEBLIT=m 703 # CONFIG_FB_FOREIGN_ENDIAN is not set 704 + CONFIG_FB_SYS_FOPS=m 705 + CONFIG_FB_DEFERRED_IO=y 706 # CONFIG_FB_SVGALIB is not set 707 # CONFIG_FB_MACMODES is not set 708 # CONFIG_FB_BACKLIGHT is not set ··· 716 # CONFIG_FB_SH7760 is not set 717 # CONFIG_FB_VIRTUAL is not set 718 # CONFIG_FB_METRONOME is not set 719 + # CONFIG_FB_MB862XX is not set 720 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 721 722 # ··· 737 # CONFIG_SND_SEQUENCER is not set 738 # CONFIG_SND_MIXER_OSS is not set 739 # CONFIG_SND_PCM_OSS is not set 740 + # CONFIG_SND_HRTIMER is not set 741 # CONFIG_SND_DYNAMIC_MINORS is not set 742 # CONFIG_SND_SUPPORT_OLD_API is not set 743 # CONFIG_SND_VERBOSE_PROCFS is not set ··· 753 # 754 # SoC Audio support for SuperH 755 # 756 + CONFIG_SND_SOC_I2C_AND_SPI=y 757 # CONFIG_SND_SOC_ALL_CODECS is not set 758 # CONFIG_SOUND_PRIME is not set 759 # CONFIG_HID_SUPPORT is not set ··· 823 # CONFIG_HUGETLBFS is not set 824 # CONFIG_HUGETLB_PAGE is not set 825 # CONFIG_CONFIGFS_FS is not set 826 + CONFIG_MISC_FILESYSTEMS=y 827 # CONFIG_ADFS_FS is not set 828 # CONFIG_AFFS_FS is not set 829 # CONFIG_HFS_FS is not set ··· 950 # CONFIG_DEBUG_MEMORY_INIT is not set 951 # CONFIG_DEBUG_LIST is not set 952 # CONFIG_DEBUG_SG is not set 953 + # CONFIG_DEBUG_NOTIFIERS is not set 954 # CONFIG_FRAME_POINTER is not set 955 # CONFIG_RCU_TORTURE_TEST is not set 956 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 958 # CONFIG_FAULT_INJECTION is not set 959 # CONFIG_LATENCYTOP is not set 960 CONFIG_SYSCTL_SYSCALL_CHECK=y 961 + CONFIG_HAVE_FUNCTION_TRACER=y 962 + CONFIG_HAVE_DYNAMIC_FTRACE=y 963 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 964 + 965 + # 966 + # Tracers 967 + # 968 + # CONFIG_FUNCTION_TRACER is not set 969 # CONFIG_IRQSOFF_TRACER is not set 970 # CONFIG_PREEMPT_TRACER is not set 971 # CONFIG_SCHED_TRACER is not set 972 # CONFIG_CONTEXT_SWITCH_TRACER is not set 973 # CONFIG_BOOT_TRACER is not set 974 + # CONFIG_TRACE_BRANCH_PROFILING is not set 975 # CONFIG_STACK_TRACER is not set 976 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 977 # CONFIG_SAMPLES is not set 978 + CONFIG_HAVE_ARCH_KGDB=y 979 + # CONFIG_KGDB is not set 980 # CONFIG_SH_STANDARD_BIOS is not set 981 CONFIG_EARLY_SCIF_CONSOLE=y 982 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 ··· 978 # CONFIG_DEBUG_STACK_USAGE is not set 979 # CONFIG_4KSTACKS is not set 980 # CONFIG_IRQSTACKS is not set 981 + CONFIG_DUMP_CODE=y 982 + # CONFIG_SH_NO_BSS_INIT is not set 983 + # CONFIG_MORE_COMPILE_OPTIONS is not set 984 985 # 986 # Security options ··· 994 # 995 # CONFIG_CRYPTO_FIPS is not set 996 CONFIG_CRYPTO_ALGAPI=y 997 + CONFIG_CRYPTO_ALGAPI2=y 998 + CONFIG_CRYPTO_HASH=y 999 + CONFIG_CRYPTO_HASH2=y 1000 # CONFIG_CRYPTO_MANAGER is not set 1001 + # CONFIG_CRYPTO_MANAGER2 is not set 1002 # CONFIG_CRYPTO_GF128MUL is not set 1003 # CONFIG_CRYPTO_NULL is not set 1004 # CONFIG_CRYPTO_CRYPTD is not set ··· 1077 # Library routines 1078 # 1079 CONFIG_BITREVERSE=y 1080 + CONFIG_GENERIC_FIND_LAST_BIT=y 1081 # CONFIG_CRC_CCITT is not set 1082 # CONFIG_CRC16 is not set 1083 # CONFIG_CRC_T10DIF is not set
+39 -49
arch/sh/configs/hp6xx_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:23:53 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 - CONFIG_SYS_SUPPORTS_PM=y 20 CONFIG_SYS_SUPPORTS_APM_EMULATION=y 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y ··· 71 CONFIG_SHMEM=y 72 CONFIG_AIO=y 73 CONFIG_VM_EVENT_COUNTERS=y 74 - CONFIG_PCI_QUIRKS=y 75 CONFIG_SLAB=y 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 - # CONFIG_MARKERS is not set 80 CONFIG_HAVE_OPROFILE=y 81 CONFIG_HAVE_IOREMAP_PROT=y 82 CONFIG_HAVE_KPROBES=y ··· 84 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 85 CONFIG_SLABINFO=y 86 CONFIG_RT_MUTEXES=y 87 - # CONFIG_TINY_SHMEM is not set 88 CONFIG_BASE_SMALL=0 89 # CONFIG_MODULES is not set 90 CONFIG_BLOCK=y 91 # CONFIG_LBD is not set 92 # CONFIG_BLK_DEV_IO_TRACE is not set 93 - # CONFIG_LSF is not set 94 # CONFIG_BLK_DEV_BSG is not set 95 # CONFIG_BLK_DEV_INTEGRITY is not set 96 ··· 105 # CONFIG_DEFAULT_NOOP is not set 106 CONFIG_DEFAULT_IOSCHED="anticipatory" 107 CONFIG_CLASSIC_RCU=y 108 CONFIG_FREEZER=y 109 110 # ··· 116 # 117 CONFIG_CPU_SH3=y 118 # CONFIG_CPU_SUBTYPE_SH7619 is not set 119 # CONFIG_CPU_SUBTYPE_SH7203 is not set 120 # CONFIG_CPU_SUBTYPE_SH7206 is not set 121 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 180 CONFIG_SPARSEMEM_STATIC=y 181 CONFIG_PAGEFLAGS_EXTENDED=y 182 CONFIG_SPLIT_PTLOCK_CPUS=4 183 - # CONFIG_RESOURCES_64BIT is not set 184 # CONFIG_PHYS_ADDR_T_64BIT is not set 185 CONFIG_ZONE_DMA_FLAG=0 186 CONFIG_NR_QUICK=2 ··· 237 # 238 CONFIG_HD6446X_SERIES=y 239 CONFIG_HD64461=y 240 - # CONFIG_HD64465 is not set 241 CONFIG_HD64461_IRQ=36 242 CONFIG_HD64461_IOBASE=0xb0000000 243 CONFIG_HD64461_ENABLER=y ··· 275 # 276 # Bus options 277 # 278 - CONFIG_ISA=y 279 # CONFIG_ARCH_SUPPORTS_MSI is not set 280 CONFIG_PCCARD=y 281 # CONFIG_PCMCIA_DEBUG is not set ··· 285 # 286 # PC-card bridges 287 # 288 - # CONFIG_I82365 is not set 289 - # CONFIG_TCIC is not set 290 - CONFIG_PCMCIA_PROBE=y 291 292 # 293 # Executable file formats ··· 297 # 298 # Power management options (EXPERIMENTAL) 299 # 300 - CONFIG_ARCH_SUSPEND_POSSIBLE=y 301 CONFIG_PM=y 302 # CONFIG_PM_DEBUG is not set 303 CONFIG_PM_SLEEP=y 304 CONFIG_SUSPEND=y 305 CONFIG_SUSPEND_FREEZER=y 306 CONFIG_APM_EMULATION=y 307 # CONFIG_NET is not set 308 309 # ··· 322 # CONFIG_SYS_HYPERVISOR is not set 323 # CONFIG_MTD is not set 324 # CONFIG_PARPORT is not set 325 - # CONFIG_PNP is not set 326 CONFIG_BLK_DEV=y 327 # CONFIG_BLK_DEV_COW_COMMON is not set 328 # CONFIG_BLK_DEV_LOOP is not set ··· 331 CONFIG_MISC_DEVICES=y 332 # CONFIG_EEPROM_93CX6 is not set 333 # CONFIG_ENCLOSURE_SERVICES is not set 334 CONFIG_HAVE_IDE=y 335 # CONFIG_IDE is not set 336 ··· 371 # CONFIG_SCSI_SAS_LIBSAS is not set 372 # CONFIG_SCSI_SRP_ATTRS is not set 373 CONFIG_SCSI_LOWLEVEL=y 374 - # CONFIG_SCSI_AHA152X is not set 375 - # CONFIG_SCSI_AIC7XXX_OLD is not set 376 - # CONFIG_SCSI_IN2000 is not set 377 - # CONFIG_SCSI_DTC3280 is not set 378 - # CONFIG_SCSI_FUTURE_DOMAIN is not set 379 - # CONFIG_SCSI_GENERIC_NCR5380 is not set 380 - # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set 381 - # CONFIG_SCSI_NCR53C406A is not set 382 - # CONFIG_SCSI_PAS16 is not set 383 - # CONFIG_SCSI_QLOGIC_FAS is not set 384 - # CONFIG_SCSI_SYM53C416 is not set 385 - # CONFIG_SCSI_T128 is not set 386 # CONFIG_SCSI_DEBUG is not set 387 # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set 388 # CONFIG_SCSI_DH is not set ··· 380 CONFIG_SATA_PMP=y 381 CONFIG_ATA_SFF=y 382 # CONFIG_SATA_MV is not set 383 - # CONFIG_PATA_LEGACY is not set 384 # CONFIG_PATA_PCMCIA is not set 385 - # CONFIG_PATA_QDI is not set 386 - # CONFIG_PATA_WINBOND_VLB is not set 387 CONFIG_PATA_PLATFORM=y 388 # CONFIG_MD is not set 389 # CONFIG_PHONE is not set ··· 420 # CONFIG_TOUCHSCREEN_FUJITSU is not set 421 # CONFIG_TOUCHSCREEN_GUNZE is not set 422 # CONFIG_TOUCHSCREEN_ELO is not set 423 # CONFIG_TOUCHSCREEN_MTOUCH is not set 424 # CONFIG_TOUCHSCREEN_INEXIO is not set 425 # CONFIG_TOUCHSCREEN_MK712 is not set 426 CONFIG_TOUCHSCREEN_HP600=y 427 - # CONFIG_TOUCHSCREEN_HTCPEN is not set 428 # CONFIG_TOUCHSCREEN_PENMOUNT is not set 429 # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 430 # CONFIG_TOUCHSCREEN_TOUCHWIN is not set ··· 466 CONFIG_SERIAL_CORE=y 467 CONFIG_SERIAL_CORE_CONSOLE=y 468 CONFIG_UNIX98_PTYS=y 469 CONFIG_LEGACY_PTYS=y 470 CONFIG_LEGACY_PTY_COUNT=64 471 # CONFIG_IPMI_HANDLER is not set 472 CONFIG_HW_RANDOM=y 473 - # CONFIG_DTLK is not set 474 # CONFIG_R3964 is not set 475 476 # ··· 481 # CONFIG_CARDMAN_4040 is not set 482 # CONFIG_RAW_DRIVER is not set 483 # CONFIG_TCG_TPM is not set 484 - CONFIG_DEVPORT=y 485 # CONFIG_I2C is not set 486 # CONFIG_SPI is not set 487 # CONFIG_W1 is not set ··· 489 # CONFIG_THERMAL is not set 490 # CONFIG_THERMAL_HWMON is not set 491 # CONFIG_WATCHDOG is not set 492 493 # 494 # Sonics Silicon Backplane 495 # 496 - CONFIG_SSB_POSSIBLE=y 497 # CONFIG_SSB is not set 498 499 # ··· 503 # CONFIG_MFD_SM501 is not set 504 # CONFIG_HTC_PASIC3 is not set 505 # CONFIG_MFD_TMIO is not set 506 - # CONFIG_MFD_WM8400 is not set 507 508 # 509 # Multimedia devices ··· 533 CONFIG_FB_CFB_COPYAREA=y 534 CONFIG_FB_CFB_IMAGEBLIT=y 535 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 536 - # CONFIG_FB_SYS_FILLRECT is not set 537 - # CONFIG_FB_SYS_COPYAREA is not set 538 - # CONFIG_FB_SYS_IMAGEBLIT is not set 539 # CONFIG_FB_FOREIGN_ENDIAN is not set 540 - # CONFIG_FB_SYS_FOPS is not set 541 # CONFIG_FB_SVGALIB is not set 542 # CONFIG_FB_MACMODES is not set 543 # CONFIG_FB_BACKLIGHT is not set ··· 553 CONFIG_FB_SH_MOBILE_LCDC=y 554 # CONFIG_FB_VIRTUAL is not set 555 # CONFIG_FB_METRONOME is not set 556 CONFIG_BACKLIGHT_LCD_SUPPORT=y 557 CONFIG_LCD_CLASS_DEVICE=y 558 # CONFIG_LCD_ILI9320 is not set ··· 570 # 571 # Console display driver support 572 # 573 - # CONFIG_MDA_CONSOLE is not set 574 CONFIG_DUMMY_CONSOLE=y 575 CONFIG_FRAMEBUFFER_CONSOLE=y 576 # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set ··· 683 # CONFIG_HUGETLBFS is not set 684 # CONFIG_HUGETLB_PAGE is not set 685 # CONFIG_CONFIGFS_FS is not set 686 - 687 - # 688 - # Miscellaneous filesystems 689 - # 690 # CONFIG_ADFS_FS is not set 691 # CONFIG_AFFS_FS is not set 692 # CONFIG_HFS_FS is not set ··· 764 # CONFIG_DEBUG_MEMORY_INIT is not set 765 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 766 # CONFIG_LATENCYTOP is not set 767 - CONFIG_NOP_TRACER=y 768 - CONFIG_HAVE_FTRACE=y 769 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 770 # CONFIG_SAMPLES is not set 771 # CONFIG_SH_STANDARD_BIOS is not set 772 # CONFIG_EARLY_SCIF_CONSOLE is not set 773 - # CONFIG_SH_KGDB is not set 774 775 # 776 # Security options ··· 792 # 793 # CONFIG_CRYPTO_FIPS is not set 794 CONFIG_CRYPTO_ALGAPI=y 795 - CONFIG_CRYPTO_AEAD=y 796 CONFIG_CRYPTO_BLKCIPHER=y 797 CONFIG_CRYPTO_HASH=y 798 - CONFIG_CRYPTO_RNG=y 799 CONFIG_CRYPTO_MANAGER=y 800 # CONFIG_CRYPTO_GF128MUL is not set 801 # CONFIG_CRYPTO_NULL is not set 802 # CONFIG_CRYPTO_CRYPTD is not set ··· 882 # Library routines 883 # 884 CONFIG_BITREVERSE=y 885 # CONFIG_CRC_CCITT is not set 886 CONFIG_CRC16=y 887 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:56:55 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + CONFIG_ARCH_SUSPEND_POSSIBLE=y 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_APM_EMULATION=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 70 CONFIG_SHMEM=y 71 CONFIG_AIO=y 72 CONFIG_VM_EVENT_COUNTERS=y 73 CONFIG_SLAB=y 74 # CONFIG_SLUB is not set 75 # CONFIG_SLOB is not set 76 # CONFIG_PROFILING is not set 77 CONFIG_HAVE_OPROFILE=y 78 CONFIG_HAVE_IOREMAP_PROT=y 79 CONFIG_HAVE_KPROBES=y ··· 85 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 86 CONFIG_SLABINFO=y 87 CONFIG_RT_MUTEXES=y 88 CONFIG_BASE_SMALL=0 89 # CONFIG_MODULES is not set 90 CONFIG_BLOCK=y 91 # CONFIG_LBD is not set 92 # CONFIG_BLK_DEV_IO_TRACE is not set 93 # CONFIG_BLK_DEV_BSG is not set 94 # CONFIG_BLK_DEV_INTEGRITY is not set 95 ··· 108 # CONFIG_DEFAULT_NOOP is not set 109 CONFIG_DEFAULT_IOSCHED="anticipatory" 110 CONFIG_CLASSIC_RCU=y 111 + # CONFIG_TREE_RCU is not set 112 + # CONFIG_PREEMPT_RCU is not set 113 + # CONFIG_TREE_RCU_TRACE is not set 114 + # CONFIG_PREEMPT_RCU_TRACE is not set 115 CONFIG_FREEZER=y 116 117 # ··· 115 # 116 CONFIG_CPU_SH3=y 117 # CONFIG_CPU_SUBTYPE_SH7619 is not set 118 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 119 # CONFIG_CPU_SUBTYPE_SH7203 is not set 120 # CONFIG_CPU_SUBTYPE_SH7206 is not set 121 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 178 CONFIG_SPARSEMEM_STATIC=y 179 CONFIG_PAGEFLAGS_EXTENDED=y 180 CONFIG_SPLIT_PTLOCK_CPUS=4 181 # CONFIG_PHYS_ADDR_T_64BIT is not set 182 CONFIG_ZONE_DMA_FLAG=0 183 CONFIG_NR_QUICK=2 ··· 236 # 237 CONFIG_HD6446X_SERIES=y 238 CONFIG_HD64461=y 239 CONFIG_HD64461_IRQ=36 240 CONFIG_HD64461_IOBASE=0xb0000000 241 CONFIG_HD64461_ENABLER=y ··· 275 # 276 # Bus options 277 # 278 # CONFIG_ARCH_SUPPORTS_MSI is not set 279 CONFIG_PCCARD=y 280 # CONFIG_PCMCIA_DEBUG is not set ··· 286 # 287 # PC-card bridges 288 # 289 290 # 291 # Executable file formats ··· 301 # 302 # Power management options (EXPERIMENTAL) 303 # 304 CONFIG_PM=y 305 # CONFIG_PM_DEBUG is not set 306 CONFIG_PM_SLEEP=y 307 CONFIG_SUSPEND=y 308 CONFIG_SUSPEND_FREEZER=y 309 CONFIG_APM_EMULATION=y 310 + # CONFIG_CPU_IDLE is not set 311 # CONFIG_NET is not set 312 313 # ··· 326 # CONFIG_SYS_HYPERVISOR is not set 327 # CONFIG_MTD is not set 328 # CONFIG_PARPORT is not set 329 CONFIG_BLK_DEV=y 330 # CONFIG_BLK_DEV_COW_COMMON is not set 331 # CONFIG_BLK_DEV_LOOP is not set ··· 336 CONFIG_MISC_DEVICES=y 337 # CONFIG_EEPROM_93CX6 is not set 338 # CONFIG_ENCLOSURE_SERVICES is not set 339 + # CONFIG_C2PORT is not set 340 CONFIG_HAVE_IDE=y 341 # CONFIG_IDE is not set 342 ··· 375 # CONFIG_SCSI_SAS_LIBSAS is not set 376 # CONFIG_SCSI_SRP_ATTRS is not set 377 CONFIG_SCSI_LOWLEVEL=y 378 + # CONFIG_LIBFC is not set 379 # CONFIG_SCSI_DEBUG is not set 380 # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set 381 # CONFIG_SCSI_DH is not set ··· 395 CONFIG_SATA_PMP=y 396 CONFIG_ATA_SFF=y 397 # CONFIG_SATA_MV is not set 398 # CONFIG_PATA_PCMCIA is not set 399 CONFIG_PATA_PLATFORM=y 400 # CONFIG_MD is not set 401 # CONFIG_PHONE is not set ··· 438 # CONFIG_TOUCHSCREEN_FUJITSU is not set 439 # CONFIG_TOUCHSCREEN_GUNZE is not set 440 # CONFIG_TOUCHSCREEN_ELO is not set 441 + # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set 442 # CONFIG_TOUCHSCREEN_MTOUCH is not set 443 # CONFIG_TOUCHSCREEN_INEXIO is not set 444 # CONFIG_TOUCHSCREEN_MK712 is not set 445 CONFIG_TOUCHSCREEN_HP600=y 446 # CONFIG_TOUCHSCREEN_PENMOUNT is not set 447 # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set 448 # CONFIG_TOUCHSCREEN_TOUCHWIN is not set ··· 484 CONFIG_SERIAL_CORE=y 485 CONFIG_SERIAL_CORE_CONSOLE=y 486 CONFIG_UNIX98_PTYS=y 487 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 488 CONFIG_LEGACY_PTYS=y 489 CONFIG_LEGACY_PTY_COUNT=64 490 # CONFIG_IPMI_HANDLER is not set 491 CONFIG_HW_RANDOM=y 492 # CONFIG_R3964 is not set 493 494 # ··· 499 # CONFIG_CARDMAN_4040 is not set 500 # CONFIG_RAW_DRIVER is not set 501 # CONFIG_TCG_TPM is not set 502 # CONFIG_I2C is not set 503 # CONFIG_SPI is not set 504 # CONFIG_W1 is not set ··· 508 # CONFIG_THERMAL is not set 509 # CONFIG_THERMAL_HWMON is not set 510 # CONFIG_WATCHDOG is not set 511 + CONFIG_SSB_POSSIBLE=y 512 513 # 514 # Sonics Silicon Backplane 515 # 516 # CONFIG_SSB is not set 517 518 # ··· 522 # CONFIG_MFD_SM501 is not set 523 # CONFIG_HTC_PASIC3 is not set 524 # CONFIG_MFD_TMIO is not set 525 + # CONFIG_REGULATOR is not set 526 527 # 528 # Multimedia devices ··· 552 CONFIG_FB_CFB_COPYAREA=y 553 CONFIG_FB_CFB_IMAGEBLIT=y 554 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 555 + CONFIG_FB_SYS_FILLRECT=y 556 + CONFIG_FB_SYS_COPYAREA=y 557 + CONFIG_FB_SYS_IMAGEBLIT=y 558 # CONFIG_FB_FOREIGN_ENDIAN is not set 559 + CONFIG_FB_SYS_FOPS=y 560 + CONFIG_FB_DEFERRED_IO=y 561 # CONFIG_FB_SVGALIB is not set 562 # CONFIG_FB_MACMODES is not set 563 # CONFIG_FB_BACKLIGHT is not set ··· 571 CONFIG_FB_SH_MOBILE_LCDC=y 572 # CONFIG_FB_VIRTUAL is not set 573 # CONFIG_FB_METRONOME is not set 574 + # CONFIG_FB_MB862XX is not set 575 CONFIG_BACKLIGHT_LCD_SUPPORT=y 576 CONFIG_LCD_CLASS_DEVICE=y 577 # CONFIG_LCD_ILI9320 is not set ··· 587 # 588 # Console display driver support 589 # 590 CONFIG_DUMMY_CONSOLE=y 591 CONFIG_FRAMEBUFFER_CONSOLE=y 592 # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set ··· 701 # CONFIG_HUGETLBFS is not set 702 # CONFIG_HUGETLB_PAGE is not set 703 # CONFIG_CONFIGFS_FS is not set 704 + CONFIG_MISC_FILESYSTEMS=y 705 # CONFIG_ADFS_FS is not set 706 # CONFIG_AFFS_FS is not set 707 # CONFIG_HFS_FS is not set ··· 785 # CONFIG_DEBUG_MEMORY_INIT is not set 786 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 787 # CONFIG_LATENCYTOP is not set 788 + CONFIG_HAVE_FUNCTION_TRACER=y 789 + CONFIG_HAVE_DYNAMIC_FTRACE=y 790 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 791 + 792 + # 793 + # Tracers 794 + # 795 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 796 # CONFIG_SAMPLES is not set 797 + CONFIG_HAVE_ARCH_KGDB=y 798 # CONFIG_SH_STANDARD_BIOS is not set 799 # CONFIG_EARLY_SCIF_CONSOLE is not set 800 + # CONFIG_MORE_COMPILE_OPTIONS is not set 801 802 # 803 # Security options ··· 807 # 808 # CONFIG_CRYPTO_FIPS is not set 809 CONFIG_CRYPTO_ALGAPI=y 810 + CONFIG_CRYPTO_ALGAPI2=y 811 + CONFIG_CRYPTO_AEAD2=y 812 CONFIG_CRYPTO_BLKCIPHER=y 813 + CONFIG_CRYPTO_BLKCIPHER2=y 814 CONFIG_CRYPTO_HASH=y 815 + CONFIG_CRYPTO_HASH2=y 816 + CONFIG_CRYPTO_RNG2=y 817 CONFIG_CRYPTO_MANAGER=y 818 + CONFIG_CRYPTO_MANAGER2=y 819 # CONFIG_CRYPTO_GF128MUL is not set 820 # CONFIG_CRYPTO_NULL is not set 821 # CONFIG_CRYPTO_CRYPTD is not set ··· 893 # Library routines 894 # 895 CONFIG_BITREVERSE=y 896 + CONFIG_GENERIC_FIND_LAST_BIT=y 897 # CONFIG_CRC_CCITT is not set 898 CONFIG_CRC16=y 899 CONFIG_CRC_T10DIF=y
+53 -23
arch/sh/configs/landisk_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:25:51 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 - # CONFIG_MARKERS is not set 82 CONFIG_HAVE_OPROFILE=y 83 # CONFIG_KPROBES is not set 84 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 - # CONFIG_TINY_SHMEM is not set 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set ··· 95 CONFIG_MODULE_FORCE_UNLOAD=y 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 114 # CONFIG_DEFAULT_NOOP is not set 115 CONFIG_DEFAULT_IOSCHED="anticipatory" 116 CONFIG_CLASSIC_RCU=y 117 # CONFIG_FREEZER is not set 118 119 # ··· 125 # 126 CONFIG_CPU_SH4=y 127 # CONFIG_CPU_SUBTYPE_SH7619 is not set 128 # CONFIG_CPU_SUBTYPE_SH7203 is not set 129 # CONFIG_CPU_SUBTYPE_SH7206 is not set 130 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=y 190 CONFIG_PAGEFLAGS_EXTENDED=y 191 CONFIG_SPLIT_PTLOCK_CPUS=4 192 - # CONFIG_RESOURCES_64BIT is not set 193 # CONFIG_PHYS_ADDR_T_64BIT is not set 194 CONFIG_ZONE_DMA_FLAG=0 195 CONFIG_NR_QUICK=2 ··· 287 CONFIG_SH_PCIDMA_NONCOHERENT=y 288 CONFIG_PCI_AUTO=y 289 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 290 # CONFIG_ARCH_SUPPORTS_MSI is not set 291 CONFIG_PCI_LEGACY=y 292 CONFIG_PCCARD=y ··· 318 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 319 # CONFIG_HAVE_AOUT is not set 320 # CONFIG_BINFMT_MISC is not set 321 CONFIG_NET=y 322 323 # 324 # Networking options 325 # 326 CONFIG_PACKET=y 327 # CONFIG_PACKET_MMAP is not set 328 CONFIG_UNIX=y ··· 411 # CONFIG_ECONET is not set 412 # CONFIG_WAN_ROUTER is not set 413 # CONFIG_NET_SCHED is not set 414 415 # 416 # Network testing ··· 427 # CONFIG_CFG80211 is not set 428 # CONFIG_WIRELESS_OLD_REGULATORY is not set 429 # CONFIG_WIRELESS_EXT is not set 430 # CONFIG_MAC80211 is not set 431 - # CONFIG_IEEE80211 is not set 432 # CONFIG_RFKILL is not set 433 # CONFIG_NET_9P is not set 434 ··· 473 # CONFIG_TIFM_CORE is not set 474 # CONFIG_ENCLOSURE_SERVICES is not set 475 # CONFIG_HP_ILO is not set 476 CONFIG_HAVE_IDE=y 477 CONFIG_IDE=y 478 ··· 490 CONFIG_BLK_DEV_IDECD=y 491 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 492 # CONFIG_BLK_DEV_IDETAPE is not set 493 - CONFIG_BLK_DEV_IDESCSI=y 494 # CONFIG_IDE_TASK_IOCTL is not set 495 CONFIG_IDE_PROC_FS=y 496 ··· 519 # CONFIG_BLK_DEV_JMICRON is not set 520 # CONFIG_BLK_DEV_SC1200 is not set 521 # CONFIG_BLK_DEV_PIIX is not set 522 # CONFIG_BLK_DEV_IT8213 is not set 523 # CONFIG_BLK_DEV_IT821X is not set 524 # CONFIG_BLK_DEV_NS87415 is not set ··· 572 # CONFIG_SCSI_SRP_ATTRS is not set 573 CONFIG_SCSI_LOWLEVEL=y 574 # CONFIG_ISCSI_TCP is not set 575 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 576 # CONFIG_SCSI_3W_9XXX is not set 577 # CONFIG_SCSI_ACARD is not set ··· 586 # CONFIG_MEGARAID_LEGACY is not set 587 # CONFIG_MEGARAID_SAS is not set 588 # CONFIG_SCSI_HPTIOP is not set 589 # CONFIG_SCSI_DMX3191D is not set 590 # CONFIG_SCSI_FUTURE_DOMAIN is not set 591 # CONFIG_SCSI_IPS is not set ··· 649 # CONFIG_NET_VENDOR_3COM is not set 650 # CONFIG_SMC91X is not set 651 # CONFIG_SMC911X is not set 652 # CONFIG_NET_TULIP is not set 653 # CONFIG_HP100 is not set 654 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 665 # CONFIG_ADAPTEC_STARFIRE is not set 666 # CONFIG_B44 is not set 667 # CONFIG_FORCEDETH is not set 668 - # CONFIG_EEPRO100 is not set 669 # CONFIG_E100 is not set 670 # CONFIG_FEALNX is not set 671 # CONFIG_NATSEMI is not set ··· 674 # CONFIG_R6040 is not set 675 # CONFIG_SIS900 is not set 676 # CONFIG_EPIC100 is not set 677 # CONFIG_SUNDANCE is not set 678 # CONFIG_TLAN is not set 679 # CONFIG_VIA_RHINE is not set ··· 703 # CONFIG_JME is not set 704 CONFIG_NETDEV_10000=y 705 # CONFIG_CHELSIO_T1 is not set 706 # CONFIG_CHELSIO_T3 is not set 707 # CONFIG_ENIC is not set 708 # CONFIG_IXGBE is not set ··· 712 # CONFIG_MYRI10GE is not set 713 # CONFIG_NETXEN_NIC is not set 714 # CONFIG_NIU is not set 715 # CONFIG_MLX4_CORE is not set 716 # CONFIG_TEHUTI is not set 717 # CONFIG_BNX2X is not set ··· 809 CONFIG_SERIAL_CORE_CONSOLE=y 810 # CONFIG_SERIAL_JSM is not set 811 CONFIG_UNIX98_PTYS=y 812 CONFIG_LEGACY_PTYS=y 813 CONFIG_LEGACY_PTY_COUNT=256 814 # CONFIG_IPMI_HANDLER is not set ··· 851 # CONFIG_THERMAL is not set 852 # CONFIG_THERMAL_HWMON is not set 853 # CONFIG_WATCHDOG is not set 854 855 # 856 # Sonics Silicon Backplane 857 # 858 - CONFIG_SSB_POSSIBLE=y 859 # CONFIG_SSB is not set 860 861 # ··· 865 # CONFIG_MFD_SM501 is not set 866 # CONFIG_HTC_PASIC3 is not set 867 # CONFIG_MFD_TMIO is not set 868 - # CONFIG_MFD_WM8400 is not set 869 870 # 871 # Multimedia devices ··· 971 CONFIG_HID_A4TECH=m 972 CONFIG_HID_APPLE=m 973 CONFIG_HID_BELKIN=m 974 - CONFIG_HID_BRIGHT=m 975 CONFIG_HID_CHERRY=m 976 CONFIG_HID_CHICONY=m 977 CONFIG_HID_CYPRESS=m 978 - CONFIG_HID_DELL=m 979 CONFIG_HID_EZKEY=m 980 CONFIG_HID_GYRATION=m 981 CONFIG_HID_LOGITECH=m ··· 981 # CONFIG_LOGIRUMBLEPAD2_FF is not set 982 CONFIG_HID_MICROSOFT=m 983 CONFIG_HID_MONTEREY=m 984 CONFIG_HID_PANTHERLORD=m 985 # CONFIG_PANTHERLORD_FF is not set 986 CONFIG_HID_PETALYNX=m 987 CONFIG_HID_SAMSUNG=m 988 CONFIG_HID_SONY=m 989 CONFIG_HID_SUNPLUS=m 990 CONFIG_THRUSTMASTER_FF=m 991 CONFIG_ZEROPLUS_FF=m 992 CONFIG_USB_SUPPORT=y ··· 1010 # CONFIG_USB_OTG_WHITELIST is not set 1011 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1012 CONFIG_USB_MON=y 1013 1014 # 1015 # USB Host Controller Drivers ··· 1029 # CONFIG_USB_UHCI_HCD is not set 1030 # CONFIG_USB_SL811_HCD is not set 1031 # CONFIG_USB_R8A66597_HCD is not set 1032 1033 # 1034 # USB Device Class drivers ··· 1041 # CONFIG_USB_TMC is not set 1042 1043 # 1044 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1045 # 1046 1047 # 1048 - # may also be needed; see USB_STORAGE Help for more information 1049 # 1050 CONFIG_USB_STORAGE=m 1051 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1143 # CONFIG_USB_ISIGHTFW is not set 1144 # CONFIG_USB_VST is not set 1145 # CONFIG_USB_GADGET is not set 1146 # CONFIG_MMC is not set 1147 # CONFIG_MEMSTICK is not set 1148 # CONFIG_NEW_LEDS is not set ··· 1217 # CONFIG_HUGETLBFS is not set 1218 # CONFIG_HUGETLB_PAGE is not set 1219 # CONFIG_CONFIGFS_FS is not set 1220 - 1221 - # 1222 - # Miscellaneous filesystems 1223 - # 1224 # CONFIG_ADFS_FS is not set 1225 # CONFIG_AFFS_FS is not set 1226 # CONFIG_HFS_FS is not set ··· 1324 # CONFIG_DEBUG_MEMORY_INIT is not set 1325 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1326 # CONFIG_LATENCYTOP is not set 1327 - CONFIG_NOP_TRACER=y 1328 - CONFIG_HAVE_FTRACE=y 1329 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1330 # CONFIG_SAMPLES is not set 1331 CONFIG_SH_STANDARD_BIOS=y 1332 # CONFIG_EARLY_SCIF_CONSOLE is not set 1333 # CONFIG_EARLY_PRINTK is not set 1334 - # CONFIG_SH_KGDB is not set 1335 1336 # 1337 # Security options ··· 1353 # 1354 # CONFIG_CRYPTO_FIPS is not set 1355 # CONFIG_CRYPTO_MANAGER is not set 1356 # CONFIG_CRYPTO_GF128MUL is not set 1357 # CONFIG_CRYPTO_NULL is not set 1358 # CONFIG_CRYPTO_CRYPTD is not set ··· 1437 # Library routines 1438 # 1439 CONFIG_BITREVERSE=y 1440 # CONFIG_CRC_CCITT is not set 1441 # CONFIG_CRC16 is not set 1442 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 16:58:46 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 # CONFIG_KPROBES is not set 81 CONFIG_HAVE_IOREMAP_PROT=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 CONFIG_BASE_SMALL=0 91 CONFIG_MODULES=y 92 # CONFIG_MODULE_FORCE_LOAD is not set ··· 95 CONFIG_MODULE_FORCE_UNLOAD=y 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 CONFIG_BLOCK=y 99 # CONFIG_LBD is not set 100 # CONFIG_BLK_DEV_IO_TRACE is not set 101 # CONFIG_BLK_DEV_BSG is not set 102 # CONFIG_BLK_DEV_INTEGRITY is not set 103 ··· 116 # CONFIG_DEFAULT_NOOP is not set 117 CONFIG_DEFAULT_IOSCHED="anticipatory" 118 CONFIG_CLASSIC_RCU=y 119 + # CONFIG_TREE_RCU is not set 120 + # CONFIG_PREEMPT_RCU is not set 121 + # CONFIG_TREE_RCU_TRACE is not set 122 + # CONFIG_PREEMPT_RCU_TRACE is not set 123 # CONFIG_FREEZER is not set 124 125 # ··· 123 # 124 CONFIG_CPU_SH4=y 125 # CONFIG_CPU_SUBTYPE_SH7619 is not set 126 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 186 CONFIG_SPARSEMEM_STATIC=y 187 CONFIG_PAGEFLAGS_EXTENDED=y 188 CONFIG_SPLIT_PTLOCK_CPUS=4 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 285 CONFIG_SH_PCIDMA_NONCOHERENT=y 286 CONFIG_PCI_AUTO=y 287 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 288 + # CONFIG_PCIEPORTBUS is not set 289 # CONFIG_ARCH_SUPPORTS_MSI is not set 290 CONFIG_PCI_LEGACY=y 291 CONFIG_PCCARD=y ··· 315 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 316 # CONFIG_HAVE_AOUT is not set 317 # CONFIG_BINFMT_MISC is not set 318 + 319 + # 320 + # Power management options (EXPERIMENTAL) 321 + # 322 + # CONFIG_PM is not set 323 + # CONFIG_CPU_IDLE is not set 324 CONFIG_NET=y 325 326 # 327 # Networking options 328 # 329 + CONFIG_COMPAT_NET_DEV_OPS=y 330 CONFIG_PACKET=y 331 # CONFIG_PACKET_MMAP is not set 332 CONFIG_UNIX=y ··· 401 # CONFIG_ECONET is not set 402 # CONFIG_WAN_ROUTER is not set 403 # CONFIG_NET_SCHED is not set 404 + # CONFIG_DCB is not set 405 406 # 407 # Network testing ··· 416 # CONFIG_CFG80211 is not set 417 # CONFIG_WIRELESS_OLD_REGULATORY is not set 418 # CONFIG_WIRELESS_EXT is not set 419 + # CONFIG_LIB80211 is not set 420 # CONFIG_MAC80211 is not set 421 # CONFIG_RFKILL is not set 422 # CONFIG_NET_9P is not set 423 ··· 462 # CONFIG_TIFM_CORE is not set 463 # CONFIG_ENCLOSURE_SERVICES is not set 464 # CONFIG_HP_ILO is not set 465 + # CONFIG_C2PORT is not set 466 CONFIG_HAVE_IDE=y 467 CONFIG_IDE=y 468 ··· 478 CONFIG_BLK_DEV_IDECD=y 479 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 480 # CONFIG_BLK_DEV_IDETAPE is not set 481 # CONFIG_IDE_TASK_IOCTL is not set 482 CONFIG_IDE_PROC_FS=y 483 ··· 508 # CONFIG_BLK_DEV_JMICRON is not set 509 # CONFIG_BLK_DEV_SC1200 is not set 510 # CONFIG_BLK_DEV_PIIX is not set 511 + # CONFIG_BLK_DEV_IT8172 is not set 512 # CONFIG_BLK_DEV_IT8213 is not set 513 # CONFIG_BLK_DEV_IT821X is not set 514 # CONFIG_BLK_DEV_NS87415 is not set ··· 560 # CONFIG_SCSI_SRP_ATTRS is not set 561 CONFIG_SCSI_LOWLEVEL=y 562 # CONFIG_ISCSI_TCP is not set 563 + # CONFIG_SCSI_CXGB3_ISCSI is not set 564 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 565 # CONFIG_SCSI_3W_9XXX is not set 566 # CONFIG_SCSI_ACARD is not set ··· 573 # CONFIG_MEGARAID_LEGACY is not set 574 # CONFIG_MEGARAID_SAS is not set 575 # CONFIG_SCSI_HPTIOP is not set 576 + # CONFIG_LIBFC is not set 577 + # CONFIG_FCOE is not set 578 # CONFIG_SCSI_DMX3191D is not set 579 # CONFIG_SCSI_FUTURE_DOMAIN is not set 580 # CONFIG_SCSI_IPS is not set ··· 634 # CONFIG_NET_VENDOR_3COM is not set 635 # CONFIG_SMC91X is not set 636 # CONFIG_SMC911X is not set 637 + # CONFIG_SMSC911X is not set 638 # CONFIG_NET_TULIP is not set 639 # CONFIG_HP100 is not set 640 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 649 # CONFIG_ADAPTEC_STARFIRE is not set 650 # CONFIG_B44 is not set 651 # CONFIG_FORCEDETH is not set 652 # CONFIG_E100 is not set 653 # CONFIG_FEALNX is not set 654 # CONFIG_NATSEMI is not set ··· 659 # CONFIG_R6040 is not set 660 # CONFIG_SIS900 is not set 661 # CONFIG_EPIC100 is not set 662 + # CONFIG_SMSC9420 is not set 663 # CONFIG_SUNDANCE is not set 664 # CONFIG_TLAN is not set 665 # CONFIG_VIA_RHINE is not set ··· 687 # CONFIG_JME is not set 688 CONFIG_NETDEV_10000=y 689 # CONFIG_CHELSIO_T1 is not set 690 + CONFIG_CHELSIO_T3_DEPENDS=y 691 # CONFIG_CHELSIO_T3 is not set 692 # CONFIG_ENIC is not set 693 # CONFIG_IXGBE is not set ··· 695 # CONFIG_MYRI10GE is not set 696 # CONFIG_NETXEN_NIC is not set 697 # CONFIG_NIU is not set 698 + # CONFIG_MLX4_EN is not set 699 # CONFIG_MLX4_CORE is not set 700 # CONFIG_TEHUTI is not set 701 # CONFIG_BNX2X is not set ··· 791 CONFIG_SERIAL_CORE_CONSOLE=y 792 # CONFIG_SERIAL_JSM is not set 793 CONFIG_UNIX98_PTYS=y 794 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 795 CONFIG_LEGACY_PTYS=y 796 CONFIG_LEGACY_PTY_COUNT=256 797 # CONFIG_IPMI_HANDLER is not set ··· 832 # CONFIG_THERMAL is not set 833 # CONFIG_THERMAL_HWMON is not set 834 # CONFIG_WATCHDOG is not set 835 + CONFIG_SSB_POSSIBLE=y 836 837 # 838 # Sonics Silicon Backplane 839 # 840 # CONFIG_SSB is not set 841 842 # ··· 846 # CONFIG_MFD_SM501 is not set 847 # CONFIG_HTC_PASIC3 is not set 848 # CONFIG_MFD_TMIO is not set 849 + # CONFIG_REGULATOR is not set 850 851 # 852 # Multimedia devices ··· 952 CONFIG_HID_A4TECH=m 953 CONFIG_HID_APPLE=m 954 CONFIG_HID_BELKIN=m 955 CONFIG_HID_CHERRY=m 956 CONFIG_HID_CHICONY=m 957 CONFIG_HID_CYPRESS=m 958 CONFIG_HID_EZKEY=m 959 CONFIG_HID_GYRATION=m 960 CONFIG_HID_LOGITECH=m ··· 964 # CONFIG_LOGIRUMBLEPAD2_FF is not set 965 CONFIG_HID_MICROSOFT=m 966 CONFIG_HID_MONTEREY=m 967 + # CONFIG_HID_NTRIG is not set 968 CONFIG_HID_PANTHERLORD=m 969 # CONFIG_PANTHERLORD_FF is not set 970 CONFIG_HID_PETALYNX=m 971 CONFIG_HID_SAMSUNG=m 972 CONFIG_HID_SONY=m 973 CONFIG_HID_SUNPLUS=m 974 + # CONFIG_GREENASIA_FF is not set 975 + # CONFIG_HID_TOPSEED is not set 976 CONFIG_THRUSTMASTER_FF=m 977 CONFIG_ZEROPLUS_FF=m 978 CONFIG_USB_SUPPORT=y ··· 990 # CONFIG_USB_OTG_WHITELIST is not set 991 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 992 CONFIG_USB_MON=y 993 + # CONFIG_USB_WUSB is not set 994 + # CONFIG_USB_WUSB_CBAF is not set 995 996 # 997 # USB Host Controller Drivers ··· 1007 # CONFIG_USB_UHCI_HCD is not set 1008 # CONFIG_USB_SL811_HCD is not set 1009 # CONFIG_USB_R8A66597_HCD is not set 1010 + # CONFIG_USB_WHCI_HCD is not set 1011 + # CONFIG_USB_HWA_HCD is not set 1012 1013 # 1014 # USB Device Class drivers ··· 1017 # CONFIG_USB_TMC is not set 1018 1019 # 1020 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1021 # 1022 1023 # 1024 + # see USB_STORAGE Help for more information 1025 # 1026 CONFIG_USB_STORAGE=m 1027 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1119 # CONFIG_USB_ISIGHTFW is not set 1120 # CONFIG_USB_VST is not set 1121 # CONFIG_USB_GADGET is not set 1122 + # CONFIG_UWB is not set 1123 # CONFIG_MMC is not set 1124 # CONFIG_MEMSTICK is not set 1125 # CONFIG_NEW_LEDS is not set ··· 1192 # CONFIG_HUGETLBFS is not set 1193 # CONFIG_HUGETLB_PAGE is not set 1194 # CONFIG_CONFIGFS_FS is not set 1195 + CONFIG_MISC_FILESYSTEMS=y 1196 # CONFIG_ADFS_FS is not set 1197 # CONFIG_AFFS_FS is not set 1198 # CONFIG_HFS_FS is not set ··· 1302 # CONFIG_DEBUG_MEMORY_INIT is not set 1303 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1304 # CONFIG_LATENCYTOP is not set 1305 + CONFIG_HAVE_FUNCTION_TRACER=y 1306 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1307 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1308 + 1309 + # 1310 + # Tracers 1311 + # 1312 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1313 # CONFIG_SAMPLES is not set 1314 + CONFIG_HAVE_ARCH_KGDB=y 1315 CONFIG_SH_STANDARD_BIOS=y 1316 # CONFIG_EARLY_SCIF_CONSOLE is not set 1317 # CONFIG_EARLY_PRINTK is not set 1318 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1319 1320 # 1321 # Security options ··· 1325 # 1326 # CONFIG_CRYPTO_FIPS is not set 1327 # CONFIG_CRYPTO_MANAGER is not set 1328 + # CONFIG_CRYPTO_MANAGER2 is not set 1329 # CONFIG_CRYPTO_GF128MUL is not set 1330 # CONFIG_CRYPTO_NULL is not set 1331 # CONFIG_CRYPTO_CRYPTD is not set ··· 1408 # Library routines 1409 # 1410 CONFIG_BITREVERSE=y 1411 + CONFIG_GENERIC_FIND_LAST_BIT=y 1412 # CONFIG_CRC_CCITT is not set 1413 # CONFIG_CRC16 is not set 1414 CONFIG_CRC_T10DIF=y
+44 -19
arch/sh/configs/lboxre2_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:29:42 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 - # CONFIG_MARKERS is not set 82 CONFIG_HAVE_OPROFILE=y 83 # CONFIG_KPROBES is not set 84 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 - # CONFIG_TINY_SHMEM is not set 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set ··· 95 CONFIG_MODULE_FORCE_UNLOAD=y 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 114 # CONFIG_DEFAULT_NOOP is not set 115 CONFIG_DEFAULT_IOSCHED="anticipatory" 116 CONFIG_CLASSIC_RCU=y 117 # CONFIG_FREEZER is not set 118 119 # ··· 125 # 126 CONFIG_CPU_SH4=y 127 # CONFIG_CPU_SUBTYPE_SH7619 is not set 128 # CONFIG_CPU_SUBTYPE_SH7203 is not set 129 # CONFIG_CPU_SUBTYPE_SH7206 is not set 130 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=y 190 CONFIG_PAGEFLAGS_EXTENDED=y 191 CONFIG_SPLIT_PTLOCK_CPUS=4 192 - # CONFIG_RESOURCES_64BIT is not set 193 # CONFIG_PHYS_ADDR_T_64BIT is not set 194 CONFIG_ZONE_DMA_FLAG=0 195 CONFIG_NR_QUICK=2 ··· 288 CONFIG_SH_PCIDMA_NONCOHERENT=y 289 CONFIG_PCI_AUTO=y 290 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 291 # CONFIG_ARCH_SUPPORTS_MSI is not set 292 CONFIG_PCI_LEGACY=y 293 CONFIG_PCCARD=y ··· 318 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 319 # CONFIG_HAVE_AOUT is not set 320 # CONFIG_BINFMT_MISC is not set 321 CONFIG_NET=y 322 323 # 324 # Networking options 325 # 326 CONFIG_PACKET=y 327 # CONFIG_PACKET_MMAP is not set 328 CONFIG_UNIX=y ··· 409 # CONFIG_ECONET is not set 410 # CONFIG_WAN_ROUTER is not set 411 # CONFIG_NET_SCHED is not set 412 413 # 414 # Network testing ··· 425 # CONFIG_CFG80211 is not set 426 # CONFIG_WIRELESS_OLD_REGULATORY is not set 427 # CONFIG_WIRELESS_EXT is not set 428 # CONFIG_MAC80211 is not set 429 - # CONFIG_IEEE80211 is not set 430 # CONFIG_RFKILL is not set 431 # CONFIG_NET_9P is not set 432 ··· 470 # CONFIG_TIFM_CORE is not set 471 # CONFIG_ENCLOSURE_SERVICES is not set 472 # CONFIG_HP_ILO is not set 473 CONFIG_HAVE_IDE=y 474 # CONFIG_IDE is not set 475 ··· 513 # CONFIG_SCSI_SRP_ATTRS is not set 514 CONFIG_SCSI_LOWLEVEL=y 515 # CONFIG_ISCSI_TCP is not set 516 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 517 # CONFIG_SCSI_3W_9XXX is not set 518 # CONFIG_SCSI_ACARD is not set ··· 527 # CONFIG_MEGARAID_LEGACY is not set 528 # CONFIG_MEGARAID_SAS is not set 529 # CONFIG_SCSI_HPTIOP is not set 530 # CONFIG_SCSI_DMX3191D is not set 531 # CONFIG_SCSI_FUTURE_DOMAIN is not set 532 # CONFIG_SCSI_IPS is not set ··· 642 # CONFIG_NET_VENDOR_3COM is not set 643 # CONFIG_SMC91X is not set 644 # CONFIG_SMC911X is not set 645 # CONFIG_NET_TULIP is not set 646 # CONFIG_HP100 is not set 647 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 658 # CONFIG_ADAPTEC_STARFIRE is not set 659 # CONFIG_B44 is not set 660 # CONFIG_FORCEDETH is not set 661 - # CONFIG_EEPRO100 is not set 662 # CONFIG_E100 is not set 663 # CONFIG_FEALNX is not set 664 # CONFIG_NATSEMI is not set ··· 671 # CONFIG_R6040 is not set 672 # CONFIG_SIS900 is not set 673 # CONFIG_EPIC100 is not set 674 # CONFIG_SUNDANCE is not set 675 # CONFIG_TLAN is not set 676 # CONFIG_VIA_RHINE is not set ··· 700 # CONFIG_JME is not set 701 CONFIG_NETDEV_10000=y 702 # CONFIG_CHELSIO_T1 is not set 703 # CONFIG_CHELSIO_T3 is not set 704 # CONFIG_ENIC is not set 705 # CONFIG_IXGBE is not set ··· 709 # CONFIG_MYRI10GE is not set 710 # CONFIG_NETXEN_NIC is not set 711 # CONFIG_NIU is not set 712 # CONFIG_MLX4_CORE is not set 713 # CONFIG_TEHUTI is not set 714 # CONFIG_BNX2X is not set ··· 805 CONFIG_SERIAL_CORE_CONSOLE=y 806 # CONFIG_SERIAL_JSM is not set 807 CONFIG_UNIX98_PTYS=y 808 CONFIG_LEGACY_PTYS=y 809 CONFIG_LEGACY_PTY_COUNT=256 810 # CONFIG_IPMI_HANDLER is not set ··· 847 # CONFIG_THERMAL is not set 848 # CONFIG_THERMAL_HWMON is not set 849 # CONFIG_WATCHDOG is not set 850 851 # 852 # Sonics Silicon Backplane 853 # 854 - CONFIG_SSB_POSSIBLE=y 855 # CONFIG_SSB is not set 856 857 # ··· 861 # CONFIG_MFD_SM501 is not set 862 # CONFIG_HTC_PASIC3 is not set 863 # CONFIG_MFD_TMIO is not set 864 - # CONFIG_MFD_WM8400 is not set 865 866 # 867 # Multimedia devices ··· 921 # 922 923 # 924 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 925 # 926 # CONFIG_USB_GADGET is not set 927 # CONFIG_MMC is not set 928 # CONFIG_MEMSTICK is not set 929 # CONFIG_NEW_LEDS is not set ··· 1027 # CONFIG_HUGETLBFS is not set 1028 # CONFIG_HUGETLB_PAGE is not set 1029 # CONFIG_CONFIGFS_FS is not set 1030 - 1031 - # 1032 - # Miscellaneous filesystems 1033 - # 1034 # CONFIG_ADFS_FS is not set 1035 # CONFIG_AFFS_FS is not set 1036 # CONFIG_HFS_FS is not set ··· 1117 # CONFIG_DEBUG_MEMORY_INIT is not set 1118 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1119 # CONFIG_LATENCYTOP is not set 1120 - CONFIG_NOP_TRACER=y 1121 - CONFIG_HAVE_FTRACE=y 1122 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1123 # CONFIG_SAMPLES is not set 1124 CONFIG_SH_STANDARD_BIOS=y 1125 # CONFIG_EARLY_SCIF_CONSOLE is not set 1126 # CONFIG_EARLY_PRINTK is not set 1127 - # CONFIG_SH_KGDB is not set 1128 1129 # 1130 # Security options ··· 1146 # 1147 # CONFIG_CRYPTO_FIPS is not set 1148 # CONFIG_CRYPTO_MANAGER is not set 1149 # CONFIG_CRYPTO_GF128MUL is not set 1150 # CONFIG_CRYPTO_NULL is not set 1151 # CONFIG_CRYPTO_CRYPTD is not set ··· 1230 # Library routines 1231 # 1232 CONFIG_BITREVERSE=y 1233 # CONFIG_CRC_CCITT is not set 1234 # CONFIG_CRC16 is not set 1235 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:02:46 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 # CONFIG_KPROBES is not set 81 CONFIG_HAVE_IOREMAP_PROT=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 CONFIG_BASE_SMALL=0 91 CONFIG_MODULES=y 92 # CONFIG_MODULE_FORCE_LOAD is not set ··· 95 CONFIG_MODULE_FORCE_UNLOAD=y 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 CONFIG_BLOCK=y 99 # CONFIG_LBD is not set 100 # CONFIG_BLK_DEV_IO_TRACE is not set 101 # CONFIG_BLK_DEV_BSG is not set 102 # CONFIG_BLK_DEV_INTEGRITY is not set 103 ··· 116 # CONFIG_DEFAULT_NOOP is not set 117 CONFIG_DEFAULT_IOSCHED="anticipatory" 118 CONFIG_CLASSIC_RCU=y 119 + # CONFIG_TREE_RCU is not set 120 + # CONFIG_PREEMPT_RCU is not set 121 + # CONFIG_TREE_RCU_TRACE is not set 122 + # CONFIG_PREEMPT_RCU_TRACE is not set 123 # CONFIG_FREEZER is not set 124 125 # ··· 123 # 124 CONFIG_CPU_SH4=y 125 # CONFIG_CPU_SUBTYPE_SH7619 is not set 126 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 186 CONFIG_SPARSEMEM_STATIC=y 187 CONFIG_PAGEFLAGS_EXTENDED=y 188 CONFIG_SPLIT_PTLOCK_CPUS=4 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 286 CONFIG_SH_PCIDMA_NONCOHERENT=y 287 CONFIG_PCI_AUTO=y 288 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 289 + # CONFIG_PCIEPORTBUS is not set 290 # CONFIG_ARCH_SUPPORTS_MSI is not set 291 CONFIG_PCI_LEGACY=y 292 CONFIG_PCCARD=y ··· 315 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 316 # CONFIG_HAVE_AOUT is not set 317 # CONFIG_BINFMT_MISC is not set 318 + 319 + # 320 + # Power management options (EXPERIMENTAL) 321 + # 322 + # CONFIG_PM is not set 323 + # CONFIG_CPU_IDLE is not set 324 CONFIG_NET=y 325 326 # 327 # Networking options 328 # 329 + CONFIG_COMPAT_NET_DEV_OPS=y 330 CONFIG_PACKET=y 331 # CONFIG_PACKET_MMAP is not set 332 CONFIG_UNIX=y ··· 399 # CONFIG_ECONET is not set 400 # CONFIG_WAN_ROUTER is not set 401 # CONFIG_NET_SCHED is not set 402 + # CONFIG_DCB is not set 403 404 # 405 # Network testing ··· 414 # CONFIG_CFG80211 is not set 415 # CONFIG_WIRELESS_OLD_REGULATORY is not set 416 # CONFIG_WIRELESS_EXT is not set 417 + # CONFIG_LIB80211 is not set 418 # CONFIG_MAC80211 is not set 419 # CONFIG_RFKILL is not set 420 # CONFIG_NET_9P is not set 421 ··· 459 # CONFIG_TIFM_CORE is not set 460 # CONFIG_ENCLOSURE_SERVICES is not set 461 # CONFIG_HP_ILO is not set 462 + # CONFIG_C2PORT is not set 463 CONFIG_HAVE_IDE=y 464 # CONFIG_IDE is not set 465 ··· 501 # CONFIG_SCSI_SRP_ATTRS is not set 502 CONFIG_SCSI_LOWLEVEL=y 503 # CONFIG_ISCSI_TCP is not set 504 + # CONFIG_SCSI_CXGB3_ISCSI is not set 505 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 506 # CONFIG_SCSI_3W_9XXX is not set 507 # CONFIG_SCSI_ACARD is not set ··· 514 # CONFIG_MEGARAID_LEGACY is not set 515 # CONFIG_MEGARAID_SAS is not set 516 # CONFIG_SCSI_HPTIOP is not set 517 + # CONFIG_LIBFC is not set 518 + # CONFIG_FCOE is not set 519 # CONFIG_SCSI_DMX3191D is not set 520 # CONFIG_SCSI_FUTURE_DOMAIN is not set 521 # CONFIG_SCSI_IPS is not set ··· 627 # CONFIG_NET_VENDOR_3COM is not set 628 # CONFIG_SMC91X is not set 629 # CONFIG_SMC911X is not set 630 + # CONFIG_SMSC911X is not set 631 # CONFIG_NET_TULIP is not set 632 # CONFIG_HP100 is not set 633 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 642 # CONFIG_ADAPTEC_STARFIRE is not set 643 # CONFIG_B44 is not set 644 # CONFIG_FORCEDETH is not set 645 # CONFIG_E100 is not set 646 # CONFIG_FEALNX is not set 647 # CONFIG_NATSEMI is not set ··· 656 # CONFIG_R6040 is not set 657 # CONFIG_SIS900 is not set 658 # CONFIG_EPIC100 is not set 659 + # CONFIG_SMSC9420 is not set 660 # CONFIG_SUNDANCE is not set 661 # CONFIG_TLAN is not set 662 # CONFIG_VIA_RHINE is not set ··· 684 # CONFIG_JME is not set 685 CONFIG_NETDEV_10000=y 686 # CONFIG_CHELSIO_T1 is not set 687 + CONFIG_CHELSIO_T3_DEPENDS=y 688 # CONFIG_CHELSIO_T3 is not set 689 # CONFIG_ENIC is not set 690 # CONFIG_IXGBE is not set ··· 692 # CONFIG_MYRI10GE is not set 693 # CONFIG_NETXEN_NIC is not set 694 # CONFIG_NIU is not set 695 + # CONFIG_MLX4_EN is not set 696 # CONFIG_MLX4_CORE is not set 697 # CONFIG_TEHUTI is not set 698 # CONFIG_BNX2X is not set ··· 787 CONFIG_SERIAL_CORE_CONSOLE=y 788 # CONFIG_SERIAL_JSM is not set 789 CONFIG_UNIX98_PTYS=y 790 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 791 CONFIG_LEGACY_PTYS=y 792 CONFIG_LEGACY_PTY_COUNT=256 793 # CONFIG_IPMI_HANDLER is not set ··· 828 # CONFIG_THERMAL is not set 829 # CONFIG_THERMAL_HWMON is not set 830 # CONFIG_WATCHDOG is not set 831 + CONFIG_SSB_POSSIBLE=y 832 833 # 834 # Sonics Silicon Backplane 835 # 836 # CONFIG_SSB is not set 837 838 # ··· 842 # CONFIG_MFD_SM501 is not set 843 # CONFIG_HTC_PASIC3 is not set 844 # CONFIG_MFD_TMIO is not set 845 + # CONFIG_REGULATOR is not set 846 847 # 848 # Multimedia devices ··· 902 # 903 904 # 905 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 906 # 907 # CONFIG_USB_GADGET is not set 908 + # CONFIG_UWB is not set 909 # CONFIG_MMC is not set 910 # CONFIG_MEMSTICK is not set 911 # CONFIG_NEW_LEDS is not set ··· 1007 # CONFIG_HUGETLBFS is not set 1008 # CONFIG_HUGETLB_PAGE is not set 1009 # CONFIG_CONFIGFS_FS is not set 1010 + CONFIG_MISC_FILESYSTEMS=y 1011 # CONFIG_ADFS_FS is not set 1012 # CONFIG_AFFS_FS is not set 1013 # CONFIG_HFS_FS is not set ··· 1100 # CONFIG_DEBUG_MEMORY_INIT is not set 1101 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1102 # CONFIG_LATENCYTOP is not set 1103 + CONFIG_HAVE_FUNCTION_TRACER=y 1104 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1105 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1106 + 1107 + # 1108 + # Tracers 1109 + # 1110 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1111 # CONFIG_SAMPLES is not set 1112 + CONFIG_HAVE_ARCH_KGDB=y 1113 CONFIG_SH_STANDARD_BIOS=y 1114 # CONFIG_EARLY_SCIF_CONSOLE is not set 1115 # CONFIG_EARLY_PRINTK is not set 1116 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1117 1118 # 1119 # Security options ··· 1123 # 1124 # CONFIG_CRYPTO_FIPS is not set 1125 # CONFIG_CRYPTO_MANAGER is not set 1126 + # CONFIG_CRYPTO_MANAGER2 is not set 1127 # CONFIG_CRYPTO_GF128MUL is not set 1128 # CONFIG_CRYPTO_NULL is not set 1129 # CONFIG_CRYPTO_CRYPTD is not set ··· 1206 # Library routines 1207 # 1208 CONFIG_BITREVERSE=y 1209 + CONFIG_GENERIC_FIND_LAST_BIT=y 1210 # CONFIG_CRC_CCITT is not set 1211 # CONFIG_CRC16 is not set 1212 CONFIG_CRC_T10DIF=y
+81 -38
arch/sh/configs/magicpanelr2_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:32:23 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 60 CONFIG_SYSCTL_SYSCALL=y 61 CONFIG_KALLSYMS=y 62 CONFIG_KALLSYMS_ALL=y 63 # CONFIG_KALLSYMS_EXTRA_PASS is not set 64 CONFIG_HOTPLUG=y 65 CONFIG_PRINTK=y ··· 77 CONFIG_SHMEM=y 78 CONFIG_AIO=y 79 CONFIG_VM_EVENT_COUNTERS=y 80 - CONFIG_PCI_QUIRKS=y 81 CONFIG_SLAB=y 82 # CONFIG_SLUB is not set 83 # CONFIG_SLOB is not set 84 # CONFIG_PROFILING is not set 85 - # CONFIG_MARKERS is not set 86 CONFIG_HAVE_OPROFILE=y 87 # CONFIG_KPROBES is not set 88 CONFIG_HAVE_IOREMAP_PROT=y ··· 91 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 92 CONFIG_SLABINFO=y 93 CONFIG_RT_MUTEXES=y 94 - # CONFIG_TINY_SHMEM is not set 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 # CONFIG_MODULE_FORCE_UNLOAD is not set 99 CONFIG_MODVERSIONS=y 100 CONFIG_MODULE_SRCVERSION_ALL=y 101 - CONFIG_KMOD=y 102 CONFIG_BLOCK=y 103 # CONFIG_LBD is not set 104 # CONFIG_BLK_DEV_IO_TRACE is not set 105 - # CONFIG_LSF is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 117 CONFIG_DEFAULT_NOOP=y 118 CONFIG_DEFAULT_IOSCHED="noop" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH3=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 298 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 299 # CONFIG_HAVE_AOUT is not set 300 # CONFIG_BINFMT_MISC is not set 301 CONFIG_NET=y 302 303 # 304 # Networking options 305 # 306 CONFIG_PACKET=y 307 CONFIG_PACKET_MMAP=y 308 CONFIG_UNIX=y ··· 360 # CONFIG_ECONET is not set 361 # CONFIG_WAN_ROUTER is not set 362 # CONFIG_NET_SCHED is not set 363 364 # 365 # Network testing ··· 376 # CONFIG_CFG80211 is not set 377 # CONFIG_WIRELESS_OLD_REGULATORY is not set 378 # CONFIG_WIRELESS_EXT is not set 379 # CONFIG_MAC80211 is not set 380 - # CONFIG_IEEE80211 is not set 381 # CONFIG_RFKILL is not set 382 # CONFIG_NET_9P is not set 383 ··· 493 CONFIG_MISC_DEVICES=y 494 # CONFIG_EEPROM_93CX6 is not set 495 # CONFIG_ENCLOSURE_SERVICES is not set 496 CONFIG_HAVE_IDE=y 497 # CONFIG_IDE is not set 498 ··· 513 # CONFIG_EQUALIZER is not set 514 # CONFIG_TUN is not set 515 # CONFIG_VETH is not set 516 - # CONFIG_PHYLIB is not set 517 CONFIG_NET_ETHERNET=y 518 CONFIG_MII=y 519 # CONFIG_AX88796 is not set 520 # CONFIG_STNIC is not set 521 # CONFIG_SMC91X is not set 522 - CONFIG_SMC911X=y 523 # CONFIG_IBM_NEW_EMAC_ZMII is not set 524 # CONFIG_IBM_NEW_EMAC_RGMII is not set 525 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 649 CONFIG_SERIAL_CORE=y 650 CONFIG_SERIAL_CORE_CONSOLE=y 651 CONFIG_UNIX98_PTYS=y 652 CONFIG_LEGACY_PTYS=y 653 CONFIG_LEGACY_PTY_COUNT=256 654 # CONFIG_IPMI_HANDLER is not set ··· 659 # CONFIG_TCG_TPM is not set 660 # CONFIG_I2C is not set 661 # CONFIG_SPI is not set 662 # CONFIG_W1 is not set 663 # CONFIG_POWER_SUPPLY is not set 664 # CONFIG_HWMON is not set 665 # CONFIG_THERMAL is not set 666 # CONFIG_THERMAL_HWMON is not set 667 # CONFIG_WATCHDOG is not set 668 669 # 670 # Sonics Silicon Backplane 671 # 672 - CONFIG_SSB_POSSIBLE=y 673 # CONFIG_SSB is not set 674 675 # ··· 699 # CONFIG_MFD_SM501 is not set 700 # CONFIG_HTC_PASIC3 is not set 701 # CONFIG_MFD_TMIO is not set 702 - # CONFIG_MFD_WM8400 is not set 703 704 # 705 # Multimedia devices ··· 830 # CONFIG_HUGETLBFS is not set 831 # CONFIG_HUGETLB_PAGE is not set 832 # CONFIG_CONFIGFS_FS is not set 833 - 834 - # 835 - # Miscellaneous filesystems 836 - # 837 # CONFIG_ADFS_FS is not set 838 # CONFIG_AFFS_FS is not set 839 # CONFIG_HFS_FS is not set ··· 961 # CONFIG_DEBUG_MEMORY_INIT is not set 962 # CONFIG_DEBUG_LIST is not set 963 # CONFIG_DEBUG_SG is not set 964 CONFIG_FRAME_POINTER=y 965 # CONFIG_RCU_TORTURE_TEST is not set 966 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 970 # CONFIG_FAULT_INJECTION is not set 971 # CONFIG_LATENCYTOP is not set 972 CONFIG_SYSCTL_SYSCALL_CHECK=y 973 - CONFIG_NOP_TRACER=y 974 - CONFIG_HAVE_FTRACE=y 975 - # CONFIG_FTRACE is not set 976 # CONFIG_IRQSOFF_TRACER is not set 977 # CONFIG_SCHED_TRACER is not set 978 # CONFIG_CONTEXT_SWITCH_TRACER is not set 979 # CONFIG_BOOT_TRACER is not set 980 # CONFIG_STACK_TRACER is not set 981 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 982 # CONFIG_SAMPLES is not set 983 # CONFIG_SH_STANDARD_BIOS is not set 984 CONFIG_EARLY_SCIF_CONSOLE=y 985 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xa4430000 ··· 997 # CONFIG_DEBUG_STACK_USAGE is not set 998 # CONFIG_4KSTACKS is not set 999 # CONFIG_IRQSTACKS is not set 1000 - CONFIG_SH_KGDB=y 1001 - 1002 - # 1003 - # KGDB configuration options 1004 - # 1005 # CONFIG_MORE_COMPILE_OPTIONS is not set 1006 - # CONFIG_KGDB_NMI is not set 1007 - CONFIG_KGDB_SYSRQ=y 1008 - 1009 - # 1010 - # Serial port setup 1011 - # 1012 - CONFIG_KGDB_DEFPORT=0 1013 - CONFIG_KGDB_DEFBAUD=115200 1014 - CONFIG_KGDB_DEFPARITY_N=y 1015 - # CONFIG_KGDB_DEFPARITY_E is not set 1016 - # CONFIG_KGDB_DEFPARITY_O is not set 1017 - CONFIG_KGDB_DEFBITS_8=y 1018 - # CONFIG_KGDB_DEFBITS_7 is not set 1019 1020 # 1021 # Security options ··· 1014 # Library routines 1015 # 1016 CONFIG_BITREVERSE=y 1017 CONFIG_CRC_CCITT=m 1018 CONFIG_CRC16=m 1019 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:03:37 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 58 CONFIG_SYSCTL_SYSCALL=y 59 CONFIG_KALLSYMS=y 60 CONFIG_KALLSYMS_ALL=y 61 + CONFIG_KALLSYMS_STRIP_GENERATED=y 62 # CONFIG_KALLSYMS_EXTRA_PASS is not set 63 CONFIG_HOTPLUG=y 64 CONFIG_PRINTK=y ··· 74 CONFIG_SHMEM=y 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 CONFIG_SLAB=y 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 CONFIG_HAVE_OPROFILE=y 82 # CONFIG_KPROBES is not set 83 CONFIG_HAVE_IOREMAP_PROT=y ··· 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_RT_MUTEXES=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 # CONFIG_MODULE_FORCE_UNLOAD is not set 99 CONFIG_MODVERSIONS=y 100 CONFIG_MODULE_SRCVERSION_ALL=y 101 CONFIG_BLOCK=y 102 # CONFIG_LBD is not set 103 # CONFIG_BLK_DEV_IO_TRACE is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 119 CONFIG_DEFAULT_NOOP=y 120 CONFIG_DEFAULT_IOSCHED="noop" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 126 # 127 CONFIG_CPU_SH3=y 128 # CONFIG_CPU_SUBTYPE_SH7619 is not set 129 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 130 # CONFIG_CPU_SUBTYPE_SH7203 is not set 131 # CONFIG_CPU_SUBTYPE_SH7206 is not set 132 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=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 ··· 296 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 297 # CONFIG_HAVE_AOUT is not set 298 # CONFIG_BINFMT_MISC is not set 299 + 300 + # 301 + # Power management options (EXPERIMENTAL) 302 + # 303 + # CONFIG_PM is not set 304 + # CONFIG_CPU_IDLE is not set 305 CONFIG_NET=y 306 307 # 308 # Networking options 309 # 310 + CONFIG_COMPAT_NET_DEV_OPS=y 311 CONFIG_PACKET=y 312 CONFIG_PACKET_MMAP=y 313 CONFIG_UNIX=y ··· 351 # CONFIG_ECONET is not set 352 # CONFIG_WAN_ROUTER is not set 353 # CONFIG_NET_SCHED is not set 354 + # CONFIG_DCB is not set 355 356 # 357 # Network testing ··· 366 # CONFIG_CFG80211 is not set 367 # CONFIG_WIRELESS_OLD_REGULATORY is not set 368 # CONFIG_WIRELESS_EXT is not set 369 + # CONFIG_LIB80211 is not set 370 # CONFIG_MAC80211 is not set 371 # CONFIG_RFKILL is not set 372 # CONFIG_NET_9P is not set 373 ··· 483 CONFIG_MISC_DEVICES=y 484 # CONFIG_EEPROM_93CX6 is not set 485 # CONFIG_ENCLOSURE_SERVICES is not set 486 + # CONFIG_C2PORT is not set 487 CONFIG_HAVE_IDE=y 488 # CONFIG_IDE is not set 489 ··· 502 # CONFIG_EQUALIZER is not set 503 # CONFIG_TUN is not set 504 # CONFIG_VETH is not set 505 + CONFIG_PHYLIB=y 506 + 507 + # 508 + # MII PHY device drivers 509 + # 510 + # CONFIG_MARVELL_PHY is not set 511 + # CONFIG_DAVICOM_PHY is not set 512 + # CONFIG_QSEMI_PHY is not set 513 + # CONFIG_LXT_PHY is not set 514 + # CONFIG_CICADA_PHY is not set 515 + # CONFIG_VITESSE_PHY is not set 516 + CONFIG_SMSC_PHY=y 517 + # CONFIG_BROADCOM_PHY is not set 518 + # CONFIG_ICPLUS_PHY is not set 519 + # CONFIG_REALTEK_PHY is not set 520 + # CONFIG_NATIONAL_PHY is not set 521 + # CONFIG_STE10XP is not set 522 + # CONFIG_LSI_ET1011C_PHY is not set 523 + # CONFIG_FIXED_PHY is not set 524 + # CONFIG_MDIO_BITBANG is not set 525 CONFIG_NET_ETHERNET=y 526 CONFIG_MII=y 527 # CONFIG_AX88796 is not set 528 # CONFIG_STNIC is not set 529 # CONFIG_SMC91X is not set 530 + # CONFIG_SMC911X is not set 531 + CONFIG_SMSC911X=y 532 # CONFIG_IBM_NEW_EMAC_ZMII is not set 533 # CONFIG_IBM_NEW_EMAC_RGMII is not set 534 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 618 CONFIG_SERIAL_CORE=y 619 CONFIG_SERIAL_CORE_CONSOLE=y 620 CONFIG_UNIX98_PTYS=y 621 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 622 CONFIG_LEGACY_PTYS=y 623 CONFIG_LEGACY_PTY_COUNT=256 624 # CONFIG_IPMI_HANDLER is not set ··· 627 # CONFIG_TCG_TPM is not set 628 # CONFIG_I2C is not set 629 # CONFIG_SPI is not set 630 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 631 + CONFIG_GPIOLIB=y 632 + # CONFIG_DEBUG_GPIO is not set 633 + # CONFIG_GPIO_SYSFS is not set 634 + 635 + # 636 + # Memory mapped GPIO expanders: 637 + # 638 + 639 + # 640 + # I2C GPIO expanders: 641 + # 642 + 643 + # 644 + # PCI GPIO expanders: 645 + # 646 + 647 + # 648 + # SPI GPIO expanders: 649 + # 650 # CONFIG_W1 is not set 651 # CONFIG_POWER_SUPPLY is not set 652 # CONFIG_HWMON is not set 653 # CONFIG_THERMAL is not set 654 # CONFIG_THERMAL_HWMON is not set 655 # CONFIG_WATCHDOG is not set 656 + CONFIG_SSB_POSSIBLE=y 657 658 # 659 # Sonics Silicon Backplane 660 # 661 # CONFIG_SSB is not set 662 663 # ··· 647 # CONFIG_MFD_SM501 is not set 648 # CONFIG_HTC_PASIC3 is not set 649 # CONFIG_MFD_TMIO is not set 650 + # CONFIG_REGULATOR is not set 651 652 # 653 # Multimedia devices ··· 778 # CONFIG_HUGETLBFS is not set 779 # CONFIG_HUGETLB_PAGE is not set 780 # CONFIG_CONFIGFS_FS is not set 781 + CONFIG_MISC_FILESYSTEMS=y 782 # CONFIG_ADFS_FS is not set 783 # CONFIG_AFFS_FS is not set 784 # CONFIG_HFS_FS is not set ··· 912 # CONFIG_DEBUG_MEMORY_INIT is not set 913 # CONFIG_DEBUG_LIST is not set 914 # CONFIG_DEBUG_SG is not set 915 + # CONFIG_DEBUG_NOTIFIERS is not set 916 CONFIG_FRAME_POINTER=y 917 # CONFIG_RCU_TORTURE_TEST is not set 918 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 920 # CONFIG_FAULT_INJECTION is not set 921 # CONFIG_LATENCYTOP is not set 922 CONFIG_SYSCTL_SYSCALL_CHECK=y 923 + CONFIG_HAVE_FUNCTION_TRACER=y 924 + CONFIG_HAVE_DYNAMIC_FTRACE=y 925 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 926 + 927 + # 928 + # Tracers 929 + # 930 + # CONFIG_FUNCTION_TRACER is not set 931 # CONFIG_IRQSOFF_TRACER is not set 932 # CONFIG_SCHED_TRACER is not set 933 # CONFIG_CONTEXT_SWITCH_TRACER is not set 934 # CONFIG_BOOT_TRACER is not set 935 + # CONFIG_TRACE_BRANCH_PROFILING is not set 936 # CONFIG_STACK_TRACER is not set 937 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 938 # CONFIG_SAMPLES is not set 939 + CONFIG_HAVE_ARCH_KGDB=y 940 + # CONFIG_KGDB is not set 941 # CONFIG_SH_STANDARD_BIOS is not set 942 CONFIG_EARLY_SCIF_CONSOLE=y 943 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xa4430000 ··· 939 # CONFIG_DEBUG_STACK_USAGE is not set 940 # CONFIG_4KSTACKS is not set 941 # CONFIG_IRQSTACKS is not set 942 + CONFIG_DUMP_CODE=y 943 + # CONFIG_SH_NO_BSS_INIT is not set 944 # CONFIG_MORE_COMPILE_OPTIONS is not set 945 946 # 947 # Security options ··· 972 # Library routines 973 # 974 CONFIG_BITREVERSE=y 975 + CONFIG_GENERIC_FIND_LAST_BIT=y 976 CONFIG_CRC_CCITT=m 977 CONFIG_CRC16=m 978 # CONFIG_CRC_T10DIF is not set
+42 -21
arch/sh/configs/microdev_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:37:41 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 74 CONFIG_SHMEM=y 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 - CONFIG_PCI_QUIRKS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 - # CONFIG_MARKERS is not set 83 CONFIG_HAVE_OPROFILE=y 84 CONFIG_HAVE_IOREMAP_PROT=y 85 CONFIG_HAVE_KPROBES=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 - # CONFIG_TINY_SHMEM is not set 91 CONFIG_BASE_SMALL=0 92 # CONFIG_MODULES is not set 93 CONFIG_BLOCK=y 94 # CONFIG_LBD is not set 95 # CONFIG_BLK_DEV_IO_TRACE is not set 96 - # CONFIG_LSF is not set 97 # CONFIG_BLK_DEV_BSG is not set 98 # CONFIG_BLK_DEV_INTEGRITY is not set 99 ··· 108 # CONFIG_DEFAULT_NOOP is not set 109 CONFIG_DEFAULT_IOSCHED="anticipatory" 110 CONFIG_CLASSIC_RCU=y 111 # CONFIG_FREEZER is not set 112 113 # ··· 119 # 120 CONFIG_CPU_SH4=y 121 # CONFIG_CPU_SUBTYPE_SH7619 is not set 122 # CONFIG_CPU_SUBTYPE_SH7203 is not set 123 # CONFIG_CPU_SUBTYPE_SH7206 is not set 124 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=y 190 CONFIG_PAGEFLAGS_EXTENDED=y 191 CONFIG_SPLIT_PTLOCK_CPUS=4 192 - # CONFIG_RESOURCES_64BIT is not set 193 # CONFIG_PHYS_ADDR_T_64BIT is not set 194 CONFIG_ZONE_DMA_FLAG=0 195 CONFIG_NR_QUICK=2 ··· 267 # CONFIG_PREEMPT_NONE is not set 268 # CONFIG_PREEMPT_VOLUNTARY is not set 269 CONFIG_PREEMPT=y 270 - # CONFIG_PREEMPT_RCU is not set 271 CONFIG_GUSA=y 272 # CONFIG_GUSA_RB is not set 273 ··· 293 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 294 # CONFIG_HAVE_AOUT is not set 295 # CONFIG_BINFMT_MISC is not set 296 CONFIG_NET=y 297 298 # 299 # Networking options 300 # 301 # CONFIG_PACKET is not set 302 # CONFIG_UNIX is not set 303 CONFIG_XFRM=y ··· 359 # CONFIG_ECONET is not set 360 # CONFIG_WAN_ROUTER is not set 361 # CONFIG_NET_SCHED is not set 362 363 # 364 # Network testing ··· 375 # CONFIG_CFG80211 is not set 376 # CONFIG_WIRELESS_OLD_REGULATORY is not set 377 # CONFIG_WIRELESS_EXT is not set 378 # CONFIG_MAC80211 is not set 379 - # CONFIG_IEEE80211 is not set 380 # CONFIG_RFKILL is not set 381 # CONFIG_NET_9P is not set 382 ··· 409 CONFIG_MISC_DEVICES=y 410 # CONFIG_EEPROM_93CX6 is not set 411 # CONFIG_ENCLOSURE_SERVICES is not set 412 CONFIG_HAVE_IDE=y 413 CONFIG_IDE=y 414 415 # 416 # Please see Documentation/ide/ide.txt for help/info on IDE drives 417 # 418 # CONFIG_BLK_DEV_IDE_SATA is not set 419 CONFIG_IDE_GD=y 420 CONFIG_IDE_GD_ATA=y ··· 456 # CONFIG_STNIC is not set 457 CONFIG_SMC91X=y 458 # CONFIG_SMC911X is not set 459 # CONFIG_IBM_NEW_EMAC_ZMII is not set 460 # CONFIG_IBM_NEW_EMAC_RGMII is not set 461 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 515 CONFIG_SERIAL_CORE=y 516 CONFIG_SERIAL_CORE_CONSOLE=y 517 CONFIG_UNIX98_PTYS=y 518 CONFIG_LEGACY_PTYS=y 519 CONFIG_LEGACY_PTY_COUNT=256 520 # CONFIG_IPMI_HANDLER is not set ··· 543 # CONFIG_THERMAL is not set 544 # CONFIG_THERMAL_HWMON is not set 545 # CONFIG_WATCHDOG is not set 546 547 # 548 # Sonics Silicon Backplane 549 # 550 - CONFIG_SSB_POSSIBLE=y 551 # CONFIG_SSB is not set 552 553 # ··· 557 # CONFIG_MFD_SM501 is not set 558 # CONFIG_HTC_PASIC3 is not set 559 # CONFIG_MFD_TMIO is not set 560 - # CONFIG_MFD_WM8400 is not set 561 562 # 563 # Multimedia devices ··· 601 # 602 603 # 604 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 605 # 606 # CONFIG_USB_GADGET is not set 607 # CONFIG_MMC is not set ··· 669 CONFIG_HUGETLBFS=y 670 CONFIG_HUGETLB_PAGE=y 671 # CONFIG_CONFIGFS_FS is not set 672 - 673 - # 674 - # Miscellaneous filesystems 675 - # 676 # CONFIG_ADFS_FS is not set 677 # CONFIG_AFFS_FS is not set 678 # CONFIG_HFS_FS is not set ··· 771 # CONFIG_DEBUG_MEMORY_INIT is not set 772 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 773 # CONFIG_LATENCYTOP is not set 774 - CONFIG_NOP_TRACER=y 775 - CONFIG_HAVE_FTRACE=y 776 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 777 # CONFIG_SAMPLES is not set 778 # CONFIG_SH_STANDARD_BIOS is not set 779 # CONFIG_EARLY_SCIF_CONSOLE is not set 780 - # CONFIG_SH_KGDB is not set 781 782 # 783 # Security options ··· 799 # 800 # CONFIG_CRYPTO_FIPS is not set 801 CONFIG_CRYPTO_ALGAPI=y 802 - CONFIG_CRYPTO_AEAD=y 803 CONFIG_CRYPTO_BLKCIPHER=y 804 CONFIG_CRYPTO_HASH=y 805 - CONFIG_CRYPTO_RNG=y 806 CONFIG_CRYPTO_MANAGER=y 807 # CONFIG_CRYPTO_GF128MUL is not set 808 # CONFIG_CRYPTO_NULL is not set 809 # CONFIG_CRYPTO_CRYPTD is not set ··· 889 # Library routines 890 # 891 CONFIG_BITREVERSE=y 892 # CONFIG_CRC_CCITT is not set 893 # CONFIG_CRC16 is not set 894 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:06:47 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 72 CONFIG_SHMEM=y 73 CONFIG_AIO=y 74 CONFIG_VM_EVENT_COUNTERS=y 75 CONFIG_SLAB=y 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 CONFIG_HAVE_IOREMAP_PROT=y 81 CONFIG_HAVE_KPROBES=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 CONFIG_BASE_SMALL=0 91 # CONFIG_MODULES is not set 92 CONFIG_BLOCK=y 93 # CONFIG_LBD is not set 94 # CONFIG_BLK_DEV_IO_TRACE is not set 95 # CONFIG_BLK_DEV_BSG is not set 96 # CONFIG_BLK_DEV_INTEGRITY is not set 97 ··· 110 # CONFIG_DEFAULT_NOOP is not set 111 CONFIG_DEFAULT_IOSCHED="anticipatory" 112 CONFIG_CLASSIC_RCU=y 113 + # CONFIG_TREE_RCU is not set 114 + # CONFIG_PREEMPT_RCU is not set 115 + # CONFIG_TREE_RCU_TRACE is not set 116 + # CONFIG_PREEMPT_RCU_TRACE is not set 117 # CONFIG_FREEZER is not set 118 119 # ··· 117 # 118 CONFIG_CPU_SH4=y 119 # CONFIG_CPU_SUBTYPE_SH7619 is not set 120 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 121 # CONFIG_CPU_SUBTYPE_SH7203 is not set 122 # CONFIG_CPU_SUBTYPE_SH7206 is not set 123 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 186 CONFIG_SPARSEMEM_STATIC=y 187 CONFIG_PAGEFLAGS_EXTENDED=y 188 CONFIG_SPLIT_PTLOCK_CPUS=4 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 265 # CONFIG_PREEMPT_NONE is not set 266 # CONFIG_PREEMPT_VOLUNTARY is not set 267 CONFIG_PREEMPT=y 268 CONFIG_GUSA=y 269 # CONFIG_GUSA_RB is not set 270 ··· 292 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 293 # CONFIG_HAVE_AOUT is not set 294 # CONFIG_BINFMT_MISC is not set 295 + 296 + # 297 + # Power management options (EXPERIMENTAL) 298 + # 299 + # CONFIG_PM is not set 300 + # CONFIG_CPU_IDLE is not set 301 CONFIG_NET=y 302 303 # 304 # Networking options 305 # 306 + CONFIG_COMPAT_NET_DEV_OPS=y 307 # CONFIG_PACKET is not set 308 # CONFIG_UNIX is not set 309 CONFIG_XFRM=y ··· 351 # CONFIG_ECONET is not set 352 # CONFIG_WAN_ROUTER is not set 353 # CONFIG_NET_SCHED is not set 354 + # CONFIG_DCB is not set 355 356 # 357 # Network testing ··· 366 # CONFIG_CFG80211 is not set 367 # CONFIG_WIRELESS_OLD_REGULATORY is not set 368 # CONFIG_WIRELESS_EXT is not set 369 + # CONFIG_LIB80211 is not set 370 # CONFIG_MAC80211 is not set 371 # CONFIG_RFKILL is not set 372 # CONFIG_NET_9P is not set 373 ··· 400 CONFIG_MISC_DEVICES=y 401 # CONFIG_EEPROM_93CX6 is not set 402 # CONFIG_ENCLOSURE_SERVICES is not set 403 + # CONFIG_C2PORT is not set 404 CONFIG_HAVE_IDE=y 405 CONFIG_IDE=y 406 407 # 408 # Please see Documentation/ide/ide.txt for help/info on IDE drives 409 # 410 + CONFIG_IDE_ATAPI=y 411 # CONFIG_BLK_DEV_IDE_SATA is not set 412 CONFIG_IDE_GD=y 413 CONFIG_IDE_GD_ATA=y ··· 445 # CONFIG_STNIC is not set 446 CONFIG_SMC91X=y 447 # CONFIG_SMC911X is not set 448 + # CONFIG_SMSC911X is not set 449 # CONFIG_IBM_NEW_EMAC_ZMII is not set 450 # CONFIG_IBM_NEW_EMAC_RGMII is not set 451 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 503 CONFIG_SERIAL_CORE=y 504 CONFIG_SERIAL_CORE_CONSOLE=y 505 CONFIG_UNIX98_PTYS=y 506 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 507 CONFIG_LEGACY_PTYS=y 508 CONFIG_LEGACY_PTY_COUNT=256 509 # CONFIG_IPMI_HANDLER is not set ··· 530 # CONFIG_THERMAL is not set 531 # CONFIG_THERMAL_HWMON is not set 532 # CONFIG_WATCHDOG is not set 533 + CONFIG_SSB_POSSIBLE=y 534 535 # 536 # Sonics Silicon Backplane 537 # 538 # CONFIG_SSB is not set 539 540 # ··· 544 # CONFIG_MFD_SM501 is not set 545 # CONFIG_HTC_PASIC3 is not set 546 # CONFIG_MFD_TMIO is not set 547 + # CONFIG_REGULATOR is not set 548 549 # 550 # Multimedia devices ··· 588 # 589 590 # 591 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 592 # 593 # CONFIG_USB_GADGET is not set 594 # CONFIG_MMC is not set ··· 656 CONFIG_HUGETLBFS=y 657 CONFIG_HUGETLB_PAGE=y 658 # CONFIG_CONFIGFS_FS is not set 659 + CONFIG_MISC_FILESYSTEMS=y 660 # CONFIG_ADFS_FS is not set 661 # CONFIG_AFFS_FS is not set 662 # CONFIG_HFS_FS is not set ··· 761 # CONFIG_DEBUG_MEMORY_INIT is not set 762 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 763 # CONFIG_LATENCYTOP is not set 764 + CONFIG_HAVE_FUNCTION_TRACER=y 765 + CONFIG_HAVE_DYNAMIC_FTRACE=y 766 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 767 + 768 + # 769 + # Tracers 770 + # 771 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 772 # CONFIG_SAMPLES is not set 773 + CONFIG_HAVE_ARCH_KGDB=y 774 # CONFIG_SH_STANDARD_BIOS is not set 775 # CONFIG_EARLY_SCIF_CONSOLE is not set 776 + # CONFIG_MORE_COMPILE_OPTIONS is not set 777 778 # 779 # Security options ··· 783 # 784 # CONFIG_CRYPTO_FIPS is not set 785 CONFIG_CRYPTO_ALGAPI=y 786 + CONFIG_CRYPTO_ALGAPI2=y 787 + CONFIG_CRYPTO_AEAD2=y 788 CONFIG_CRYPTO_BLKCIPHER=y 789 + CONFIG_CRYPTO_BLKCIPHER2=y 790 CONFIG_CRYPTO_HASH=y 791 + CONFIG_CRYPTO_HASH2=y 792 + CONFIG_CRYPTO_RNG2=y 793 CONFIG_CRYPTO_MANAGER=y 794 + CONFIG_CRYPTO_MANAGER2=y 795 # CONFIG_CRYPTO_GF128MUL is not set 796 # CONFIG_CRYPTO_NULL is not set 797 # CONFIG_CRYPTO_CRYPTD is not set ··· 869 # Library routines 870 # 871 CONFIG_BITREVERSE=y 872 + CONFIG_GENERIC_FIND_LAST_BIT=y 873 # CONFIG_CRC_CCITT is not set 874 # CONFIG_CRC16 is not set 875 # CONFIG_CRC_T10DIF is not set
+75 -20
arch/sh/configs/migor_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc2 4 - # Fri Oct 31 15:58:06 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_NUMA=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 CONFIG_PROFILING=y 82 # CONFIG_MARKERS is not set 83 CONFIG_OPROFILE=y 84 CONFIG_HAVE_OPROFILE=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 - # CONFIG_TINY_SHMEM is not set 96 CONFIG_BASE_SMALL=0 97 CONFIG_MODULES=y 98 # CONFIG_MODULE_FORCE_LOAD is not set 99 # CONFIG_MODULE_UNLOAD is not set 100 # CONFIG_MODVERSIONS is not set 101 # CONFIG_MODULE_SRCVERSION_ALL is not set 102 - CONFIG_KMOD=y 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 - # CONFIG_LSF is not set 107 # CONFIG_BLK_DEV_BSG is not set 108 # CONFIG_BLK_DEV_INTEGRITY is not set 109 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 131 CONFIG_CPU_SH4AL_DSP=y 132 CONFIG_CPU_SHX2=y 133 # CONFIG_CPU_SUBTYPE_SH7619 is not set 134 # CONFIG_CPU_SUBTYPE_SH7203 is not set 135 # CONFIG_CPU_SUBTYPE_SH7206 is not set 136 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 201 # CONFIG_MEMORY_HOTPLUG is not set 202 CONFIG_SPLIT_PTLOCK_CPUS=4 203 # CONFIG_MIGRATION is not set 204 - # CONFIG_RESOURCES_64BIT is not set 205 # CONFIG_PHYS_ADDR_T_64BIT is not set 206 CONFIG_ZONE_DMA_FLAG=0 207 CONFIG_NR_QUICK=2 ··· 303 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 304 # CONFIG_HAVE_AOUT is not set 305 # CONFIG_BINFMT_MISC is not set 306 CONFIG_NET=y 307 308 # 309 # Networking options 310 # 311 CONFIG_PACKET=y 312 # CONFIG_PACKET_MMAP is not set 313 CONFIG_UNIX=y ··· 370 # CONFIG_ECONET is not set 371 # CONFIG_WAN_ROUTER is not set 372 # CONFIG_NET_SCHED is not set 373 374 # 375 # Network testing ··· 387 # CONFIG_WIRELESS_OLD_REGULATORY is not set 388 CONFIG_WIRELESS_EXT=y 389 CONFIG_WIRELESS_EXT_SYSFS=y 390 # CONFIG_MAC80211 is not set 391 - # CONFIG_IEEE80211 is not set 392 # CONFIG_RFKILL is not set 393 # CONFIG_NET_9P is not set 394 ··· 505 # CONFIG_BLK_DEV_HD is not set 506 CONFIG_MISC_DEVICES=y 507 # CONFIG_EEPROM_93CX6 is not set 508 # CONFIG_ENCLOSURE_SERVICES is not set 509 CONFIG_HAVE_IDE=y 510 # CONFIG_IDE is not set 511 ··· 550 # CONFIG_SCSI_SRP_ATTRS is not set 551 CONFIG_SCSI_LOWLEVEL=y 552 # CONFIG_ISCSI_TCP is not set 553 # CONFIG_SCSI_DEBUG is not set 554 # CONFIG_SCSI_DH is not set 555 # CONFIG_ATA is not set ··· 569 # CONFIG_STNIC is not set 570 CONFIG_SMC91X=y 571 # CONFIG_SMC911X is not set 572 # CONFIG_IBM_NEW_EMAC_ZMII is not set 573 # CONFIG_IBM_NEW_EMAC_RGMII is not set 574 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 660 CONFIG_SERIAL_CORE=y 661 CONFIG_SERIAL_CORE_CONSOLE=y 662 CONFIG_UNIX98_PTYS=y 663 CONFIG_LEGACY_PTYS=y 664 CONFIG_LEGACY_PTY_COUNT=256 665 # CONFIG_IPMI_HANDLER is not set ··· 714 # CONFIG_I2C_DEBUG_BUS is not set 715 # CONFIG_I2C_DEBUG_CHIP is not set 716 # CONFIG_SPI is not set 717 # CONFIG_W1 is not set 718 # CONFIG_POWER_SUPPLY is not set 719 # CONFIG_HWMON is not set 720 # CONFIG_THERMAL is not set 721 # CONFIG_THERMAL_HWMON is not set 722 # CONFIG_WATCHDOG is not set 723 724 # 725 # Sonics Silicon Backplane 726 # 727 - CONFIG_SSB_POSSIBLE=y 728 # CONFIG_SSB is not set 729 730 # ··· 755 # CONFIG_MFD_CORE is not set 756 # CONFIG_MFD_SM501 is not set 757 # CONFIG_HTC_PASIC3 is not set 758 # CONFIG_MFD_TMIO is not set 759 # CONFIG_PMIC_DA903X is not set 760 # CONFIG_MFD_WM8400 is not set 761 # CONFIG_MFD_WM8350_I2C is not set 762 763 # 764 # Multimedia devices ··· 804 CONFIG_SOC_CAMERA=y 805 # CONFIG_SOC_CAMERA_MT9M001 is not set 806 # CONFIG_SOC_CAMERA_MT9M111 is not set 807 # CONFIG_SOC_CAMERA_MT9V022 is not set 808 CONFIG_SOC_CAMERA_PLATFORM=y 809 CONFIG_VIDEO_SH_MOBILE_CEU=y 810 # CONFIG_RADIO_ADAPTERS is not set 811 # CONFIG_DAB is not set ··· 851 # CONFIG_USB_GADGET_MUSB_HDRC is not set 852 853 # 854 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 855 # 856 CONFIG_USB_GADGET=y 857 # CONFIG_USB_GADGET_DEBUG_FILES is not set ··· 917 # CONFIG_RTC_DRV_M41T80 is not set 918 # CONFIG_RTC_DRV_S35390A is not set 919 # CONFIG_RTC_DRV_FM3130 is not set 920 921 # 922 # SPI RTC drivers ··· 994 # CONFIG_HUGETLBFS is not set 995 # CONFIG_HUGETLB_PAGE is not set 996 # CONFIG_CONFIGFS_FS is not set 997 - 998 - # 999 - # Miscellaneous filesystems 1000 - # 1001 # CONFIG_ADFS_FS is not set 1002 # CONFIG_AFFS_FS is not set 1003 # CONFIG_HFS_FS is not set ··· 1051 CONFIG_DEBUG_FS=y 1052 # CONFIG_HEADERS_CHECK is not set 1053 # CONFIG_DEBUG_KERNEL is not set 1054 # CONFIG_DEBUG_BUGVERBOSE is not set 1055 # CONFIG_DEBUG_MEMORY_INIT is not set 1056 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1057 # CONFIG_LATENCYTOP is not set 1058 CONFIG_NOP_TRACER=y 1059 - CONFIG_HAVE_FTRACE=y 1060 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1061 # CONFIG_SAMPLES is not set 1062 # CONFIG_SH_STANDARD_BIOS is not set 1063 CONFIG_EARLY_SCIF_CONSOLE=y 1064 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 1065 CONFIG_EARLY_PRINTK=y 1066 - # CONFIG_SH_KGDB is not set 1067 1068 # 1069 # Security options ··· 1088 # Crypto core or helper 1089 # 1090 # CONFIG_CRYPTO_FIPS is not set 1091 - CONFIG_CRYPTO_ALGAPI=y 1092 - CONFIG_CRYPTO_AEAD=y 1093 - CONFIG_CRYPTO_BLKCIPHER=y 1094 - CONFIG_CRYPTO_HASH=y 1095 - CONFIG_CRYPTO_RNG=y 1096 CONFIG_CRYPTO_MANAGER=y 1097 # CONFIG_CRYPTO_GF128MUL is not set 1098 # CONFIG_CRYPTO_NULL is not set 1099 # CONFIG_CRYPTO_CRYPTD is not set ··· 1177 # Library routines 1178 # 1179 CONFIG_BITREVERSE=y 1180 # CONFIG_CRC_CCITT is not set 1181 # CONFIG_CRC16 is not set 1182 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:09:35 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_NUMA=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 77 # CONFIG_SLUB is not set 78 # CONFIG_SLOB is not set 79 CONFIG_PROFILING=y 80 + CONFIG_TRACEPOINTS=y 81 # CONFIG_MARKERS is not set 82 CONFIG_OPROFILE=y 83 CONFIG_HAVE_OPROFILE=y ··· 89 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 90 CONFIG_SLABINFO=y 91 CONFIG_RT_MUTEXES=y 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 CONFIG_BLOCK=y 99 # CONFIG_LBD is not set 100 # CONFIG_BLK_DEV_IO_TRACE is not set 101 # CONFIG_BLK_DEV_BSG is not set 102 # CONFIG_BLK_DEV_INTEGRITY is not set 103 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 + # CONFIG_TREE_RCU is not set 121 + # CONFIG_PREEMPT_RCU is not set 122 + # CONFIG_TREE_RCU_TRACE is not set 123 + # CONFIG_PREEMPT_RCU_TRACE is not set 124 # CONFIG_FREEZER is not set 125 126 # ··· 127 CONFIG_CPU_SH4AL_DSP=y 128 CONFIG_CPU_SHX2=y 129 # CONFIG_CPU_SUBTYPE_SH7619 is not set 130 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 196 # CONFIG_MEMORY_HOTPLUG is not set 197 CONFIG_SPLIT_PTLOCK_CPUS=4 198 # CONFIG_MIGRATION is not set 199 # CONFIG_PHYS_ADDR_T_64BIT is not set 200 CONFIG_ZONE_DMA_FLAG=0 201 CONFIG_NR_QUICK=2 ··· 299 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 300 # CONFIG_HAVE_AOUT is not set 301 # CONFIG_BINFMT_MISC is not set 302 + 303 + # 304 + # Power management options (EXPERIMENTAL) 305 + # 306 + # CONFIG_PM is not set 307 + # CONFIG_CPU_IDLE is not set 308 CONFIG_NET=y 309 310 # 311 # Networking options 312 # 313 + CONFIG_COMPAT_NET_DEV_OPS=y 314 CONFIG_PACKET=y 315 # CONFIG_PACKET_MMAP is not set 316 CONFIG_UNIX=y ··· 359 # CONFIG_ECONET is not set 360 # CONFIG_WAN_ROUTER is not set 361 # CONFIG_NET_SCHED is not set 362 + # CONFIG_DCB is not set 363 364 # 365 # Network testing ··· 375 # CONFIG_WIRELESS_OLD_REGULATORY is not set 376 CONFIG_WIRELESS_EXT=y 377 CONFIG_WIRELESS_EXT_SYSFS=y 378 + # CONFIG_LIB80211 is not set 379 # CONFIG_MAC80211 is not set 380 # CONFIG_RFKILL is not set 381 # CONFIG_NET_9P is not set 382 ··· 493 # CONFIG_BLK_DEV_HD is not set 494 CONFIG_MISC_DEVICES=y 495 # CONFIG_EEPROM_93CX6 is not set 496 + # CONFIG_ICS932S401 is not set 497 # CONFIG_ENCLOSURE_SERVICES is not set 498 + # CONFIG_C2PORT is not set 499 CONFIG_HAVE_IDE=y 500 # CONFIG_IDE is not set 501 ··· 536 # CONFIG_SCSI_SRP_ATTRS is not set 537 CONFIG_SCSI_LOWLEVEL=y 538 # CONFIG_ISCSI_TCP is not set 539 + # CONFIG_LIBFC is not set 540 # CONFIG_SCSI_DEBUG is not set 541 # CONFIG_SCSI_DH is not set 542 # CONFIG_ATA is not set ··· 554 # CONFIG_STNIC is not set 555 CONFIG_SMC91X=y 556 # CONFIG_SMC911X is not set 557 + # CONFIG_SMSC911X is not set 558 # CONFIG_IBM_NEW_EMAC_ZMII is not set 559 # CONFIG_IBM_NEW_EMAC_RGMII is not set 560 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 644 CONFIG_SERIAL_CORE=y 645 CONFIG_SERIAL_CORE_CONSOLE=y 646 CONFIG_UNIX98_PTYS=y 647 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 648 CONFIG_LEGACY_PTYS=y 649 CONFIG_LEGACY_PTY_COUNT=256 650 # CONFIG_IPMI_HANDLER is not set ··· 697 # CONFIG_I2C_DEBUG_BUS is not set 698 # CONFIG_I2C_DEBUG_CHIP is not set 699 # CONFIG_SPI is not set 700 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 701 + CONFIG_GPIOLIB=y 702 + # CONFIG_GPIO_SYSFS is not set 703 + 704 + # 705 + # Memory mapped GPIO expanders: 706 + # 707 + 708 + # 709 + # I2C GPIO expanders: 710 + # 711 + # CONFIG_GPIO_MAX732X is not set 712 + # CONFIG_GPIO_PCA953X is not set 713 + # CONFIG_GPIO_PCF857X is not set 714 + 715 + # 716 + # PCI GPIO expanders: 717 + # 718 + 719 + # 720 + # SPI GPIO expanders: 721 + # 722 # CONFIG_W1 is not set 723 # CONFIG_POWER_SUPPLY is not set 724 # CONFIG_HWMON is not set 725 # CONFIG_THERMAL is not set 726 # CONFIG_THERMAL_HWMON is not set 727 # CONFIG_WATCHDOG is not set 728 + CONFIG_SSB_POSSIBLE=y 729 730 # 731 # Sonics Silicon Backplane 732 # 733 # CONFIG_SSB is not set 734 735 # ··· 716 # CONFIG_MFD_CORE is not set 717 # CONFIG_MFD_SM501 is not set 718 # CONFIG_HTC_PASIC3 is not set 719 + # CONFIG_TPS65010 is not set 720 + # CONFIG_TWL4030_CORE is not set 721 # CONFIG_MFD_TMIO is not set 722 # CONFIG_PMIC_DA903X is not set 723 # CONFIG_MFD_WM8400 is not set 724 # CONFIG_MFD_WM8350_I2C is not set 725 + # CONFIG_REGULATOR is not set 726 727 # 728 # Multimedia devices ··· 762 CONFIG_SOC_CAMERA=y 763 # CONFIG_SOC_CAMERA_MT9M001 is not set 764 # CONFIG_SOC_CAMERA_MT9M111 is not set 765 + # CONFIG_SOC_CAMERA_MT9T031 is not set 766 # CONFIG_SOC_CAMERA_MT9V022 is not set 767 + # CONFIG_SOC_CAMERA_TW9910 is not set 768 CONFIG_SOC_CAMERA_PLATFORM=y 769 + # CONFIG_SOC_CAMERA_OV772X is not set 770 CONFIG_VIDEO_SH_MOBILE_CEU=y 771 # CONFIG_RADIO_ADAPTERS is not set 772 # CONFIG_DAB is not set ··· 806 # CONFIG_USB_GADGET_MUSB_HDRC is not set 807 808 # 809 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 810 # 811 CONFIG_USB_GADGET=y 812 # CONFIG_USB_GADGET_DEBUG_FILES is not set ··· 872 # CONFIG_RTC_DRV_M41T80 is not set 873 # CONFIG_RTC_DRV_S35390A is not set 874 # CONFIG_RTC_DRV_FM3130 is not set 875 + # CONFIG_RTC_DRV_RX8581 is not set 876 877 # 878 # SPI RTC drivers ··· 948 # CONFIG_HUGETLBFS is not set 949 # CONFIG_HUGETLB_PAGE is not set 950 # CONFIG_CONFIGFS_FS is not set 951 + CONFIG_MISC_FILESYSTEMS=y 952 # CONFIG_ADFS_FS is not set 953 # CONFIG_AFFS_FS is not set 954 # CONFIG_HFS_FS is not set ··· 1008 CONFIG_DEBUG_FS=y 1009 # CONFIG_HEADERS_CHECK is not set 1010 # CONFIG_DEBUG_KERNEL is not set 1011 + CONFIG_STACKTRACE=y 1012 # CONFIG_DEBUG_BUGVERBOSE is not set 1013 # CONFIG_DEBUG_MEMORY_INIT is not set 1014 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1015 # CONFIG_LATENCYTOP is not set 1016 CONFIG_NOP_TRACER=y 1017 + CONFIG_HAVE_FUNCTION_TRACER=y 1018 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1019 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1020 + CONFIG_RING_BUFFER=y 1021 + CONFIG_TRACING=y 1022 + 1023 + # 1024 + # Tracers 1025 + # 1026 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1027 # CONFIG_SAMPLES is not set 1028 + CONFIG_HAVE_ARCH_KGDB=y 1029 # CONFIG_SH_STANDARD_BIOS is not set 1030 CONFIG_EARLY_SCIF_CONSOLE=y 1031 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 1032 CONFIG_EARLY_PRINTK=y 1033 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1034 1035 # 1036 # Security options ··· 1035 # Crypto core or helper 1036 # 1037 # CONFIG_CRYPTO_FIPS is not set 1038 + CONFIG_CRYPTO_ALGAPI2=y 1039 + CONFIG_CRYPTO_AEAD2=y 1040 + CONFIG_CRYPTO_BLKCIPHER2=y 1041 + CONFIG_CRYPTO_HASH2=y 1042 + CONFIG_CRYPTO_RNG2=y 1043 CONFIG_CRYPTO_MANAGER=y 1044 + CONFIG_CRYPTO_MANAGER2=y 1045 # CONFIG_CRYPTO_GF128MUL is not set 1046 # CONFIG_CRYPTO_NULL is not set 1047 # CONFIG_CRYPTO_CRYPTD is not set ··· 1123 # Library routines 1124 # 1125 CONFIG_BITREVERSE=y 1126 + CONFIG_GENERIC_FIND_LAST_BIT=y 1127 # CONFIG_CRC_CCITT is not set 1128 # CONFIG_CRC16 is not set 1129 CONFIG_CRC_T10DIF=y
+65 -20
arch/sh/configs/r7780mp_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 20:03:46 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 87 # CONFIG_SLUB is not set 88 # CONFIG_SLOB is not set 89 CONFIG_PROFILING=y 90 # CONFIG_MARKERS is not set 91 CONFIG_OPROFILE=m 92 CONFIG_HAVE_OPROFILE=y ··· 99 CONFIG_HAVE_CLK=y 100 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 101 CONFIG_SLABINFO=y 102 - # CONFIG_TINY_SHMEM is not set 103 CONFIG_BASE_SMALL=0 104 CONFIG_MODULES=y 105 # CONFIG_MODULE_FORCE_LOAD is not set ··· 106 # CONFIG_MODULE_FORCE_UNLOAD is not set 107 # CONFIG_MODVERSIONS is not set 108 # CONFIG_MODULE_SRCVERSION_ALL is not set 109 - CONFIG_KMOD=y 110 CONFIG_BLOCK=y 111 # CONFIG_LBD is not set 112 # CONFIG_BLK_DEV_IO_TRACE is not set 113 - # CONFIG_LSF is not set 114 # CONFIG_BLK_DEV_BSG is not set 115 # CONFIG_BLK_DEV_INTEGRITY is not set 116 ··· 125 CONFIG_DEFAULT_NOOP=y 126 CONFIG_DEFAULT_IOSCHED="noop" 127 CONFIG_CLASSIC_RCU=y 128 # CONFIG_FREEZER is not set 129 130 # ··· 137 CONFIG_CPU_SH4=y 138 CONFIG_CPU_SH4A=y 139 # CONFIG_CPU_SUBTYPE_SH7619 is not set 140 # CONFIG_CPU_SUBTYPE_SH7203 is not set 141 # CONFIG_CPU_SUBTYPE_SH7206 is not set 142 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 208 CONFIG_SPARSEMEM_STATIC=y 209 CONFIG_PAGEFLAGS_EXTENDED=y 210 CONFIG_SPLIT_PTLOCK_CPUS=4 211 - # CONFIG_RESOURCES_64BIT is not set 212 # CONFIG_PHYS_ADDR_T_64BIT is not set 213 CONFIG_ZONE_DMA_FLAG=0 214 CONFIG_NR_QUICK=2 ··· 288 # CONFIG_PREEMPT_NONE is not set 289 # CONFIG_PREEMPT_VOLUNTARY is not set 290 CONFIG_PREEMPT=y 291 - # CONFIG_PREEMPT_RCU is not set 292 CONFIG_GUSA=y 293 294 # ··· 305 CONFIG_SH_PCIDMA_NONCOHERENT=y 306 CONFIG_PCI_AUTO=y 307 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 308 # CONFIG_ARCH_SUPPORTS_MSI is not set 309 CONFIG_PCI_LEGACY=y 310 # CONFIG_PCI_DEBUG is not set ··· 319 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 320 # CONFIG_HAVE_AOUT is not set 321 # CONFIG_BINFMT_MISC is not set 322 CONFIG_NET=y 323 324 # 325 # Networking options 326 # 327 CONFIG_PACKET=y 328 # CONFIG_PACKET_MMAP is not set 329 CONFIG_UNIX=y ··· 393 # CONFIG_ECONET is not set 394 # CONFIG_WAN_ROUTER is not set 395 # CONFIG_NET_SCHED is not set 396 397 # 398 # Network testing ··· 410 # CONFIG_WIRELESS_OLD_REGULATORY is not set 411 CONFIG_WIRELESS_EXT=y 412 CONFIG_WIRELESS_EXT_SYSFS=y 413 # CONFIG_MAC80211 is not set 414 - # CONFIG_IEEE80211 is not set 415 # CONFIG_RFKILL is not set 416 # CONFIG_NET_9P is not set 417 ··· 454 CONFIG_EEPROM_93CX6=y 455 # CONFIG_SGI_IOC4 is not set 456 # CONFIG_TIFM_CORE is not set 457 # CONFIG_ENCLOSURE_SERVICES is not set 458 # CONFIG_HP_ILO is not set 459 CONFIG_HAVE_IDE=y 460 # CONFIG_IDE is not set 461 ··· 500 # CONFIG_SCSI_SRP_ATTRS is not set 501 CONFIG_SCSI_LOWLEVEL=y 502 # CONFIG_ISCSI_TCP is not set 503 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 504 # CONFIG_SCSI_3W_9XXX is not set 505 # CONFIG_SCSI_ACARD is not set ··· 514 # CONFIG_MEGARAID_LEGACY is not set 515 # CONFIG_MEGARAID_SAS is not set 516 # CONFIG_SCSI_HPTIOP is not set 517 # CONFIG_SCSI_DMX3191D is not set 518 # CONFIG_SCSI_FUTURE_DOMAIN is not set 519 # CONFIG_SCSI_IPS is not set ··· 628 # CONFIG_NET_VENDOR_3COM is not set 629 # CONFIG_SMC91X is not set 630 # CONFIG_SMC911X is not set 631 # CONFIG_NET_TULIP is not set 632 # CONFIG_HP100 is not set 633 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 644 # CONFIG_ADAPTEC_STARFIRE is not set 645 # CONFIG_B44 is not set 646 # CONFIG_FORCEDETH is not set 647 - # CONFIG_EEPRO100 is not set 648 # CONFIG_E100 is not set 649 # CONFIG_FEALNX is not set 650 # CONFIG_NATSEMI is not set ··· 657 # CONFIG_R6040 is not set 658 # CONFIG_SIS900 is not set 659 # CONFIG_EPIC100 is not set 660 # CONFIG_SUNDANCE is not set 661 # CONFIG_TLAN is not set 662 CONFIG_VIA_RHINE=m ··· 687 # CONFIG_JME is not set 688 CONFIG_NETDEV_10000=y 689 # CONFIG_CHELSIO_T1 is not set 690 # CONFIG_CHELSIO_T3 is not set 691 # CONFIG_ENIC is not set 692 # CONFIG_IXGBE is not set ··· 696 # CONFIG_MYRI10GE is not set 697 # CONFIG_NETXEN_NIC is not set 698 # CONFIG_NIU is not set 699 # CONFIG_MLX4_CORE is not set 700 # CONFIG_TEHUTI is not set 701 # CONFIG_BNX2X is not set ··· 791 CONFIG_SERIAL_CORE_CONSOLE=y 792 # CONFIG_SERIAL_JSM is not set 793 CONFIG_UNIX98_PTYS=y 794 CONFIG_LEGACY_PTYS=y 795 CONFIG_LEGACY_PTY_COUNT=256 796 # CONFIG_IPMI_HANDLER is not set ··· 882 # CONFIG_SENSORS_ADM1029 is not set 883 # CONFIG_SENSORS_ADM1031 is not set 884 # CONFIG_SENSORS_ADM9240 is not set 885 # CONFIG_SENSORS_ADT7470 is not set 886 # CONFIG_SENSORS_ADT7473 is not set 887 # CONFIG_SENSORS_ATXP1 is not set ··· 931 CONFIG_THERMAL=y 932 # CONFIG_THERMAL_HWMON is not set 933 # CONFIG_WATCHDOG is not set 934 935 # 936 # Sonics Silicon Backplane 937 # 938 - CONFIG_SSB_POSSIBLE=y 939 # CONFIG_SSB is not set 940 941 # ··· 944 # CONFIG_MFD_CORE is not set 945 # CONFIG_MFD_SM501 is not set 946 # CONFIG_HTC_PASIC3 is not set 947 # CONFIG_MFD_TMIO is not set 948 # CONFIG_MFD_WM8400 is not set 949 # CONFIG_MFD_WM8350_I2C is not set 950 951 # 952 # Multimedia devices ··· 1007 # 1008 1009 # 1010 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1011 # 1012 # CONFIG_USB_GADGET is not set 1013 # CONFIG_MMC is not set 1014 # CONFIG_MEMSTICK is not set 1015 # CONFIG_NEW_LEDS is not set ··· 1046 # CONFIG_RTC_DRV_M41T80 is not set 1047 # CONFIG_RTC_DRV_S35390A is not set 1048 # CONFIG_RTC_DRV_FM3130 is not set 1049 1050 # 1051 # SPI RTC drivers ··· 1133 CONFIG_HUGETLBFS=y 1134 CONFIG_HUGETLB_PAGE=y 1135 CONFIG_CONFIGFS_FS=m 1136 - 1137 - # 1138 - # Miscellaneous filesystems 1139 - # 1140 # CONFIG_ADFS_FS is not set 1141 # CONFIG_AFFS_FS is not set 1142 # CONFIG_HFS_FS is not set ··· 1252 # CONFIG_LOCK_STAT is not set 1253 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1254 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1255 # CONFIG_DEBUG_KOBJECT is not set 1256 CONFIG_DEBUG_BUGVERBOSE=y 1257 CONFIG_DEBUG_INFO=y ··· 1261 # CONFIG_DEBUG_MEMORY_INIT is not set 1262 # CONFIG_DEBUG_LIST is not set 1263 # CONFIG_DEBUG_SG is not set 1264 # CONFIG_FRAME_POINTER is not set 1265 # CONFIG_RCU_TORTURE_TEST is not set 1266 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1270 # CONFIG_FAULT_INJECTION is not set 1271 # CONFIG_LATENCYTOP is not set 1272 CONFIG_NOP_TRACER=y 1273 - CONFIG_HAVE_FTRACE=y 1274 - # CONFIG_FTRACE is not set 1275 # CONFIG_IRQSOFF_TRACER is not set 1276 # CONFIG_PREEMPT_TRACER is not set 1277 # CONFIG_SCHED_TRACER is not set 1278 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1279 # CONFIG_BOOT_TRACER is not set 1280 # CONFIG_STACK_TRACER is not set 1281 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1282 # CONFIG_SAMPLES is not set 1283 CONFIG_SH_STANDARD_BIOS=y 1284 # CONFIG_EARLY_SCIF_CONSOLE is not set 1285 CONFIG_EARLY_PRINTK=y ··· 1300 # CONFIG_DEBUG_STACK_USAGE is not set 1301 # CONFIG_4KSTACKS is not set 1302 # CONFIG_IRQSTACKS is not set 1303 - # CONFIG_SH_KGDB is not set 1304 1305 # 1306 # Security options ··· 1318 # 1319 # CONFIG_CRYPTO_FIPS is not set 1320 CONFIG_CRYPTO_ALGAPI=y 1321 - CONFIG_CRYPTO_AEAD=y 1322 CONFIG_CRYPTO_BLKCIPHER=y 1323 CONFIG_CRYPTO_HASH=y 1324 - CONFIG_CRYPTO_RNG=y 1325 CONFIG_CRYPTO_MANAGER=y 1326 # CONFIG_CRYPTO_GF128MUL is not set 1327 # CONFIG_CRYPTO_NULL is not set 1328 # CONFIG_CRYPTO_CRYPTD is not set ··· 1410 # Library routines 1411 # 1412 CONFIG_BITREVERSE=y 1413 # CONFIG_CRC_CCITT is not set 1414 # CONFIG_CRC16 is not set 1415 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:10:19 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 85 # CONFIG_SLUB is not set 86 # CONFIG_SLOB is not set 87 CONFIG_PROFILING=y 88 + CONFIG_TRACEPOINTS=y 89 # CONFIG_MARKERS is not set 90 CONFIG_OPROFILE=m 91 CONFIG_HAVE_OPROFILE=y ··· 96 CONFIG_HAVE_CLK=y 97 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 98 CONFIG_SLABINFO=y 99 CONFIG_BASE_SMALL=0 100 CONFIG_MODULES=y 101 # CONFIG_MODULE_FORCE_LOAD is not set ··· 104 # CONFIG_MODULE_FORCE_UNLOAD is not set 105 # CONFIG_MODVERSIONS is not set 106 # CONFIG_MODULE_SRCVERSION_ALL is not set 107 CONFIG_BLOCK=y 108 # CONFIG_LBD is not set 109 # CONFIG_BLK_DEV_IO_TRACE is not set 110 # CONFIG_BLK_DEV_BSG is not set 111 # CONFIG_BLK_DEV_INTEGRITY is not set 112 ··· 125 CONFIG_DEFAULT_NOOP=y 126 CONFIG_DEFAULT_IOSCHED="noop" 127 CONFIG_CLASSIC_RCU=y 128 + # CONFIG_TREE_RCU is not set 129 + # CONFIG_PREEMPT_RCU is not set 130 + # CONFIG_TREE_RCU_TRACE is not set 131 + # CONFIG_PREEMPT_RCU_TRACE is not set 132 # CONFIG_FREEZER is not set 133 134 # ··· 133 CONFIG_CPU_SH4=y 134 CONFIG_CPU_SH4A=y 135 # CONFIG_CPU_SUBTYPE_SH7619 is not set 136 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 137 # CONFIG_CPU_SUBTYPE_SH7203 is not set 138 # CONFIG_CPU_SUBTYPE_SH7206 is not set 139 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 203 CONFIG_SPARSEMEM_STATIC=y 204 CONFIG_PAGEFLAGS_EXTENDED=y 205 CONFIG_SPLIT_PTLOCK_CPUS=4 206 # CONFIG_PHYS_ADDR_T_64BIT is not set 207 CONFIG_ZONE_DMA_FLAG=0 208 CONFIG_NR_QUICK=2 ··· 284 # CONFIG_PREEMPT_NONE is not set 285 # CONFIG_PREEMPT_VOLUNTARY is not set 286 CONFIG_PREEMPT=y 287 CONFIG_GUSA=y 288 289 # ··· 302 CONFIG_SH_PCIDMA_NONCOHERENT=y 303 CONFIG_PCI_AUTO=y 304 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 305 + # CONFIG_PCIEPORTBUS is not set 306 # CONFIG_ARCH_SUPPORTS_MSI is not set 307 CONFIG_PCI_LEGACY=y 308 # CONFIG_PCI_DEBUG is not set ··· 315 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 316 # CONFIG_HAVE_AOUT is not set 317 # CONFIG_BINFMT_MISC is not set 318 + 319 + # 320 + # Power management options (EXPERIMENTAL) 321 + # 322 + # CONFIG_PM is not set 323 + # CONFIG_CPU_IDLE is not set 324 CONFIG_NET=y 325 326 # 327 # Networking options 328 # 329 + CONFIG_COMPAT_NET_DEV_OPS=y 330 CONFIG_PACKET=y 331 # CONFIG_PACKET_MMAP is not set 332 CONFIG_UNIX=y ··· 382 # CONFIG_ECONET is not set 383 # CONFIG_WAN_ROUTER is not set 384 # CONFIG_NET_SCHED is not set 385 + # CONFIG_DCB is not set 386 387 # 388 # Network testing ··· 398 # CONFIG_WIRELESS_OLD_REGULATORY is not set 399 CONFIG_WIRELESS_EXT=y 400 CONFIG_WIRELESS_EXT_SYSFS=y 401 + # CONFIG_LIB80211 is not set 402 # CONFIG_MAC80211 is not set 403 # CONFIG_RFKILL is not set 404 # CONFIG_NET_9P is not set 405 ··· 442 CONFIG_EEPROM_93CX6=y 443 # CONFIG_SGI_IOC4 is not set 444 # CONFIG_TIFM_CORE is not set 445 + # CONFIG_ICS932S401 is not set 446 # CONFIG_ENCLOSURE_SERVICES is not set 447 # CONFIG_HP_ILO is not set 448 + # CONFIG_C2PORT is not set 449 CONFIG_HAVE_IDE=y 450 # CONFIG_IDE is not set 451 ··· 486 # CONFIG_SCSI_SRP_ATTRS is not set 487 CONFIG_SCSI_LOWLEVEL=y 488 # CONFIG_ISCSI_TCP is not set 489 + # CONFIG_SCSI_CXGB3_ISCSI is not set 490 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 491 # CONFIG_SCSI_3W_9XXX is not set 492 # CONFIG_SCSI_ACARD is not set ··· 499 # CONFIG_MEGARAID_LEGACY is not set 500 # CONFIG_MEGARAID_SAS is not set 501 # CONFIG_SCSI_HPTIOP is not set 502 + # CONFIG_LIBFC is not set 503 + # CONFIG_FCOE is not set 504 # CONFIG_SCSI_DMX3191D is not set 505 # CONFIG_SCSI_FUTURE_DOMAIN is not set 506 # CONFIG_SCSI_IPS is not set ··· 611 # CONFIG_NET_VENDOR_3COM is not set 612 # CONFIG_SMC91X is not set 613 # CONFIG_SMC911X is not set 614 + # CONFIG_SMSC911X is not set 615 # CONFIG_NET_TULIP is not set 616 # CONFIG_HP100 is not set 617 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 626 # CONFIG_ADAPTEC_STARFIRE is not set 627 # CONFIG_B44 is not set 628 # CONFIG_FORCEDETH is not set 629 # CONFIG_E100 is not set 630 # CONFIG_FEALNX is not set 631 # CONFIG_NATSEMI is not set ··· 640 # CONFIG_R6040 is not set 641 # CONFIG_SIS900 is not set 642 # CONFIG_EPIC100 is not set 643 + # CONFIG_SMSC9420 is not set 644 # CONFIG_SUNDANCE is not set 645 # CONFIG_TLAN is not set 646 CONFIG_VIA_RHINE=m ··· 669 # CONFIG_JME is not set 670 CONFIG_NETDEV_10000=y 671 # CONFIG_CHELSIO_T1 is not set 672 + CONFIG_CHELSIO_T3_DEPENDS=y 673 # CONFIG_CHELSIO_T3 is not set 674 # CONFIG_ENIC is not set 675 # CONFIG_IXGBE is not set ··· 677 # CONFIG_MYRI10GE is not set 678 # CONFIG_NETXEN_NIC is not set 679 # CONFIG_NIU is not set 680 + # CONFIG_MLX4_EN is not set 681 # CONFIG_MLX4_CORE is not set 682 # CONFIG_TEHUTI is not set 683 # CONFIG_BNX2X is not set ··· 771 CONFIG_SERIAL_CORE_CONSOLE=y 772 # CONFIG_SERIAL_JSM is not set 773 CONFIG_UNIX98_PTYS=y 774 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 775 CONFIG_LEGACY_PTYS=y 776 CONFIG_LEGACY_PTY_COUNT=256 777 # CONFIG_IPMI_HANDLER is not set ··· 861 # CONFIG_SENSORS_ADM1029 is not set 862 # CONFIG_SENSORS_ADM1031 is not set 863 # CONFIG_SENSORS_ADM9240 is not set 864 + # CONFIG_SENSORS_ADT7462 is not set 865 # CONFIG_SENSORS_ADT7470 is not set 866 # CONFIG_SENSORS_ADT7473 is not set 867 # CONFIG_SENSORS_ATXP1 is not set ··· 909 CONFIG_THERMAL=y 910 # CONFIG_THERMAL_HWMON is not set 911 # CONFIG_WATCHDOG is not set 912 + CONFIG_SSB_POSSIBLE=y 913 914 # 915 # Sonics Silicon Backplane 916 # 917 # CONFIG_SSB is not set 918 919 # ··· 922 # CONFIG_MFD_CORE is not set 923 # CONFIG_MFD_SM501 is not set 924 # CONFIG_HTC_PASIC3 is not set 925 + # CONFIG_TWL4030_CORE is not set 926 # CONFIG_MFD_TMIO is not set 927 + # CONFIG_PMIC_DA903X is not set 928 # CONFIG_MFD_WM8400 is not set 929 # CONFIG_MFD_WM8350_I2C is not set 930 + # CONFIG_REGULATOR is not set 931 932 # 933 # Multimedia devices ··· 982 # 983 984 # 985 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 986 # 987 # CONFIG_USB_GADGET is not set 988 + # CONFIG_UWB is not set 989 # CONFIG_MMC is not set 990 # CONFIG_MEMSTICK is not set 991 # CONFIG_NEW_LEDS is not set ··· 1020 # CONFIG_RTC_DRV_M41T80 is not set 1021 # CONFIG_RTC_DRV_S35390A is not set 1022 # CONFIG_RTC_DRV_FM3130 is not set 1023 + # CONFIG_RTC_DRV_RX8581 is not set 1024 1025 # 1026 # SPI RTC drivers ··· 1106 CONFIG_HUGETLBFS=y 1107 CONFIG_HUGETLB_PAGE=y 1108 CONFIG_CONFIGFS_FS=m 1109 + CONFIG_MISC_FILESYSTEMS=y 1110 # CONFIG_ADFS_FS is not set 1111 # CONFIG_AFFS_FS is not set 1112 # CONFIG_HFS_FS is not set ··· 1228 # CONFIG_LOCK_STAT is not set 1229 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1230 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1231 + CONFIG_STACKTRACE=y 1232 # CONFIG_DEBUG_KOBJECT is not set 1233 CONFIG_DEBUG_BUGVERBOSE=y 1234 CONFIG_DEBUG_INFO=y ··· 1236 # CONFIG_DEBUG_MEMORY_INIT is not set 1237 # CONFIG_DEBUG_LIST is not set 1238 # CONFIG_DEBUG_SG is not set 1239 + # CONFIG_DEBUG_NOTIFIERS is not set 1240 # CONFIG_FRAME_POINTER is not set 1241 # CONFIG_RCU_TORTURE_TEST is not set 1242 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1244 # CONFIG_FAULT_INJECTION is not set 1245 # CONFIG_LATENCYTOP is not set 1246 CONFIG_NOP_TRACER=y 1247 + CONFIG_HAVE_FUNCTION_TRACER=y 1248 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1249 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1250 + CONFIG_RING_BUFFER=y 1251 + CONFIG_TRACING=y 1252 + 1253 + # 1254 + # Tracers 1255 + # 1256 + # CONFIG_FUNCTION_TRACER is not set 1257 # CONFIG_IRQSOFF_TRACER is not set 1258 # CONFIG_PREEMPT_TRACER is not set 1259 # CONFIG_SCHED_TRACER is not set 1260 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1261 # CONFIG_BOOT_TRACER is not set 1262 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1263 # CONFIG_STACK_TRACER is not set 1264 + # CONFIG_FTRACE_STARTUP_TEST is not set 1265 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1266 # CONFIG_SAMPLES is not set 1267 + CONFIG_HAVE_ARCH_KGDB=y 1268 + # CONFIG_KGDB is not set 1269 CONFIG_SH_STANDARD_BIOS=y 1270 # CONFIG_EARLY_SCIF_CONSOLE is not set 1271 CONFIG_EARLY_PRINTK=y ··· 1262 # CONFIG_DEBUG_STACK_USAGE is not set 1263 # CONFIG_4KSTACKS is not set 1264 # CONFIG_IRQSTACKS is not set 1265 + CONFIG_DUMP_CODE=y 1266 + # CONFIG_SH_NO_BSS_INIT is not set 1267 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1268 1269 # 1270 # Security options ··· 1278 # 1279 # CONFIG_CRYPTO_FIPS is not set 1280 CONFIG_CRYPTO_ALGAPI=y 1281 + CONFIG_CRYPTO_ALGAPI2=y 1282 + CONFIG_CRYPTO_AEAD2=y 1283 CONFIG_CRYPTO_BLKCIPHER=y 1284 + CONFIG_CRYPTO_BLKCIPHER2=y 1285 CONFIG_CRYPTO_HASH=y 1286 + CONFIG_CRYPTO_HASH2=y 1287 + CONFIG_CRYPTO_RNG2=y 1288 CONFIG_CRYPTO_MANAGER=y 1289 + CONFIG_CRYPTO_MANAGER2=y 1290 # CONFIG_CRYPTO_GF128MUL is not set 1291 # CONFIG_CRYPTO_NULL is not set 1292 # CONFIG_CRYPTO_CRYPTD is not set ··· 1366 # Library routines 1367 # 1368 CONFIG_BITREVERSE=y 1369 + CONFIG_GENERIC_FIND_LAST_BIT=y 1370 # CONFIG_CRC_CCITT is not set 1371 # CONFIG_CRC16 is not set 1372 CONFIG_CRC_T10DIF=y
+102 -28
arch/sh/configs/r7785rp_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 16:25:30 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 13 CONFIG_GENERIC_HARDIRQS=y 14 CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y 15 CONFIG_GENERIC_IRQ_PROBE=y 16 - # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_NUMA=y 20 CONFIG_SYS_SUPPORTS_PCI=y 21 CONFIG_STACKTRACE_SUPPORT=y ··· 65 # CONFIG_SYSCTL_SYSCALL is not set 66 CONFIG_KALLSYMS=y 67 CONFIG_KALLSYMS_ALL=y 68 # CONFIG_KALLSYMS_EXTRA_PASS is not set 69 CONFIG_HOTPLUG=y 70 CONFIG_PRINTK=y ··· 87 # CONFIG_SLUB is not set 88 # CONFIG_SLOB is not set 89 CONFIG_PROFILING=y 90 # CONFIG_MARKERS is not set 91 CONFIG_OPROFILE=y 92 CONFIG_HAVE_OPROFILE=y ··· 101 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 102 CONFIG_SLABINFO=y 103 CONFIG_RT_MUTEXES=y 104 - # CONFIG_TINY_SHMEM is not set 105 CONFIG_BASE_SMALL=0 106 CONFIG_MODULES=y 107 # CONFIG_MODULE_FORCE_LOAD is not set ··· 108 # CONFIG_MODULE_FORCE_UNLOAD is not set 109 # CONFIG_MODVERSIONS is not set 110 # CONFIG_MODULE_SRCVERSION_ALL is not set 111 - CONFIG_KMOD=y 112 CONFIG_BLOCK=y 113 # CONFIG_LBD is not set 114 # CONFIG_BLK_DEV_IO_TRACE is not set 115 - # CONFIG_LSF is not set 116 # CONFIG_BLK_DEV_BSG is not set 117 # CONFIG_BLK_DEV_INTEGRITY is not set 118 ··· 127 CONFIG_DEFAULT_NOOP=y 128 CONFIG_DEFAULT_IOSCHED="noop" 129 # CONFIG_CLASSIC_RCU is not set 130 # CONFIG_FREEZER is not set 131 132 # ··· 141 CONFIG_CPU_SH4A=y 142 CONFIG_CPU_SHX2=y 143 # CONFIG_CPU_SUBTYPE_SH7619 is not set 144 # CONFIG_CPU_SUBTYPE_SH7203 is not set 145 # CONFIG_CPU_SUBTYPE_SH7206 is not set 146 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 218 CONFIG_PAGEFLAGS_EXTENDED=y 219 CONFIG_SPLIT_PTLOCK_CPUS=4 220 CONFIG_MIGRATION=y 221 - # CONFIG_RESOURCES_64BIT is not set 222 # CONFIG_PHYS_ADDR_T_64BIT is not set 223 CONFIG_ZONE_DMA_FLAG=0 224 CONFIG_NR_QUICK=2 ··· 313 # CONFIG_PREEMPT_NONE is not set 314 # CONFIG_PREEMPT_VOLUNTARY is not set 315 CONFIG_PREEMPT=y 316 - CONFIG_PREEMPT_RCU=y 317 - CONFIG_RCU_TRACE=y 318 CONFIG_GUSA=y 319 320 # ··· 330 CONFIG_SH_PCIDMA_NONCOHERENT=y 331 CONFIG_PCI_AUTO=y 332 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 333 # CONFIG_ARCH_SUPPORTS_MSI is not set 334 # CONFIG_PCI_LEGACY is not set 335 # CONFIG_PCI_DEBUG is not set ··· 344 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 345 # CONFIG_HAVE_AOUT is not set 346 CONFIG_BINFMT_MISC=m 347 CONFIG_NET=y 348 349 # 350 # Networking options 351 # 352 CONFIG_PACKET=y 353 # CONFIG_PACKET_MMAP is not set 354 CONFIG_UNIX=y ··· 418 # CONFIG_ECONET is not set 419 # CONFIG_WAN_ROUTER is not set 420 # CONFIG_NET_SCHED is not set 421 422 # 423 # Network testing ··· 436 # CONFIG_WIRELESS_OLD_REGULATORY is not set 437 CONFIG_WIRELESS_EXT=y 438 CONFIG_WIRELESS_EXT_SYSFS=y 439 # CONFIG_MAC80211 is not set 440 - # CONFIG_IEEE80211 is not set 441 # CONFIG_RFKILL is not set 442 # CONFIG_NET_9P is not set 443 ··· 480 CONFIG_EEPROM_93CX6=y 481 # CONFIG_SGI_IOC4 is not set 482 # CONFIG_TIFM_CORE is not set 483 # CONFIG_ENCLOSURE_SERVICES is not set 484 # CONFIG_HP_ILO is not set 485 CONFIG_HAVE_IDE=y 486 # CONFIG_IDE is not set 487 ··· 526 # CONFIG_SCSI_SRP_ATTRS is not set 527 CONFIG_SCSI_LOWLEVEL=y 528 # CONFIG_ISCSI_TCP is not set 529 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 530 # CONFIG_SCSI_3W_9XXX is not set 531 # CONFIG_SCSI_ACARD is not set ··· 540 # CONFIG_MEGARAID_LEGACY is not set 541 # CONFIG_MEGARAID_SAS is not set 542 # CONFIG_SCSI_HPTIOP is not set 543 # CONFIG_SCSI_DMX3191D is not set 544 # CONFIG_SCSI_FUTURE_DOMAIN is not set 545 # CONFIG_SCSI_IPS is not set ··· 654 # CONFIG_NET_VENDOR_3COM is not set 655 # CONFIG_SMC91X is not set 656 # CONFIG_SMC911X is not set 657 # CONFIG_NET_TULIP is not set 658 # CONFIG_HP100 is not set 659 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 690 # CONFIG_JME is not set 691 CONFIG_NETDEV_10000=y 692 # CONFIG_CHELSIO_T1 is not set 693 # CONFIG_CHELSIO_T3 is not set 694 # CONFIG_ENIC is not set 695 # CONFIG_IXGBE is not set ··· 699 # CONFIG_MYRI10GE is not set 700 # CONFIG_NETXEN_NIC is not set 701 # CONFIG_NIU is not set 702 # CONFIG_MLX4_CORE is not set 703 # CONFIG_TEHUTI is not set 704 # CONFIG_BNX2X is not set ··· 753 # CONFIG_KEYBOARD_XTKBD is not set 754 # CONFIG_KEYBOARD_NEWTON is not set 755 # CONFIG_KEYBOARD_STOWAWAY is not set 756 # CONFIG_KEYBOARD_SH_KEYSC is not set 757 # CONFIG_INPUT_MOUSE is not set 758 # CONFIG_INPUT_JOYSTICK is not set ··· 795 CONFIG_SERIAL_CORE_CONSOLE=y 796 # CONFIG_SERIAL_JSM is not set 797 CONFIG_UNIX98_PTYS=y 798 CONFIG_LEGACY_PTYS=y 799 CONFIG_LEGACY_PTY_COUNT=256 800 # CONFIG_IPMI_HANDLER is not set ··· 835 # 836 # I2C system bus drivers (mostly embedded / system-on-chip) 837 # 838 CONFIG_I2C_HIGHLANDER=y 839 # CONFIG_I2C_OCORES is not set 840 # CONFIG_I2C_SH_MOBILE is not set ··· 875 # CONFIG_I2C_DEBUG_BUS is not set 876 # CONFIG_I2C_DEBUG_CHIP is not set 877 # CONFIG_SPI is not set 878 # CONFIG_W1 is not set 879 # CONFIG_POWER_SUPPLY is not set 880 CONFIG_HWMON=y ··· 911 # CONFIG_SENSORS_ADM1029 is not set 912 # CONFIG_SENSORS_ADM1031 is not set 913 # CONFIG_SENSORS_ADM9240 is not set 914 # CONFIG_SENSORS_ADT7470 is not set 915 # CONFIG_SENSORS_ADT7473 is not set 916 # CONFIG_SENSORS_ATXP1 is not set ··· 960 # CONFIG_THERMAL is not set 961 # CONFIG_THERMAL_HWMON is not set 962 # CONFIG_WATCHDOG is not set 963 964 # 965 # Sonics Silicon Backplane 966 # 967 - CONFIG_SSB_POSSIBLE=y 968 # CONFIG_SSB is not set 969 970 # ··· 973 # CONFIG_MFD_CORE is not set 974 # CONFIG_MFD_SM501 is not set 975 # CONFIG_HTC_PASIC3 is not set 976 # CONFIG_MFD_TMIO is not set 977 # CONFIG_MFD_WM8400 is not set 978 # CONFIG_MFD_WM8350_I2C is not set 979 980 # 981 # Multimedia devices ··· 1007 # CONFIG_FIRMWARE_EDID is not set 1008 # CONFIG_FB_DDC is not set 1009 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 1010 - CONFIG_FB_CFB_FILLRECT=m 1011 - CONFIG_FB_CFB_COPYAREA=m 1012 - CONFIG_FB_CFB_IMAGEBLIT=m 1013 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 1014 - # CONFIG_FB_SYS_FILLRECT is not set 1015 - # CONFIG_FB_SYS_COPYAREA is not set 1016 - # CONFIG_FB_SYS_IMAGEBLIT is not set 1017 # CONFIG_FB_FOREIGN_ENDIAN is not set 1018 - # CONFIG_FB_SYS_FOPS is not set 1019 # CONFIG_FB_SVGALIB is not set 1020 # CONFIG_FB_MACMODES is not set 1021 # CONFIG_FB_BACKLIGHT is not set ··· 1054 CONFIG_FB_SH_MOBILE_LCDC=m 1055 # CONFIG_FB_VIRTUAL is not set 1056 # CONFIG_FB_METRONOME is not set 1057 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 1058 1059 # ··· 1089 # 1090 1091 # 1092 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1093 # 1094 # CONFIG_USB_GADGET is not set 1095 # CONFIG_MMC is not set 1096 # CONFIG_MEMSTICK is not set 1097 # CONFIG_NEW_LEDS is not set ··· 1128 # CONFIG_RTC_DRV_M41T80 is not set 1129 # CONFIG_RTC_DRV_S35390A is not set 1130 # CONFIG_RTC_DRV_FM3130 is not set 1131 1132 # 1133 # SPI RTC drivers ··· 1215 CONFIG_HUGETLBFS=y 1216 CONFIG_HUGETLB_PAGE=y 1217 CONFIG_CONFIGFS_FS=m 1218 - 1219 - # 1220 - # Miscellaneous filesystems 1221 - # 1222 # CONFIG_ADFS_FS is not set 1223 # CONFIG_AFFS_FS is not set 1224 # CONFIG_HFS_FS is not set ··· 1345 # CONFIG_DEBUG_MEMORY_INIT is not set 1346 # CONFIG_DEBUG_LIST is not set 1347 # CONFIG_DEBUG_SG is not set 1348 CONFIG_FRAME_POINTER=y 1349 # CONFIG_RCU_TORTURE_TEST is not set 1350 # CONFIG_KPROBES_SANITY_TEST is not set ··· 1355 # CONFIG_FAULT_INJECTION is not set 1356 # CONFIG_LATENCYTOP is not set 1357 CONFIG_NOP_TRACER=y 1358 - CONFIG_HAVE_FTRACE=y 1359 - # CONFIG_FTRACE is not set 1360 # CONFIG_IRQSOFF_TRACER is not set 1361 # CONFIG_PREEMPT_TRACER is not set 1362 # CONFIG_SCHED_TRACER is not set 1363 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1364 # CONFIG_BOOT_TRACER is not set 1365 # CONFIG_STACK_TRACER is not set 1366 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1367 # CONFIG_SAMPLES is not set 1368 CONFIG_SH_STANDARD_BIOS=y 1369 # CONFIG_EARLY_SCIF_CONSOLE is not set 1370 CONFIG_EARLY_PRINTK=y ··· 1385 CONFIG_DEBUG_STACK_USAGE=y 1386 CONFIG_4KSTACKS=y 1387 # CONFIG_IRQSTACKS is not set 1388 - # CONFIG_SH_KGDB is not set 1389 1390 # 1391 # Security options ··· 1403 # 1404 # CONFIG_CRYPTO_FIPS is not set 1405 CONFIG_CRYPTO_ALGAPI=y 1406 - CONFIG_CRYPTO_AEAD=y 1407 CONFIG_CRYPTO_BLKCIPHER=y 1408 CONFIG_CRYPTO_HASH=y 1409 - CONFIG_CRYPTO_RNG=y 1410 CONFIG_CRYPTO_MANAGER=y 1411 # CONFIG_CRYPTO_GF128MUL is not set 1412 # CONFIG_CRYPTO_NULL is not set 1413 # CONFIG_CRYPTO_CRYPTD is not set ··· 1495 # Library routines 1496 # 1497 CONFIG_BITREVERSE=y 1498 # CONFIG_CRC_CCITT is not set 1499 # CONFIG_CRC16 is not set 1500 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:14:41 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 13 CONFIG_GENERIC_HARDIRQS=y 14 CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y 15 CONFIG_GENERIC_IRQ_PROBE=y 16 + CONFIG_GENERIC_GPIO=y 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_NUMA=y 22 CONFIG_SYS_SUPPORTS_PCI=y 23 CONFIG_STACKTRACE_SUPPORT=y ··· 63 # CONFIG_SYSCTL_SYSCALL is not set 64 CONFIG_KALLSYMS=y 65 CONFIG_KALLSYMS_ALL=y 66 + CONFIG_KALLSYMS_STRIP_GENERATED=y 67 # CONFIG_KALLSYMS_EXTRA_PASS is not set 68 CONFIG_HOTPLUG=y 69 CONFIG_PRINTK=y ··· 84 # CONFIG_SLUB is not set 85 # CONFIG_SLOB is not set 86 CONFIG_PROFILING=y 87 + CONFIG_TRACEPOINTS=y 88 # CONFIG_MARKERS is not set 89 CONFIG_OPROFILE=y 90 CONFIG_HAVE_OPROFILE=y ··· 97 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 98 CONFIG_SLABINFO=y 99 CONFIG_RT_MUTEXES=y 100 CONFIG_BASE_SMALL=0 101 CONFIG_MODULES=y 102 # CONFIG_MODULE_FORCE_LOAD is not set ··· 105 # CONFIG_MODULE_FORCE_UNLOAD is not set 106 # CONFIG_MODVERSIONS is not set 107 # CONFIG_MODULE_SRCVERSION_ALL is not set 108 CONFIG_BLOCK=y 109 # CONFIG_LBD is not set 110 # CONFIG_BLK_DEV_IO_TRACE is not set 111 # CONFIG_BLK_DEV_BSG is not set 112 # CONFIG_BLK_DEV_INTEGRITY is not set 113 ··· 126 CONFIG_DEFAULT_NOOP=y 127 CONFIG_DEFAULT_IOSCHED="noop" 128 # CONFIG_CLASSIC_RCU is not set 129 + # CONFIG_TREE_RCU is not set 130 + CONFIG_PREEMPT_RCU=y 131 + CONFIG_RCU_TRACE=y 132 + # CONFIG_TREE_RCU_TRACE is not set 133 + CONFIG_PREEMPT_RCU_TRACE=y 134 # CONFIG_FREEZER is not set 135 136 # ··· 135 CONFIG_CPU_SH4A=y 136 CONFIG_CPU_SHX2=y 137 # CONFIG_CPU_SUBTYPE_SH7619 is not set 138 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 139 # CONFIG_CPU_SUBTYPE_SH7203 is not set 140 # CONFIG_CPU_SUBTYPE_SH7206 is not set 141 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 211 CONFIG_PAGEFLAGS_EXTENDED=y 212 CONFIG_SPLIT_PTLOCK_CPUS=4 213 CONFIG_MIGRATION=y 214 # CONFIG_PHYS_ADDR_T_64BIT is not set 215 CONFIG_ZONE_DMA_FLAG=0 216 CONFIG_NR_QUICK=2 ··· 307 # CONFIG_PREEMPT_NONE is not set 308 # CONFIG_PREEMPT_VOLUNTARY is not set 309 CONFIG_PREEMPT=y 310 CONFIG_GUSA=y 311 312 # ··· 326 CONFIG_SH_PCIDMA_NONCOHERENT=y 327 CONFIG_PCI_AUTO=y 328 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 329 + # CONFIG_PCIEPORTBUS is not set 330 # CONFIG_ARCH_SUPPORTS_MSI is not set 331 # CONFIG_PCI_LEGACY is not set 332 # CONFIG_PCI_DEBUG is not set ··· 339 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 340 # CONFIG_HAVE_AOUT is not set 341 CONFIG_BINFMT_MISC=m 342 + 343 + # 344 + # Power management options (EXPERIMENTAL) 345 + # 346 + # CONFIG_PM is not set 347 + # CONFIG_CPU_IDLE is not set 348 CONFIG_NET=y 349 350 # 351 # Networking options 352 # 353 + CONFIG_COMPAT_NET_DEV_OPS=y 354 CONFIG_PACKET=y 355 # CONFIG_PACKET_MMAP is not set 356 CONFIG_UNIX=y ··· 406 # CONFIG_ECONET is not set 407 # CONFIG_WAN_ROUTER is not set 408 # CONFIG_NET_SCHED is not set 409 + # CONFIG_DCB is not set 410 411 # 412 # Network testing ··· 423 # CONFIG_WIRELESS_OLD_REGULATORY is not set 424 CONFIG_WIRELESS_EXT=y 425 CONFIG_WIRELESS_EXT_SYSFS=y 426 + # CONFIG_LIB80211 is not set 427 # CONFIG_MAC80211 is not set 428 # CONFIG_RFKILL is not set 429 # CONFIG_NET_9P is not set 430 ··· 467 CONFIG_EEPROM_93CX6=y 468 # CONFIG_SGI_IOC4 is not set 469 # CONFIG_TIFM_CORE is not set 470 + # CONFIG_ICS932S401 is not set 471 # CONFIG_ENCLOSURE_SERVICES is not set 472 # CONFIG_HP_ILO is not set 473 + # CONFIG_C2PORT is not set 474 CONFIG_HAVE_IDE=y 475 # CONFIG_IDE is not set 476 ··· 511 # CONFIG_SCSI_SRP_ATTRS is not set 512 CONFIG_SCSI_LOWLEVEL=y 513 # CONFIG_ISCSI_TCP is not set 514 + # CONFIG_SCSI_CXGB3_ISCSI is not set 515 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 516 # CONFIG_SCSI_3W_9XXX is not set 517 # CONFIG_SCSI_ACARD is not set ··· 524 # CONFIG_MEGARAID_LEGACY is not set 525 # CONFIG_MEGARAID_SAS is not set 526 # CONFIG_SCSI_HPTIOP is not set 527 + # CONFIG_LIBFC is not set 528 + # CONFIG_FCOE is not set 529 # CONFIG_SCSI_DMX3191D is not set 530 # CONFIG_SCSI_FUTURE_DOMAIN is not set 531 # CONFIG_SCSI_IPS is not set ··· 636 # CONFIG_NET_VENDOR_3COM is not set 637 # CONFIG_SMC91X is not set 638 # CONFIG_SMC911X is not set 639 + # CONFIG_SMSC911X is not set 640 # CONFIG_NET_TULIP is not set 641 # CONFIG_HP100 is not set 642 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 671 # CONFIG_JME is not set 672 CONFIG_NETDEV_10000=y 673 # CONFIG_CHELSIO_T1 is not set 674 + CONFIG_CHELSIO_T3_DEPENDS=y 675 # CONFIG_CHELSIO_T3 is not set 676 # CONFIG_ENIC is not set 677 # CONFIG_IXGBE is not set ··· 679 # CONFIG_MYRI10GE is not set 680 # CONFIG_NETXEN_NIC is not set 681 # CONFIG_NIU is not set 682 + # CONFIG_MLX4_EN is not set 683 # CONFIG_MLX4_CORE is not set 684 # CONFIG_TEHUTI is not set 685 # CONFIG_BNX2X is not set ··· 732 # CONFIG_KEYBOARD_XTKBD is not set 733 # CONFIG_KEYBOARD_NEWTON is not set 734 # CONFIG_KEYBOARD_STOWAWAY is not set 735 + # CONFIG_KEYBOARD_GPIO is not set 736 # CONFIG_KEYBOARD_SH_KEYSC is not set 737 # CONFIG_INPUT_MOUSE is not set 738 # CONFIG_INPUT_JOYSTICK is not set ··· 773 CONFIG_SERIAL_CORE_CONSOLE=y 774 # CONFIG_SERIAL_JSM is not set 775 CONFIG_UNIX98_PTYS=y 776 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 777 CONFIG_LEGACY_PTYS=y 778 CONFIG_LEGACY_PTY_COUNT=256 779 # CONFIG_IPMI_HANDLER is not set ··· 812 # 813 # I2C system bus drivers (mostly embedded / system-on-chip) 814 # 815 + # CONFIG_I2C_GPIO is not set 816 CONFIG_I2C_HIGHLANDER=y 817 # CONFIG_I2C_OCORES is not set 818 # CONFIG_I2C_SH_MOBILE is not set ··· 851 # CONFIG_I2C_DEBUG_BUS is not set 852 # CONFIG_I2C_DEBUG_CHIP is not set 853 # CONFIG_SPI is not set 854 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 855 + CONFIG_GPIOLIB=y 856 + # CONFIG_DEBUG_GPIO is not set 857 + # CONFIG_GPIO_SYSFS is not set 858 + 859 + # 860 + # Memory mapped GPIO expanders: 861 + # 862 + 863 + # 864 + # I2C GPIO expanders: 865 + # 866 + # CONFIG_GPIO_MAX732X is not set 867 + # CONFIG_GPIO_PCA953X is not set 868 + # CONFIG_GPIO_PCF857X is not set 869 + 870 + # 871 + # PCI GPIO expanders: 872 + # 873 + # CONFIG_GPIO_BT8XX is not set 874 + 875 + # 876 + # SPI GPIO expanders: 877 + # 878 # CONFIG_W1 is not set 879 # CONFIG_POWER_SUPPLY is not set 880 CONFIG_HWMON=y ··· 863 # CONFIG_SENSORS_ADM1029 is not set 864 # CONFIG_SENSORS_ADM1031 is not set 865 # CONFIG_SENSORS_ADM9240 is not set 866 + # CONFIG_SENSORS_ADT7462 is not set 867 # CONFIG_SENSORS_ADT7470 is not set 868 # CONFIG_SENSORS_ADT7473 is not set 869 # CONFIG_SENSORS_ATXP1 is not set ··· 911 # CONFIG_THERMAL is not set 912 # CONFIG_THERMAL_HWMON is not set 913 # CONFIG_WATCHDOG is not set 914 + CONFIG_SSB_POSSIBLE=y 915 916 # 917 # Sonics Silicon Backplane 918 # 919 # CONFIG_SSB is not set 920 921 # ··· 924 # CONFIG_MFD_CORE is not set 925 # CONFIG_MFD_SM501 is not set 926 # CONFIG_HTC_PASIC3 is not set 927 + # CONFIG_TPS65010 is not set 928 + # CONFIG_TWL4030_CORE is not set 929 # CONFIG_MFD_TMIO is not set 930 + # CONFIG_PMIC_DA903X is not set 931 # CONFIG_MFD_WM8400 is not set 932 # CONFIG_MFD_WM8350_I2C is not set 933 + # CONFIG_REGULATOR is not set 934 935 # 936 # Multimedia devices ··· 954 # CONFIG_FIRMWARE_EDID is not set 955 # CONFIG_FB_DDC is not set 956 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 957 + # CONFIG_FB_CFB_FILLRECT is not set 958 + # CONFIG_FB_CFB_COPYAREA is not set 959 + # CONFIG_FB_CFB_IMAGEBLIT is not set 960 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 961 + CONFIG_FB_SYS_FILLRECT=m 962 + CONFIG_FB_SYS_COPYAREA=m 963 + CONFIG_FB_SYS_IMAGEBLIT=m 964 # CONFIG_FB_FOREIGN_ENDIAN is not set 965 + CONFIG_FB_SYS_FOPS=m 966 + CONFIG_FB_DEFERRED_IO=y 967 # CONFIG_FB_SVGALIB is not set 968 # CONFIG_FB_MACMODES is not set 969 # CONFIG_FB_BACKLIGHT is not set ··· 1000 CONFIG_FB_SH_MOBILE_LCDC=m 1001 # CONFIG_FB_VIRTUAL is not set 1002 # CONFIG_FB_METRONOME is not set 1003 + # CONFIG_FB_MB862XX is not set 1004 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 1005 1006 # ··· 1034 # 1035 1036 # 1037 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1038 # 1039 # CONFIG_USB_GADGET is not set 1040 + # CONFIG_UWB is not set 1041 # CONFIG_MMC is not set 1042 # CONFIG_MEMSTICK is not set 1043 # CONFIG_NEW_LEDS is not set ··· 1072 # CONFIG_RTC_DRV_M41T80 is not set 1073 # CONFIG_RTC_DRV_S35390A is not set 1074 # CONFIG_RTC_DRV_FM3130 is not set 1075 + # CONFIG_RTC_DRV_RX8581 is not set 1076 1077 # 1078 # SPI RTC drivers ··· 1158 CONFIG_HUGETLBFS=y 1159 CONFIG_HUGETLB_PAGE=y 1160 CONFIG_CONFIGFS_FS=m 1161 + CONFIG_MISC_FILESYSTEMS=y 1162 # CONFIG_ADFS_FS is not set 1163 # CONFIG_AFFS_FS is not set 1164 # CONFIG_HFS_FS is not set ··· 1291 # CONFIG_DEBUG_MEMORY_INIT is not set 1292 # CONFIG_DEBUG_LIST is not set 1293 # CONFIG_DEBUG_SG is not set 1294 + # CONFIG_DEBUG_NOTIFIERS is not set 1295 CONFIG_FRAME_POINTER=y 1296 # CONFIG_RCU_TORTURE_TEST is not set 1297 # CONFIG_KPROBES_SANITY_TEST is not set ··· 1300 # CONFIG_FAULT_INJECTION is not set 1301 # CONFIG_LATENCYTOP is not set 1302 CONFIG_NOP_TRACER=y 1303 + CONFIG_HAVE_FUNCTION_TRACER=y 1304 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1305 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1306 + CONFIG_RING_BUFFER=y 1307 + CONFIG_TRACING=y 1308 + 1309 + # 1310 + # Tracers 1311 + # 1312 + # CONFIG_FUNCTION_TRACER is not set 1313 # CONFIG_IRQSOFF_TRACER is not set 1314 # CONFIG_PREEMPT_TRACER is not set 1315 # CONFIG_SCHED_TRACER is not set 1316 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1317 # CONFIG_BOOT_TRACER is not set 1318 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1319 # CONFIG_STACK_TRACER is not set 1320 + # CONFIG_FTRACE_STARTUP_TEST is not set 1321 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1322 # CONFIG_SAMPLES is not set 1323 + CONFIG_HAVE_ARCH_KGDB=y 1324 + # CONFIG_KGDB is not set 1325 CONFIG_SH_STANDARD_BIOS=y 1326 # CONFIG_EARLY_SCIF_CONSOLE is not set 1327 CONFIG_EARLY_PRINTK=y ··· 1318 CONFIG_DEBUG_STACK_USAGE=y 1319 CONFIG_4KSTACKS=y 1320 # CONFIG_IRQSTACKS is not set 1321 + CONFIG_DUMP_CODE=y 1322 + # CONFIG_SH_NO_BSS_INIT is not set 1323 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1324 1325 # 1326 # Security options ··· 1334 # 1335 # CONFIG_CRYPTO_FIPS is not set 1336 CONFIG_CRYPTO_ALGAPI=y 1337 + CONFIG_CRYPTO_ALGAPI2=y 1338 + CONFIG_CRYPTO_AEAD2=y 1339 CONFIG_CRYPTO_BLKCIPHER=y 1340 + CONFIG_CRYPTO_BLKCIPHER2=y 1341 CONFIG_CRYPTO_HASH=y 1342 + CONFIG_CRYPTO_HASH2=y 1343 + CONFIG_CRYPTO_RNG2=y 1344 CONFIG_CRYPTO_MANAGER=y 1345 + CONFIG_CRYPTO_MANAGER2=y 1346 # CONFIG_CRYPTO_GF128MUL is not set 1347 # CONFIG_CRYPTO_NULL is not set 1348 # CONFIG_CRYPTO_CRYPTD is not set ··· 1422 # Library routines 1423 # 1424 CONFIG_BITREVERSE=y 1425 + CONFIG_GENERIC_FIND_LAST_BIT=y 1426 # CONFIG_CRC_CCITT is not set 1427 # CONFIG_CRC16 is not set 1428 CONFIG_CRC_T10DIF=y
+15 -11
arch/sh/configs/rsk7201_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc6 4 - # Mon Dec 8 14:48:02 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 77 # CONFIG_SLUB is not set 78 CONFIG_SLOB=y 79 CONFIG_PROFILING=y 80 # CONFIG_MARKERS is not set 81 CONFIG_OPROFILE=y 82 CONFIG_HAVE_OPROFILE=y ··· 88 CONFIG_HAVE_CLK=y 89 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 90 CONFIG_RT_MUTEXES=y 91 - CONFIG_TINY_SHMEM=y 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 113 CONFIG_DEFAULT_NOOP=y 114 CONFIG_DEFAULT_IOSCHED="noop" 115 CONFIG_CLASSIC_RCU=y 116 # CONFIG_FREEZER is not set 117 118 # ··· 187 CONFIG_SPARSEMEM_STATIC=y 188 CONFIG_PAGEFLAGS_EXTENDED=y 189 CONFIG_SPLIT_PTLOCK_CPUS=4 190 - # CONFIG_RESOURCES_64BIT is not set 191 # CONFIG_PHYS_ADDR_T_64BIT is not set 192 CONFIG_ZONE_DMA_FLAG=0 193 CONFIG_NR_QUICK=2 ··· 564 # CONFIG_DMADEVICES is not set 565 # CONFIG_UIO is not set 566 # CONFIG_STAGING is not set 567 - CONFIG_STAGING_EXCLUDE_BUILD=y 568 569 # 570 # File systems ··· 606 # CONFIG_TMPFS is not set 607 # CONFIG_HUGETLB_PAGE is not set 608 # CONFIG_CONFIGFS_FS is not set 609 - 610 - # 611 - # Miscellaneous filesystems 612 - # 613 # CONFIG_ADFS_FS is not set 614 # CONFIG_AFFS_FS is not set 615 # CONFIG_HFS_FS is not set ··· 655 CONFIG_DEBUG_FS=y 656 # CONFIG_HEADERS_CHECK is not set 657 # CONFIG_DEBUG_KERNEL is not set 658 # CONFIG_DEBUG_BUGVERBOSE is not set 659 # CONFIG_DEBUG_MEMORY_INIT is not set 660 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 661 # CONFIG_LATENCYTOP is not set 662 CONFIG_SYSCTL_SYSCALL_CHECK=y 663 CONFIG_HAVE_FUNCTION_TRACER=y 664 CONFIG_HAVE_DYNAMIC_FTRACE=y 665 CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 666 667 # 668 # Tracers 669 # 670 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 671 # CONFIG_SAMPLES is not set 672 # CONFIG_SH_STANDARD_BIOS is not set 673 # CONFIG_EARLY_SCIF_CONSOLE is not set 674 675 # 676 # Security options ··· 691 # Library routines 692 # 693 CONFIG_BITREVERSE=y 694 # CONFIG_CRC_CCITT is not set 695 # CONFIG_CRC16 is not set 696 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:19:04 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 77 # CONFIG_SLUB is not set 78 CONFIG_SLOB=y 79 CONFIG_PROFILING=y 80 + CONFIG_TRACEPOINTS=y 81 # CONFIG_MARKERS is not set 82 CONFIG_OPROFILE=y 83 CONFIG_HAVE_OPROFILE=y ··· 87 CONFIG_HAVE_CLK=y 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_RT_MUTEXES=y 90 CONFIG_BASE_SMALL=0 91 CONFIG_MODULES=y 92 # CONFIG_MODULE_FORCE_LOAD is not set 93 # CONFIG_MODULE_UNLOAD is not set 94 # CONFIG_MODVERSIONS is not set 95 # CONFIG_MODULE_SRCVERSION_ALL is not set 96 CONFIG_BLOCK=y 97 # CONFIG_LBD is not set 98 # CONFIG_BLK_DEV_IO_TRACE is not set 99 # CONFIG_BLK_DEV_BSG is not set 100 # CONFIG_BLK_DEV_INTEGRITY is not set 101 ··· 115 CONFIG_DEFAULT_NOOP=y 116 CONFIG_DEFAULT_IOSCHED="noop" 117 CONFIG_CLASSIC_RCU=y 118 + # CONFIG_TREE_RCU is not set 119 + # CONFIG_PREEMPT_RCU is not set 120 + # CONFIG_TREE_RCU_TRACE is not set 121 + # CONFIG_PREEMPT_RCU_TRACE is not set 122 # CONFIG_FREEZER is not set 123 124 # ··· 185 CONFIG_SPARSEMEM_STATIC=y 186 CONFIG_PAGEFLAGS_EXTENDED=y 187 CONFIG_SPLIT_PTLOCK_CPUS=4 188 # CONFIG_PHYS_ADDR_T_64BIT is not set 189 CONFIG_ZONE_DMA_FLAG=0 190 CONFIG_NR_QUICK=2 ··· 563 # CONFIG_DMADEVICES is not set 564 # CONFIG_UIO is not set 565 # CONFIG_STAGING is not set 566 567 # 568 # File systems ··· 606 # CONFIG_TMPFS is not set 607 # CONFIG_HUGETLB_PAGE is not set 608 # CONFIG_CONFIGFS_FS is not set 609 + CONFIG_MISC_FILESYSTEMS=y 610 # CONFIG_ADFS_FS is not set 611 # CONFIG_AFFS_FS is not set 612 # CONFIG_HFS_FS is not set ··· 658 CONFIG_DEBUG_FS=y 659 # CONFIG_HEADERS_CHECK is not set 660 # CONFIG_DEBUG_KERNEL is not set 661 + CONFIG_STACKTRACE=y 662 # CONFIG_DEBUG_BUGVERBOSE is not set 663 # CONFIG_DEBUG_MEMORY_INIT is not set 664 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 665 # CONFIG_LATENCYTOP is not set 666 CONFIG_SYSCTL_SYSCALL_CHECK=y 667 + CONFIG_NOP_TRACER=y 668 CONFIG_HAVE_FUNCTION_TRACER=y 669 CONFIG_HAVE_DYNAMIC_FTRACE=y 670 CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 671 + CONFIG_RING_BUFFER=y 672 + CONFIG_TRACING=y 673 674 # 675 # Tracers 676 # 677 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 678 # CONFIG_SAMPLES is not set 679 + CONFIG_HAVE_ARCH_KGDB=y 680 # CONFIG_SH_STANDARD_BIOS is not set 681 # CONFIG_EARLY_SCIF_CONSOLE is not set 682 + # CONFIG_MORE_COMPILE_OPTIONS is not set 683 684 # 685 # Security options ··· 688 # Library routines 689 # 690 CONFIG_BITREVERSE=y 691 + CONFIG_GENERIC_FIND_LAST_BIT=y 692 # CONFIG_CRC_CCITT is not set 693 # CONFIG_CRC16 is not set 694 # CONFIG_CRC_T10DIF is not set
+72 -16
arch/sh/configs/rsk7203_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc6 4 - # Mon Dec 8 14:35:03 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 62 CONFIG_SYSCTL_SYSCALL=y 63 CONFIG_KALLSYMS=y 64 CONFIG_KALLSYMS_ALL=y 65 # CONFIG_KALLSYMS_EXTRA_PASS is not set 66 CONFIG_HOTPLUG=y 67 CONFIG_PRINTK=y ··· 82 # CONFIG_SLUB is not set 83 CONFIG_SLOB=y 84 CONFIG_PROFILING=y 85 # CONFIG_MARKERS is not set 86 CONFIG_OPROFILE=y 87 CONFIG_HAVE_OPROFILE=y ··· 93 CONFIG_HAVE_CLK=y 94 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 95 CONFIG_RT_MUTEXES=y 96 - CONFIG_TINY_SHMEM=y 97 CONFIG_BASE_SMALL=0 98 CONFIG_MODULES=y 99 # CONFIG_MODULE_FORCE_LOAD is not set 100 # CONFIG_MODULE_UNLOAD is not set 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 - CONFIG_KMOD=y 104 CONFIG_BLOCK=y 105 # CONFIG_LBD is not set 106 # CONFIG_BLK_DEV_IO_TRACE is not set 107 - # CONFIG_LSF is not set 108 # CONFIG_BLK_DEV_BSG is not set 109 # CONFIG_BLK_DEV_INTEGRITY is not set 110 ··· 118 CONFIG_DEFAULT_NOOP=y 119 CONFIG_DEFAULT_IOSCHED="noop" 120 CONFIG_CLASSIC_RCU=y 121 # CONFIG_FREEZER is not set 122 123 # ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 315 # 316 # Networking options 317 # 318 # CONFIG_PACKET is not set 319 # CONFIG_UNIX is not set 320 # CONFIG_NET_KEY is not set ··· 365 # CONFIG_ECONET is not set 366 # CONFIG_WAN_ROUTER is not set 367 # CONFIG_NET_SCHED is not set 368 369 # 370 # Network testing ··· 381 # CONFIG_CFG80211 is not set 382 # CONFIG_WIRELESS_OLD_REGULATORY is not set 383 # CONFIG_WIRELESS_EXT is not set 384 # CONFIG_MAC80211 is not set 385 - # CONFIG_IEEE80211 is not set 386 # CONFIG_RFKILL is not set 387 # CONFIG_NET_9P is not set 388 ··· 514 # CONFIG_EQUALIZER is not set 515 # CONFIG_TUN is not set 516 # CONFIG_VETH is not set 517 - # CONFIG_PHYLIB is not set 518 CONFIG_NET_ETHERNET=y 519 CONFIG_MII=y 520 # CONFIG_AX88796 is not set 521 # CONFIG_STNIC is not set 522 # CONFIG_SMC91X is not set 523 - CONFIG_SMC911X=y 524 # CONFIG_IBM_NEW_EMAC_ZMII is not set 525 # CONFIG_IBM_NEW_EMAC_RGMII is not set 526 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 636 # CONFIG_TCG_TPM is not set 637 # CONFIG_I2C is not set 638 # CONFIG_SPI is not set 639 # CONFIG_W1 is not set 640 # CONFIG_POWER_SUPPLY is not set 641 # CONFIG_HWMON is not set ··· 730 CONFIG_HID_A4TECH=y 731 CONFIG_HID_APPLE=y 732 CONFIG_HID_BELKIN=y 733 - CONFIG_HID_BRIGHT=y 734 CONFIG_HID_CHERRY=y 735 CONFIG_HID_CHICONY=y 736 CONFIG_HID_CYPRESS=y 737 - CONFIG_HID_DELL=y 738 CONFIG_HID_EZKEY=y 739 CONFIG_HID_GYRATION=y 740 CONFIG_HID_LOGITECH=y ··· 740 # CONFIG_LOGIRUMBLEPAD2_FF is not set 741 CONFIG_HID_MICROSOFT=y 742 CONFIG_HID_MONTEREY=y 743 CONFIG_HID_PANTHERLORD=y 744 # CONFIG_PANTHERLORD_FF is not set 745 CONFIG_HID_PETALYNX=y 746 CONFIG_HID_SAMSUNG=y 747 CONFIG_HID_SONY=y 748 CONFIG_HID_SUNPLUS=y 749 CONFIG_THRUSTMASTER_FF=m 750 CONFIG_ZEROPLUS_FF=m 751 CONFIG_USB_SUPPORT=y ··· 893 # CONFIG_DMADEVICES is not set 894 # CONFIG_UIO is not set 895 # CONFIG_STAGING is not set 896 - CONFIG_STAGING_EXCLUDE_BUILD=y 897 898 # 899 # File systems ··· 935 # CONFIG_TMPFS is not set 936 # CONFIG_HUGETLB_PAGE is not set 937 # CONFIG_CONFIGFS_FS is not set 938 - 939 - # 940 - # Miscellaneous filesystems 941 - # 942 # CONFIG_ADFS_FS is not set 943 # CONFIG_AFFS_FS is not set 944 # CONFIG_HFS_FS is not set ··· 1003 # CONFIG_DEBUG_OBJECTS_SELFTEST is not set 1004 # CONFIG_DEBUG_OBJECTS_FREE is not set 1005 # CONFIG_DEBUG_OBJECTS_TIMERS is not set 1006 # CONFIG_DEBUG_RT_MUTEXES is not set 1007 # CONFIG_RT_MUTEX_TESTER is not set 1008 # CONFIG_DEBUG_SPINLOCK is not set ··· 1013 # CONFIG_LOCK_STAT is not set 1014 CONFIG_DEBUG_SPINLOCK_SLEEP=y 1015 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1016 # CONFIG_DEBUG_KOBJECT is not set 1017 CONFIG_DEBUG_BUGVERBOSE=y 1018 CONFIG_DEBUG_INFO=y ··· 1022 # CONFIG_DEBUG_MEMORY_INIT is not set 1023 CONFIG_DEBUG_LIST=y 1024 CONFIG_DEBUG_SG=y 1025 CONFIG_FRAME_POINTER=y 1026 # CONFIG_RCU_TORTURE_TEST is not set 1027 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1031 # CONFIG_FAULT_INJECTION is not set 1032 # CONFIG_LATENCYTOP is not set 1033 CONFIG_SYSCTL_SYSCALL_CHECK=y 1034 CONFIG_HAVE_FUNCTION_TRACER=y 1035 CONFIG_HAVE_DYNAMIC_FTRACE=y 1036 CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1037 1038 # 1039 # Tracers ··· 1045 # CONFIG_SCHED_TRACER is not set 1046 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1047 # CONFIG_BOOT_TRACER is not set 1048 # CONFIG_STACK_TRACER is not set 1049 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1050 # CONFIG_SAMPLES is not set 1051 # CONFIG_SH_STANDARD_BIOS is not set 1052 CONFIG_EARLY_SCIF_CONSOLE=y 1053 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xfffe8000 ··· 1060 CONFIG_DEBUG_STACKOVERFLOW=y 1061 CONFIG_DEBUG_STACK_USAGE=y 1062 # CONFIG_IRQSTACKS is not set 1063 1064 # 1065 # Security options ··· 1077 # Library routines 1078 # 1079 CONFIG_BITREVERSE=y 1080 # CONFIG_CRC_CCITT is not set 1081 # CONFIG_CRC16 is not set 1082 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:20:31 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 62 CONFIG_SYSCTL_SYSCALL=y 63 CONFIG_KALLSYMS=y 64 CONFIG_KALLSYMS_ALL=y 65 + CONFIG_KALLSYMS_STRIP_GENERATED=y 66 # CONFIG_KALLSYMS_EXTRA_PASS is not set 67 CONFIG_HOTPLUG=y 68 CONFIG_PRINTK=y ··· 81 # CONFIG_SLUB is not set 82 CONFIG_SLOB=y 83 CONFIG_PROFILING=y 84 + CONFIG_TRACEPOINTS=y 85 # CONFIG_MARKERS is not set 86 CONFIG_OPROFILE=y 87 CONFIG_HAVE_OPROFILE=y ··· 91 CONFIG_HAVE_CLK=y 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_RT_MUTEXES=y 94 CONFIG_BASE_SMALL=0 95 CONFIG_MODULES=y 96 # CONFIG_MODULE_FORCE_LOAD is not set 97 # CONFIG_MODULE_UNLOAD is not set 98 # CONFIG_MODVERSIONS is not set 99 # CONFIG_MODULE_SRCVERSION_ALL is not set 100 CONFIG_BLOCK=y 101 # CONFIG_LBD is not set 102 # CONFIG_BLK_DEV_IO_TRACE is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 119 CONFIG_DEFAULT_NOOP=y 120 CONFIG_DEFAULT_IOSCHED="noop" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 189 CONFIG_SPARSEMEM_STATIC=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 ··· 313 # 314 # Networking options 315 # 316 + # CONFIG_NET_NS is not set 317 + CONFIG_COMPAT_NET_DEV_OPS=y 318 # CONFIG_PACKET is not set 319 # CONFIG_UNIX is not set 320 # CONFIG_NET_KEY is not set ··· 361 # CONFIG_ECONET is not set 362 # CONFIG_WAN_ROUTER is not set 363 # CONFIG_NET_SCHED is not set 364 + # CONFIG_DCB is not set 365 366 # 367 # Network testing ··· 376 # CONFIG_CFG80211 is not set 377 # CONFIG_WIRELESS_OLD_REGULATORY is not set 378 # CONFIG_WIRELESS_EXT is not set 379 + # CONFIG_LIB80211 is not set 380 # CONFIG_MAC80211 is not set 381 # CONFIG_RFKILL is not set 382 # CONFIG_NET_9P is not set 383 ··· 509 # CONFIG_EQUALIZER is not set 510 # CONFIG_TUN is not set 511 # CONFIG_VETH is not set 512 + CONFIG_PHYLIB=y 513 + 514 + # 515 + # MII PHY device drivers 516 + # 517 + # CONFIG_MARVELL_PHY is not set 518 + # CONFIG_DAVICOM_PHY is not set 519 + # CONFIG_QSEMI_PHY is not set 520 + # CONFIG_LXT_PHY is not set 521 + # CONFIG_CICADA_PHY is not set 522 + # CONFIG_VITESSE_PHY is not set 523 + CONFIG_SMSC_PHY=y 524 + # CONFIG_BROADCOM_PHY is not set 525 + # CONFIG_ICPLUS_PHY is not set 526 + # CONFIG_REALTEK_PHY is not set 527 + # CONFIG_NATIONAL_PHY is not set 528 + # CONFIG_STE10XP is not set 529 + # CONFIG_LSI_ET1011C_PHY is not set 530 + # CONFIG_FIXED_PHY is not set 531 + # CONFIG_MDIO_BITBANG is not set 532 CONFIG_NET_ETHERNET=y 533 CONFIG_MII=y 534 # CONFIG_AX88796 is not set 535 # CONFIG_STNIC is not set 536 # CONFIG_SMC91X is not set 537 + # CONFIG_SMC911X is not set 538 + CONFIG_SMSC911X=y 539 # CONFIG_IBM_NEW_EMAC_ZMII is not set 540 # CONFIG_IBM_NEW_EMAC_RGMII is not set 541 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 611 # CONFIG_TCG_TPM is not set 612 # CONFIG_I2C is not set 613 # CONFIG_SPI is not set 614 + CONFIG_ARCH_REQUIRE_GPIOLIB=y 615 + CONFIG_GPIOLIB=y 616 + # CONFIG_DEBUG_GPIO is not set 617 + # CONFIG_GPIO_SYSFS is not set 618 + 619 + # 620 + # Memory mapped GPIO expanders: 621 + # 622 + 623 + # 624 + # I2C GPIO expanders: 625 + # 626 + 627 + # 628 + # PCI GPIO expanders: 629 + # 630 + 631 + # 632 + # SPI GPIO expanders: 633 + # 634 # CONFIG_W1 is not set 635 # CONFIG_POWER_SUPPLY is not set 636 # CONFIG_HWMON is not set ··· 685 CONFIG_HID_A4TECH=y 686 CONFIG_HID_APPLE=y 687 CONFIG_HID_BELKIN=y 688 CONFIG_HID_CHERRY=y 689 CONFIG_HID_CHICONY=y 690 CONFIG_HID_CYPRESS=y 691 CONFIG_HID_EZKEY=y 692 CONFIG_HID_GYRATION=y 693 CONFIG_HID_LOGITECH=y ··· 697 # CONFIG_LOGIRUMBLEPAD2_FF is not set 698 CONFIG_HID_MICROSOFT=y 699 CONFIG_HID_MONTEREY=y 700 + # CONFIG_HID_NTRIG is not set 701 CONFIG_HID_PANTHERLORD=y 702 # CONFIG_PANTHERLORD_FF is not set 703 CONFIG_HID_PETALYNX=y 704 CONFIG_HID_SAMSUNG=y 705 CONFIG_HID_SONY=y 706 CONFIG_HID_SUNPLUS=y 707 + # CONFIG_GREENASIA_FF is not set 708 + # CONFIG_HID_TOPSEED is not set 709 CONFIG_THRUSTMASTER_FF=m 710 CONFIG_ZEROPLUS_FF=m 711 CONFIG_USB_SUPPORT=y ··· 847 # CONFIG_DMADEVICES is not set 848 # CONFIG_UIO is not set 849 # CONFIG_STAGING is not set 850 851 # 852 # File systems ··· 890 # CONFIG_TMPFS is not set 891 # CONFIG_HUGETLB_PAGE is not set 892 # CONFIG_CONFIGFS_FS is not set 893 + CONFIG_MISC_FILESYSTEMS=y 894 # CONFIG_ADFS_FS is not set 895 # CONFIG_AFFS_FS is not set 896 # CONFIG_HFS_FS is not set ··· 961 # CONFIG_DEBUG_OBJECTS_SELFTEST is not set 962 # CONFIG_DEBUG_OBJECTS_FREE is not set 963 # CONFIG_DEBUG_OBJECTS_TIMERS is not set 964 + CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 965 # CONFIG_DEBUG_RT_MUTEXES is not set 966 # CONFIG_RT_MUTEX_TESTER is not set 967 # CONFIG_DEBUG_SPINLOCK is not set ··· 970 # CONFIG_LOCK_STAT is not set 971 CONFIG_DEBUG_SPINLOCK_SLEEP=y 972 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 973 + CONFIG_STACKTRACE=y 974 # CONFIG_DEBUG_KOBJECT is not set 975 CONFIG_DEBUG_BUGVERBOSE=y 976 CONFIG_DEBUG_INFO=y ··· 978 # CONFIG_DEBUG_MEMORY_INIT is not set 979 CONFIG_DEBUG_LIST=y 980 CONFIG_DEBUG_SG=y 981 + # CONFIG_DEBUG_NOTIFIERS is not set 982 CONFIG_FRAME_POINTER=y 983 # CONFIG_RCU_TORTURE_TEST is not set 984 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 986 # CONFIG_FAULT_INJECTION is not set 987 # CONFIG_LATENCYTOP is not set 988 CONFIG_SYSCTL_SYSCALL_CHECK=y 989 + CONFIG_NOP_TRACER=y 990 CONFIG_HAVE_FUNCTION_TRACER=y 991 CONFIG_HAVE_DYNAMIC_FTRACE=y 992 CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 993 + CONFIG_RING_BUFFER=y 994 + CONFIG_TRACING=y 995 996 # 997 # Tracers ··· 997 # CONFIG_SCHED_TRACER is not set 998 # CONFIG_CONTEXT_SWITCH_TRACER is not set 999 # CONFIG_BOOT_TRACER is not set 1000 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1001 # CONFIG_STACK_TRACER is not set 1002 + # CONFIG_FTRACE_STARTUP_TEST is not set 1003 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1004 # CONFIG_SAMPLES is not set 1005 + CONFIG_HAVE_ARCH_KGDB=y 1006 + # CONFIG_KGDB is not set 1007 # CONFIG_SH_STANDARD_BIOS is not set 1008 CONFIG_EARLY_SCIF_CONSOLE=y 1009 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xfffe8000 ··· 1008 CONFIG_DEBUG_STACKOVERFLOW=y 1009 CONFIG_DEBUG_STACK_USAGE=y 1010 # CONFIG_IRQSTACKS is not set 1011 + CONFIG_DUMP_CODE=y 1012 + # CONFIG_SH_NO_BSS_INIT is not set 1013 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1014 1015 # 1016 # Security options ··· 1022 # Library routines 1023 # 1024 CONFIG_BITREVERSE=y 1025 + CONFIG_GENERIC_FIND_LAST_BIT=y 1026 # CONFIG_CRC_CCITT is not set 1027 # CONFIG_CRC16 is not set 1028 # CONFIG_CRC_T10DIF is not set
+63 -24
arch/sh/configs/rts7751r2d1_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:44:36 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 CONFIG_PROFILING=y 82 # CONFIG_MARKERS is not set 83 CONFIG_OPROFILE=y 84 CONFIG_HAVE_OPROFILE=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 - # CONFIG_TINY_SHMEM is not set 96 CONFIG_BASE_SMALL=0 97 CONFIG_MODULES=y 98 # CONFIG_MODULE_FORCE_LOAD is not set 99 # CONFIG_MODULE_UNLOAD is not set 100 # CONFIG_MODVERSIONS is not set 101 # CONFIG_MODULE_SRCVERSION_ALL is not set 102 - CONFIG_KMOD=y 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 - # CONFIG_LSF is not set 107 # CONFIG_BLK_DEV_BSG is not set 108 # CONFIG_BLK_DEV_INTEGRITY is not set 109 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH4=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 297 CONFIG_SH_PCIDMA_NONCOHERENT=y 298 CONFIG_PCI_AUTO=y 299 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 300 # CONFIG_ARCH_SUPPORTS_MSI is not set 301 CONFIG_PCI_LEGACY=y 302 # CONFIG_PCCARD is not set ··· 313 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 314 # CONFIG_HAVE_AOUT is not set 315 # CONFIG_BINFMT_MISC is not set 316 CONFIG_NET=y 317 318 # 319 # Networking options 320 # 321 CONFIG_PACKET=y 322 # CONFIG_PACKET_MMAP is not set 323 CONFIG_UNIX=y ··· 377 # CONFIG_ECONET is not set 378 # CONFIG_WAN_ROUTER is not set 379 # CONFIG_NET_SCHED is not set 380 381 # 382 # Network testing ··· 394 # CONFIG_WIRELESS_OLD_REGULATORY is not set 395 CONFIG_WIRELESS_EXT=y 396 CONFIG_WIRELESS_EXT_SYSFS=y 397 # CONFIG_MAC80211 is not set 398 - # CONFIG_IEEE80211 is not set 399 # CONFIG_RFKILL is not set 400 # CONFIG_NET_9P is not set 401 ··· 439 # CONFIG_TIFM_CORE is not set 440 # CONFIG_ENCLOSURE_SERVICES is not set 441 # CONFIG_HP_ILO is not set 442 CONFIG_HAVE_IDE=y 443 # CONFIG_IDE is not set 444 ··· 482 # CONFIG_SCSI_SRP_ATTRS is not set 483 CONFIG_SCSI_LOWLEVEL=y 484 # CONFIG_ISCSI_TCP is not set 485 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 486 # CONFIG_SCSI_3W_9XXX is not set 487 # CONFIG_SCSI_ACARD is not set ··· 496 # CONFIG_MEGARAID_LEGACY is not set 497 # CONFIG_MEGARAID_SAS is not set 498 # CONFIG_SCSI_HPTIOP is not set 499 # CONFIG_SCSI_DMX3191D is not set 500 # CONFIG_SCSI_FUTURE_DOMAIN is not set 501 # CONFIG_SCSI_IPS is not set ··· 610 # CONFIG_SMC91X is not set 611 # CONFIG_ENC28J60 is not set 612 # CONFIG_SMC911X is not set 613 # CONFIG_NET_TULIP is not set 614 # CONFIG_HP100 is not set 615 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 626 # CONFIG_ADAPTEC_STARFIRE is not set 627 # CONFIG_B44 is not set 628 # CONFIG_FORCEDETH is not set 629 - # CONFIG_EEPRO100 is not set 630 # CONFIG_E100 is not set 631 # CONFIG_FEALNX is not set 632 # CONFIG_NATSEMI is not set ··· 639 # CONFIG_R6040 is not set 640 # CONFIG_SIS900 is not set 641 # CONFIG_EPIC100 is not set 642 # CONFIG_SUNDANCE is not set 643 # CONFIG_TLAN is not set 644 # CONFIG_VIA_RHINE is not set ··· 668 # CONFIG_JME is not set 669 CONFIG_NETDEV_10000=y 670 # CONFIG_CHELSIO_T1 is not set 671 # CONFIG_CHELSIO_T3 is not set 672 # CONFIG_ENIC is not set 673 # CONFIG_IXGBE is not set ··· 677 # CONFIG_MYRI10GE is not set 678 # CONFIG_NETXEN_NIC is not set 679 # CONFIG_NIU is not set 680 # CONFIG_MLX4_CORE is not set 681 # CONFIG_TEHUTI is not set 682 # CONFIG_BNX2X is not set ··· 775 CONFIG_SERIAL_CORE_CONSOLE=y 776 # CONFIG_SERIAL_JSM is not set 777 CONFIG_UNIX98_PTYS=y 778 CONFIG_LEGACY_PTYS=y 779 CONFIG_LEGACY_PTY_COUNT=256 780 # CONFIG_IPMI_HANDLER is not set ··· 826 # CONFIG_THERMAL is not set 827 # CONFIG_THERMAL_HWMON is not set 828 # CONFIG_WATCHDOG is not set 829 830 # 831 # Sonics Silicon Backplane 832 # 833 - CONFIG_SSB_POSSIBLE=y 834 # CONFIG_SSB is not set 835 836 # ··· 840 CONFIG_MFD_SM501=y 841 # CONFIG_HTC_PASIC3 is not set 842 # CONFIG_MFD_TMIO is not set 843 - # CONFIG_MFD_WM8400 is not set 844 845 # 846 # Multimedia devices ··· 873 CONFIG_FB_CFB_COPYAREA=y 874 CONFIG_FB_CFB_IMAGEBLIT=y 875 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 876 - # CONFIG_FB_SYS_FILLRECT is not set 877 - # CONFIG_FB_SYS_COPYAREA is not set 878 - # CONFIG_FB_SYS_IMAGEBLIT is not set 879 # CONFIG_FB_FOREIGN_ENDIAN is not set 880 - # CONFIG_FB_SYS_FOPS is not set 881 # CONFIG_FB_SVGALIB is not set 882 # CONFIG_FB_MACMODES is not set 883 # CONFIG_FB_BACKLIGHT is not set ··· 917 CONFIG_FB_SM501=y 918 # CONFIG_FB_VIRTUAL is not set 919 # CONFIG_FB_METRONOME is not set 920 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 921 922 # ··· 1054 CONFIG_HID_A4TECH=y 1055 CONFIG_HID_APPLE=y 1056 CONFIG_HID_BELKIN=y 1057 - CONFIG_HID_BRIGHT=y 1058 CONFIG_HID_CHERRY=y 1059 CONFIG_HID_CHICONY=y 1060 CONFIG_HID_CYPRESS=y 1061 - CONFIG_HID_DELL=y 1062 CONFIG_HID_EZKEY=y 1063 CONFIG_HID_GYRATION=y 1064 CONFIG_HID_LOGITECH=y ··· 1064 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1065 CONFIG_HID_MICROSOFT=y 1066 CONFIG_HID_MONTEREY=y 1067 CONFIG_HID_PANTHERLORD=y 1068 # CONFIG_PANTHERLORD_FF is not set 1069 CONFIG_HID_PETALYNX=y 1070 CONFIG_HID_SAMSUNG=y 1071 CONFIG_HID_SONY=y 1072 CONFIG_HID_SUNPLUS=y 1073 CONFIG_THRUSTMASTER_FF=m 1074 CONFIG_ZEROPLUS_FF=m 1075 CONFIG_USB_SUPPORT=y ··· 1093 # CONFIG_USB_OTG_WHITELIST is not set 1094 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1095 # CONFIG_USB_MON is not set 1096 1097 # 1098 # USB Host Controller Drivers ··· 1110 # CONFIG_USB_UHCI_HCD is not set 1111 # CONFIG_USB_SL811_HCD is not set 1112 # CONFIG_USB_R8A66597_HCD is not set 1113 1114 # 1115 # USB Device Class drivers ··· 1122 # CONFIG_USB_TMC is not set 1123 1124 # 1125 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1126 # 1127 1128 # 1129 - # may also be needed; see USB_STORAGE Help for more information 1130 # 1131 CONFIG_USB_STORAGE=y 1132 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1179 # CONFIG_USB_ISIGHTFW is not set 1180 # CONFIG_USB_VST is not set 1181 # CONFIG_USB_GADGET is not set 1182 # CONFIG_MMC is not set 1183 # CONFIG_MEMSTICK is not set 1184 # CONFIG_NEW_LEDS is not set ··· 1205 # 1206 # CONFIG_RTC_DRV_M41T94 is not set 1207 # CONFIG_RTC_DRV_DS1305 is not set 1208 # CONFIG_RTC_DRV_MAX6902 is not set 1209 CONFIG_RTC_DRV_R9701=y 1210 # CONFIG_RTC_DRV_RS5C348 is not set ··· 1284 # CONFIG_HUGETLBFS is not set 1285 # CONFIG_HUGETLB_PAGE is not set 1286 # CONFIG_CONFIGFS_FS is not set 1287 - 1288 - # 1289 - # Miscellaneous filesystems 1290 - # 1291 # CONFIG_ADFS_FS is not set 1292 # CONFIG_AFFS_FS is not set 1293 # CONFIG_HFS_FS is not set ··· 1370 CONFIG_DEBUG_FS=y 1371 # CONFIG_HEADERS_CHECK is not set 1372 # CONFIG_DEBUG_KERNEL is not set 1373 # CONFIG_DEBUG_BUGVERBOSE is not set 1374 # CONFIG_DEBUG_MEMORY_INIT is not set 1375 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1376 # CONFIG_LATENCYTOP is not set 1377 CONFIG_NOP_TRACER=y 1378 - CONFIG_HAVE_FTRACE=y 1379 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1380 # CONFIG_SAMPLES is not set 1381 # CONFIG_SH_STANDARD_BIOS is not set 1382 CONFIG_EARLY_SCIF_CONSOLE=y 1383 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 1384 CONFIG_EARLY_PRINTK=y 1385 - # CONFIG_SH_KGDB is not set 1386 1387 # 1388 # Security options ··· 1408 # 1409 # CONFIG_CRYPTO_FIPS is not set 1410 # CONFIG_CRYPTO_MANAGER is not set 1411 # CONFIG_CRYPTO_GF128MUL is not set 1412 # CONFIG_CRYPTO_NULL is not set 1413 # CONFIG_CRYPTO_CRYPTD is not set ··· 1492 # Library routines 1493 # 1494 CONFIG_BITREVERSE=y 1495 # CONFIG_CRC_CCITT is not set 1496 # CONFIG_CRC16 is not set 1497 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:23:15 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 77 # CONFIG_SLUB is not set 78 # CONFIG_SLOB is not set 79 CONFIG_PROFILING=y 80 + CONFIG_TRACEPOINTS=y 81 # CONFIG_MARKERS is not set 82 CONFIG_OPROFILE=y 83 CONFIG_HAVE_OPROFILE=y ··· 89 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 90 CONFIG_SLABINFO=y 91 CONFIG_RT_MUTEXES=y 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 CONFIG_BLOCK=y 99 # CONFIG_LBD is not set 100 # CONFIG_BLK_DEV_IO_TRACE is not set 101 # CONFIG_BLK_DEV_BSG is not set 102 # CONFIG_BLK_DEV_INTEGRITY is not set 103 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 + # CONFIG_TREE_RCU is not set 121 + # CONFIG_PREEMPT_RCU is not set 122 + # CONFIG_TREE_RCU_TRACE is not set 123 + # CONFIG_PREEMPT_RCU_TRACE is not set 124 # CONFIG_FREEZER is not set 125 126 # ··· 124 # 125 CONFIG_CPU_SH4=y 126 # CONFIG_CPU_SUBTYPE_SH7619 is not set 127 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 128 # CONFIG_CPU_SUBTYPE_SH7203 is not set 129 # CONFIG_CPU_SUBTYPE_SH7206 is not set 130 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 187 CONFIG_SPARSEMEM_STATIC=y 188 CONFIG_PAGEFLAGS_EXTENDED=y 189 CONFIG_SPLIT_PTLOCK_CPUS=4 190 # CONFIG_PHYS_ADDR_T_64BIT is not set 191 CONFIG_ZONE_DMA_FLAG=0 192 CONFIG_NR_QUICK=2 ··· 293 CONFIG_SH_PCIDMA_NONCOHERENT=y 294 CONFIG_PCI_AUTO=y 295 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 296 + # CONFIG_PCIEPORTBUS is not set 297 # CONFIG_ARCH_SUPPORTS_MSI is not set 298 CONFIG_PCI_LEGACY=y 299 # CONFIG_PCCARD is not set ··· 308 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 309 # CONFIG_HAVE_AOUT is not set 310 # CONFIG_BINFMT_MISC is not set 311 + 312 + # 313 + # Power management options (EXPERIMENTAL) 314 + # 315 + # CONFIG_PM is not set 316 + # CONFIG_CPU_IDLE is not set 317 CONFIG_NET=y 318 319 # 320 # Networking options 321 # 322 + CONFIG_COMPAT_NET_DEV_OPS=y 323 CONFIG_PACKET=y 324 # CONFIG_PACKET_MMAP is not set 325 CONFIG_UNIX=y ··· 365 # CONFIG_ECONET is not set 366 # CONFIG_WAN_ROUTER is not set 367 # CONFIG_NET_SCHED is not set 368 + # CONFIG_DCB is not set 369 370 # 371 # Network testing ··· 381 # CONFIG_WIRELESS_OLD_REGULATORY is not set 382 CONFIG_WIRELESS_EXT=y 383 CONFIG_WIRELESS_EXT_SYSFS=y 384 + # CONFIG_LIB80211 is not set 385 # CONFIG_MAC80211 is not set 386 # CONFIG_RFKILL is not set 387 # CONFIG_NET_9P is not set 388 ··· 426 # CONFIG_TIFM_CORE is not set 427 # CONFIG_ENCLOSURE_SERVICES is not set 428 # CONFIG_HP_ILO is not set 429 + # CONFIG_C2PORT is not set 430 CONFIG_HAVE_IDE=y 431 # CONFIG_IDE is not set 432 ··· 468 # CONFIG_SCSI_SRP_ATTRS is not set 469 CONFIG_SCSI_LOWLEVEL=y 470 # CONFIG_ISCSI_TCP is not set 471 + # CONFIG_SCSI_CXGB3_ISCSI is not set 472 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 473 # CONFIG_SCSI_3W_9XXX is not set 474 # CONFIG_SCSI_ACARD is not set ··· 481 # CONFIG_MEGARAID_LEGACY is not set 482 # CONFIG_MEGARAID_SAS is not set 483 # CONFIG_SCSI_HPTIOP is not set 484 + # CONFIG_LIBFC is not set 485 + # CONFIG_FCOE is not set 486 # CONFIG_SCSI_DMX3191D is not set 487 # CONFIG_SCSI_FUTURE_DOMAIN is not set 488 # CONFIG_SCSI_IPS is not set ··· 593 # CONFIG_SMC91X is not set 594 # CONFIG_ENC28J60 is not set 595 # CONFIG_SMC911X is not set 596 + # CONFIG_SMSC911X is not set 597 # CONFIG_NET_TULIP is not set 598 # CONFIG_HP100 is not set 599 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 608 # CONFIG_ADAPTEC_STARFIRE is not set 609 # CONFIG_B44 is not set 610 # CONFIG_FORCEDETH is not set 611 # CONFIG_E100 is not set 612 # CONFIG_FEALNX is not set 613 # CONFIG_NATSEMI is not set ··· 622 # CONFIG_R6040 is not set 623 # CONFIG_SIS900 is not set 624 # CONFIG_EPIC100 is not set 625 + # CONFIG_SMSC9420 is not set 626 # CONFIG_SUNDANCE is not set 627 # CONFIG_TLAN is not set 628 # CONFIG_VIA_RHINE is not set ··· 650 # CONFIG_JME is not set 651 CONFIG_NETDEV_10000=y 652 # CONFIG_CHELSIO_T1 is not set 653 + CONFIG_CHELSIO_T3_DEPENDS=y 654 # CONFIG_CHELSIO_T3 is not set 655 # CONFIG_ENIC is not set 656 # CONFIG_IXGBE is not set ··· 658 # CONFIG_MYRI10GE is not set 659 # CONFIG_NETXEN_NIC is not set 660 # CONFIG_NIU is not set 661 + # CONFIG_MLX4_EN is not set 662 # CONFIG_MLX4_CORE is not set 663 # CONFIG_TEHUTI is not set 664 # CONFIG_BNX2X is not set ··· 755 CONFIG_SERIAL_CORE_CONSOLE=y 756 # CONFIG_SERIAL_JSM is not set 757 CONFIG_UNIX98_PTYS=y 758 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 759 CONFIG_LEGACY_PTYS=y 760 CONFIG_LEGACY_PTY_COUNT=256 761 # CONFIG_IPMI_HANDLER is not set ··· 805 # CONFIG_THERMAL is not set 806 # CONFIG_THERMAL_HWMON is not set 807 # CONFIG_WATCHDOG is not set 808 + CONFIG_SSB_POSSIBLE=y 809 810 # 811 # Sonics Silicon Backplane 812 # 813 # CONFIG_SSB is not set 814 815 # ··· 819 CONFIG_MFD_SM501=y 820 # CONFIG_HTC_PASIC3 is not set 821 # CONFIG_MFD_TMIO is not set 822 + # CONFIG_REGULATOR is not set 823 824 # 825 # Multimedia devices ··· 852 CONFIG_FB_CFB_COPYAREA=y 853 CONFIG_FB_CFB_IMAGEBLIT=y 854 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 855 + CONFIG_FB_SYS_FILLRECT=m 856 + CONFIG_FB_SYS_COPYAREA=m 857 + CONFIG_FB_SYS_IMAGEBLIT=m 858 # CONFIG_FB_FOREIGN_ENDIAN is not set 859 + CONFIG_FB_SYS_FOPS=m 860 + CONFIG_FB_DEFERRED_IO=y 861 # CONFIG_FB_SVGALIB is not set 862 # CONFIG_FB_MACMODES is not set 863 # CONFIG_FB_BACKLIGHT is not set ··· 895 CONFIG_FB_SM501=y 896 # CONFIG_FB_VIRTUAL is not set 897 # CONFIG_FB_METRONOME is not set 898 + # CONFIG_FB_MB862XX is not set 899 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 900 901 # ··· 1031 CONFIG_HID_A4TECH=y 1032 CONFIG_HID_APPLE=y 1033 CONFIG_HID_BELKIN=y 1034 CONFIG_HID_CHERRY=y 1035 CONFIG_HID_CHICONY=y 1036 CONFIG_HID_CYPRESS=y 1037 CONFIG_HID_EZKEY=y 1038 CONFIG_HID_GYRATION=y 1039 CONFIG_HID_LOGITECH=y ··· 1043 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1044 CONFIG_HID_MICROSOFT=y 1045 CONFIG_HID_MONTEREY=y 1046 + # CONFIG_HID_NTRIG is not set 1047 CONFIG_HID_PANTHERLORD=y 1048 # CONFIG_PANTHERLORD_FF is not set 1049 CONFIG_HID_PETALYNX=y 1050 CONFIG_HID_SAMSUNG=y 1051 CONFIG_HID_SONY=y 1052 CONFIG_HID_SUNPLUS=y 1053 + # CONFIG_GREENASIA_FF is not set 1054 + # CONFIG_HID_TOPSEED is not set 1055 CONFIG_THRUSTMASTER_FF=m 1056 CONFIG_ZEROPLUS_FF=m 1057 CONFIG_USB_SUPPORT=y ··· 1069 # CONFIG_USB_OTG_WHITELIST is not set 1070 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1071 # CONFIG_USB_MON is not set 1072 + # CONFIG_USB_WUSB is not set 1073 + # CONFIG_USB_WUSB_CBAF is not set 1074 1075 # 1076 # USB Host Controller Drivers ··· 1084 # CONFIG_USB_UHCI_HCD is not set 1085 # CONFIG_USB_SL811_HCD is not set 1086 # CONFIG_USB_R8A66597_HCD is not set 1087 + # CONFIG_USB_WHCI_HCD is not set 1088 + # CONFIG_USB_HWA_HCD is not set 1089 1090 # 1091 # USB Device Class drivers ··· 1094 # CONFIG_USB_TMC is not set 1095 1096 # 1097 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1098 # 1099 1100 # 1101 + # see USB_STORAGE Help for more information 1102 # 1103 CONFIG_USB_STORAGE=y 1104 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1151 # CONFIG_USB_ISIGHTFW is not set 1152 # CONFIG_USB_VST is not set 1153 # CONFIG_USB_GADGET is not set 1154 + # CONFIG_UWB is not set 1155 # CONFIG_MMC is not set 1156 # CONFIG_MEMSTICK is not set 1157 # CONFIG_NEW_LEDS is not set ··· 1176 # 1177 # CONFIG_RTC_DRV_M41T94 is not set 1178 # CONFIG_RTC_DRV_DS1305 is not set 1179 + # CONFIG_RTC_DRV_DS1390 is not set 1180 # CONFIG_RTC_DRV_MAX6902 is not set 1181 CONFIG_RTC_DRV_R9701=y 1182 # CONFIG_RTC_DRV_RS5C348 is not set ··· 1254 # CONFIG_HUGETLBFS is not set 1255 # CONFIG_HUGETLB_PAGE is not set 1256 # CONFIG_CONFIGFS_FS is not set 1257 + CONFIG_MISC_FILESYSTEMS=y 1258 # CONFIG_ADFS_FS is not set 1259 # CONFIG_AFFS_FS is not set 1260 # CONFIG_HFS_FS is not set ··· 1343 CONFIG_DEBUG_FS=y 1344 # CONFIG_HEADERS_CHECK is not set 1345 # CONFIG_DEBUG_KERNEL is not set 1346 + CONFIG_STACKTRACE=y 1347 # CONFIG_DEBUG_BUGVERBOSE is not set 1348 # CONFIG_DEBUG_MEMORY_INIT is not set 1349 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1350 # CONFIG_LATENCYTOP is not set 1351 CONFIG_NOP_TRACER=y 1352 + CONFIG_HAVE_FUNCTION_TRACER=y 1353 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1354 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1355 + CONFIG_RING_BUFFER=y 1356 + CONFIG_TRACING=y 1357 + 1358 + # 1359 + # Tracers 1360 + # 1361 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1362 # CONFIG_SAMPLES is not set 1363 + CONFIG_HAVE_ARCH_KGDB=y 1364 # CONFIG_SH_STANDARD_BIOS is not set 1365 CONFIG_EARLY_SCIF_CONSOLE=y 1366 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 1367 CONFIG_EARLY_PRINTK=y 1368 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1369 1370 # 1371 # Security options ··· 1371 # 1372 # CONFIG_CRYPTO_FIPS is not set 1373 # CONFIG_CRYPTO_MANAGER is not set 1374 + # CONFIG_CRYPTO_MANAGER2 is not set 1375 # CONFIG_CRYPTO_GF128MUL is not set 1376 # CONFIG_CRYPTO_NULL is not set 1377 # CONFIG_CRYPTO_CRYPTD is not set ··· 1454 # Library routines 1455 # 1456 CONFIG_BITREVERSE=y 1457 + CONFIG_GENERIC_FIND_LAST_BIT=y 1458 # CONFIG_CRC_CCITT is not set 1459 # CONFIG_CRC16 is not set 1460 CONFIG_CRC_T10DIF=y
+63 -24
arch/sh/configs/rts7751r2dplus_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:47:39 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 CONFIG_PROFILING=y 82 # CONFIG_MARKERS is not set 83 CONFIG_OPROFILE=y 84 CONFIG_HAVE_OPROFILE=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 - # CONFIG_TINY_SHMEM is not set 96 CONFIG_BASE_SMALL=0 97 CONFIG_MODULES=y 98 # CONFIG_MODULE_FORCE_LOAD is not set 99 # CONFIG_MODULE_UNLOAD is not set 100 # CONFIG_MODVERSIONS is not set 101 # CONFIG_MODULE_SRCVERSION_ALL is not set 102 - CONFIG_KMOD=y 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 - # CONFIG_LSF is not set 107 # CONFIG_BLK_DEV_BSG is not set 108 # CONFIG_BLK_DEV_INTEGRITY is not set 109 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH4=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 297 CONFIG_SH_PCIDMA_NONCOHERENT=y 298 CONFIG_PCI_AUTO=y 299 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 300 # CONFIG_ARCH_SUPPORTS_MSI is not set 301 CONFIG_PCI_LEGACY=y 302 # CONFIG_PCCARD is not set ··· 313 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 314 # CONFIG_HAVE_AOUT is not set 315 # CONFIG_BINFMT_MISC is not set 316 CONFIG_NET=y 317 318 # 319 # Networking options 320 # 321 CONFIG_PACKET=y 322 # CONFIG_PACKET_MMAP is not set 323 CONFIG_UNIX=y ··· 377 # CONFIG_ECONET is not set 378 # CONFIG_WAN_ROUTER is not set 379 # CONFIG_NET_SCHED is not set 380 381 # 382 # Network testing ··· 394 # CONFIG_WIRELESS_OLD_REGULATORY is not set 395 CONFIG_WIRELESS_EXT=y 396 CONFIG_WIRELESS_EXT_SYSFS=y 397 # CONFIG_MAC80211 is not set 398 - # CONFIG_IEEE80211 is not set 399 # CONFIG_RFKILL is not set 400 # CONFIG_NET_9P is not set 401 ··· 439 # CONFIG_TIFM_CORE is not set 440 # CONFIG_ENCLOSURE_SERVICES is not set 441 # CONFIG_HP_ILO is not set 442 CONFIG_HAVE_IDE=y 443 # CONFIG_IDE is not set 444 ··· 482 # CONFIG_SCSI_SRP_ATTRS is not set 483 CONFIG_SCSI_LOWLEVEL=y 484 # CONFIG_ISCSI_TCP is not set 485 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 486 # CONFIG_SCSI_3W_9XXX is not set 487 # CONFIG_SCSI_ACARD is not set ··· 496 # CONFIG_MEGARAID_LEGACY is not set 497 # CONFIG_MEGARAID_SAS is not set 498 # CONFIG_SCSI_HPTIOP is not set 499 # CONFIG_SCSI_DMX3191D is not set 500 # CONFIG_SCSI_FUTURE_DOMAIN is not set 501 # CONFIG_SCSI_IPS is not set ··· 610 # CONFIG_SMC91X is not set 611 # CONFIG_ENC28J60 is not set 612 # CONFIG_SMC911X is not set 613 # CONFIG_NET_TULIP is not set 614 # CONFIG_HP100 is not set 615 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 626 # CONFIG_ADAPTEC_STARFIRE is not set 627 # CONFIG_B44 is not set 628 # CONFIG_FORCEDETH is not set 629 - # CONFIG_EEPRO100 is not set 630 # CONFIG_E100 is not set 631 # CONFIG_FEALNX is not set 632 # CONFIG_NATSEMI is not set ··· 639 # CONFIG_R6040 is not set 640 # CONFIG_SIS900 is not set 641 # CONFIG_EPIC100 is not set 642 # CONFIG_SUNDANCE is not set 643 # CONFIG_TLAN is not set 644 # CONFIG_VIA_RHINE is not set ··· 668 # CONFIG_JME is not set 669 CONFIG_NETDEV_10000=y 670 # CONFIG_CHELSIO_T1 is not set 671 # CONFIG_CHELSIO_T3 is not set 672 # CONFIG_ENIC is not set 673 # CONFIG_IXGBE is not set ··· 677 # CONFIG_MYRI10GE is not set 678 # CONFIG_NETXEN_NIC is not set 679 # CONFIG_NIU is not set 680 # CONFIG_MLX4_CORE is not set 681 # CONFIG_TEHUTI is not set 682 # CONFIG_BNX2X is not set ··· 775 CONFIG_SERIAL_CORE_CONSOLE=y 776 # CONFIG_SERIAL_JSM is not set 777 CONFIG_UNIX98_PTYS=y 778 CONFIG_LEGACY_PTYS=y 779 CONFIG_LEGACY_PTY_COUNT=256 780 # CONFIG_IPMI_HANDLER is not set ··· 826 # CONFIG_THERMAL is not set 827 # CONFIG_THERMAL_HWMON is not set 828 # CONFIG_WATCHDOG is not set 829 830 # 831 # Sonics Silicon Backplane 832 # 833 - CONFIG_SSB_POSSIBLE=y 834 # CONFIG_SSB is not set 835 836 # ··· 840 CONFIG_MFD_SM501=y 841 # CONFIG_HTC_PASIC3 is not set 842 # CONFIG_MFD_TMIO is not set 843 - # CONFIG_MFD_WM8400 is not set 844 845 # 846 # Multimedia devices ··· 873 CONFIG_FB_CFB_COPYAREA=y 874 CONFIG_FB_CFB_IMAGEBLIT=y 875 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 876 - # CONFIG_FB_SYS_FILLRECT is not set 877 - # CONFIG_FB_SYS_COPYAREA is not set 878 - # CONFIG_FB_SYS_IMAGEBLIT is not set 879 # CONFIG_FB_FOREIGN_ENDIAN is not set 880 - # CONFIG_FB_SYS_FOPS is not set 881 # CONFIG_FB_SVGALIB is not set 882 # CONFIG_FB_MACMODES is not set 883 # CONFIG_FB_BACKLIGHT is not set ··· 917 CONFIG_FB_SM501=y 918 # CONFIG_FB_VIRTUAL is not set 919 # CONFIG_FB_METRONOME is not set 920 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 921 922 # ··· 1054 CONFIG_HID_A4TECH=y 1055 CONFIG_HID_APPLE=y 1056 CONFIG_HID_BELKIN=y 1057 - CONFIG_HID_BRIGHT=y 1058 CONFIG_HID_CHERRY=y 1059 CONFIG_HID_CHICONY=y 1060 CONFIG_HID_CYPRESS=y 1061 - CONFIG_HID_DELL=y 1062 CONFIG_HID_EZKEY=y 1063 CONFIG_HID_GYRATION=y 1064 CONFIG_HID_LOGITECH=y ··· 1064 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1065 CONFIG_HID_MICROSOFT=y 1066 CONFIG_HID_MONTEREY=y 1067 CONFIG_HID_PANTHERLORD=y 1068 # CONFIG_PANTHERLORD_FF is not set 1069 CONFIG_HID_PETALYNX=y 1070 CONFIG_HID_SAMSUNG=y 1071 CONFIG_HID_SONY=y 1072 CONFIG_HID_SUNPLUS=y 1073 CONFIG_THRUSTMASTER_FF=m 1074 CONFIG_ZEROPLUS_FF=m 1075 CONFIG_USB_SUPPORT=y ··· 1093 # CONFIG_USB_OTG_WHITELIST is not set 1094 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1095 # CONFIG_USB_MON is not set 1096 1097 # 1098 # USB Host Controller Drivers ··· 1110 # CONFIG_USB_UHCI_HCD is not set 1111 # CONFIG_USB_SL811_HCD is not set 1112 # CONFIG_USB_R8A66597_HCD is not set 1113 1114 # 1115 # USB Device Class drivers ··· 1122 # CONFIG_USB_TMC is not set 1123 1124 # 1125 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1126 # 1127 1128 # 1129 - # may also be needed; see USB_STORAGE Help for more information 1130 # 1131 CONFIG_USB_STORAGE=y 1132 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1179 # CONFIG_USB_ISIGHTFW is not set 1180 # CONFIG_USB_VST is not set 1181 # CONFIG_USB_GADGET is not set 1182 # CONFIG_MMC is not set 1183 # CONFIG_MEMSTICK is not set 1184 # CONFIG_NEW_LEDS is not set ··· 1205 # 1206 # CONFIG_RTC_DRV_M41T94 is not set 1207 # CONFIG_RTC_DRV_DS1305 is not set 1208 # CONFIG_RTC_DRV_MAX6902 is not set 1209 CONFIG_RTC_DRV_R9701=y 1210 # CONFIG_RTC_DRV_RS5C348 is not set ··· 1284 # CONFIG_HUGETLBFS is not set 1285 # CONFIG_HUGETLB_PAGE is not set 1286 # CONFIG_CONFIGFS_FS is not set 1287 - 1288 - # 1289 - # Miscellaneous filesystems 1290 - # 1291 # CONFIG_ADFS_FS is not set 1292 # CONFIG_AFFS_FS is not set 1293 # CONFIG_HFS_FS is not set ··· 1370 CONFIG_DEBUG_FS=y 1371 # CONFIG_HEADERS_CHECK is not set 1372 # CONFIG_DEBUG_KERNEL is not set 1373 # CONFIG_DEBUG_BUGVERBOSE is not set 1374 # CONFIG_DEBUG_MEMORY_INIT is not set 1375 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1376 # CONFIG_LATENCYTOP is not set 1377 CONFIG_NOP_TRACER=y 1378 - CONFIG_HAVE_FTRACE=y 1379 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1380 # CONFIG_SAMPLES is not set 1381 # CONFIG_SH_STANDARD_BIOS is not set 1382 CONFIG_EARLY_SCIF_CONSOLE=y 1383 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 1384 CONFIG_EARLY_PRINTK=y 1385 - # CONFIG_SH_KGDB is not set 1386 1387 # 1388 # Security options ··· 1408 # 1409 # CONFIG_CRYPTO_FIPS is not set 1410 # CONFIG_CRYPTO_MANAGER is not set 1411 # CONFIG_CRYPTO_GF128MUL is not set 1412 # CONFIG_CRYPTO_NULL is not set 1413 # CONFIG_CRYPTO_CRYPTD is not set ··· 1492 # Library routines 1493 # 1494 CONFIG_BITREVERSE=y 1495 # CONFIG_CRC_CCITT is not set 1496 # CONFIG_CRC16 is not set 1497 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:26:10 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 77 # CONFIG_SLUB is not set 78 # CONFIG_SLOB is not set 79 CONFIG_PROFILING=y 80 + CONFIG_TRACEPOINTS=y 81 # CONFIG_MARKERS is not set 82 CONFIG_OPROFILE=y 83 CONFIG_HAVE_OPROFILE=y ··· 89 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 90 CONFIG_SLABINFO=y 91 CONFIG_RT_MUTEXES=y 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 CONFIG_BLOCK=y 99 # CONFIG_LBD is not set 100 # CONFIG_BLK_DEV_IO_TRACE is not set 101 # CONFIG_BLK_DEV_BSG is not set 102 # CONFIG_BLK_DEV_INTEGRITY is not set 103 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 + # CONFIG_TREE_RCU is not set 121 + # CONFIG_PREEMPT_RCU is not set 122 + # CONFIG_TREE_RCU_TRACE is not set 123 + # CONFIG_PREEMPT_RCU_TRACE is not set 124 # CONFIG_FREEZER is not set 125 126 # ··· 124 # 125 CONFIG_CPU_SH4=y 126 # CONFIG_CPU_SUBTYPE_SH7619 is not set 127 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 128 # CONFIG_CPU_SUBTYPE_SH7203 is not set 129 # CONFIG_CPU_SUBTYPE_SH7206 is not set 130 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 187 CONFIG_SPARSEMEM_STATIC=y 188 CONFIG_PAGEFLAGS_EXTENDED=y 189 CONFIG_SPLIT_PTLOCK_CPUS=4 190 # CONFIG_PHYS_ADDR_T_64BIT is not set 191 CONFIG_ZONE_DMA_FLAG=0 192 CONFIG_NR_QUICK=2 ··· 293 CONFIG_SH_PCIDMA_NONCOHERENT=y 294 CONFIG_PCI_AUTO=y 295 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 296 + # CONFIG_PCIEPORTBUS is not set 297 # CONFIG_ARCH_SUPPORTS_MSI is not set 298 CONFIG_PCI_LEGACY=y 299 # CONFIG_PCCARD is not set ··· 308 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 309 # CONFIG_HAVE_AOUT is not set 310 # CONFIG_BINFMT_MISC is not set 311 + 312 + # 313 + # Power management options (EXPERIMENTAL) 314 + # 315 + # CONFIG_PM is not set 316 + # CONFIG_CPU_IDLE is not set 317 CONFIG_NET=y 318 319 # 320 # Networking options 321 # 322 + CONFIG_COMPAT_NET_DEV_OPS=y 323 CONFIG_PACKET=y 324 # CONFIG_PACKET_MMAP is not set 325 CONFIG_UNIX=y ··· 365 # CONFIG_ECONET is not set 366 # CONFIG_WAN_ROUTER is not set 367 # CONFIG_NET_SCHED is not set 368 + # CONFIG_DCB is not set 369 370 # 371 # Network testing ··· 381 # CONFIG_WIRELESS_OLD_REGULATORY is not set 382 CONFIG_WIRELESS_EXT=y 383 CONFIG_WIRELESS_EXT_SYSFS=y 384 + # CONFIG_LIB80211 is not set 385 # CONFIG_MAC80211 is not set 386 # CONFIG_RFKILL is not set 387 # CONFIG_NET_9P is not set 388 ··· 426 # CONFIG_TIFM_CORE is not set 427 # CONFIG_ENCLOSURE_SERVICES is not set 428 # CONFIG_HP_ILO is not set 429 + # CONFIG_C2PORT is not set 430 CONFIG_HAVE_IDE=y 431 # CONFIG_IDE is not set 432 ··· 468 # CONFIG_SCSI_SRP_ATTRS is not set 469 CONFIG_SCSI_LOWLEVEL=y 470 # CONFIG_ISCSI_TCP is not set 471 + # CONFIG_SCSI_CXGB3_ISCSI is not set 472 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 473 # CONFIG_SCSI_3W_9XXX is not set 474 # CONFIG_SCSI_ACARD is not set ··· 481 # CONFIG_MEGARAID_LEGACY is not set 482 # CONFIG_MEGARAID_SAS is not set 483 # CONFIG_SCSI_HPTIOP is not set 484 + # CONFIG_LIBFC is not set 485 + # CONFIG_FCOE is not set 486 # CONFIG_SCSI_DMX3191D is not set 487 # CONFIG_SCSI_FUTURE_DOMAIN is not set 488 # CONFIG_SCSI_IPS is not set ··· 593 # CONFIG_SMC91X is not set 594 # CONFIG_ENC28J60 is not set 595 # CONFIG_SMC911X is not set 596 + # CONFIG_SMSC911X is not set 597 # CONFIG_NET_TULIP is not set 598 # CONFIG_HP100 is not set 599 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 608 # CONFIG_ADAPTEC_STARFIRE is not set 609 # CONFIG_B44 is not set 610 # CONFIG_FORCEDETH is not set 611 # CONFIG_E100 is not set 612 # CONFIG_FEALNX is not set 613 # CONFIG_NATSEMI is not set ··· 622 # CONFIG_R6040 is not set 623 # CONFIG_SIS900 is not set 624 # CONFIG_EPIC100 is not set 625 + # CONFIG_SMSC9420 is not set 626 # CONFIG_SUNDANCE is not set 627 # CONFIG_TLAN is not set 628 # CONFIG_VIA_RHINE is not set ··· 650 # CONFIG_JME is not set 651 CONFIG_NETDEV_10000=y 652 # CONFIG_CHELSIO_T1 is not set 653 + CONFIG_CHELSIO_T3_DEPENDS=y 654 # CONFIG_CHELSIO_T3 is not set 655 # CONFIG_ENIC is not set 656 # CONFIG_IXGBE is not set ··· 658 # CONFIG_MYRI10GE is not set 659 # CONFIG_NETXEN_NIC is not set 660 # CONFIG_NIU is not set 661 + # CONFIG_MLX4_EN is not set 662 # CONFIG_MLX4_CORE is not set 663 # CONFIG_TEHUTI is not set 664 # CONFIG_BNX2X is not set ··· 755 CONFIG_SERIAL_CORE_CONSOLE=y 756 # CONFIG_SERIAL_JSM is not set 757 CONFIG_UNIX98_PTYS=y 758 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 759 CONFIG_LEGACY_PTYS=y 760 CONFIG_LEGACY_PTY_COUNT=256 761 # CONFIG_IPMI_HANDLER is not set ··· 805 # CONFIG_THERMAL is not set 806 # CONFIG_THERMAL_HWMON is not set 807 # CONFIG_WATCHDOG is not set 808 + CONFIG_SSB_POSSIBLE=y 809 810 # 811 # Sonics Silicon Backplane 812 # 813 # CONFIG_SSB is not set 814 815 # ··· 819 CONFIG_MFD_SM501=y 820 # CONFIG_HTC_PASIC3 is not set 821 # CONFIG_MFD_TMIO is not set 822 + # CONFIG_REGULATOR is not set 823 824 # 825 # Multimedia devices ··· 852 CONFIG_FB_CFB_COPYAREA=y 853 CONFIG_FB_CFB_IMAGEBLIT=y 854 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 855 + CONFIG_FB_SYS_FILLRECT=m 856 + CONFIG_FB_SYS_COPYAREA=m 857 + CONFIG_FB_SYS_IMAGEBLIT=m 858 # CONFIG_FB_FOREIGN_ENDIAN is not set 859 + CONFIG_FB_SYS_FOPS=m 860 + CONFIG_FB_DEFERRED_IO=y 861 # CONFIG_FB_SVGALIB is not set 862 # CONFIG_FB_MACMODES is not set 863 # CONFIG_FB_BACKLIGHT is not set ··· 895 CONFIG_FB_SM501=y 896 # CONFIG_FB_VIRTUAL is not set 897 # CONFIG_FB_METRONOME is not set 898 + # CONFIG_FB_MB862XX is not set 899 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 900 901 # ··· 1031 CONFIG_HID_A4TECH=y 1032 CONFIG_HID_APPLE=y 1033 CONFIG_HID_BELKIN=y 1034 CONFIG_HID_CHERRY=y 1035 CONFIG_HID_CHICONY=y 1036 CONFIG_HID_CYPRESS=y 1037 CONFIG_HID_EZKEY=y 1038 CONFIG_HID_GYRATION=y 1039 CONFIG_HID_LOGITECH=y ··· 1043 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1044 CONFIG_HID_MICROSOFT=y 1045 CONFIG_HID_MONTEREY=y 1046 + # CONFIG_HID_NTRIG is not set 1047 CONFIG_HID_PANTHERLORD=y 1048 # CONFIG_PANTHERLORD_FF is not set 1049 CONFIG_HID_PETALYNX=y 1050 CONFIG_HID_SAMSUNG=y 1051 CONFIG_HID_SONY=y 1052 CONFIG_HID_SUNPLUS=y 1053 + # CONFIG_GREENASIA_FF is not set 1054 + # CONFIG_HID_TOPSEED is not set 1055 CONFIG_THRUSTMASTER_FF=m 1056 CONFIG_ZEROPLUS_FF=m 1057 CONFIG_USB_SUPPORT=y ··· 1069 # CONFIG_USB_OTG_WHITELIST is not set 1070 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1071 # CONFIG_USB_MON is not set 1072 + # CONFIG_USB_WUSB is not set 1073 + # CONFIG_USB_WUSB_CBAF is not set 1074 1075 # 1076 # USB Host Controller Drivers ··· 1084 # CONFIG_USB_UHCI_HCD is not set 1085 # CONFIG_USB_SL811_HCD is not set 1086 # CONFIG_USB_R8A66597_HCD is not set 1087 + # CONFIG_USB_WHCI_HCD is not set 1088 + # CONFIG_USB_HWA_HCD is not set 1089 1090 # 1091 # USB Device Class drivers ··· 1094 # CONFIG_USB_TMC is not set 1095 1096 # 1097 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1098 # 1099 1100 # 1101 + # see USB_STORAGE Help for more information 1102 # 1103 CONFIG_USB_STORAGE=y 1104 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1151 # CONFIG_USB_ISIGHTFW is not set 1152 # CONFIG_USB_VST is not set 1153 # CONFIG_USB_GADGET is not set 1154 + # CONFIG_UWB is not set 1155 # CONFIG_MMC is not set 1156 # CONFIG_MEMSTICK is not set 1157 # CONFIG_NEW_LEDS is not set ··· 1176 # 1177 # CONFIG_RTC_DRV_M41T94 is not set 1178 # CONFIG_RTC_DRV_DS1305 is not set 1179 + # CONFIG_RTC_DRV_DS1390 is not set 1180 # CONFIG_RTC_DRV_MAX6902 is not set 1181 CONFIG_RTC_DRV_R9701=y 1182 # CONFIG_RTC_DRV_RS5C348 is not set ··· 1254 # CONFIG_HUGETLBFS is not set 1255 # CONFIG_HUGETLB_PAGE is not set 1256 # CONFIG_CONFIGFS_FS is not set 1257 + CONFIG_MISC_FILESYSTEMS=y 1258 # CONFIG_ADFS_FS is not set 1259 # CONFIG_AFFS_FS is not set 1260 # CONFIG_HFS_FS is not set ··· 1343 CONFIG_DEBUG_FS=y 1344 # CONFIG_HEADERS_CHECK is not set 1345 # CONFIG_DEBUG_KERNEL is not set 1346 + CONFIG_STACKTRACE=y 1347 # CONFIG_DEBUG_BUGVERBOSE is not set 1348 # CONFIG_DEBUG_MEMORY_INIT is not set 1349 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1350 # CONFIG_LATENCYTOP is not set 1351 CONFIG_NOP_TRACER=y 1352 + CONFIG_HAVE_FUNCTION_TRACER=y 1353 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1354 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1355 + CONFIG_RING_BUFFER=y 1356 + CONFIG_TRACING=y 1357 + 1358 + # 1359 + # Tracers 1360 + # 1361 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1362 # CONFIG_SAMPLES is not set 1363 + CONFIG_HAVE_ARCH_KGDB=y 1364 # CONFIG_SH_STANDARD_BIOS is not set 1365 CONFIG_EARLY_SCIF_CONSOLE=y 1366 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 1367 CONFIG_EARLY_PRINTK=y 1368 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1369 1370 # 1371 # Security options ··· 1371 # 1372 # CONFIG_CRYPTO_FIPS is not set 1373 # CONFIG_CRYPTO_MANAGER is not set 1374 + # CONFIG_CRYPTO_MANAGER2 is not set 1375 # CONFIG_CRYPTO_GF128MUL is not set 1376 # CONFIG_CRYPTO_NULL is not set 1377 # CONFIG_CRYPTO_CRYPTD is not set ··· 1454 # Library routines 1455 # 1456 CONFIG_BITREVERSE=y 1457 + CONFIG_GENERIC_FIND_LAST_BIT=y 1458 # CONFIG_CRC_CCITT is not set 1459 # CONFIG_CRC16 is not set 1460 CONFIG_CRC_T10DIF=y
+70 -31
arch/sh/configs/sdk7780_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:53:22 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 61 CONFIG_SYSCTL_SYSCALL=y 62 CONFIG_KALLSYMS=y 63 CONFIG_KALLSYMS_ALL=y 64 # CONFIG_KALLSYMS_EXTRA_PASS is not set 65 CONFIG_HOTPLUG=y 66 CONFIG_PRINTK=y ··· 84 CONFIG_SLUB=y 85 # CONFIG_SLOB is not set 86 # CONFIG_PROFILING is not set 87 - # CONFIG_MARKERS is not set 88 CONFIG_HAVE_OPROFILE=y 89 # CONFIG_KPROBES is not set 90 CONFIG_HAVE_IOREMAP_PROT=y ··· 94 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 95 CONFIG_SLABINFO=y 96 CONFIG_RT_MUTEXES=y 97 - # CONFIG_TINY_SHMEM is not set 98 CONFIG_BASE_SMALL=0 99 CONFIG_MODULES=y 100 # CONFIG_MODULE_FORCE_LOAD is not set ··· 101 CONFIG_MODULE_FORCE_UNLOAD=y 102 # CONFIG_MODVERSIONS is not set 103 # CONFIG_MODULE_SRCVERSION_ALL is not set 104 - CONFIG_KMOD=y 105 CONFIG_BLOCK=y 106 CONFIG_LBD=y 107 # CONFIG_BLK_DEV_IO_TRACE is not set 108 - # CONFIG_LSF is not set 109 # CONFIG_BLK_DEV_BSG is not set 110 # CONFIG_BLK_DEV_INTEGRITY is not set 111 ··· 120 # CONFIG_DEFAULT_NOOP is not set 121 CONFIG_DEFAULT_IOSCHED="anticipatory" 122 CONFIG_CLASSIC_RCU=y 123 # CONFIG_FREEZER is not set 124 125 # ··· 132 CONFIG_CPU_SH4=y 133 CONFIG_CPU_SH4A=y 134 # CONFIG_CPU_SUBTYPE_SH7619 is not set 135 # CONFIG_CPU_SUBTYPE_SH7203 is not set 136 # CONFIG_CPU_SUBTYPE_SH7206 is not set 137 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 203 CONFIG_SPARSEMEM_STATIC=y 204 CONFIG_PAGEFLAGS_EXTENDED=y 205 CONFIG_SPLIT_PTLOCK_CPUS=4 206 - CONFIG_RESOURCES_64BIT=y 207 # CONFIG_PHYS_ADDR_T_64BIT is not set 208 CONFIG_ZONE_DMA_FLAG=0 209 CONFIG_NR_QUICK=2 ··· 285 # CONFIG_PREEMPT_NONE is not set 286 # CONFIG_PREEMPT_VOLUNTARY is not set 287 CONFIG_PREEMPT=y 288 - # CONFIG_PREEMPT_RCU is not set 289 CONFIG_GUSA=y 290 291 # ··· 302 CONFIG_SH_PCIDMA_NONCOHERENT=y 303 CONFIG_PCI_AUTO=y 304 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 305 # CONFIG_ARCH_SUPPORTS_MSI is not set 306 # CONFIG_PCI_LEGACY is not set 307 CONFIG_PCI_DEBUG=y ··· 337 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 338 # CONFIG_HAVE_AOUT is not set 339 # CONFIG_BINFMT_MISC is not set 340 CONFIG_NET=y 341 342 # 343 # Networking options 344 # 345 CONFIG_PACKET=y 346 # CONFIG_PACKET_MMAP is not set 347 CONFIG_UNIX=y ··· 444 # CONFIG_NET_SCH_GRED is not set 445 # CONFIG_NET_SCH_DSMARK is not set 446 # CONFIG_NET_SCH_NETEM is not set 447 448 # 449 # Classification ··· 460 # CONFIG_NET_EMATCH is not set 461 # CONFIG_NET_CLS_ACT is not set 462 CONFIG_NET_SCH_FIFO=y 463 464 # 465 # Network testing ··· 476 # CONFIG_CFG80211 is not set 477 # CONFIG_WIRELESS_OLD_REGULATORY is not set 478 # CONFIG_WIRELESS_EXT is not set 479 # CONFIG_MAC80211 is not set 480 - # CONFIG_IEEE80211 is not set 481 # CONFIG_RFKILL is not set 482 # CONFIG_NET_9P is not set 483 ··· 528 # 529 # Please see Documentation/ide/ide.txt for help/info on IDE drives 530 # 531 # CONFIG_BLK_DEV_IDE_SATA is not set 532 CONFIG_IDE_GD=y 533 CONFIG_IDE_GD_ATA=y ··· 538 CONFIG_BLK_DEV_IDECD=y 539 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 540 # CONFIG_BLK_DEV_IDETAPE is not set 541 - # CONFIG_BLK_DEV_IDESCSI is not set 542 # CONFIG_IDE_TASK_IOCTL is not set 543 CONFIG_IDE_PROC_FS=y 544 ··· 565 # CONFIG_BLK_DEV_JMICRON is not set 566 # CONFIG_BLK_DEV_SC1200 is not set 567 # CONFIG_BLK_DEV_PIIX is not set 568 # CONFIG_BLK_DEV_IT8213 is not set 569 # CONFIG_BLK_DEV_IT821X is not set 570 # CONFIG_BLK_DEV_NS87415 is not set ··· 632 # CONFIG_MEGARAID_LEGACY is not set 633 # CONFIG_MEGARAID_SAS is not set 634 # CONFIG_SCSI_HPTIOP is not set 635 # CONFIG_SCSI_DMX3191D is not set 636 # CONFIG_SCSI_FUTURE_DOMAIN is not set 637 # CONFIG_SCSI_IPS is not set ··· 757 # CONFIG_NET_VENDOR_3COM is not set 758 CONFIG_SMC91X=y 759 # CONFIG_SMC911X is not set 760 # CONFIG_NET_TULIP is not set 761 # CONFIG_HP100 is not set 762 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 842 CONFIG_MOUSE_PS2_SYNAPTICS=y 843 CONFIG_MOUSE_PS2_LIFEBOOK=y 844 CONFIG_MOUSE_PS2_TRACKPOINT=y 845 # CONFIG_MOUSE_PS2_TOUCHKIT is not set 846 # CONFIG_MOUSE_SERIAL is not set 847 # CONFIG_MOUSE_APPLETOUCH is not set ··· 892 CONFIG_SERIAL_CORE_CONSOLE=y 893 # CONFIG_SERIAL_JSM is not set 894 CONFIG_UNIX98_PTYS=y 895 CONFIG_LEGACY_PTYS=y 896 CONFIG_LEGACY_PTY_COUNT=256 897 # CONFIG_PRINTER is not set ··· 923 # CONFIG_THERMAL is not set 924 # CONFIG_THERMAL_HWMON is not set 925 # CONFIG_WATCHDOG is not set 926 927 # 928 # Sonics Silicon Backplane 929 # 930 - CONFIG_SSB_POSSIBLE=y 931 CONFIG_SSB=y 932 CONFIG_SSB_SPROM=y 933 CONFIG_SSB_PCIHOST_POSSIBLE=y ··· 947 # CONFIG_MFD_SM501 is not set 948 # CONFIG_HTC_PASIC3 is not set 949 # CONFIG_MFD_TMIO is not set 950 - # CONFIG_MFD_WM8400 is not set 951 952 # 953 # Multimedia devices ··· 975 # CONFIG_FIRMWARE_EDID is not set 976 # CONFIG_FB_DDC is not set 977 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 978 - CONFIG_FB_CFB_FILLRECT=m 979 - CONFIG_FB_CFB_COPYAREA=m 980 - CONFIG_FB_CFB_IMAGEBLIT=m 981 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 982 - # CONFIG_FB_SYS_FILLRECT is not set 983 - # CONFIG_FB_SYS_COPYAREA is not set 984 - # CONFIG_FB_SYS_IMAGEBLIT is not set 985 # CONFIG_FB_FOREIGN_ENDIAN is not set 986 - # CONFIG_FB_SYS_FOPS is not set 987 # CONFIG_FB_SVGALIB is not set 988 # CONFIG_FB_MACMODES is not set 989 # CONFIG_FB_BACKLIGHT is not set ··· 1022 CONFIG_FB_SH_MOBILE_LCDC=m 1023 # CONFIG_FB_VIRTUAL is not set 1024 # CONFIG_FB_METRONOME is not set 1025 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 1026 1027 # ··· 1074 CONFIG_HID_A4TECH=y 1075 CONFIG_HID_APPLE=y 1076 CONFIG_HID_BELKIN=y 1077 - CONFIG_HID_BRIGHT=y 1078 CONFIG_HID_CHERRY=y 1079 CONFIG_HID_CHICONY=y 1080 CONFIG_HID_CYPRESS=y 1081 - CONFIG_HID_DELL=y 1082 CONFIG_HID_EZKEY=y 1083 CONFIG_HID_GYRATION=y 1084 CONFIG_HID_LOGITECH=y ··· 1084 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1085 CONFIG_HID_MICROSOFT=y 1086 CONFIG_HID_MONTEREY=y 1087 CONFIG_HID_PANTHERLORD=y 1088 # CONFIG_PANTHERLORD_FF is not set 1089 CONFIG_HID_PETALYNX=y 1090 CONFIG_HID_SAMSUNG=y 1091 CONFIG_HID_SONY=y 1092 CONFIG_HID_SUNPLUS=y 1093 CONFIG_THRUSTMASTER_FF=m 1094 CONFIG_ZEROPLUS_FF=m 1095 CONFIG_USB_SUPPORT=y ··· 1113 # CONFIG_USB_OTG_WHITELIST is not set 1114 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1115 CONFIG_USB_MON=y 1116 1117 # 1118 # USB Host Controller Drivers ··· 1129 # CONFIG_USB_UHCI_HCD is not set 1130 # CONFIG_USB_SL811_HCD is not set 1131 # CONFIG_USB_R8A66597_HCD is not set 1132 1133 # 1134 # USB Device Class drivers ··· 1141 # CONFIG_USB_TMC is not set 1142 1143 # 1144 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1145 # 1146 1147 # 1148 - # may also be needed; see USB_STORAGE Help for more information 1149 # 1150 CONFIG_USB_STORAGE=y 1151 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1201 # CONFIG_USB_ISIGHTFW is not set 1202 # CONFIG_USB_VST is not set 1203 # CONFIG_USB_GADGET is not set 1204 # CONFIG_MMC is not set 1205 # CONFIG_MEMSTICK is not set 1206 CONFIG_NEW_LEDS=y ··· 1286 CONFIG_HUGETLBFS=y 1287 CONFIG_HUGETLB_PAGE=y 1288 # CONFIG_CONFIGFS_FS is not set 1289 - 1290 - # 1291 - # Miscellaneous filesystems 1292 - # 1293 # CONFIG_ADFS_FS is not set 1294 # CONFIG_AFFS_FS is not set 1295 # CONFIG_HFS_FS is not set ··· 1415 # CONFIG_DEBUG_MEMORY_INIT is not set 1416 # CONFIG_DEBUG_LIST is not set 1417 # CONFIG_DEBUG_SG is not set 1418 # CONFIG_FRAME_POINTER is not set 1419 # CONFIG_RCU_TORTURE_TEST is not set 1420 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1424 # CONFIG_FAULT_INJECTION is not set 1425 # CONFIG_LATENCYTOP is not set 1426 CONFIG_SYSCTL_SYSCALL_CHECK=y 1427 - CONFIG_NOP_TRACER=y 1428 - CONFIG_HAVE_FTRACE=y 1429 - # CONFIG_FTRACE is not set 1430 # CONFIG_IRQSOFF_TRACER is not set 1431 # CONFIG_PREEMPT_TRACER is not set 1432 # CONFIG_SCHED_TRACER is not set 1433 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1434 # CONFIG_BOOT_TRACER is not set 1435 # CONFIG_STACK_TRACER is not set 1436 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1437 # CONFIG_SAMPLES is not set 1438 CONFIG_SH_STANDARD_BIOS=y 1439 # CONFIG_EARLY_SCIF_CONSOLE is not set 1440 # CONFIG_EARLY_PRINTK is not set ··· 1451 # CONFIG_DEBUG_STACK_USAGE is not set 1452 # CONFIG_4KSTACKS is not set 1453 # CONFIG_IRQSTACKS is not set 1454 - # CONFIG_SH_KGDB is not set 1455 1456 # 1457 # Security options ··· 1469 # 1470 # CONFIG_CRYPTO_FIPS is not set 1471 CONFIG_CRYPTO_ALGAPI=y 1472 # CONFIG_CRYPTO_MANAGER is not set 1473 # CONFIG_CRYPTO_GF128MUL is not set 1474 # CONFIG_CRYPTO_NULL is not set 1475 # CONFIG_CRYPTO_CRYPTD is not set ··· 1557 # Library routines 1558 # 1559 CONFIG_BITREVERSE=y 1560 # CONFIG_CRC_CCITT is not set 1561 # CONFIG_CRC16 is not set 1562 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:26:40 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 59 CONFIG_SYSCTL_SYSCALL=y 60 CONFIG_KALLSYMS=y 61 CONFIG_KALLSYMS_ALL=y 62 + CONFIG_KALLSYMS_STRIP_GENERATED=y 63 # CONFIG_KALLSYMS_EXTRA_PASS is not set 64 CONFIG_HOTPLUG=y 65 CONFIG_PRINTK=y ··· 81 CONFIG_SLUB=y 82 # CONFIG_SLOB is not set 83 # CONFIG_PROFILING is not set 84 CONFIG_HAVE_OPROFILE=y 85 # CONFIG_KPROBES is not set 86 CONFIG_HAVE_IOREMAP_PROT=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 CONFIG_MODULE_FORCE_UNLOAD=y 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 CONFIG_BLOCK=y 104 CONFIG_LBD=y 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 121 # CONFIG_DEFAULT_NOOP is not set 122 CONFIG_DEFAULT_IOSCHED="anticipatory" 123 CONFIG_CLASSIC_RCU=y 124 + # CONFIG_TREE_RCU is not set 125 + # CONFIG_PREEMPT_RCU is not set 126 + # CONFIG_TREE_RCU_TRACE is not set 127 + # CONFIG_PREEMPT_RCU_TRACE is not set 128 # CONFIG_FREEZER is not set 129 130 # ··· 129 CONFIG_CPU_SH4=y 130 CONFIG_CPU_SH4A=y 131 # CONFIG_CPU_SUBTYPE_SH7619 is not set 132 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 133 # CONFIG_CPU_SUBTYPE_SH7203 is not set 134 # CONFIG_CPU_SUBTYPE_SH7206 is not set 135 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 199 CONFIG_SPARSEMEM_STATIC=y 200 CONFIG_PAGEFLAGS_EXTENDED=y 201 CONFIG_SPLIT_PTLOCK_CPUS=4 202 # CONFIG_PHYS_ADDR_T_64BIT is not set 203 CONFIG_ZONE_DMA_FLAG=0 204 CONFIG_NR_QUICK=2 ··· 282 # CONFIG_PREEMPT_NONE is not set 283 # CONFIG_PREEMPT_VOLUNTARY is not set 284 CONFIG_PREEMPT=y 285 CONFIG_GUSA=y 286 287 # ··· 300 CONFIG_SH_PCIDMA_NONCOHERENT=y 301 CONFIG_PCI_AUTO=y 302 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 303 + # CONFIG_PCIEPORTBUS is not set 304 # CONFIG_ARCH_SUPPORTS_MSI is not set 305 # CONFIG_PCI_LEGACY is not set 306 CONFIG_PCI_DEBUG=y ··· 334 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 335 # CONFIG_HAVE_AOUT is not set 336 # CONFIG_BINFMT_MISC is not set 337 + 338 + # 339 + # Power management options (EXPERIMENTAL) 340 + # 341 + # CONFIG_PM is not set 342 + # CONFIG_CPU_IDLE is not set 343 CONFIG_NET=y 344 345 # 346 # Networking options 347 # 348 + CONFIG_COMPAT_NET_DEV_OPS=y 349 CONFIG_PACKET=y 350 # CONFIG_PACKET_MMAP is not set 351 CONFIG_UNIX=y ··· 434 # CONFIG_NET_SCH_GRED is not set 435 # CONFIG_NET_SCH_DSMARK is not set 436 # CONFIG_NET_SCH_NETEM is not set 437 + # CONFIG_NET_SCH_DRR is not set 438 439 # 440 # Classification ··· 449 # CONFIG_NET_EMATCH is not set 450 # CONFIG_NET_CLS_ACT is not set 451 CONFIG_NET_SCH_FIFO=y 452 + # CONFIG_DCB is not set 453 454 # 455 # Network testing ··· 464 # CONFIG_CFG80211 is not set 465 # CONFIG_WIRELESS_OLD_REGULATORY is not set 466 # CONFIG_WIRELESS_EXT is not set 467 + # CONFIG_LIB80211 is not set 468 # CONFIG_MAC80211 is not set 469 # CONFIG_RFKILL is not set 470 # CONFIG_NET_9P is not set 471 ··· 516 # 517 # Please see Documentation/ide/ide.txt for help/info on IDE drives 518 # 519 + CONFIG_IDE_ATAPI=y 520 # CONFIG_BLK_DEV_IDE_SATA is not set 521 CONFIG_IDE_GD=y 522 CONFIG_IDE_GD_ATA=y ··· 525 CONFIG_BLK_DEV_IDECD=y 526 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 527 # CONFIG_BLK_DEV_IDETAPE is not set 528 # CONFIG_IDE_TASK_IOCTL is not set 529 CONFIG_IDE_PROC_FS=y 530 ··· 553 # CONFIG_BLK_DEV_JMICRON is not set 554 # CONFIG_BLK_DEV_SC1200 is not set 555 # CONFIG_BLK_DEV_PIIX is not set 556 + # CONFIG_BLK_DEV_IT8172 is not set 557 # CONFIG_BLK_DEV_IT8213 is not set 558 # CONFIG_BLK_DEV_IT821X is not set 559 # CONFIG_BLK_DEV_NS87415 is not set ··· 619 # CONFIG_MEGARAID_LEGACY is not set 620 # CONFIG_MEGARAID_SAS is not set 621 # CONFIG_SCSI_HPTIOP is not set 622 + # CONFIG_LIBFC is not set 623 + # CONFIG_FCOE is not set 624 # CONFIG_SCSI_DMX3191D is not set 625 # CONFIG_SCSI_FUTURE_DOMAIN is not set 626 # CONFIG_SCSI_IPS is not set ··· 742 # CONFIG_NET_VENDOR_3COM is not set 743 CONFIG_SMC91X=y 744 # CONFIG_SMC911X is not set 745 + # CONFIG_SMSC911X is not set 746 # CONFIG_NET_TULIP is not set 747 # CONFIG_HP100 is not set 748 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 826 CONFIG_MOUSE_PS2_SYNAPTICS=y 827 CONFIG_MOUSE_PS2_LIFEBOOK=y 828 CONFIG_MOUSE_PS2_TRACKPOINT=y 829 + # CONFIG_MOUSE_PS2_ELANTECH is not set 830 # CONFIG_MOUSE_PS2_TOUCHKIT is not set 831 # CONFIG_MOUSE_SERIAL is not set 832 # CONFIG_MOUSE_APPLETOUCH is not set ··· 875 CONFIG_SERIAL_CORE_CONSOLE=y 876 # CONFIG_SERIAL_JSM is not set 877 CONFIG_UNIX98_PTYS=y 878 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 879 CONFIG_LEGACY_PTYS=y 880 CONFIG_LEGACY_PTY_COUNT=256 881 # CONFIG_PRINTER is not set ··· 905 # CONFIG_THERMAL is not set 906 # CONFIG_THERMAL_HWMON is not set 907 # CONFIG_WATCHDOG is not set 908 + CONFIG_SSB_POSSIBLE=y 909 910 # 911 # Sonics Silicon Backplane 912 # 913 CONFIG_SSB=y 914 CONFIG_SSB_SPROM=y 915 CONFIG_SSB_PCIHOST_POSSIBLE=y ··· 929 # CONFIG_MFD_SM501 is not set 930 # CONFIG_HTC_PASIC3 is not set 931 # CONFIG_MFD_TMIO is not set 932 + # CONFIG_REGULATOR is not set 933 934 # 935 # Multimedia devices ··· 957 # CONFIG_FIRMWARE_EDID is not set 958 # CONFIG_FB_DDC is not set 959 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 960 + # CONFIG_FB_CFB_FILLRECT is not set 961 + # CONFIG_FB_CFB_COPYAREA is not set 962 + # CONFIG_FB_CFB_IMAGEBLIT is not set 963 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 964 + CONFIG_FB_SYS_FILLRECT=m 965 + CONFIG_FB_SYS_COPYAREA=m 966 + CONFIG_FB_SYS_IMAGEBLIT=m 967 # CONFIG_FB_FOREIGN_ENDIAN is not set 968 + CONFIG_FB_SYS_FOPS=m 969 + CONFIG_FB_DEFERRED_IO=y 970 # CONFIG_FB_SVGALIB is not set 971 # CONFIG_FB_MACMODES is not set 972 # CONFIG_FB_BACKLIGHT is not set ··· 1003 CONFIG_FB_SH_MOBILE_LCDC=m 1004 # CONFIG_FB_VIRTUAL is not set 1005 # CONFIG_FB_METRONOME is not set 1006 + # CONFIG_FB_MB862XX is not set 1007 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 1008 1009 # ··· 1054 CONFIG_HID_A4TECH=y 1055 CONFIG_HID_APPLE=y 1056 CONFIG_HID_BELKIN=y 1057 CONFIG_HID_CHERRY=y 1058 CONFIG_HID_CHICONY=y 1059 CONFIG_HID_CYPRESS=y 1060 CONFIG_HID_EZKEY=y 1061 CONFIG_HID_GYRATION=y 1062 CONFIG_HID_LOGITECH=y ··· 1066 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1067 CONFIG_HID_MICROSOFT=y 1068 CONFIG_HID_MONTEREY=y 1069 + # CONFIG_HID_NTRIG is not set 1070 CONFIG_HID_PANTHERLORD=y 1071 # CONFIG_PANTHERLORD_FF is not set 1072 CONFIG_HID_PETALYNX=y 1073 CONFIG_HID_SAMSUNG=y 1074 CONFIG_HID_SONY=y 1075 CONFIG_HID_SUNPLUS=y 1076 + # CONFIG_GREENASIA_FF is not set 1077 + # CONFIG_HID_TOPSEED is not set 1078 CONFIG_THRUSTMASTER_FF=m 1079 CONFIG_ZEROPLUS_FF=m 1080 CONFIG_USB_SUPPORT=y ··· 1092 # CONFIG_USB_OTG_WHITELIST is not set 1093 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1094 CONFIG_USB_MON=y 1095 + # CONFIG_USB_WUSB is not set 1096 + # CONFIG_USB_WUSB_CBAF is not set 1097 1098 # 1099 # USB Host Controller Drivers ··· 1106 # CONFIG_USB_UHCI_HCD is not set 1107 # CONFIG_USB_SL811_HCD is not set 1108 # CONFIG_USB_R8A66597_HCD is not set 1109 + # CONFIG_USB_WHCI_HCD is not set 1110 + # CONFIG_USB_HWA_HCD is not set 1111 1112 # 1113 # USB Device Class drivers ··· 1116 # CONFIG_USB_TMC is not set 1117 1118 # 1119 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1120 # 1121 1122 # 1123 + # see USB_STORAGE Help for more information 1124 # 1125 CONFIG_USB_STORAGE=y 1126 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1176 # CONFIG_USB_ISIGHTFW is not set 1177 # CONFIG_USB_VST is not set 1178 # CONFIG_USB_GADGET is not set 1179 + # CONFIG_UWB is not set 1180 # CONFIG_MMC is not set 1181 # CONFIG_MEMSTICK is not set 1182 CONFIG_NEW_LEDS=y ··· 1260 CONFIG_HUGETLBFS=y 1261 CONFIG_HUGETLB_PAGE=y 1262 # CONFIG_CONFIGFS_FS is not set 1263 + CONFIG_MISC_FILESYSTEMS=y 1264 # CONFIG_ADFS_FS is not set 1265 # CONFIG_AFFS_FS is not set 1266 # CONFIG_HFS_FS is not set ··· 1392 # CONFIG_DEBUG_MEMORY_INIT is not set 1393 # CONFIG_DEBUG_LIST is not set 1394 # CONFIG_DEBUG_SG is not set 1395 + # CONFIG_DEBUG_NOTIFIERS is not set 1396 # CONFIG_FRAME_POINTER is not set 1397 # CONFIG_RCU_TORTURE_TEST is not set 1398 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1400 # CONFIG_FAULT_INJECTION is not set 1401 # CONFIG_LATENCYTOP is not set 1402 CONFIG_SYSCTL_SYSCALL_CHECK=y 1403 + CONFIG_HAVE_FUNCTION_TRACER=y 1404 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1405 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1406 + 1407 + # 1408 + # Tracers 1409 + # 1410 + # CONFIG_FUNCTION_TRACER is not set 1411 # CONFIG_IRQSOFF_TRACER is not set 1412 # CONFIG_PREEMPT_TRACER is not set 1413 # CONFIG_SCHED_TRACER is not set 1414 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1415 # CONFIG_BOOT_TRACER is not set 1416 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1417 # CONFIG_STACK_TRACER is not set 1418 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1419 # CONFIG_SAMPLES is not set 1420 + CONFIG_HAVE_ARCH_KGDB=y 1421 + # CONFIG_KGDB is not set 1422 CONFIG_SH_STANDARD_BIOS=y 1423 # CONFIG_EARLY_SCIF_CONSOLE is not set 1424 # CONFIG_EARLY_PRINTK is not set ··· 1419 # CONFIG_DEBUG_STACK_USAGE is not set 1420 # CONFIG_4KSTACKS is not set 1421 # CONFIG_IRQSTACKS is not set 1422 + CONFIG_DUMP_CODE=y 1423 + # CONFIG_SH_NO_BSS_INIT is not set 1424 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1425 1426 # 1427 # Security options ··· 1435 # 1436 # CONFIG_CRYPTO_FIPS is not set 1437 CONFIG_CRYPTO_ALGAPI=y 1438 + CONFIG_CRYPTO_ALGAPI2=y 1439 + CONFIG_CRYPTO_HASH=y 1440 + CONFIG_CRYPTO_HASH2=y 1441 # CONFIG_CRYPTO_MANAGER is not set 1442 + # CONFIG_CRYPTO_MANAGER2 is not set 1443 # CONFIG_CRYPTO_GF128MUL is not set 1444 # CONFIG_CRYPTO_NULL is not set 1445 # CONFIG_CRYPTO_CRYPTD is not set ··· 1519 # Library routines 1520 # 1521 CONFIG_BITREVERSE=y 1522 + CONFIG_GENERIC_FIND_LAST_BIT=y 1523 # CONFIG_CRC_CCITT is not set 1524 # CONFIG_CRC16 is not set 1525 CONFIG_CRC_T10DIF=y
+52 -23
arch/sh/configs/se7206_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 18:57:39 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 # CONFIG_GENERIC_TIME is not set 18 # CONFIG_GENERIC_CLOCKEVENTS is not set 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 71 # CONFIG_SYSCTL_SYSCALL is not set 72 CONFIG_KALLSYMS=y 73 CONFIG_KALLSYMS_ALL=y 74 # CONFIG_KALLSYMS_EXTRA_PASS is not set 75 CONFIG_HOTPLUG=y 76 CONFIG_PRINTK=y ··· 87 CONFIG_EVENTFD=y 88 CONFIG_AIO=y 89 CONFIG_VM_EVENT_COUNTERS=y 90 - CONFIG_PCI_QUIRKS=y 91 # CONFIG_SLAB is not set 92 # CONFIG_SLUB is not set 93 CONFIG_SLOB=y 94 CONFIG_PROFILING=y 95 # CONFIG_MARKERS is not set 96 CONFIG_OPROFILE=y 97 CONFIG_HAVE_OPROFILE=y ··· 102 CONFIG_HAVE_CLK=y 103 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 104 CONFIG_RT_MUTEXES=y 105 - CONFIG_TINY_SHMEM=y 106 CONFIG_BASE_SMALL=0 107 CONFIG_MODULES=y 108 # CONFIG_MODULE_FORCE_LOAD is not set ··· 109 # CONFIG_MODULE_FORCE_UNLOAD is not set 110 # CONFIG_MODVERSIONS is not set 111 # CONFIG_MODULE_SRCVERSION_ALL is not set 112 - CONFIG_KMOD=y 113 CONFIG_BLOCK=y 114 # CONFIG_LBD is not set 115 # CONFIG_BLK_DEV_IO_TRACE is not set 116 - # CONFIG_LSF is not set 117 # CONFIG_BLK_DEV_BSG is not set 118 # CONFIG_BLK_DEV_INTEGRITY is not set 119 ··· 128 CONFIG_DEFAULT_NOOP=y 129 CONFIG_DEFAULT_IOSCHED="noop" 130 # CONFIG_CLASSIC_RCU is not set 131 # CONFIG_FREEZER is not set 132 133 # ··· 141 CONFIG_CPU_SH2=y 142 CONFIG_CPU_SH2A=y 143 # CONFIG_CPU_SUBTYPE_SH7619 is not set 144 # CONFIG_CPU_SUBTYPE_SH7203 is not set 145 CONFIG_CPU_SUBTYPE_SH7206=y 146 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 203 CONFIG_SPARSEMEM_STATIC=y 204 CONFIG_PAGEFLAGS_EXTENDED=y 205 CONFIG_SPLIT_PTLOCK_CPUS=4 206 - # CONFIG_RESOURCES_64BIT is not set 207 # CONFIG_PHYS_ADDR_T_64BIT is not set 208 CONFIG_ZONE_DMA_FLAG=0 209 CONFIG_NR_QUICK=2 ··· 286 # CONFIG_PREEMPT_NONE is not set 287 # CONFIG_PREEMPT_VOLUNTARY is not set 288 CONFIG_PREEMPT=y 289 - CONFIG_PREEMPT_RCU=y 290 - CONFIG_RCU_TRACE=y 291 CONFIG_GUSA=y 292 293 # ··· 299 # 300 # Bus options 301 # 302 - CONFIG_CF_ENABLER=y 303 - # CONFIG_CF_AREA5 is not set 304 - CONFIG_CF_AREA6=y 305 - CONFIG_CF_BASE_ADDR=0xb8000000 306 # CONFIG_ARCH_SUPPORTS_MSI is not set 307 # CONFIG_PCCARD is not set 308 ··· 311 CONFIG_BINFMT_SHARED_FLAT=y 312 # CONFIG_HAVE_AOUT is not set 313 CONFIG_BINFMT_MISC=y 314 CONFIG_NET=y 315 316 # 317 # Networking options 318 # 319 CONFIG_PACKET=y 320 # CONFIG_PACKET_MMAP is not set 321 CONFIG_UNIX=y ··· 379 # CONFIG_ECONET is not set 380 # CONFIG_WAN_ROUTER is not set 381 # CONFIG_NET_SCHED is not set 382 383 # 384 # Network testing ··· 395 # CONFIG_CFG80211 is not set 396 # CONFIG_WIRELESS_OLD_REGULATORY is not set 397 # CONFIG_WIRELESS_EXT is not set 398 # CONFIG_MAC80211 is not set 399 - # CONFIG_IEEE80211 is not set 400 # CONFIG_RFKILL is not set 401 # CONFIG_NET_9P is not set 402 ··· 508 CONFIG_MISC_DEVICES=y 509 CONFIG_EEPROM_93CX6=y 510 # CONFIG_ENCLOSURE_SERVICES is not set 511 CONFIG_HAVE_IDE=y 512 # CONFIG_IDE is not set 513 ··· 535 # CONFIG_STNIC is not set 536 CONFIG_SMC91X=y 537 # CONFIG_SMC911X is not set 538 # CONFIG_IBM_NEW_EMAC_ZMII is not set 539 # CONFIG_IBM_NEW_EMAC_RGMII is not set 540 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 608 # CONFIG_THERMAL is not set 609 # CONFIG_THERMAL_HWMON is not set 610 # CONFIG_WATCHDOG is not set 611 612 # 613 # Sonics Silicon Backplane 614 # 615 - CONFIG_SSB_POSSIBLE=y 616 # CONFIG_SSB is not set 617 618 # ··· 622 # CONFIG_MFD_SM501 is not set 623 # CONFIG_HTC_PASIC3 is not set 624 # CONFIG_MFD_TMIO is not set 625 - # CONFIG_MFD_WM8400 is not set 626 627 # 628 # Multimedia devices ··· 742 # CONFIG_TMPFS_POSIX_ACL is not set 743 # CONFIG_HUGETLB_PAGE is not set 744 CONFIG_CONFIGFS_FS=y 745 - 746 - # 747 - # Miscellaneous filesystems 748 - # 749 # CONFIG_ADFS_FS is not set 750 # CONFIG_AFFS_FS is not set 751 # CONFIG_HFS_FS is not set ··· 819 # CONFIG_LOCK_STAT is not set 820 CONFIG_DEBUG_SPINLOCK_SLEEP=y 821 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 822 # CONFIG_DEBUG_KOBJECT is not set 823 CONFIG_DEBUG_BUGVERBOSE=y 824 # CONFIG_DEBUG_INFO is not set ··· 828 # CONFIG_DEBUG_MEMORY_INIT is not set 829 CONFIG_DEBUG_LIST=y 830 # CONFIG_DEBUG_SG is not set 831 CONFIG_FRAME_POINTER=y 832 # CONFIG_RCU_TORTURE_TEST is not set 833 # CONFIG_BACKTRACE_SELF_TEST is not set ··· 836 # CONFIG_FAULT_INJECTION is not set 837 # CONFIG_LATENCYTOP is not set 838 CONFIG_NOP_TRACER=y 839 - CONFIG_HAVE_FTRACE=y 840 - # CONFIG_FTRACE is not set 841 # CONFIG_SCHED_TRACER is not set 842 # CONFIG_CONTEXT_SWITCH_TRACER is not set 843 # CONFIG_BOOT_TRACER is not set 844 # CONFIG_STACK_TRACER is not set 845 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 846 # CONFIG_SAMPLES is not set 847 # CONFIG_SH_STANDARD_BIOS is not set 848 # CONFIG_EARLY_SCIF_CONSOLE is not set 849 # CONFIG_DEBUG_BOOTMEM is not set 850 CONFIG_DEBUG_STACKOVERFLOW=y 851 CONFIG_DEBUG_STACK_USAGE=y 852 # CONFIG_IRQSTACKS is not set 853 854 # 855 # Security options ··· 880 # 881 # CONFIG_CRYPTO_FIPS is not set 882 CONFIG_CRYPTO_ALGAPI=y 883 # CONFIG_CRYPTO_MANAGER is not set 884 # CONFIG_CRYPTO_GF128MUL is not set 885 # CONFIG_CRYPTO_NULL is not set 886 # CONFIG_CRYPTO_CRYPTD is not set ··· 918 # 919 # Digest 920 # 921 - # CONFIG_CRYPTO_CRC32C is not set 922 # CONFIG_CRYPTO_MD4 is not set 923 # CONFIG_CRYPTO_MD5 is not set 924 # CONFIG_CRYPTO_MICHAEL_MIC is not set ··· 967 # Library routines 968 # 969 CONFIG_BITREVERSE=y 970 CONFIG_CRC_CCITT=y 971 CONFIG_CRC16=y 972 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:31:27 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 # CONFIG_GENERIC_TIME is not set 18 # CONFIG_GENERIC_CLOCKEVENTS is not set 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 69 # CONFIG_SYSCTL_SYSCALL is not set 70 CONFIG_KALLSYMS=y 71 CONFIG_KALLSYMS_ALL=y 72 + CONFIG_KALLSYMS_STRIP_GENERATED=y 73 # CONFIG_KALLSYMS_EXTRA_PASS is not set 74 CONFIG_HOTPLUG=y 75 CONFIG_PRINTK=y ··· 84 CONFIG_EVENTFD=y 85 CONFIG_AIO=y 86 CONFIG_VM_EVENT_COUNTERS=y 87 # CONFIG_SLAB is not set 88 # CONFIG_SLUB is not set 89 CONFIG_SLOB=y 90 CONFIG_PROFILING=y 91 + CONFIG_TRACEPOINTS=y 92 # CONFIG_MARKERS is not set 93 CONFIG_OPROFILE=y 94 CONFIG_HAVE_OPROFILE=y ··· 99 CONFIG_HAVE_CLK=y 100 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 101 CONFIG_RT_MUTEXES=y 102 CONFIG_BASE_SMALL=0 103 CONFIG_MODULES=y 104 # CONFIG_MODULE_FORCE_LOAD is not set ··· 107 # CONFIG_MODULE_FORCE_UNLOAD is not set 108 # CONFIG_MODVERSIONS is not set 109 # CONFIG_MODULE_SRCVERSION_ALL is not set 110 CONFIG_BLOCK=y 111 # CONFIG_LBD is not set 112 # CONFIG_BLK_DEV_IO_TRACE is not set 113 # CONFIG_BLK_DEV_BSG is not set 114 # CONFIG_BLK_DEV_INTEGRITY is not set 115 ··· 128 CONFIG_DEFAULT_NOOP=y 129 CONFIG_DEFAULT_IOSCHED="noop" 130 # CONFIG_CLASSIC_RCU is not set 131 + # CONFIG_TREE_RCU is not set 132 + CONFIG_PREEMPT_RCU=y 133 + CONFIG_RCU_TRACE=y 134 + # CONFIG_TREE_RCU_TRACE is not set 135 + CONFIG_PREEMPT_RCU_TRACE=y 136 # CONFIG_FREEZER is not set 137 138 # ··· 136 CONFIG_CPU_SH2=y 137 CONFIG_CPU_SH2A=y 138 # CONFIG_CPU_SUBTYPE_SH7619 is not set 139 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 140 # CONFIG_CPU_SUBTYPE_SH7203 is not set 141 CONFIG_CPU_SUBTYPE_SH7206=y 142 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 197 CONFIG_SPARSEMEM_STATIC=y 198 CONFIG_PAGEFLAGS_EXTENDED=y 199 CONFIG_SPLIT_PTLOCK_CPUS=4 200 # CONFIG_PHYS_ADDR_T_64BIT is not set 201 CONFIG_ZONE_DMA_FLAG=0 202 CONFIG_NR_QUICK=2 ··· 281 # CONFIG_PREEMPT_NONE is not set 282 # CONFIG_PREEMPT_VOLUNTARY is not set 283 CONFIG_PREEMPT=y 284 CONFIG_GUSA=y 285 286 # ··· 296 # 297 # Bus options 298 # 299 # CONFIG_ARCH_SUPPORTS_MSI is not set 300 # CONFIG_PCCARD is not set 301 ··· 312 CONFIG_BINFMT_SHARED_FLAT=y 313 # CONFIG_HAVE_AOUT is not set 314 CONFIG_BINFMT_MISC=y 315 + 316 + # 317 + # Power management options (EXPERIMENTAL) 318 + # 319 + # CONFIG_PM is not set 320 + # CONFIG_CPU_IDLE is not set 321 CONFIG_NET=y 322 323 # 324 # Networking options 325 # 326 + # CONFIG_NET_NS is not set 327 + CONFIG_COMPAT_NET_DEV_OPS=y 328 CONFIG_PACKET=y 329 # CONFIG_PACKET_MMAP is not set 330 CONFIG_UNIX=y ··· 372 # CONFIG_ECONET is not set 373 # CONFIG_WAN_ROUTER is not set 374 # CONFIG_NET_SCHED is not set 375 + # CONFIG_DCB is not set 376 377 # 378 # Network testing ··· 387 # CONFIG_CFG80211 is not set 388 # CONFIG_WIRELESS_OLD_REGULATORY is not set 389 # CONFIG_WIRELESS_EXT is not set 390 + # CONFIG_LIB80211 is not set 391 # CONFIG_MAC80211 is not set 392 # CONFIG_RFKILL is not set 393 # CONFIG_NET_9P is not set 394 ··· 500 CONFIG_MISC_DEVICES=y 501 CONFIG_EEPROM_93CX6=y 502 # CONFIG_ENCLOSURE_SERVICES is not set 503 + # CONFIG_C2PORT is not set 504 CONFIG_HAVE_IDE=y 505 # CONFIG_IDE is not set 506 ··· 526 # CONFIG_STNIC is not set 527 CONFIG_SMC91X=y 528 # CONFIG_SMC911X is not set 529 + # CONFIG_SMSC911X is not set 530 # CONFIG_IBM_NEW_EMAC_ZMII is not set 531 # CONFIG_IBM_NEW_EMAC_RGMII is not set 532 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 598 # CONFIG_THERMAL is not set 599 # CONFIG_THERMAL_HWMON is not set 600 # CONFIG_WATCHDOG is not set 601 + CONFIG_SSB_POSSIBLE=y 602 603 # 604 # Sonics Silicon Backplane 605 # 606 # CONFIG_SSB is not set 607 608 # ··· 612 # CONFIG_MFD_SM501 is not set 613 # CONFIG_HTC_PASIC3 is not set 614 # CONFIG_MFD_TMIO is not set 615 + # CONFIG_REGULATOR is not set 616 617 # 618 # Multimedia devices ··· 732 # CONFIG_TMPFS_POSIX_ACL is not set 733 # CONFIG_HUGETLB_PAGE is not set 734 CONFIG_CONFIGFS_FS=y 735 + CONFIG_MISC_FILESYSTEMS=y 736 # CONFIG_ADFS_FS is not set 737 # CONFIG_AFFS_FS is not set 738 # CONFIG_HFS_FS is not set ··· 812 # CONFIG_LOCK_STAT is not set 813 CONFIG_DEBUG_SPINLOCK_SLEEP=y 814 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 815 + CONFIG_STACKTRACE=y 816 # CONFIG_DEBUG_KOBJECT is not set 817 CONFIG_DEBUG_BUGVERBOSE=y 818 # CONFIG_DEBUG_INFO is not set ··· 820 # CONFIG_DEBUG_MEMORY_INIT is not set 821 CONFIG_DEBUG_LIST=y 822 # CONFIG_DEBUG_SG is not set 823 + # CONFIG_DEBUG_NOTIFIERS is not set 824 CONFIG_FRAME_POINTER=y 825 # CONFIG_RCU_TORTURE_TEST is not set 826 # CONFIG_BACKTRACE_SELF_TEST is not set ··· 827 # CONFIG_FAULT_INJECTION is not set 828 # CONFIG_LATENCYTOP is not set 829 CONFIG_NOP_TRACER=y 830 + CONFIG_HAVE_FUNCTION_TRACER=y 831 + CONFIG_HAVE_DYNAMIC_FTRACE=y 832 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 833 + CONFIG_RING_BUFFER=y 834 + CONFIG_TRACING=y 835 + 836 + # 837 + # Tracers 838 + # 839 + # CONFIG_FUNCTION_TRACER is not set 840 # CONFIG_SCHED_TRACER is not set 841 # CONFIG_CONTEXT_SWITCH_TRACER is not set 842 # CONFIG_BOOT_TRACER is not set 843 + # CONFIG_TRACE_BRANCH_PROFILING is not set 844 # CONFIG_STACK_TRACER is not set 845 + # CONFIG_FTRACE_STARTUP_TEST is not set 846 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 847 # CONFIG_SAMPLES is not set 848 + CONFIG_HAVE_ARCH_KGDB=y 849 + # CONFIG_KGDB is not set 850 # CONFIG_SH_STANDARD_BIOS is not set 851 # CONFIG_EARLY_SCIF_CONSOLE is not set 852 # CONFIG_DEBUG_BOOTMEM is not set 853 CONFIG_DEBUG_STACKOVERFLOW=y 854 CONFIG_DEBUG_STACK_USAGE=y 855 # CONFIG_IRQSTACKS is not set 856 + CONFIG_DUMP_CODE=y 857 + # CONFIG_SH_NO_BSS_INIT is not set 858 + # CONFIG_MORE_COMPILE_OPTIONS is not set 859 860 # 861 # Security options ··· 856 # 857 # CONFIG_CRYPTO_FIPS is not set 858 CONFIG_CRYPTO_ALGAPI=y 859 + CONFIG_CRYPTO_ALGAPI2=y 860 + CONFIG_CRYPTO_HASH=y 861 + CONFIG_CRYPTO_HASH2=y 862 # CONFIG_CRYPTO_MANAGER is not set 863 + # CONFIG_CRYPTO_MANAGER2 is not set 864 # CONFIG_CRYPTO_GF128MUL is not set 865 # CONFIG_CRYPTO_NULL is not set 866 # CONFIG_CRYPTO_CRYPTD is not set ··· 890 # 891 # Digest 892 # 893 + CONFIG_CRYPTO_CRC32C=y 894 # CONFIG_CRYPTO_MD4 is not set 895 # CONFIG_CRYPTO_MD5 is not set 896 # CONFIG_CRYPTO_MICHAEL_MIC is not set ··· 939 # Library routines 940 # 941 CONFIG_BITREVERSE=y 942 + CONFIG_GENERIC_FIND_LAST_BIT=y 943 CONFIG_CRC_CCITT=y 944 CONFIG_CRC16=y 945 # CONFIG_CRC_T10DIF is not set
+37 -24
arch/sh/configs/se7343_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc6 4 - # Thu Dec 4 16:40:25 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 80 # CONFIG_SLUB is not set 81 # CONFIG_SLOB is not set 82 # CONFIG_PROFILING is not set 83 - # CONFIG_MARKERS is not set 84 CONFIG_HAVE_OPROFILE=y 85 # CONFIG_KPROBES is not set 86 CONFIG_HAVE_IOREMAP_PROT=y ··· 89 CONFIG_HAVE_CLK=y 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 - CONFIG_TINY_SHMEM=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 96 CONFIG_MODULE_FORCE_UNLOAD=y 97 # CONFIG_MODVERSIONS is not set 98 # CONFIG_MODULE_SRCVERSION_ALL is not set 99 - CONFIG_KMOD=y 100 CONFIG_BLOCK=y 101 # CONFIG_LBD is not set 102 # CONFIG_BLK_DEV_IO_TRACE is not set 103 - # CONFIG_LSF is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 115 # CONFIG_DEFAULT_NOOP is not set 116 CONFIG_DEFAULT_IOSCHED="deadline" 117 CONFIG_CLASSIC_RCU=y 118 # CONFIG_FREEZER is not set 119 120 # ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 281 # 282 # Bus options 283 # 284 - # CONFIG_CF_ENABLER is not set 285 # CONFIG_ARCH_SUPPORTS_MSI is not set 286 # CONFIG_PCCARD is not set 287 ··· 291 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 292 # CONFIG_HAVE_AOUT is not set 293 # CONFIG_BINFMT_MISC is not set 294 CONFIG_NET=y 295 296 # 297 # Networking options 298 # 299 CONFIG_PACKET=y 300 CONFIG_PACKET_MMAP=y 301 CONFIG_UNIX=y ··· 354 # CONFIG_ECONET is not set 355 # CONFIG_WAN_ROUTER is not set 356 # CONFIG_NET_SCHED is not set 357 358 # 359 # Network testing ··· 370 # CONFIG_CFG80211 is not set 371 # CONFIG_WIRELESS_OLD_REGULATORY is not set 372 # CONFIG_WIRELESS_EXT is not set 373 # CONFIG_MAC80211 is not set 374 - # CONFIG_IEEE80211 is not set 375 # CONFIG_RFKILL is not set 376 # CONFIG_NET_9P is not set 377 ··· 701 # CONFIG_MFD_CORE is not set 702 # CONFIG_MFD_SM501 is not set 703 # CONFIG_HTC_PASIC3 is not set 704 # CONFIG_MFD_TMIO is not set 705 # CONFIG_PMIC_DA903X is not set 706 # CONFIG_MFD_WM8400 is not set ··· 752 # CONFIG_USB_VIDEO_CLASS is not set 753 CONFIG_USB_GSPCA=m 754 # CONFIG_USB_M5602 is not set 755 # CONFIG_USB_GSPCA_CONEX is not set 756 # CONFIG_USB_GSPCA_ETOMS is not set 757 # CONFIG_USB_GSPCA_FINEPIX is not set 758 # CONFIG_USB_GSPCA_MARS is not set 759 # CONFIG_USB_GSPCA_OV519 is not set 760 # CONFIG_USB_GSPCA_PAC207 is not set 761 # CONFIG_USB_GSPCA_PAC7311 is not set 762 # CONFIG_USB_GSPCA_SONIXB is not set ··· 797 # CONFIG_USB_DSBR is not set 798 # CONFIG_USB_SI470X is not set 799 # CONFIG_USB_MR800 is not set 800 # CONFIG_DAB is not set 801 802 # ··· 809 CONFIG_FIRMWARE_EDID=y 810 # CONFIG_FB_DDC is not set 811 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 812 - CONFIG_FB_CFB_FILLRECT=m 813 - CONFIG_FB_CFB_COPYAREA=m 814 - CONFIG_FB_CFB_IMAGEBLIT=m 815 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 816 - # CONFIG_FB_SYS_FILLRECT is not set 817 - # CONFIG_FB_SYS_COPYAREA is not set 818 - # CONFIG_FB_SYS_IMAGEBLIT is not set 819 # CONFIG_FB_FOREIGN_ENDIAN is not set 820 - # CONFIG_FB_SYS_FOPS is not set 821 # CONFIG_FB_SVGALIB is not set 822 # CONFIG_FB_MACMODES is not set 823 # CONFIG_FB_BACKLIGHT is not set ··· 894 CONFIG_HID_A4TECH=y 895 CONFIG_HID_APPLE=y 896 CONFIG_HID_BELKIN=y 897 - CONFIG_HID_BRIGHT=y 898 CONFIG_HID_CHERRY=y 899 CONFIG_HID_CHICONY=y 900 CONFIG_HID_CYPRESS=y 901 - CONFIG_HID_DELL=y 902 CONFIG_HID_EZKEY=y 903 CONFIG_HID_GYRATION=y 904 CONFIG_HID_LOGITECH=y ··· 904 # CONFIG_LOGIRUMBLEPAD2_FF is not set 905 CONFIG_HID_MICROSOFT=y 906 CONFIG_HID_MONTEREY=y 907 CONFIG_HID_PANTHERLORD=y 908 # CONFIG_PANTHERLORD_FF is not set 909 CONFIG_HID_PETALYNX=y 910 CONFIG_HID_SAMSUNG=y 911 CONFIG_HID_SONY=y 912 CONFIG_HID_SUNPLUS=y 913 # CONFIG_THRUSTMASTER_FF is not set 914 # CONFIG_ZEROPLUS_FF is not set 915 CONFIG_USB_SUPPORT=y ··· 1011 # CONFIG_UIO_SMX is not set 1012 # CONFIG_UIO_SERCOS3 is not set 1013 # CONFIG_STAGING is not set 1014 - CONFIG_STAGING_EXCLUDE_BUILD=y 1015 1016 # 1017 # File systems ··· 1064 # CONFIG_HUGETLBFS is not set 1065 # CONFIG_HUGETLB_PAGE is not set 1066 # CONFIG_CONFIGFS_FS is not set 1067 - 1068 - # 1069 - # Miscellaneous filesystems 1070 - # 1071 # CONFIG_ADFS_FS is not set 1072 # CONFIG_AFFS_FS is not set 1073 # CONFIG_HFS_FS is not set ··· 1148 # 1149 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1150 # CONFIG_SAMPLES is not set 1151 # CONFIG_SH_STANDARD_BIOS is not set 1152 CONFIG_EARLY_SCIF_CONSOLE=y 1153 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 1154 CONFIG_EARLY_PRINTK=y 1155 - # CONFIG_SH_KGDB is not set 1156 1157 # 1158 # Security options ··· 1169 # 1170 # CONFIG_CRYPTO_FIPS is not set 1171 # CONFIG_CRYPTO_MANAGER is not set 1172 # CONFIG_CRYPTO_GF128MUL is not set 1173 # CONFIG_CRYPTO_NULL is not set 1174 # CONFIG_CRYPTO_CRYPTD is not set ··· 1252 # Library routines 1253 # 1254 CONFIG_BITREVERSE=y 1255 # CONFIG_CRC_CCITT is not set 1256 # CONFIG_CRC16 is not set 1257 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:33:53 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 CONFIG_HAVE_OPROFILE=y 82 # CONFIG_KPROBES is not set 83 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_CLK=y 89 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 90 CONFIG_SLABINFO=y 91 CONFIG_BASE_SMALL=0 92 CONFIG_MODULES=y 93 # CONFIG_MODULE_FORCE_LOAD is not set ··· 96 CONFIG_MODULE_FORCE_UNLOAD=y 97 # CONFIG_MODVERSIONS is not set 98 # CONFIG_MODULE_SRCVERSION_ALL is not set 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 # CONFIG_BLK_DEV_BSG is not set 103 # CONFIG_BLK_DEV_INTEGRITY is not set 104 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="deadline" 119 CONFIG_CLASSIC_RCU=y 120 + # CONFIG_TREE_RCU is not set 121 + # CONFIG_PREEMPT_RCU is not set 122 + # CONFIG_TREE_RCU_TRACE is not set 123 + # CONFIG_PREEMPT_RCU_TRACE is not set 124 # CONFIG_FREEZER is not set 125 126 # ··· 190 CONFIG_SPARSEMEM_STATIC=y 191 CONFIG_PAGEFLAGS_EXTENDED=y 192 CONFIG_SPLIT_PTLOCK_CPUS=4 193 # CONFIG_PHYS_ADDR_T_64BIT is not set 194 CONFIG_ZONE_DMA_FLAG=0 195 CONFIG_NR_QUICK=2 ··· 280 # 281 # Bus options 282 # 283 # CONFIG_ARCH_SUPPORTS_MSI is not set 284 # CONFIG_PCCARD is not set 285 ··· 291 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 292 # CONFIG_HAVE_AOUT is not set 293 # CONFIG_BINFMT_MISC is not set 294 + 295 + # 296 + # Power management options (EXPERIMENTAL) 297 + # 298 + # CONFIG_PM is not set 299 + # CONFIG_CPU_IDLE is not set 300 CONFIG_NET=y 301 302 # 303 # Networking options 304 # 305 + CONFIG_COMPAT_NET_DEV_OPS=y 306 CONFIG_PACKET=y 307 CONFIG_PACKET_MMAP=y 308 CONFIG_UNIX=y ··· 347 # CONFIG_ECONET is not set 348 # CONFIG_WAN_ROUTER is not set 349 # CONFIG_NET_SCHED is not set 350 + # CONFIG_DCB is not set 351 352 # 353 # Network testing ··· 362 # CONFIG_CFG80211 is not set 363 # CONFIG_WIRELESS_OLD_REGULATORY is not set 364 # CONFIG_WIRELESS_EXT is not set 365 + # CONFIG_LIB80211 is not set 366 # CONFIG_MAC80211 is not set 367 # CONFIG_RFKILL is not set 368 # CONFIG_NET_9P is not set 369 ··· 693 # CONFIG_MFD_CORE is not set 694 # CONFIG_MFD_SM501 is not set 695 # CONFIG_HTC_PASIC3 is not set 696 + # CONFIG_TWL4030_CORE is not set 697 # CONFIG_MFD_TMIO is not set 698 # CONFIG_PMIC_DA903X is not set 699 # CONFIG_MFD_WM8400 is not set ··· 743 # CONFIG_USB_VIDEO_CLASS is not set 744 CONFIG_USB_GSPCA=m 745 # CONFIG_USB_M5602 is not set 746 + # CONFIG_USB_STV06XX is not set 747 # CONFIG_USB_GSPCA_CONEX is not set 748 # CONFIG_USB_GSPCA_ETOMS is not set 749 # CONFIG_USB_GSPCA_FINEPIX is not set 750 # CONFIG_USB_GSPCA_MARS is not set 751 # CONFIG_USB_GSPCA_OV519 is not set 752 + # CONFIG_USB_GSPCA_OV534 is not set 753 # CONFIG_USB_GSPCA_PAC207 is not set 754 # CONFIG_USB_GSPCA_PAC7311 is not set 755 # CONFIG_USB_GSPCA_SONIXB is not set ··· 786 # CONFIG_USB_DSBR is not set 787 # CONFIG_USB_SI470X is not set 788 # CONFIG_USB_MR800 is not set 789 + # CONFIG_RADIO_TEA5764 is not set 790 # CONFIG_DAB is not set 791 792 # ··· 797 CONFIG_FIRMWARE_EDID=y 798 # CONFIG_FB_DDC is not set 799 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 800 + # CONFIG_FB_CFB_FILLRECT is not set 801 + # CONFIG_FB_CFB_COPYAREA is not set 802 + # CONFIG_FB_CFB_IMAGEBLIT is not set 803 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 804 + CONFIG_FB_SYS_FILLRECT=m 805 + CONFIG_FB_SYS_COPYAREA=m 806 + CONFIG_FB_SYS_IMAGEBLIT=m 807 # CONFIG_FB_FOREIGN_ENDIAN is not set 808 + CONFIG_FB_SYS_FOPS=m 809 + CONFIG_FB_DEFERRED_IO=y 810 # CONFIG_FB_SVGALIB is not set 811 # CONFIG_FB_MACMODES is not set 812 # CONFIG_FB_BACKLIGHT is not set ··· 881 CONFIG_HID_A4TECH=y 882 CONFIG_HID_APPLE=y 883 CONFIG_HID_BELKIN=y 884 CONFIG_HID_CHERRY=y 885 CONFIG_HID_CHICONY=y 886 CONFIG_HID_CYPRESS=y 887 CONFIG_HID_EZKEY=y 888 CONFIG_HID_GYRATION=y 889 CONFIG_HID_LOGITECH=y ··· 893 # CONFIG_LOGIRUMBLEPAD2_FF is not set 894 CONFIG_HID_MICROSOFT=y 895 CONFIG_HID_MONTEREY=y 896 + # CONFIG_HID_NTRIG is not set 897 CONFIG_HID_PANTHERLORD=y 898 # CONFIG_PANTHERLORD_FF is not set 899 CONFIG_HID_PETALYNX=y 900 CONFIG_HID_SAMSUNG=y 901 CONFIG_HID_SONY=y 902 CONFIG_HID_SUNPLUS=y 903 + # CONFIG_GREENASIA_FF is not set 904 + # CONFIG_HID_TOPSEED is not set 905 # CONFIG_THRUSTMASTER_FF is not set 906 # CONFIG_ZEROPLUS_FF is not set 907 CONFIG_USB_SUPPORT=y ··· 997 # CONFIG_UIO_SMX is not set 998 # CONFIG_UIO_SERCOS3 is not set 999 # CONFIG_STAGING is not set 1000 1001 # 1002 # File systems ··· 1051 # CONFIG_HUGETLBFS is not set 1052 # CONFIG_HUGETLB_PAGE is not set 1053 # CONFIG_CONFIGFS_FS is not set 1054 + CONFIG_MISC_FILESYSTEMS=y 1055 # CONFIG_ADFS_FS is not set 1056 # CONFIG_AFFS_FS is not set 1057 # CONFIG_HFS_FS is not set ··· 1138 # 1139 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1140 # CONFIG_SAMPLES is not set 1141 + CONFIG_HAVE_ARCH_KGDB=y 1142 # CONFIG_SH_STANDARD_BIOS is not set 1143 CONFIG_EARLY_SCIF_CONSOLE=y 1144 CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 1145 CONFIG_EARLY_PRINTK=y 1146 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1147 1148 # 1149 # Security options ··· 1158 # 1159 # CONFIG_CRYPTO_FIPS is not set 1160 # CONFIG_CRYPTO_MANAGER is not set 1161 + # CONFIG_CRYPTO_MANAGER2 is not set 1162 # CONFIG_CRYPTO_GF128MUL is not set 1163 # CONFIG_CRYPTO_NULL is not set 1164 # CONFIG_CRYPTO_CRYPTD is not set ··· 1240 # Library routines 1241 # 1242 CONFIG_BITREVERSE=y 1243 + CONFIG_GENERIC_FIND_LAST_BIT=y 1244 # CONFIG_CRC_CCITT is not set 1245 # CONFIG_CRC16 is not set 1246 # CONFIG_CRC_T10DIF is not set
+30 -17
arch/sh/configs/se7619_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:03:29 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 # CONFIG_GENERIC_TIME is not set 18 # CONFIG_GENERIC_CLOCKEVENTS is not set 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 63 CONFIG_EVENTFD=y 64 CONFIG_AIO=y 65 # CONFIG_VM_EVENT_COUNTERS is not set 66 - CONFIG_PCI_QUIRKS=y 67 CONFIG_SLAB=y 68 # CONFIG_SLUB is not set 69 # CONFIG_SLOB is not set 70 # CONFIG_PROFILING is not set 71 - # CONFIG_MARKERS is not set 72 CONFIG_HAVE_OPROFILE=y 73 CONFIG_HAVE_KPROBES=y 74 CONFIG_HAVE_KRETPROBES=y ··· 74 CONFIG_HAVE_CLK=y 75 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 76 CONFIG_SLABINFO=y 77 - CONFIG_TINY_SHMEM=y 78 CONFIG_BASE_SMALL=1 79 # CONFIG_MODULES is not set 80 CONFIG_BLOCK=y 81 # CONFIG_LBD is not set 82 - # CONFIG_LSF is not set 83 # CONFIG_BLK_DEV_BSG is not set 84 # CONFIG_BLK_DEV_INTEGRITY is not set 85 ··· 94 CONFIG_DEFAULT_NOOP=y 95 CONFIG_DEFAULT_IOSCHED="noop" 96 CONFIG_CLASSIC_RCU=y 97 # CONFIG_FREEZER is not set 98 99 # ··· 105 # 106 CONFIG_CPU_SH2=y 107 CONFIG_CPU_SUBTYPE_SH7619=y 108 # CONFIG_CPU_SUBTYPE_SH7203 is not set 109 # CONFIG_CPU_SUBTYPE_SH7206 is not set 110 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 167 CONFIG_SPARSEMEM_STATIC=y 168 CONFIG_PAGEFLAGS_EXTENDED=y 169 CONFIG_SPLIT_PTLOCK_CPUS=4 170 - # CONFIG_RESOURCES_64BIT is not set 171 # CONFIG_PHYS_ADDR_T_64BIT is not set 172 CONFIG_ZONE_DMA_FLAG=0 173 CONFIG_NR_QUICK=2 ··· 246 # 247 # Bus options 248 # 249 - # CONFIG_CF_ENABLER is not set 250 # CONFIG_ARCH_SUPPORTS_MSI is not set 251 252 # ··· 257 # CONFIG_BINFMT_SHARED_FLAT is not set 258 # CONFIG_HAVE_AOUT is not set 259 # CONFIG_BINFMT_MISC is not set 260 # CONFIG_NET is not set 261 262 # ··· 366 CONFIG_MISC_DEVICES=y 367 # CONFIG_EEPROM_93CX6 is not set 368 # CONFIG_ENCLOSURE_SERVICES is not set 369 CONFIG_HAVE_IDE=y 370 # CONFIG_IDE is not set 371 ··· 447 # CONFIG_THERMAL is not set 448 # CONFIG_THERMAL_HWMON is not set 449 # CONFIG_WATCHDOG is not set 450 451 # 452 # Sonics Silicon Backplane 453 # 454 - CONFIG_SSB_POSSIBLE=y 455 # CONFIG_SSB is not set 456 457 # ··· 461 # CONFIG_MFD_SM501 is not set 462 # CONFIG_HTC_PASIC3 is not set 463 # CONFIG_MFD_TMIO is not set 464 - # CONFIG_MFD_WM8400 is not set 465 466 # 467 # Multimedia devices ··· 514 # 515 516 # 517 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 518 # 519 # CONFIG_USB_GADGET is not set 520 # CONFIG_MMC is not set ··· 565 # CONFIG_SYSFS is not set 566 # CONFIG_TMPFS is not set 567 # CONFIG_HUGETLB_PAGE is not set 568 - 569 - # 570 - # Miscellaneous filesystems 571 - # 572 # CONFIG_ADFS_FS is not set 573 # CONFIG_AFFS_FS is not set 574 # CONFIG_HFS_FS is not set ··· 607 # CONFIG_DEBUG_MEMORY_INIT is not set 608 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 609 # CONFIG_LATENCYTOP is not set 610 - CONFIG_NOP_TRACER=y 611 - CONFIG_HAVE_FTRACE=y 612 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 613 # CONFIG_SAMPLES is not set 614 # CONFIG_SH_STANDARD_BIOS is not set 615 # CONFIG_EARLY_SCIF_CONSOLE is not set 616 617 # 618 # Security options ··· 633 # Library routines 634 # 635 CONFIG_BITREVERSE=y 636 # CONFIG_CRC_CCITT is not set 637 # CONFIG_CRC16 is not set 638 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:36:46 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 # CONFIG_GENERIC_TIME is not set 18 # CONFIG_GENERIC_CLOCKEVENTS is not set 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 61 CONFIG_EVENTFD=y 62 CONFIG_AIO=y 63 # CONFIG_VM_EVENT_COUNTERS is not set 64 CONFIG_SLAB=y 65 # CONFIG_SLUB is not set 66 # CONFIG_SLOB is not set 67 # CONFIG_PROFILING is not set 68 CONFIG_HAVE_OPROFILE=y 69 CONFIG_HAVE_KPROBES=y 70 CONFIG_HAVE_KRETPROBES=y ··· 74 CONFIG_HAVE_CLK=y 75 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 76 CONFIG_SLABINFO=y 77 CONFIG_BASE_SMALL=1 78 # CONFIG_MODULES is not set 79 CONFIG_BLOCK=y 80 # CONFIG_LBD is not set 81 # CONFIG_BLK_DEV_BSG is not set 82 # CONFIG_BLK_DEV_INTEGRITY is not set 83 ··· 96 CONFIG_DEFAULT_NOOP=y 97 CONFIG_DEFAULT_IOSCHED="noop" 98 CONFIG_CLASSIC_RCU=y 99 + # CONFIG_TREE_RCU is not set 100 + # CONFIG_PREEMPT_RCU is not set 101 + # CONFIG_TREE_RCU_TRACE is not set 102 + # CONFIG_PREEMPT_RCU_TRACE is not set 103 # CONFIG_FREEZER is not set 104 105 # ··· 103 # 104 CONFIG_CPU_SH2=y 105 CONFIG_CPU_SUBTYPE_SH7619=y 106 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 107 # CONFIG_CPU_SUBTYPE_SH7203 is not set 108 # CONFIG_CPU_SUBTYPE_SH7206 is not set 109 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 164 CONFIG_SPARSEMEM_STATIC=y 165 CONFIG_PAGEFLAGS_EXTENDED=y 166 CONFIG_SPLIT_PTLOCK_CPUS=4 167 # CONFIG_PHYS_ADDR_T_64BIT is not set 168 CONFIG_ZONE_DMA_FLAG=0 169 CONFIG_NR_QUICK=2 ··· 244 # 245 # Bus options 246 # 247 # CONFIG_ARCH_SUPPORTS_MSI is not set 248 249 # ··· 256 # CONFIG_BINFMT_SHARED_FLAT is not set 257 # CONFIG_HAVE_AOUT is not set 258 # CONFIG_BINFMT_MISC is not set 259 + 260 + # 261 + # Power management options (EXPERIMENTAL) 262 + # 263 + # CONFIG_PM is not set 264 + # CONFIG_CPU_IDLE is not set 265 # CONFIG_NET is not set 266 267 # ··· 359 CONFIG_MISC_DEVICES=y 360 # CONFIG_EEPROM_93CX6 is not set 361 # CONFIG_ENCLOSURE_SERVICES is not set 362 + # CONFIG_C2PORT is not set 363 CONFIG_HAVE_IDE=y 364 # CONFIG_IDE is not set 365 ··· 439 # CONFIG_THERMAL is not set 440 # CONFIG_THERMAL_HWMON is not set 441 # CONFIG_WATCHDOG is not set 442 + CONFIG_SSB_POSSIBLE=y 443 444 # 445 # Sonics Silicon Backplane 446 # 447 # CONFIG_SSB is not set 448 449 # ··· 453 # CONFIG_MFD_SM501 is not set 454 # CONFIG_HTC_PASIC3 is not set 455 # CONFIG_MFD_TMIO is not set 456 + # CONFIG_REGULATOR is not set 457 458 # 459 # Multimedia devices ··· 506 # 507 508 # 509 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 510 # 511 # CONFIG_USB_GADGET is not set 512 # CONFIG_MMC is not set ··· 557 # CONFIG_SYSFS is not set 558 # CONFIG_TMPFS is not set 559 # CONFIG_HUGETLB_PAGE is not set 560 + CONFIG_MISC_FILESYSTEMS=y 561 # CONFIG_ADFS_FS is not set 562 # CONFIG_AFFS_FS is not set 563 # CONFIG_HFS_FS is not set ··· 602 # CONFIG_DEBUG_MEMORY_INIT is not set 603 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 604 # CONFIG_LATENCYTOP is not set 605 + CONFIG_HAVE_FUNCTION_TRACER=y 606 + CONFIG_HAVE_DYNAMIC_FTRACE=y 607 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 608 + 609 + # 610 + # Tracers 611 + # 612 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 613 # CONFIG_SAMPLES is not set 614 + CONFIG_HAVE_ARCH_KGDB=y 615 # CONFIG_SH_STANDARD_BIOS is not set 616 # CONFIG_EARLY_SCIF_CONSOLE is not set 617 + # CONFIG_MORE_COMPILE_OPTIONS is not set 618 619 # 620 # Security options ··· 621 # Library routines 622 # 623 CONFIG_BITREVERSE=y 624 + CONFIG_GENERIC_FIND_LAST_BIT=y 625 # CONFIG_CRC_CCITT is not set 626 # CONFIG_CRC16 is not set 627 # CONFIG_CRC_T10DIF is not set
+36 -24
arch/sh/configs/se7705_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:04:52 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 70 CONFIG_SHMEM=y 71 CONFIG_AIO=y 72 CONFIG_VM_EVENT_COUNTERS=y 73 - CONFIG_PCI_QUIRKS=y 74 CONFIG_SLAB=y 75 # CONFIG_SLUB is not set 76 # CONFIG_SLOB is not set 77 # CONFIG_PROFILING is not set 78 - # CONFIG_MARKERS is not set 79 CONFIG_HAVE_OPROFILE=y 80 CONFIG_HAVE_IOREMAP_PROT=y 81 CONFIG_HAVE_KPROBES=y ··· 83 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 84 CONFIG_SLABINFO=y 85 CONFIG_RT_MUTEXES=y 86 - # CONFIG_TINY_SHMEM is not set 87 CONFIG_BASE_SMALL=0 88 CONFIG_MODULES=y 89 # CONFIG_MODULE_FORCE_LOAD is not set 90 # CONFIG_MODULE_UNLOAD is not set 91 # CONFIG_MODVERSIONS is not set 92 # CONFIG_MODULE_SRCVERSION_ALL is not set 93 - CONFIG_KMOD=y 94 CONFIG_BLOCK=y 95 # CONFIG_LBD is not set 96 - # CONFIG_LSF is not set 97 # CONFIG_BLK_DEV_BSG is not set 98 # CONFIG_BLK_DEV_INTEGRITY is not set 99 ··· 107 # CONFIG_DEFAULT_NOOP is not set 108 CONFIG_DEFAULT_IOSCHED="anticipatory" 109 CONFIG_CLASSIC_RCU=y 110 # CONFIG_FREEZER is not set 111 112 # ··· 118 # 119 CONFIG_CPU_SH3=y 120 # CONFIG_CPU_SUBTYPE_SH7619 is not set 121 # CONFIG_CPU_SUBTYPE_SH7203 is not set 122 # CONFIG_CPU_SUBTYPE_SH7206 is not set 123 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 182 CONFIG_SPARSEMEM_STATIC=y 183 CONFIG_PAGEFLAGS_EXTENDED=y 184 CONFIG_SPLIT_PTLOCK_CPUS=4 185 - # CONFIG_RESOURCES_64BIT is not set 186 # CONFIG_PHYS_ADDR_T_64BIT is not set 187 CONFIG_ZONE_DMA_FLAG=0 188 CONFIG_NR_QUICK=2 ··· 259 # CONFIG_PREEMPT_NONE is not set 260 # CONFIG_PREEMPT_VOLUNTARY is not set 261 CONFIG_PREEMPT=y 262 - # CONFIG_PREEMPT_RCU is not set 263 CONFIG_GUSA=y 264 # CONFIG_GUSA_RB is not set 265 ··· 272 # 273 # Bus options 274 # 275 - CONFIG_CF_ENABLER=y 276 - # CONFIG_CF_AREA5 is not set 277 - CONFIG_CF_AREA6=y 278 - CONFIG_CF_BASE_ADDR=0xb8000000 279 # CONFIG_ARCH_SUPPORTS_MSI is not set 280 281 # ··· 281 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 282 # CONFIG_HAVE_AOUT is not set 283 # CONFIG_BINFMT_MISC is not set 284 CONFIG_NET=y 285 286 # 287 # Networking options 288 # 289 CONFIG_PACKET=y 290 # CONFIG_PACKET_MMAP is not set 291 CONFIG_UNIX=y ··· 348 # CONFIG_ECONET is not set 349 # CONFIG_WAN_ROUTER is not set 350 # CONFIG_NET_SCHED is not set 351 352 # 353 # Network testing ··· 364 # CONFIG_CFG80211 is not set 365 # CONFIG_WIRELESS_OLD_REGULATORY is not set 366 # CONFIG_WIRELESS_EXT is not set 367 # CONFIG_MAC80211 is not set 368 - # CONFIG_IEEE80211 is not set 369 # CONFIG_RFKILL is not set 370 # CONFIG_NET_9P is not set 371 ··· 469 CONFIG_MISC_DEVICES=y 470 # CONFIG_EEPROM_93CX6 is not set 471 # CONFIG_ENCLOSURE_SERVICES is not set 472 CONFIG_HAVE_IDE=y 473 # CONFIG_IDE is not set 474 ··· 496 CONFIG_STNIC=y 497 # CONFIG_SMC91X is not set 498 # CONFIG_SMC911X is not set 499 # CONFIG_IBM_NEW_EMAC_ZMII is not set 500 # CONFIG_IBM_NEW_EMAC_RGMII is not set 501 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 589 CONFIG_SERIAL_CORE=y 590 CONFIG_SERIAL_CORE_CONSOLE=y 591 CONFIG_UNIX98_PTYS=y 592 # CONFIG_LEGACY_PTYS is not set 593 # CONFIG_IPMI_HANDLER is not set 594 CONFIG_HW_RANDOM=y ··· 616 # CONFIG_THERMAL is not set 617 # CONFIG_THERMAL_HWMON is not set 618 # CONFIG_WATCHDOG is not set 619 620 # 621 # Sonics Silicon Backplane 622 # 623 - CONFIG_SSB_POSSIBLE=y 624 # CONFIG_SSB is not set 625 626 # ··· 630 # CONFIG_MFD_SM501 is not set 631 # CONFIG_HTC_PASIC3 is not set 632 # CONFIG_MFD_TMIO is not set 633 - # CONFIG_MFD_WM8400 is not set 634 635 # 636 # Multimedia devices ··· 684 # 685 686 # 687 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 688 # 689 # CONFIG_USB_GADGET is not set 690 # CONFIG_MMC is not set ··· 741 # CONFIG_TMPFS is not set 742 # CONFIG_HUGETLBFS is not set 743 # CONFIG_HUGETLB_PAGE is not set 744 - 745 - # 746 - # Miscellaneous filesystems 747 - # 748 # CONFIG_ADFS_FS is not set 749 # CONFIG_AFFS_FS is not set 750 # CONFIG_HFS_FS is not set ··· 810 # CONFIG_DEBUG_MEMORY_INIT is not set 811 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 812 # CONFIG_LATENCYTOP is not set 813 - CONFIG_NOP_TRACER=y 814 - CONFIG_HAVE_FTRACE=y 815 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 816 # CONFIG_SAMPLES is not set 817 # CONFIG_SH_STANDARD_BIOS is not set 818 # CONFIG_EARLY_SCIF_CONSOLE is not set 819 - # CONFIG_SH_KGDB is not set 820 821 # 822 # Security options ··· 837 # 838 # CONFIG_CRYPTO_FIPS is not set 839 # CONFIG_CRYPTO_MANAGER is not set 840 # CONFIG_CRYPTO_GF128MUL is not set 841 # CONFIG_CRYPTO_NULL is not set 842 # CONFIG_CRYPTO_CRYPTD is not set ··· 920 # Library routines 921 # 922 CONFIG_BITREVERSE=y 923 CONFIG_CRC_CCITT=y 924 # CONFIG_CRC16 is not set 925 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:37:50 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 68 CONFIG_SHMEM=y 69 CONFIG_AIO=y 70 CONFIG_VM_EVENT_COUNTERS=y 71 CONFIG_SLAB=y 72 # CONFIG_SLUB is not set 73 # CONFIG_SLOB is not set 74 # CONFIG_PROFILING is not set 75 CONFIG_HAVE_OPROFILE=y 76 CONFIG_HAVE_IOREMAP_PROT=y 77 CONFIG_HAVE_KPROBES=y ··· 83 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 84 CONFIG_SLABINFO=y 85 CONFIG_RT_MUTEXES=y 86 CONFIG_BASE_SMALL=0 87 CONFIG_MODULES=y 88 # CONFIG_MODULE_FORCE_LOAD is not set 89 # CONFIG_MODULE_UNLOAD is not set 90 # CONFIG_MODVERSIONS is not set 91 # CONFIG_MODULE_SRCVERSION_ALL is not set 92 CONFIG_BLOCK=y 93 # CONFIG_LBD is not set 94 # CONFIG_BLK_DEV_BSG is not set 95 # CONFIG_BLK_DEV_INTEGRITY is not set 96 ··· 110 # CONFIG_DEFAULT_NOOP is not set 111 CONFIG_DEFAULT_IOSCHED="anticipatory" 112 CONFIG_CLASSIC_RCU=y 113 + # CONFIG_TREE_RCU is not set 114 + # CONFIG_PREEMPT_RCU is not set 115 + # CONFIG_TREE_RCU_TRACE is not set 116 + # CONFIG_PREEMPT_RCU_TRACE is not set 117 # CONFIG_FREEZER is not set 118 119 # ··· 117 # 118 CONFIG_CPU_SH3=y 119 # CONFIG_CPU_SUBTYPE_SH7619 is not set 120 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 121 # CONFIG_CPU_SUBTYPE_SH7203 is not set 122 # CONFIG_CPU_SUBTYPE_SH7206 is not set 123 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 180 CONFIG_SPARSEMEM_STATIC=y 181 CONFIG_PAGEFLAGS_EXTENDED=y 182 CONFIG_SPLIT_PTLOCK_CPUS=4 183 # CONFIG_PHYS_ADDR_T_64BIT is not set 184 CONFIG_ZONE_DMA_FLAG=0 185 CONFIG_NR_QUICK=2 ··· 258 # CONFIG_PREEMPT_NONE is not set 259 # CONFIG_PREEMPT_VOLUNTARY is not set 260 CONFIG_PREEMPT=y 261 CONFIG_GUSA=y 262 # CONFIG_GUSA_RB is not set 263 ··· 272 # 273 # Bus options 274 # 275 # CONFIG_ARCH_SUPPORTS_MSI is not set 276 277 # ··· 285 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 286 # CONFIG_HAVE_AOUT is not set 287 # CONFIG_BINFMT_MISC is not set 288 + 289 + # 290 + # Power management options (EXPERIMENTAL) 291 + # 292 + # CONFIG_PM is not set 293 + # CONFIG_CPU_IDLE is not set 294 CONFIG_NET=y 295 296 # 297 # Networking options 298 # 299 + CONFIG_COMPAT_NET_DEV_OPS=y 300 CONFIG_PACKET=y 301 # CONFIG_PACKET_MMAP is not set 302 CONFIG_UNIX=y ··· 345 # CONFIG_ECONET is not set 346 # CONFIG_WAN_ROUTER is not set 347 # CONFIG_NET_SCHED is not set 348 + # CONFIG_DCB is not set 349 350 # 351 # Network testing ··· 360 # CONFIG_CFG80211 is not set 361 # CONFIG_WIRELESS_OLD_REGULATORY is not set 362 # CONFIG_WIRELESS_EXT is not set 363 + # CONFIG_LIB80211 is not set 364 # CONFIG_MAC80211 is not set 365 # CONFIG_RFKILL is not set 366 # CONFIG_NET_9P is not set 367 ··· 465 CONFIG_MISC_DEVICES=y 466 # CONFIG_EEPROM_93CX6 is not set 467 # CONFIG_ENCLOSURE_SERVICES is not set 468 + # CONFIG_C2PORT is not set 469 CONFIG_HAVE_IDE=y 470 # CONFIG_IDE is not set 471 ··· 491 CONFIG_STNIC=y 492 # CONFIG_SMC91X is not set 493 # CONFIG_SMC911X is not set 494 + # CONFIG_SMSC911X is not set 495 # CONFIG_IBM_NEW_EMAC_ZMII is not set 496 # CONFIG_IBM_NEW_EMAC_RGMII is not set 497 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 583 CONFIG_SERIAL_CORE=y 584 CONFIG_SERIAL_CORE_CONSOLE=y 585 CONFIG_UNIX98_PTYS=y 586 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 587 # CONFIG_LEGACY_PTYS is not set 588 # CONFIG_IPMI_HANDLER is not set 589 CONFIG_HW_RANDOM=y ··· 609 # CONFIG_THERMAL is not set 610 # CONFIG_THERMAL_HWMON is not set 611 # CONFIG_WATCHDOG is not set 612 + CONFIG_SSB_POSSIBLE=y 613 614 # 615 # Sonics Silicon Backplane 616 # 617 # CONFIG_SSB is not set 618 619 # ··· 623 # CONFIG_MFD_SM501 is not set 624 # CONFIG_HTC_PASIC3 is not set 625 # CONFIG_MFD_TMIO is not set 626 + # CONFIG_REGULATOR is not set 627 628 # 629 # Multimedia devices ··· 677 # 678 679 # 680 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 681 # 682 # CONFIG_USB_GADGET is not set 683 # CONFIG_MMC is not set ··· 734 # CONFIG_TMPFS is not set 735 # CONFIG_HUGETLBFS is not set 736 # CONFIG_HUGETLB_PAGE is not set 737 + CONFIG_MISC_FILESYSTEMS=y 738 # CONFIG_ADFS_FS is not set 739 # CONFIG_AFFS_FS is not set 740 # CONFIG_HFS_FS is not set ··· 806 # CONFIG_DEBUG_MEMORY_INIT is not set 807 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 808 # CONFIG_LATENCYTOP is not set 809 + CONFIG_HAVE_FUNCTION_TRACER=y 810 + CONFIG_HAVE_DYNAMIC_FTRACE=y 811 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 812 + 813 + # 814 + # Tracers 815 + # 816 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 817 # CONFIG_SAMPLES is not set 818 + CONFIG_HAVE_ARCH_KGDB=y 819 # CONFIG_SH_STANDARD_BIOS is not set 820 # CONFIG_EARLY_SCIF_CONSOLE is not set 821 + # CONFIG_MORE_COMPILE_OPTIONS is not set 822 823 # 824 # Security options ··· 827 # 828 # CONFIG_CRYPTO_FIPS is not set 829 # CONFIG_CRYPTO_MANAGER is not set 830 + # CONFIG_CRYPTO_MANAGER2 is not set 831 # CONFIG_CRYPTO_GF128MUL is not set 832 # CONFIG_CRYPTO_NULL is not set 833 # CONFIG_CRYPTO_CRYPTD is not set ··· 909 # Library routines 910 # 911 CONFIG_BITREVERSE=y 912 + CONFIG_GENERIC_FIND_LAST_BIT=y 913 CONFIG_CRC_CCITT=y 914 # CONFIG_CRC16 is not set 915 # CONFIG_CRC_T10DIF is not set
+54 -25
arch/sh/configs/se7712_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:08:12 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 CONFIG_STACKTRACE_SUPPORT=y 19 CONFIG_LOCKDEP_SUPPORT=y 20 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 57 CONFIG_SYSCTL_SYSCALL=y 58 CONFIG_KALLSYMS=y 59 CONFIG_KALLSYMS_ALL=y 60 # CONFIG_KALLSYMS_EXTRA_PASS is not set 61 CONFIG_HOTPLUG=y 62 CONFIG_PRINTK=y ··· 74 # CONFIG_SHMEM is not set 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 - CONFIG_PCI_QUIRKS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 - # CONFIG_MARKERS is not set 83 CONFIG_HAVE_OPROFILE=y 84 # CONFIG_KPROBES is not set 85 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 - CONFIG_TINY_SHMEM=y 92 CONFIG_BASE_SMALL=1 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 113 CONFIG_DEFAULT_NOOP=y 114 CONFIG_DEFAULT_IOSCHED="noop" 115 CONFIG_CLASSIC_RCU=y 116 # CONFIG_FREEZER is not set 117 118 # ··· 124 # 125 CONFIG_CPU_SH3=y 126 # CONFIG_CPU_SUBTYPE_SH7619 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 188 CONFIG_SPARSEMEM_STATIC=y 189 CONFIG_PAGEFLAGS_EXTENDED=y 190 CONFIG_SPLIT_PTLOCK_CPUS=4 191 - # CONFIG_RESOURCES_64BIT is not set 192 # CONFIG_PHYS_ADDR_T_64BIT is not set 193 CONFIG_ZONE_DMA_FLAG=0 194 CONFIG_NR_QUICK=2 ··· 279 # 280 # Bus options 281 # 282 - CONFIG_CF_ENABLER=y 283 - # CONFIG_CF_AREA5 is not set 284 - CONFIG_CF_AREA6=y 285 - CONFIG_CF_BASE_ADDR=0xb8000000 286 # CONFIG_ARCH_SUPPORTS_MSI is not set 287 # CONFIG_PCCARD is not set 288 ··· 289 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 290 # CONFIG_HAVE_AOUT is not set 291 # CONFIG_BINFMT_MISC is not set 292 CONFIG_NET=y 293 294 # 295 # Networking options 296 # 297 CONFIG_PACKET=y 298 CONFIG_PACKET_MMAP=y 299 CONFIG_UNIX=y ··· 381 CONFIG_NET_SCH_GRED=y 382 CONFIG_NET_SCH_DSMARK=y 383 CONFIG_NET_SCH_NETEM=y 384 385 # 386 # Classification ··· 400 # CONFIG_NET_CLS_ACT is not set 401 CONFIG_NET_CLS_IND=y 402 CONFIG_NET_SCH_FIFO=y 403 404 # 405 # Network testing ··· 417 # CONFIG_CFG80211 is not set 418 # CONFIG_WIRELESS_OLD_REGULATORY is not set 419 # CONFIG_WIRELESS_EXT is not set 420 # CONFIG_MAC80211 is not set 421 - # CONFIG_IEEE80211 is not set 422 # CONFIG_RFKILL is not set 423 # CONFIG_NET_9P is not set 424 ··· 525 CONFIG_MISC_DEVICES=y 526 # CONFIG_EEPROM_93CX6 is not set 527 # CONFIG_ENCLOSURE_SERVICES is not set 528 CONFIG_HAVE_IDE=y 529 # CONFIG_IDE is not set 530 ··· 568 # CONFIG_SCSI_SRP_ATTRS is not set 569 CONFIG_SCSI_LOWLEVEL=y 570 # CONFIG_ISCSI_TCP is not set 571 # CONFIG_SCSI_DEBUG is not set 572 # CONFIG_SCSI_DH is not set 573 CONFIG_ATA=y ··· 600 # CONFIG_BROADCOM_PHY is not set 601 # CONFIG_ICPLUS_PHY is not set 602 # CONFIG_REALTEK_PHY is not set 603 # CONFIG_FIXED_PHY is not set 604 CONFIG_MDIO_BITBANG=y 605 CONFIG_NET_ETHERNET=y ··· 612 CONFIG_SH_ETH=y 613 # CONFIG_SMC91X is not set 614 # CONFIG_SMC911X is not set 615 # CONFIG_IBM_NEW_EMAC_ZMII is not set 616 # CONFIG_IBM_NEW_EMAC_RGMII is not set 617 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 671 CONFIG_SERIAL_CORE=y 672 CONFIG_SERIAL_CORE_CONSOLE=y 673 CONFIG_UNIX98_PTYS=y 674 # CONFIG_LEGACY_PTYS is not set 675 # CONFIG_IPMI_HANDLER is not set 676 CONFIG_HW_RANDOM=m ··· 686 # CONFIG_THERMAL is not set 687 # CONFIG_THERMAL_HWMON is not set 688 # CONFIG_WATCHDOG is not set 689 690 # 691 # Sonics Silicon Backplane 692 # 693 - CONFIG_SSB_POSSIBLE=y 694 # CONFIG_SSB is not set 695 696 # ··· 700 # CONFIG_MFD_SM501 is not set 701 # CONFIG_HTC_PASIC3 is not set 702 # CONFIG_MFD_TMIO is not set 703 - # CONFIG_MFD_WM8400 is not set 704 705 # 706 # Multimedia devices ··· 744 # 745 746 # 747 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 748 # 749 # CONFIG_USB_GADGET is not set 750 # CONFIG_MMC is not set ··· 762 CONFIG_LEDS_TRIGGERS=y 763 # CONFIG_LEDS_TRIGGER_TIMER is not set 764 # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set 765 # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 766 # CONFIG_ACCESSIBILITY is not set 767 # CONFIG_RTC_CLASS is not set ··· 824 # CONFIG_HUGETLBFS is not set 825 # CONFIG_HUGETLB_PAGE is not set 826 # CONFIG_CONFIGFS_FS is not set 827 - 828 - # 829 - # Miscellaneous filesystems 830 - # 831 # CONFIG_ADFS_FS is not set 832 # CONFIG_AFFS_FS is not set 833 # CONFIG_HFS_FS is not set ··· 914 # CONFIG_DEBUG_MEMORY_INIT is not set 915 # CONFIG_DEBUG_LIST is not set 916 # CONFIG_DEBUG_SG is not set 917 CONFIG_FRAME_POINTER=y 918 # CONFIG_RCU_TORTURE_TEST is not set 919 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 923 # CONFIG_FAULT_INJECTION is not set 924 # CONFIG_LATENCYTOP is not set 925 CONFIG_SYSCTL_SYSCALL_CHECK=y 926 - CONFIG_NOP_TRACER=y 927 - CONFIG_HAVE_FTRACE=y 928 - # CONFIG_FTRACE is not set 929 # CONFIG_IRQSOFF_TRACER is not set 930 # CONFIG_SCHED_TRACER is not set 931 # CONFIG_CONTEXT_SWITCH_TRACER is not set 932 # CONFIG_BOOT_TRACER is not set 933 # CONFIG_STACK_TRACER is not set 934 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 935 # CONFIG_SAMPLES is not set 936 # CONFIG_SH_STANDARD_BIOS is not set 937 # CONFIG_EARLY_SCIF_CONSOLE is not set 938 # CONFIG_DEBUG_BOOTMEM is not set ··· 948 # CONFIG_DEBUG_STACK_USAGE is not set 949 # CONFIG_4KSTACKS is not set 950 # CONFIG_IRQSTACKS is not set 951 - # CONFIG_SH_KGDB is not set 952 953 # 954 # Security options ··· 966 # 967 # CONFIG_CRYPTO_FIPS is not set 968 CONFIG_CRYPTO_ALGAPI=y 969 CONFIG_CRYPTO_AEAD=y 970 CONFIG_CRYPTO_BLKCIPHER=y 971 CONFIG_CRYPTO_HASH=y 972 - CONFIG_CRYPTO_RNG=y 973 CONFIG_CRYPTO_MANAGER=y 974 # CONFIG_CRYPTO_GF128MUL is not set 975 # CONFIG_CRYPTO_NULL is not set 976 # CONFIG_CRYPTO_CRYPTD is not set ··· 1058 # Library routines 1059 # 1060 CONFIG_BITREVERSE=y 1061 CONFIG_CRC_CCITT=y 1062 # CONFIG_CRC16 is not set 1063 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:40:12 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 19 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y 22 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 55 CONFIG_SYSCTL_SYSCALL=y 56 CONFIG_KALLSYMS=y 57 CONFIG_KALLSYMS_ALL=y 58 + CONFIG_KALLSYMS_STRIP_GENERATED=y 59 # CONFIG_KALLSYMS_EXTRA_PASS is not set 60 CONFIG_HOTPLUG=y 61 CONFIG_PRINTK=y ··· 71 # CONFIG_SHMEM is not set 72 CONFIG_AIO=y 73 CONFIG_VM_EVENT_COUNTERS=y 74 CONFIG_SLAB=y 75 # CONFIG_SLUB is not set 76 # CONFIG_SLOB is not set 77 # CONFIG_PROFILING is not set 78 CONFIG_HAVE_OPROFILE=y 79 # CONFIG_KPROBES is not set 80 CONFIG_HAVE_IOREMAP_PROT=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 CONFIG_BASE_SMALL=1 91 CONFIG_MODULES=y 92 # CONFIG_MODULE_FORCE_LOAD is not set 93 # CONFIG_MODULE_UNLOAD is not set 94 # CONFIG_MODVERSIONS is not set 95 # CONFIG_MODULE_SRCVERSION_ALL is not set 96 CONFIG_BLOCK=y 97 # CONFIG_LBD is not set 98 # CONFIG_BLK_DEV_IO_TRACE is not set 99 # CONFIG_BLK_DEV_BSG is not set 100 # CONFIG_BLK_DEV_INTEGRITY is not set 101 ··· 115 CONFIG_DEFAULT_NOOP=y 116 CONFIG_DEFAULT_IOSCHED="noop" 117 CONFIG_CLASSIC_RCU=y 118 + # CONFIG_TREE_RCU is not set 119 + # CONFIG_PREEMPT_RCU is not set 120 + # CONFIG_TREE_RCU_TRACE is not set 121 + # CONFIG_PREEMPT_RCU_TRACE is not set 122 # CONFIG_FREEZER is not set 123 124 # ··· 122 # 123 CONFIG_CPU_SH3=y 124 # CONFIG_CPU_SUBTYPE_SH7619 is not set 125 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 126 # CONFIG_CPU_SUBTYPE_SH7203 is not set 127 # CONFIG_CPU_SUBTYPE_SH7206 is not set 128 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 185 CONFIG_SPARSEMEM_STATIC=y 186 CONFIG_PAGEFLAGS_EXTENDED=y 187 CONFIG_SPLIT_PTLOCK_CPUS=4 188 # CONFIG_PHYS_ADDR_T_64BIT is not set 189 CONFIG_ZONE_DMA_FLAG=0 190 CONFIG_NR_QUICK=2 ··· 277 # 278 # Bus options 279 # 280 # CONFIG_ARCH_SUPPORTS_MSI is not set 281 # CONFIG_PCCARD is not set 282 ··· 291 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 292 # CONFIG_HAVE_AOUT is not set 293 # CONFIG_BINFMT_MISC is not set 294 + 295 + # 296 + # Power management options (EXPERIMENTAL) 297 + # 298 + # CONFIG_PM is not set 299 + # CONFIG_CPU_IDLE is not set 300 CONFIG_NET=y 301 302 # 303 # Networking options 304 # 305 + CONFIG_COMPAT_NET_DEV_OPS=y 306 CONFIG_PACKET=y 307 CONFIG_PACKET_MMAP=y 308 CONFIG_UNIX=y ··· 376 CONFIG_NET_SCH_GRED=y 377 CONFIG_NET_SCH_DSMARK=y 378 CONFIG_NET_SCH_NETEM=y 379 + # CONFIG_NET_SCH_DRR is not set 380 381 # 382 # Classification ··· 394 # CONFIG_NET_CLS_ACT is not set 395 CONFIG_NET_CLS_IND=y 396 CONFIG_NET_SCH_FIFO=y 397 + # CONFIG_DCB is not set 398 399 # 400 # Network testing ··· 410 # CONFIG_CFG80211 is not set 411 # CONFIG_WIRELESS_OLD_REGULATORY is not set 412 # CONFIG_WIRELESS_EXT is not set 413 + # CONFIG_LIB80211 is not set 414 # CONFIG_MAC80211 is not set 415 # CONFIG_RFKILL is not set 416 # CONFIG_NET_9P is not set 417 ··· 518 CONFIG_MISC_DEVICES=y 519 # CONFIG_EEPROM_93CX6 is not set 520 # CONFIG_ENCLOSURE_SERVICES is not set 521 + # CONFIG_C2PORT is not set 522 CONFIG_HAVE_IDE=y 523 # CONFIG_IDE is not set 524 ··· 560 # CONFIG_SCSI_SRP_ATTRS is not set 561 CONFIG_SCSI_LOWLEVEL=y 562 # CONFIG_ISCSI_TCP is not set 563 + # CONFIG_LIBFC is not set 564 # CONFIG_SCSI_DEBUG is not set 565 # CONFIG_SCSI_DH is not set 566 CONFIG_ATA=y ··· 591 # CONFIG_BROADCOM_PHY is not set 592 # CONFIG_ICPLUS_PHY is not set 593 # CONFIG_REALTEK_PHY is not set 594 + # CONFIG_NATIONAL_PHY is not set 595 + # CONFIG_STE10XP is not set 596 + # CONFIG_LSI_ET1011C_PHY is not set 597 # CONFIG_FIXED_PHY is not set 598 CONFIG_MDIO_BITBANG=y 599 CONFIG_NET_ETHERNET=y ··· 600 CONFIG_SH_ETH=y 601 # CONFIG_SMC91X is not set 602 # CONFIG_SMC911X is not set 603 + # CONFIG_SMSC911X is not set 604 # CONFIG_IBM_NEW_EMAC_ZMII is not set 605 # CONFIG_IBM_NEW_EMAC_RGMII is not set 606 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 658 CONFIG_SERIAL_CORE=y 659 CONFIG_SERIAL_CORE_CONSOLE=y 660 CONFIG_UNIX98_PTYS=y 661 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 662 # CONFIG_LEGACY_PTYS is not set 663 # CONFIG_IPMI_HANDLER is not set 664 CONFIG_HW_RANDOM=m ··· 672 # CONFIG_THERMAL is not set 673 # CONFIG_THERMAL_HWMON is not set 674 # CONFIG_WATCHDOG is not set 675 + CONFIG_SSB_POSSIBLE=y 676 677 # 678 # Sonics Silicon Backplane 679 # 680 # CONFIG_SSB is not set 681 682 # ··· 686 # CONFIG_MFD_SM501 is not set 687 # CONFIG_HTC_PASIC3 is not set 688 # CONFIG_MFD_TMIO is not set 689 + # CONFIG_REGULATOR is not set 690 691 # 692 # Multimedia devices ··· 730 # 731 732 # 733 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 734 # 735 # CONFIG_USB_GADGET is not set 736 # CONFIG_MMC is not set ··· 748 CONFIG_LEDS_TRIGGERS=y 749 # CONFIG_LEDS_TRIGGER_TIMER is not set 750 # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set 751 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 752 # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 753 # CONFIG_ACCESSIBILITY is not set 754 # CONFIG_RTC_CLASS is not set ··· 809 # CONFIG_HUGETLBFS is not set 810 # CONFIG_HUGETLB_PAGE is not set 811 # CONFIG_CONFIGFS_FS is not set 812 + CONFIG_MISC_FILESYSTEMS=y 813 # CONFIG_ADFS_FS is not set 814 # CONFIG_AFFS_FS is not set 815 # CONFIG_HFS_FS is not set ··· 902 # CONFIG_DEBUG_MEMORY_INIT is not set 903 # CONFIG_DEBUG_LIST is not set 904 # CONFIG_DEBUG_SG is not set 905 + # CONFIG_DEBUG_NOTIFIERS is not set 906 CONFIG_FRAME_POINTER=y 907 # CONFIG_RCU_TORTURE_TEST is not set 908 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 910 # CONFIG_FAULT_INJECTION is not set 911 # CONFIG_LATENCYTOP is not set 912 CONFIG_SYSCTL_SYSCALL_CHECK=y 913 + CONFIG_HAVE_FUNCTION_TRACER=y 914 + CONFIG_HAVE_DYNAMIC_FTRACE=y 915 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 916 + 917 + # 918 + # Tracers 919 + # 920 + # CONFIG_FUNCTION_TRACER is not set 921 # CONFIG_IRQSOFF_TRACER is not set 922 # CONFIG_SCHED_TRACER is not set 923 # CONFIG_CONTEXT_SWITCH_TRACER is not set 924 # CONFIG_BOOT_TRACER is not set 925 + # CONFIG_TRACE_BRANCH_PROFILING is not set 926 # CONFIG_STACK_TRACER is not set 927 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 928 # CONFIG_SAMPLES is not set 929 + CONFIG_HAVE_ARCH_KGDB=y 930 + # CONFIG_KGDB is not set 931 # CONFIG_SH_STANDARD_BIOS is not set 932 # CONFIG_EARLY_SCIF_CONSOLE is not set 933 # CONFIG_DEBUG_BOOTMEM is not set ··· 927 # CONFIG_DEBUG_STACK_USAGE is not set 928 # CONFIG_4KSTACKS is not set 929 # CONFIG_IRQSTACKS is not set 930 + # CONFIG_DUMP_CODE is not set 931 + # CONFIG_SH_NO_BSS_INIT is not set 932 + # CONFIG_MORE_COMPILE_OPTIONS is not set 933 934 # 935 # Security options ··· 943 # 944 # CONFIG_CRYPTO_FIPS is not set 945 CONFIG_CRYPTO_ALGAPI=y 946 + CONFIG_CRYPTO_ALGAPI2=y 947 CONFIG_CRYPTO_AEAD=y 948 + CONFIG_CRYPTO_AEAD2=y 949 CONFIG_CRYPTO_BLKCIPHER=y 950 + CONFIG_CRYPTO_BLKCIPHER2=y 951 CONFIG_CRYPTO_HASH=y 952 + CONFIG_CRYPTO_HASH2=y 953 + CONFIG_CRYPTO_RNG2=y 954 CONFIG_CRYPTO_MANAGER=y 955 + CONFIG_CRYPTO_MANAGER2=y 956 # CONFIG_CRYPTO_GF128MUL is not set 957 # CONFIG_CRYPTO_NULL is not set 958 # CONFIG_CRYPTO_CRYPTD is not set ··· 1030 # Library routines 1031 # 1032 CONFIG_BITREVERSE=y 1033 + CONFIG_GENERIC_FIND_LAST_BIT=y 1034 CONFIG_CRC_CCITT=y 1035 # CONFIG_CRC16 is not set 1036 # CONFIG_CRC_T10DIF is not set
+56 -29
arch/sh/configs/se7721_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:12:06 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 CONFIG_STACKTRACE_SUPPORT=y 19 CONFIG_LOCKDEP_SUPPORT=y 20 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 61 CONFIG_SYSCTL_SYSCALL=y 62 CONFIG_KALLSYMS=y 63 CONFIG_KALLSYMS_ALL=y 64 # CONFIG_KALLSYMS_EXTRA_PASS is not set 65 CONFIG_HOTPLUG=y 66 CONFIG_PRINTK=y ··· 78 # CONFIG_SHMEM is not set 79 CONFIG_AIO=y 80 CONFIG_VM_EVENT_COUNTERS=y 81 - CONFIG_PCI_QUIRKS=y 82 CONFIG_SLAB=y 83 # CONFIG_SLUB is not set 84 # CONFIG_SLOB is not set 85 # CONFIG_PROFILING is not set 86 - # CONFIG_MARKERS is not set 87 CONFIG_HAVE_OPROFILE=y 88 # CONFIG_KPROBES is not set 89 CONFIG_HAVE_IOREMAP_PROT=y ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 - CONFIG_TINY_SHMEM=y 96 CONFIG_BASE_SMALL=1 97 CONFIG_MODULES=y 98 # CONFIG_MODULE_FORCE_LOAD is not set 99 # CONFIG_MODULE_UNLOAD is not set 100 # CONFIG_MODVERSIONS is not set 101 # CONFIG_MODULE_SRCVERSION_ALL is not set 102 - CONFIG_KMOD=y 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 - # CONFIG_LSF is not set 107 # CONFIG_BLK_DEV_BSG is not set 108 # CONFIG_BLK_DEV_INTEGRITY is not set 109 ··· 117 CONFIG_DEFAULT_NOOP=y 118 CONFIG_DEFAULT_IOSCHED="noop" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH3=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 282 # 283 # Bus options 284 # 285 - CONFIG_CF_ENABLER=y 286 - # CONFIG_CF_AREA5 is not set 287 - CONFIG_CF_AREA6=y 288 - CONFIG_CF_BASE_ADDR=0xb8000000 289 # CONFIG_ARCH_SUPPORTS_MSI is not set 290 # CONFIG_PCCARD is not set 291 ··· 292 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 293 # CONFIG_HAVE_AOUT is not set 294 # CONFIG_BINFMT_MISC is not set 295 CONFIG_NET=y 296 297 # 298 # Networking options 299 # 300 CONFIG_PACKET=y 301 CONFIG_PACKET_MMAP=y 302 CONFIG_UNIX=y ··· 384 CONFIG_NET_SCH_GRED=y 385 CONFIG_NET_SCH_DSMARK=y 386 CONFIG_NET_SCH_NETEM=y 387 388 # 389 # Classification ··· 403 # CONFIG_NET_CLS_ACT is not set 404 CONFIG_NET_CLS_IND=y 405 CONFIG_NET_SCH_FIFO=y 406 407 # 408 # Network testing ··· 420 # CONFIG_CFG80211 is not set 421 # CONFIG_WIRELESS_OLD_REGULATORY is not set 422 # CONFIG_WIRELESS_EXT is not set 423 # CONFIG_MAC80211 is not set 424 - # CONFIG_IEEE80211 is not set 425 # CONFIG_RFKILL is not set 426 # CONFIG_NET_9P is not set 427 ··· 529 CONFIG_MISC_DEVICES=y 530 # CONFIG_EEPROM_93CX6 is not set 531 # CONFIG_ENCLOSURE_SERVICES is not set 532 CONFIG_HAVE_IDE=y 533 # CONFIG_IDE is not set 534 ··· 681 CONFIG_SERIAL_CORE=y 682 CONFIG_SERIAL_CORE_CONSOLE=y 683 CONFIG_UNIX98_PTYS=y 684 # CONFIG_LEGACY_PTYS is not set 685 # CONFIG_IPMI_HANDLER is not set 686 # CONFIG_HW_RANDOM is not set ··· 695 # CONFIG_HWMON is not set 696 CONFIG_THERMAL=y 697 # CONFIG_WATCHDOG is not set 698 699 # 700 # Sonics Silicon Backplane 701 # 702 - CONFIG_SSB_POSSIBLE=y 703 # CONFIG_SSB is not set 704 705 # ··· 709 # CONFIG_MFD_SM501 is not set 710 # CONFIG_HTC_PASIC3 is not set 711 # CONFIG_MFD_TMIO is not set 712 - # CONFIG_MFD_WM8400 is not set 713 714 # 715 # Multimedia devices ··· 759 CONFIG_HID_A4TECH=y 760 CONFIG_HID_APPLE=y 761 CONFIG_HID_BELKIN=y 762 - CONFIG_HID_BRIGHT=y 763 CONFIG_HID_CHERRY=y 764 CONFIG_HID_CHICONY=y 765 CONFIG_HID_CYPRESS=y 766 - CONFIG_HID_DELL=y 767 CONFIG_HID_EZKEY=y 768 CONFIG_HID_GYRATION=y 769 CONFIG_HID_LOGITECH=y ··· 769 # CONFIG_LOGIRUMBLEPAD2_FF is not set 770 CONFIG_HID_MICROSOFT=y 771 CONFIG_HID_MONTEREY=y 772 CONFIG_HID_PANTHERLORD=y 773 # CONFIG_PANTHERLORD_FF is not set 774 CONFIG_HID_PETALYNX=y 775 CONFIG_HID_SAMSUNG=y 776 CONFIG_HID_SONY=y 777 CONFIG_HID_SUNPLUS=y 778 CONFIG_THRUSTMASTER_FF=m 779 CONFIG_ZEROPLUS_FF=m 780 CONFIG_USB_SUPPORT=y ··· 798 # CONFIG_USB_OTG_WHITELIST is not set 799 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 800 CONFIG_USB_MON=y 801 802 # 803 # USB Host Controller Drivers 804 # 805 # CONFIG_USB_C67X00_HCD is not set 806 # CONFIG_USB_ISP116X_HCD is not set 807 - # CONFIG_USB_ISP1760_HCD is not set 808 CONFIG_USB_OHCI_HCD=y 809 # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set 810 # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set 811 CONFIG_USB_OHCI_LITTLE_ENDIAN=y 812 # CONFIG_USB_SL811_HCD is not set 813 # CONFIG_USB_R8A66597_HCD is not set 814 815 # 816 # USB Device Class drivers ··· 823 # CONFIG_USB_TMC is not set 824 825 # 826 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 827 # 828 829 # 830 - # may also be needed; see USB_STORAGE Help for more information 831 # 832 CONFIG_USB_STORAGE=y 833 # CONFIG_USB_STORAGE_DEBUG is not set ··· 895 CONFIG_LEDS_TRIGGERS=y 896 # CONFIG_LEDS_TRIGGER_TIMER is not set 897 # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set 898 # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 899 # CONFIG_ACCESSIBILITY is not set 900 # CONFIG_RTC_CLASS is not set ··· 960 # CONFIG_HUGETLBFS is not set 961 # CONFIG_HUGETLB_PAGE is not set 962 # CONFIG_CONFIGFS_FS is not set 963 - 964 - # 965 - # Miscellaneous filesystems 966 - # 967 # CONFIG_ADFS_FS is not set 968 # CONFIG_AFFS_FS is not set 969 # CONFIG_HFS_FS is not set ··· 1073 # CONFIG_DEBUG_MEMORY_INIT is not set 1074 # CONFIG_DEBUG_LIST is not set 1075 # CONFIG_DEBUG_SG is not set 1076 CONFIG_FRAME_POINTER=y 1077 # CONFIG_RCU_TORTURE_TEST is not set 1078 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1082 # CONFIG_FAULT_INJECTION is not set 1083 # CONFIG_LATENCYTOP is not set 1084 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1085 - CONFIG_NOP_TRACER=y 1086 - CONFIG_HAVE_FTRACE=y 1087 - # CONFIG_FTRACE is not set 1088 # CONFIG_IRQSOFF_TRACER is not set 1089 # CONFIG_SCHED_TRACER is not set 1090 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1091 # CONFIG_BOOT_TRACER is not set 1092 # CONFIG_STACK_TRACER is not set 1093 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1094 # CONFIG_SAMPLES is not set 1095 # CONFIG_SH_STANDARD_BIOS is not set 1096 # CONFIG_EARLY_SCIF_CONSOLE is not set 1097 # CONFIG_DEBUG_BOOTMEM is not set ··· 1107 # CONFIG_DEBUG_STACK_USAGE is not set 1108 # CONFIG_4KSTACKS is not set 1109 # CONFIG_IRQSTACKS is not set 1110 - # CONFIG_SH_KGDB is not set 1111 1112 # 1113 # Security options ··· 1125 # 1126 # CONFIG_CRYPTO_FIPS is not set 1127 CONFIG_CRYPTO_ALGAPI=y 1128 CONFIG_CRYPTO_AEAD=y 1129 CONFIG_CRYPTO_BLKCIPHER=y 1130 CONFIG_CRYPTO_HASH=y 1131 - CONFIG_CRYPTO_RNG=y 1132 CONFIG_CRYPTO_MANAGER=y 1133 # CONFIG_CRYPTO_GF128MUL is not set 1134 # CONFIG_CRYPTO_NULL is not set 1135 # CONFIG_CRYPTO_CRYPTD is not set ··· 1217 # Library routines 1218 # 1219 CONFIG_BITREVERSE=y 1220 CONFIG_CRC_CCITT=y 1221 # CONFIG_CRC16 is not set 1222 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:43:33 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 19 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y 22 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 59 CONFIG_SYSCTL_SYSCALL=y 60 CONFIG_KALLSYMS=y 61 CONFIG_KALLSYMS_ALL=y 62 + CONFIG_KALLSYMS_STRIP_GENERATED=y 63 # CONFIG_KALLSYMS_EXTRA_PASS is not set 64 CONFIG_HOTPLUG=y 65 CONFIG_PRINTK=y ··· 75 # CONFIG_SHMEM is not set 76 CONFIG_AIO=y 77 CONFIG_VM_EVENT_COUNTERS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 CONFIG_HAVE_OPROFILE=y 83 # CONFIG_KPROBES is not set 84 CONFIG_HAVE_IOREMAP_PROT=y ··· 91 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 92 CONFIG_SLABINFO=y 93 CONFIG_RT_MUTEXES=y 94 CONFIG_BASE_SMALL=1 95 CONFIG_MODULES=y 96 # CONFIG_MODULE_FORCE_LOAD is not set 97 # CONFIG_MODULE_UNLOAD is not set 98 # CONFIG_MODVERSIONS is not set 99 # CONFIG_MODULE_SRCVERSION_ALL is not set 100 CONFIG_BLOCK=y 101 # CONFIG_LBD is not set 102 # CONFIG_BLK_DEV_IO_TRACE is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 119 CONFIG_DEFAULT_NOOP=y 120 CONFIG_DEFAULT_IOSCHED="noop" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 126 # 127 CONFIG_CPU_SH3=y 128 # CONFIG_CPU_SUBTYPE_SH7619 is not set 129 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 130 # CONFIG_CPU_SUBTYPE_SH7203 is not set 131 # CONFIG_CPU_SUBTYPE_SH7206 is not set 132 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=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 ··· 280 # 281 # Bus options 282 # 283 # CONFIG_ARCH_SUPPORTS_MSI is not set 284 # CONFIG_PCCARD is not set 285 ··· 294 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 295 # CONFIG_HAVE_AOUT is not set 296 # CONFIG_BINFMT_MISC is not set 297 + 298 + # 299 + # Power management options (EXPERIMENTAL) 300 + # 301 + # CONFIG_PM is not set 302 + # CONFIG_CPU_IDLE is not set 303 CONFIG_NET=y 304 305 # 306 # Networking options 307 # 308 + CONFIG_COMPAT_NET_DEV_OPS=y 309 CONFIG_PACKET=y 310 CONFIG_PACKET_MMAP=y 311 CONFIG_UNIX=y ··· 379 CONFIG_NET_SCH_GRED=y 380 CONFIG_NET_SCH_DSMARK=y 381 CONFIG_NET_SCH_NETEM=y 382 + # CONFIG_NET_SCH_DRR is not set 383 384 # 385 # Classification ··· 397 # CONFIG_NET_CLS_ACT is not set 398 CONFIG_NET_CLS_IND=y 399 CONFIG_NET_SCH_FIFO=y 400 + # CONFIG_DCB is not set 401 402 # 403 # Network testing ··· 413 # CONFIG_CFG80211 is not set 414 # CONFIG_WIRELESS_OLD_REGULATORY is not set 415 # CONFIG_WIRELESS_EXT is not set 416 + # CONFIG_LIB80211 is not set 417 # CONFIG_MAC80211 is not set 418 # CONFIG_RFKILL is not set 419 # CONFIG_NET_9P is not set 420 ··· 522 CONFIG_MISC_DEVICES=y 523 # CONFIG_EEPROM_93CX6 is not set 524 # CONFIG_ENCLOSURE_SERVICES is not set 525 + # CONFIG_C2PORT is not set 526 CONFIG_HAVE_IDE=y 527 # CONFIG_IDE is not set 528 ··· 673 CONFIG_SERIAL_CORE=y 674 CONFIG_SERIAL_CORE_CONSOLE=y 675 CONFIG_UNIX98_PTYS=y 676 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 677 # CONFIG_LEGACY_PTYS is not set 678 # CONFIG_IPMI_HANDLER is not set 679 # CONFIG_HW_RANDOM is not set ··· 686 # CONFIG_HWMON is not set 687 CONFIG_THERMAL=y 688 # CONFIG_WATCHDOG is not set 689 + CONFIG_SSB_POSSIBLE=y 690 691 # 692 # Sonics Silicon Backplane 693 # 694 # CONFIG_SSB is not set 695 696 # ··· 700 # CONFIG_MFD_SM501 is not set 701 # CONFIG_HTC_PASIC3 is not set 702 # CONFIG_MFD_TMIO is not set 703 + # CONFIG_REGULATOR is not set 704 705 # 706 # Multimedia devices ··· 750 CONFIG_HID_A4TECH=y 751 CONFIG_HID_APPLE=y 752 CONFIG_HID_BELKIN=y 753 CONFIG_HID_CHERRY=y 754 CONFIG_HID_CHICONY=y 755 CONFIG_HID_CYPRESS=y 756 CONFIG_HID_EZKEY=y 757 CONFIG_HID_GYRATION=y 758 CONFIG_HID_LOGITECH=y ··· 762 # CONFIG_LOGIRUMBLEPAD2_FF is not set 763 CONFIG_HID_MICROSOFT=y 764 CONFIG_HID_MONTEREY=y 765 + # CONFIG_HID_NTRIG is not set 766 CONFIG_HID_PANTHERLORD=y 767 # CONFIG_PANTHERLORD_FF is not set 768 CONFIG_HID_PETALYNX=y 769 CONFIG_HID_SAMSUNG=y 770 CONFIG_HID_SONY=y 771 CONFIG_HID_SUNPLUS=y 772 + # CONFIG_GREENASIA_FF is not set 773 + # CONFIG_HID_TOPSEED is not set 774 CONFIG_THRUSTMASTER_FF=m 775 CONFIG_ZEROPLUS_FF=m 776 CONFIG_USB_SUPPORT=y ··· 788 # CONFIG_USB_OTG_WHITELIST is not set 789 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 790 CONFIG_USB_MON=y 791 + # CONFIG_USB_WUSB is not set 792 + # CONFIG_USB_WUSB_CBAF is not set 793 794 # 795 # USB Host Controller Drivers 796 # 797 # CONFIG_USB_C67X00_HCD is not set 798 # CONFIG_USB_ISP116X_HCD is not set 799 CONFIG_USB_OHCI_HCD=y 800 # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set 801 # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set 802 CONFIG_USB_OHCI_LITTLE_ENDIAN=y 803 # CONFIG_USB_SL811_HCD is not set 804 # CONFIG_USB_R8A66597_HCD is not set 805 + # CONFIG_USB_HWA_HCD is not set 806 807 # 808 # USB Device Class drivers ··· 811 # CONFIG_USB_TMC is not set 812 813 # 814 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 815 # 816 817 # 818 + # see USB_STORAGE Help for more information 819 # 820 CONFIG_USB_STORAGE=y 821 # CONFIG_USB_STORAGE_DEBUG is not set ··· 883 CONFIG_LEDS_TRIGGERS=y 884 # CONFIG_LEDS_TRIGGER_TIMER is not set 885 # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set 886 + # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set 887 # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set 888 # CONFIG_ACCESSIBILITY is not set 889 # CONFIG_RTC_CLASS is not set ··· 947 # CONFIG_HUGETLBFS is not set 948 # CONFIG_HUGETLB_PAGE is not set 949 # CONFIG_CONFIGFS_FS is not set 950 + CONFIG_MISC_FILESYSTEMS=y 951 # CONFIG_ADFS_FS is not set 952 # CONFIG_AFFS_FS is not set 953 # CONFIG_HFS_FS is not set ··· 1063 # CONFIG_DEBUG_MEMORY_INIT is not set 1064 # CONFIG_DEBUG_LIST is not set 1065 # CONFIG_DEBUG_SG is not set 1066 + # CONFIG_DEBUG_NOTIFIERS is not set 1067 CONFIG_FRAME_POINTER=y 1068 # CONFIG_RCU_TORTURE_TEST is not set 1069 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1071 # CONFIG_FAULT_INJECTION is not set 1072 # CONFIG_LATENCYTOP is not set 1073 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1074 + CONFIG_HAVE_FUNCTION_TRACER=y 1075 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1076 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1077 + 1078 + # 1079 + # Tracers 1080 + # 1081 + # CONFIG_FUNCTION_TRACER is not set 1082 # CONFIG_IRQSOFF_TRACER is not set 1083 # CONFIG_SCHED_TRACER is not set 1084 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1085 # CONFIG_BOOT_TRACER is not set 1086 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1087 # CONFIG_STACK_TRACER is not set 1088 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1089 # CONFIG_SAMPLES is not set 1090 + CONFIG_HAVE_ARCH_KGDB=y 1091 + # CONFIG_KGDB is not set 1092 # CONFIG_SH_STANDARD_BIOS is not set 1093 # CONFIG_EARLY_SCIF_CONSOLE is not set 1094 # CONFIG_DEBUG_BOOTMEM is not set ··· 1088 # CONFIG_DEBUG_STACK_USAGE is not set 1089 # CONFIG_4KSTACKS is not set 1090 # CONFIG_IRQSTACKS is not set 1091 + # CONFIG_DUMP_CODE is not set 1092 + # CONFIG_SH_NO_BSS_INIT is not set 1093 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1094 1095 # 1096 # Security options ··· 1104 # 1105 # CONFIG_CRYPTO_FIPS is not set 1106 CONFIG_CRYPTO_ALGAPI=y 1107 + CONFIG_CRYPTO_ALGAPI2=y 1108 CONFIG_CRYPTO_AEAD=y 1109 + CONFIG_CRYPTO_AEAD2=y 1110 CONFIG_CRYPTO_BLKCIPHER=y 1111 + CONFIG_CRYPTO_BLKCIPHER2=y 1112 CONFIG_CRYPTO_HASH=y 1113 + CONFIG_CRYPTO_HASH2=y 1114 + CONFIG_CRYPTO_RNG2=y 1115 CONFIG_CRYPTO_MANAGER=y 1116 + CONFIG_CRYPTO_MANAGER2=y 1117 # CONFIG_CRYPTO_GF128MUL is not set 1118 # CONFIG_CRYPTO_NULL is not set 1119 # CONFIG_CRYPTO_CRYPTD is not set ··· 1191 # Library routines 1192 # 1193 CONFIG_BITREVERSE=y 1194 + CONFIG_GENERIC_FIND_LAST_BIT=y 1195 CONFIG_CRC_CCITT=y 1196 # CONFIG_CRC16 is not set 1197 # CONFIG_CRC_T10DIF is not set
+37 -24
arch/sh/configs/se7722_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:15:10 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_NUMA=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 77 CONFIG_SHMEM=y 78 CONFIG_AIO=y 79 CONFIG_VM_EVENT_COUNTERS=y 80 - CONFIG_PCI_QUIRKS=y 81 CONFIG_SLUB_DEBUG=y 82 # CONFIG_SLAB is not set 83 CONFIG_SLUB=y 84 # CONFIG_SLOB is not set 85 CONFIG_PROFILING=y 86 - # CONFIG_MARKERS is not set 87 # CONFIG_OPROFILE is not set 88 CONFIG_HAVE_OPROFILE=y 89 # CONFIG_KPROBES is not set ··· 93 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 94 CONFIG_SLABINFO=y 95 CONFIG_RT_MUTEXES=y 96 - # CONFIG_TINY_SHMEM is not set 97 CONFIG_BASE_SMALL=0 98 CONFIG_MODULES=y 99 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 # CONFIG_MODULE_FORCE_UNLOAD is not set 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 - CONFIG_KMOD=y 104 CONFIG_BLOCK=y 105 # CONFIG_LBD is not set 106 # CONFIG_BLK_DEV_IO_TRACE is not set 107 - # CONFIG_LSF is not set 108 # CONFIG_BLK_DEV_BSG is not set 109 # CONFIG_BLK_DEV_INTEGRITY is not set 110 ··· 119 CONFIG_DEFAULT_NOOP=y 120 CONFIG_DEFAULT_IOSCHED="noop" 121 CONFIG_CLASSIC_RCU=y 122 # CONFIG_FREEZER is not set 123 124 # ··· 133 CONFIG_CPU_SH4AL_DSP=y 134 CONFIG_CPU_SHX2=y 135 # CONFIG_CPU_SUBTYPE_SH7619 is not set 136 # CONFIG_CPU_SUBTYPE_SH7203 is not set 137 # CONFIG_CPU_SUBTYPE_SH7206 is not set 138 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 209 # CONFIG_MEMORY_HOTPLUG is not set 210 CONFIG_SPLIT_PTLOCK_CPUS=4 211 CONFIG_MIGRATION=y 212 - # CONFIG_RESOURCES_64BIT is not set 213 # CONFIG_PHYS_ADDR_T_64BIT is not set 214 CONFIG_ZONE_DMA_FLAG=0 215 CONFIG_NR_QUICK=2 ··· 288 # CONFIG_PREEMPT_NONE is not set 289 # CONFIG_PREEMPT_VOLUNTARY is not set 290 CONFIG_PREEMPT=y 291 - # CONFIG_PREEMPT_RCU is not set 292 CONFIG_GUSA=y 293 294 # ··· 300 # 301 # Bus options 302 # 303 - CONFIG_CF_ENABLER=y 304 - # CONFIG_CF_AREA5 is not set 305 - CONFIG_CF_AREA6=y 306 - CONFIG_CF_BASE_ADDR=0xb8000000 307 # CONFIG_ARCH_SUPPORTS_MSI is not set 308 # CONFIG_PCCARD is not set 309 ··· 310 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 311 # CONFIG_HAVE_AOUT is not set 312 # CONFIG_BINFMT_MISC is not set 313 CONFIG_NET=y 314 315 # 316 # Networking options 317 # 318 CONFIG_PACKET=y 319 CONFIG_PACKET_MMAP=y 320 CONFIG_UNIX=y ··· 374 # CONFIG_ECONET is not set 375 # CONFIG_WAN_ROUTER is not set 376 # CONFIG_NET_SCHED is not set 377 378 # 379 # Network testing ··· 390 # CONFIG_CFG80211 is not set 391 # CONFIG_WIRELESS_OLD_REGULATORY is not set 392 # CONFIG_WIRELESS_EXT is not set 393 # CONFIG_MAC80211 is not set 394 - # CONFIG_IEEE80211 is not set 395 # CONFIG_RFKILL is not set 396 # CONFIG_NET_9P is not set 397 ··· 424 CONFIG_MISC_DEVICES=y 425 # CONFIG_EEPROM_93CX6 is not set 426 # CONFIG_ENCLOSURE_SERVICES is not set 427 CONFIG_HAVE_IDE=y 428 # CONFIG_IDE is not set 429 ··· 467 # CONFIG_SCSI_SRP_ATTRS is not set 468 CONFIG_SCSI_LOWLEVEL=y 469 # CONFIG_ISCSI_TCP is not set 470 # CONFIG_SCSI_DEBUG is not set 471 # CONFIG_SCSI_DH is not set 472 CONFIG_ATA=y ··· 491 # CONFIG_STNIC is not set 492 CONFIG_SMC91X=y 493 # CONFIG_SMC911X is not set 494 # CONFIG_IBM_NEW_EMAC_ZMII is not set 495 # CONFIG_IBM_NEW_EMAC_RGMII is not set 496 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 584 CONFIG_SERIAL_CORE=y 585 CONFIG_SERIAL_CORE_CONSOLE=y 586 CONFIG_UNIX98_PTYS=y 587 CONFIG_LEGACY_PTYS=y 588 CONFIG_LEGACY_PTY_COUNT=256 589 # CONFIG_IPMI_HANDLER is not set ··· 612 # CONFIG_THERMAL is not set 613 # CONFIG_THERMAL_HWMON is not set 614 # CONFIG_WATCHDOG is not set 615 616 # 617 # Sonics Silicon Backplane 618 # 619 - CONFIG_SSB_POSSIBLE=y 620 # CONFIG_SSB is not set 621 622 # ··· 626 # CONFIG_MFD_SM501 is not set 627 # CONFIG_HTC_PASIC3 is not set 628 # CONFIG_MFD_TMIO is not set 629 - # CONFIG_MFD_WM8400 is not set 630 631 # 632 # Multimedia devices ··· 680 # 681 682 # 683 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 684 # 685 # CONFIG_USB_GADGET is not set 686 # CONFIG_MMC is not set ··· 782 CONFIG_HUGETLBFS=y 783 CONFIG_HUGETLB_PAGE=y 784 # CONFIG_CONFIGFS_FS is not set 785 - 786 - # 787 - # Miscellaneous filesystems 788 - # 789 # CONFIG_ADFS_FS is not set 790 # CONFIG_AFFS_FS is not set 791 # CONFIG_HFS_FS is not set ··· 836 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 837 # CONFIG_LATENCYTOP is not set 838 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 839 - CONFIG_NOP_TRACER=y 840 - CONFIG_HAVE_FTRACE=y 841 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 842 # CONFIG_SAMPLES is not set 843 CONFIG_SH_STANDARD_BIOS=y 844 # CONFIG_EARLY_SCIF_CONSOLE is not set 845 # CONFIG_EARLY_PRINTK is not set 846 - # CONFIG_SH_KGDB is not set 847 848 # 849 # Security options ··· 865 # 866 # CONFIG_CRYPTO_FIPS is not set 867 # CONFIG_CRYPTO_MANAGER is not set 868 # CONFIG_CRYPTO_GF128MUL is not set 869 # CONFIG_CRYPTO_NULL is not set 870 # CONFIG_CRYPTO_CRYPTD is not set ··· 948 # Library routines 949 # 950 CONFIG_BITREVERSE=y 951 # CONFIG_CRC_CCITT is not set 952 # CONFIG_CRC16 is not set 953 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:46:59 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_NUMA=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 75 CONFIG_SHMEM=y 76 CONFIG_AIO=y 77 CONFIG_VM_EVENT_COUNTERS=y 78 CONFIG_SLUB_DEBUG=y 79 # CONFIG_SLAB is not set 80 CONFIG_SLUB=y 81 # CONFIG_SLOB is not set 82 CONFIG_PROFILING=y 83 # CONFIG_OPROFILE is not set 84 CONFIG_HAVE_OPROFILE=y 85 # CONFIG_KPROBES is not set ··· 93 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 94 CONFIG_SLABINFO=y 95 CONFIG_RT_MUTEXES=y 96 CONFIG_BASE_SMALL=0 97 CONFIG_MODULES=y 98 # CONFIG_MODULE_FORCE_LOAD is not set ··· 101 # CONFIG_MODULE_FORCE_UNLOAD is not set 102 # CONFIG_MODVERSIONS is not set 103 # CONFIG_MODULE_SRCVERSION_ALL is not set 104 CONFIG_BLOCK=y 105 # CONFIG_LBD is not set 106 # CONFIG_BLK_DEV_IO_TRACE is not set 107 # CONFIG_BLK_DEV_BSG is not set 108 # CONFIG_BLK_DEV_INTEGRITY is not set 109 ··· 122 CONFIG_DEFAULT_NOOP=y 123 CONFIG_DEFAULT_IOSCHED="noop" 124 CONFIG_CLASSIC_RCU=y 125 + # CONFIG_TREE_RCU is not set 126 + # CONFIG_PREEMPT_RCU is not set 127 + # CONFIG_TREE_RCU_TRACE is not set 128 + # CONFIG_PREEMPT_RCU_TRACE is not set 129 # CONFIG_FREEZER is not set 130 131 # ··· 132 CONFIG_CPU_SH4AL_DSP=y 133 CONFIG_CPU_SHX2=y 134 # CONFIG_CPU_SUBTYPE_SH7619 is not set 135 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 136 # CONFIG_CPU_SUBTYPE_SH7203 is not set 137 # CONFIG_CPU_SUBTYPE_SH7206 is not set 138 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 207 # CONFIG_MEMORY_HOTPLUG is not set 208 CONFIG_SPLIT_PTLOCK_CPUS=4 209 CONFIG_MIGRATION=y 210 # CONFIG_PHYS_ADDR_T_64BIT is not set 211 CONFIG_ZONE_DMA_FLAG=0 212 CONFIG_NR_QUICK=2 ··· 287 # CONFIG_PREEMPT_NONE is not set 288 # CONFIG_PREEMPT_VOLUNTARY is not set 289 CONFIG_PREEMPT=y 290 CONFIG_GUSA=y 291 292 # ··· 300 # 301 # Bus options 302 # 303 # CONFIG_ARCH_SUPPORTS_MSI is not set 304 # CONFIG_PCCARD is not set 305 ··· 314 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 315 # CONFIG_HAVE_AOUT is not set 316 # CONFIG_BINFMT_MISC is not set 317 + 318 + # 319 + # Power management options (EXPERIMENTAL) 320 + # 321 + # CONFIG_PM is not set 322 + # CONFIG_CPU_IDLE is not set 323 CONFIG_NET=y 324 325 # 326 # Networking options 327 # 328 + CONFIG_COMPAT_NET_DEV_OPS=y 329 CONFIG_PACKET=y 330 CONFIG_PACKET_MMAP=y 331 CONFIG_UNIX=y ··· 371 # CONFIG_ECONET is not set 372 # CONFIG_WAN_ROUTER is not set 373 # CONFIG_NET_SCHED is not set 374 + # CONFIG_DCB is not set 375 376 # 377 # Network testing ··· 386 # CONFIG_CFG80211 is not set 387 # CONFIG_WIRELESS_OLD_REGULATORY is not set 388 # CONFIG_WIRELESS_EXT is not set 389 + # CONFIG_LIB80211 is not set 390 # CONFIG_MAC80211 is not set 391 # CONFIG_RFKILL is not set 392 # CONFIG_NET_9P is not set 393 ··· 420 CONFIG_MISC_DEVICES=y 421 # CONFIG_EEPROM_93CX6 is not set 422 # CONFIG_ENCLOSURE_SERVICES is not set 423 + # CONFIG_C2PORT is not set 424 CONFIG_HAVE_IDE=y 425 # CONFIG_IDE is not set 426 ··· 462 # CONFIG_SCSI_SRP_ATTRS is not set 463 CONFIG_SCSI_LOWLEVEL=y 464 # CONFIG_ISCSI_TCP is not set 465 + # CONFIG_LIBFC is not set 466 # CONFIG_SCSI_DEBUG is not set 467 # CONFIG_SCSI_DH is not set 468 CONFIG_ATA=y ··· 485 # CONFIG_STNIC is not set 486 CONFIG_SMC91X=y 487 # CONFIG_SMC911X is not set 488 + # CONFIG_SMSC911X is not set 489 # CONFIG_IBM_NEW_EMAC_ZMII is not set 490 # CONFIG_IBM_NEW_EMAC_RGMII is not set 491 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 577 CONFIG_SERIAL_CORE=y 578 CONFIG_SERIAL_CORE_CONSOLE=y 579 CONFIG_UNIX98_PTYS=y 580 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 581 CONFIG_LEGACY_PTYS=y 582 CONFIG_LEGACY_PTY_COUNT=256 583 # CONFIG_IPMI_HANDLER is not set ··· 604 # CONFIG_THERMAL is not set 605 # CONFIG_THERMAL_HWMON is not set 606 # CONFIG_WATCHDOG is not set 607 + CONFIG_SSB_POSSIBLE=y 608 609 # 610 # Sonics Silicon Backplane 611 # 612 # CONFIG_SSB is not set 613 614 # ··· 618 # CONFIG_MFD_SM501 is not set 619 # CONFIG_HTC_PASIC3 is not set 620 # CONFIG_MFD_TMIO is not set 621 + # CONFIG_REGULATOR is not set 622 623 # 624 # Multimedia devices ··· 672 # 673 674 # 675 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 676 # 677 # CONFIG_USB_GADGET is not set 678 # CONFIG_MMC is not set ··· 774 CONFIG_HUGETLBFS=y 775 CONFIG_HUGETLB_PAGE=y 776 # CONFIG_CONFIGFS_FS is not set 777 + CONFIG_MISC_FILESYSTEMS=y 778 # CONFIG_ADFS_FS is not set 779 # CONFIG_AFFS_FS is not set 780 # CONFIG_HFS_FS is not set ··· 831 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 832 # CONFIG_LATENCYTOP is not set 833 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 834 + CONFIG_HAVE_FUNCTION_TRACER=y 835 + CONFIG_HAVE_DYNAMIC_FTRACE=y 836 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 837 + 838 + # 839 + # Tracers 840 + # 841 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 842 # CONFIG_SAMPLES is not set 843 + CONFIG_HAVE_ARCH_KGDB=y 844 CONFIG_SH_STANDARD_BIOS=y 845 # CONFIG_EARLY_SCIF_CONSOLE is not set 846 # CONFIG_EARLY_PRINTK is not set 847 + # CONFIG_MORE_COMPILE_OPTIONS is not set 848 849 # 850 # Security options ··· 854 # 855 # CONFIG_CRYPTO_FIPS is not set 856 # CONFIG_CRYPTO_MANAGER is not set 857 + # CONFIG_CRYPTO_MANAGER2 is not set 858 # CONFIG_CRYPTO_GF128MUL is not set 859 # CONFIG_CRYPTO_NULL is not set 860 # CONFIG_CRYPTO_CRYPTD is not set ··· 936 # Library routines 937 # 938 CONFIG_BITREVERSE=y 939 + CONFIG_GENERIC_FIND_LAST_BIT=y 940 # CONFIG_CRC_CCITT is not set 941 # CONFIG_CRC16 is not set 942 # CONFIG_CRC_T10DIF is not set
+37 -24
arch/sh/configs/se7750_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:17:29 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 74 CONFIG_SHMEM=y 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 - CONFIG_PCI_QUIRKS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 - # CONFIG_MARKERS is not set 83 CONFIG_HAVE_OPROFILE=y 84 # CONFIG_KPROBES is not set 85 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 - # CONFIG_TINY_SHMEM is not set 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 113 # CONFIG_DEFAULT_NOOP is not set 114 CONFIG_DEFAULT_IOSCHED="anticipatory" 115 CONFIG_CLASSIC_RCU=y 116 # CONFIG_FREEZER is not set 117 118 # ··· 124 # 125 CONFIG_CPU_SH4=y 126 # CONFIG_CPU_SUBTYPE_SH7619 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 188 CONFIG_SPARSEMEM_STATIC=y 189 CONFIG_PAGEFLAGS_EXTENDED=y 190 CONFIG_SPLIT_PTLOCK_CPUS=4 191 - # CONFIG_RESOURCES_64BIT is not set 192 # CONFIG_PHYS_ADDR_T_64BIT is not set 193 CONFIG_ZONE_DMA_FLAG=0 194 CONFIG_NR_QUICK=2 ··· 279 # 280 # Bus options 281 # 282 - CONFIG_CF_ENABLER=y 283 - # CONFIG_CF_AREA5 is not set 284 - CONFIG_CF_AREA6=y 285 - CONFIG_CF_BASE_ADDR=0xb8000000 286 # CONFIG_ARCH_SUPPORTS_MSI is not set 287 288 # ··· 288 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 289 # CONFIG_HAVE_AOUT is not set 290 # CONFIG_BINFMT_MISC is not set 291 CONFIG_NET=y 292 293 # 294 # Networking options 295 # 296 CONFIG_PACKET=y 297 # CONFIG_PACKET_MMAP is not set 298 CONFIG_UNIX=y ··· 356 # CONFIG_ECONET is not set 357 # CONFIG_WAN_ROUTER is not set 358 # CONFIG_NET_SCHED is not set 359 360 # 361 # Network testing ··· 372 # CONFIG_CFG80211 is not set 373 # CONFIG_WIRELESS_OLD_REGULATORY is not set 374 # CONFIG_WIRELESS_EXT is not set 375 # CONFIG_MAC80211 is not set 376 - # CONFIG_IEEE80211 is not set 377 # CONFIG_RFKILL is not set 378 # CONFIG_NET_9P is not set 379 ··· 474 CONFIG_MISC_DEVICES=y 475 # CONFIG_EEPROM_93CX6 is not set 476 # CONFIG_ENCLOSURE_SERVICES is not set 477 CONFIG_HAVE_IDE=y 478 CONFIG_IDE=y 479 ··· 487 # CONFIG_IDE_GD_ATAPI is not set 488 # CONFIG_BLK_DEV_IDECD is not set 489 # CONFIG_BLK_DEV_IDETAPE is not set 490 - # CONFIG_BLK_DEV_IDESCSI is not set 491 # CONFIG_IDE_TASK_IOCTL is not set 492 CONFIG_IDE_PROC_FS=y 493 ··· 535 # CONFIG_SCSI_SRP_ATTRS is not set 536 CONFIG_SCSI_LOWLEVEL=y 537 # CONFIG_ISCSI_TCP is not set 538 # CONFIG_SCSI_DEBUG is not set 539 # CONFIG_SCSI_DH is not set 540 # CONFIG_ATA is not set ··· 554 CONFIG_STNIC=y 555 # CONFIG_SMC91X is not set 556 # CONFIG_SMC911X is not set 557 # CONFIG_IBM_NEW_EMAC_ZMII is not set 558 # CONFIG_IBM_NEW_EMAC_RGMII is not set 559 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 617 CONFIG_SERIAL_CORE=y 618 CONFIG_SERIAL_CORE_CONSOLE=y 619 CONFIG_UNIX98_PTYS=y 620 CONFIG_LEGACY_PTYS=y 621 CONFIG_LEGACY_PTY_COUNT=256 622 # CONFIG_IPMI_HANDLER is not set ··· 653 # CONFIG_SOFT_WATCHDOG is not set 654 CONFIG_SH_WDT=y 655 # CONFIG_SH_WDT_MMAP is not set 656 657 # 658 # Sonics Silicon Backplane 659 # 660 - CONFIG_SSB_POSSIBLE=y 661 # CONFIG_SSB is not set 662 663 # ··· 667 # CONFIG_MFD_SM501 is not set 668 # CONFIG_HTC_PASIC3 is not set 669 # CONFIG_MFD_TMIO is not set 670 - # CONFIG_MFD_WM8400 is not set 671 672 # 673 # Multimedia devices ··· 711 # 712 713 # 714 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 715 # 716 # CONFIG_USB_GADGET is not set 717 # CONFIG_MMC is not set ··· 769 # CONFIG_HUGETLBFS is not set 770 # CONFIG_HUGETLB_PAGE is not set 771 # CONFIG_CONFIGFS_FS is not set 772 - 773 - # 774 - # Miscellaneous filesystems 775 - # 776 # CONFIG_ADFS_FS is not set 777 # CONFIG_AFFS_FS is not set 778 # CONFIG_HFS_FS is not set ··· 852 # CONFIG_DEBUG_MEMORY_INIT is not set 853 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 854 # CONFIG_LATENCYTOP is not set 855 - CONFIG_NOP_TRACER=y 856 - CONFIG_HAVE_FTRACE=y 857 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 858 # CONFIG_SAMPLES is not set 859 # CONFIG_SH_STANDARD_BIOS is not set 860 # CONFIG_EARLY_SCIF_CONSOLE is not set 861 - # CONFIG_SH_KGDB is not set 862 863 # 864 # Security options ··· 880 # 881 # CONFIG_CRYPTO_FIPS is not set 882 # CONFIG_CRYPTO_MANAGER is not set 883 # CONFIG_CRYPTO_GF128MUL is not set 884 # CONFIG_CRYPTO_NULL is not set 885 # CONFIG_CRYPTO_CRYPTD is not set ··· 963 # Library routines 964 # 965 CONFIG_BITREVERSE=y 966 # CONFIG_CRC_CCITT is not set 967 # CONFIG_CRC16 is not set 968 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:49:22 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 72 CONFIG_SHMEM=y 73 CONFIG_AIO=y 74 CONFIG_VM_EVENT_COUNTERS=y 75 CONFIG_SLAB=y 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 # CONFIG_KPROBES is not set 81 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 CONFIG_BASE_SMALL=0 92 CONFIG_MODULES=y 93 # CONFIG_MODULE_FORCE_LOAD is not set 94 # CONFIG_MODULE_UNLOAD is not set 95 # CONFIG_MODVERSIONS is not set 96 # CONFIG_MODULE_SRCVERSION_ALL is not set 97 CONFIG_BLOCK=y 98 # CONFIG_LBD is not set 99 # CONFIG_BLK_DEV_IO_TRACE is not set 100 # CONFIG_BLK_DEV_BSG is not set 101 # CONFIG_BLK_DEV_INTEGRITY is not set 102 ··· 116 # CONFIG_DEFAULT_NOOP is not set 117 CONFIG_DEFAULT_IOSCHED="anticipatory" 118 CONFIG_CLASSIC_RCU=y 119 + # CONFIG_TREE_RCU is not set 120 + # CONFIG_PREEMPT_RCU is not set 121 + # CONFIG_TREE_RCU_TRACE is not set 122 + # CONFIG_PREEMPT_RCU_TRACE is not set 123 # CONFIG_FREEZER is not set 124 125 # ··· 123 # 124 CONFIG_CPU_SH4=y 125 # CONFIG_CPU_SUBTYPE_SH7619 is not set 126 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 186 CONFIG_SPARSEMEM_STATIC=y 187 CONFIG_PAGEFLAGS_EXTENDED=y 188 CONFIG_SPLIT_PTLOCK_CPUS=4 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 278 # 279 # Bus options 280 # 281 # CONFIG_ARCH_SUPPORTS_MSI is not set 282 283 # ··· 291 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 292 # CONFIG_HAVE_AOUT is not set 293 # CONFIG_BINFMT_MISC is not set 294 + 295 + # 296 + # Power management options (EXPERIMENTAL) 297 + # 298 + # CONFIG_PM is not set 299 + # CONFIG_CPU_IDLE is not set 300 CONFIG_NET=y 301 302 # 303 # Networking options 304 # 305 + CONFIG_COMPAT_NET_DEV_OPS=y 306 CONFIG_PACKET=y 307 # CONFIG_PACKET_MMAP is not set 308 CONFIG_UNIX=y ··· 352 # CONFIG_ECONET is not set 353 # CONFIG_WAN_ROUTER is not set 354 # CONFIG_NET_SCHED is not set 355 + # CONFIG_DCB is not set 356 357 # 358 # Network testing ··· 367 # CONFIG_CFG80211 is not set 368 # CONFIG_WIRELESS_OLD_REGULATORY is not set 369 # CONFIG_WIRELESS_EXT is not set 370 + # CONFIG_LIB80211 is not set 371 # CONFIG_MAC80211 is not set 372 # CONFIG_RFKILL is not set 373 # CONFIG_NET_9P is not set 374 ··· 469 CONFIG_MISC_DEVICES=y 470 # CONFIG_EEPROM_93CX6 is not set 471 # CONFIG_ENCLOSURE_SERVICES is not set 472 + # CONFIG_C2PORT is not set 473 CONFIG_HAVE_IDE=y 474 CONFIG_IDE=y 475 ··· 481 # CONFIG_IDE_GD_ATAPI is not set 482 # CONFIG_BLK_DEV_IDECD is not set 483 # CONFIG_BLK_DEV_IDETAPE is not set 484 # CONFIG_IDE_TASK_IOCTL is not set 485 CONFIG_IDE_PROC_FS=y 486 ··· 530 # CONFIG_SCSI_SRP_ATTRS is not set 531 CONFIG_SCSI_LOWLEVEL=y 532 # CONFIG_ISCSI_TCP is not set 533 + # CONFIG_LIBFC is not set 534 # CONFIG_SCSI_DEBUG is not set 535 # CONFIG_SCSI_DH is not set 536 # CONFIG_ATA is not set ··· 548 CONFIG_STNIC=y 549 # CONFIG_SMC91X is not set 550 # CONFIG_SMC911X is not set 551 + # CONFIG_SMSC911X is not set 552 # CONFIG_IBM_NEW_EMAC_ZMII is not set 553 # CONFIG_IBM_NEW_EMAC_RGMII is not set 554 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 610 CONFIG_SERIAL_CORE=y 611 CONFIG_SERIAL_CORE_CONSOLE=y 612 CONFIG_UNIX98_PTYS=y 613 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 614 CONFIG_LEGACY_PTYS=y 615 CONFIG_LEGACY_PTY_COUNT=256 616 # CONFIG_IPMI_HANDLER is not set ··· 645 # CONFIG_SOFT_WATCHDOG is not set 646 CONFIG_SH_WDT=y 647 # CONFIG_SH_WDT_MMAP is not set 648 + CONFIG_SSB_POSSIBLE=y 649 650 # 651 # Sonics Silicon Backplane 652 # 653 # CONFIG_SSB is not set 654 655 # ··· 659 # CONFIG_MFD_SM501 is not set 660 # CONFIG_HTC_PASIC3 is not set 661 # CONFIG_MFD_TMIO is not set 662 + # CONFIG_REGULATOR is not set 663 664 # 665 # Multimedia devices ··· 703 # 704 705 # 706 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 707 # 708 # CONFIG_USB_GADGET is not set 709 # CONFIG_MMC is not set ··· 761 # CONFIG_HUGETLBFS is not set 762 # CONFIG_HUGETLB_PAGE is not set 763 # CONFIG_CONFIGFS_FS is not set 764 + CONFIG_MISC_FILESYSTEMS=y 765 # CONFIG_ADFS_FS is not set 766 # CONFIG_AFFS_FS is not set 767 # CONFIG_HFS_FS is not set ··· 847 # CONFIG_DEBUG_MEMORY_INIT is not set 848 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 849 # CONFIG_LATENCYTOP is not set 850 + CONFIG_HAVE_FUNCTION_TRACER=y 851 + CONFIG_HAVE_DYNAMIC_FTRACE=y 852 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 853 + 854 + # 855 + # Tracers 856 + # 857 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 858 # CONFIG_SAMPLES is not set 859 + CONFIG_HAVE_ARCH_KGDB=y 860 # CONFIG_SH_STANDARD_BIOS is not set 861 # CONFIG_EARLY_SCIF_CONSOLE is not set 862 + # CONFIG_MORE_COMPILE_OPTIONS is not set 863 864 # 865 # Security options ··· 869 # 870 # CONFIG_CRYPTO_FIPS is not set 871 # CONFIG_CRYPTO_MANAGER is not set 872 + # CONFIG_CRYPTO_MANAGER2 is not set 873 # CONFIG_CRYPTO_GF128MUL is not set 874 # CONFIG_CRYPTO_NULL is not set 875 # CONFIG_CRYPTO_CRYPTD is not set ··· 951 # Library routines 952 # 953 CONFIG_BITREVERSE=y 954 + CONFIG_GENERIC_FIND_LAST_BIT=y 955 # CONFIG_CRC_CCITT is not set 956 # CONFIG_CRC16 is not set 957 # CONFIG_CRC_T10DIF is not set
+36 -20
arch/sh/configs/se7751_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:21:12 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 74 CONFIG_SHMEM=y 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 - CONFIG_PCI_QUIRKS=y 78 CONFIG_SLAB=y 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 - # CONFIG_MARKERS is not set 83 CONFIG_HAVE_OPROFILE=y 84 # CONFIG_KPROBES is not set 85 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 - # CONFIG_TINY_SHMEM is not set 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set 95 # CONFIG_MODULE_UNLOAD is not set 96 # CONFIG_MODVERSIONS is not set 97 # CONFIG_MODULE_SRCVERSION_ALL is not set 98 - CONFIG_KMOD=y 99 CONFIG_BLOCK=y 100 # CONFIG_LBD is not set 101 # CONFIG_BLK_DEV_IO_TRACE is not set 102 - # CONFIG_LSF is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 113 # CONFIG_DEFAULT_NOOP is not set 114 CONFIG_DEFAULT_IOSCHED="anticipatory" 115 CONFIG_CLASSIC_RCU=y 116 # CONFIG_FREEZER is not set 117 118 # ··· 124 # 125 CONFIG_CPU_SH4=y 126 # CONFIG_CPU_SUBTYPE_SH7619 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 188 CONFIG_SPARSEMEM_STATIC=y 189 CONFIG_PAGEFLAGS_EXTENDED=y 190 CONFIG_SPLIT_PTLOCK_CPUS=4 191 - # CONFIG_RESOURCES_64BIT is not set 192 # CONFIG_PHYS_ADDR_T_64BIT is not set 193 CONFIG_ZONE_DMA_FLAG=0 194 CONFIG_NR_QUICK=2 ··· 281 # 282 # Bus options 283 # 284 - # CONFIG_CF_ENABLER is not set 285 # CONFIG_ARCH_SUPPORTS_MSI is not set 286 287 # ··· 290 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 291 # CONFIG_HAVE_AOUT is not set 292 # CONFIG_BINFMT_MISC is not set 293 CONFIG_NET=y 294 295 # 296 # Networking options 297 # 298 CONFIG_PACKET=y 299 # CONFIG_PACKET_MMAP is not set 300 CONFIG_UNIX=y ··· 377 # CONFIG_ECONET is not set 378 # CONFIG_WAN_ROUTER is not set 379 # CONFIG_NET_SCHED is not set 380 381 # 382 # Network testing ··· 393 # CONFIG_CFG80211 is not set 394 # CONFIG_WIRELESS_OLD_REGULATORY is not set 395 # CONFIG_WIRELESS_EXT is not set 396 # CONFIG_MAC80211 is not set 397 - # CONFIG_IEEE80211 is not set 398 # CONFIG_RFKILL is not set 399 # CONFIG_NET_9P is not set 400 ··· 498 CONFIG_MISC_DEVICES=y 499 # CONFIG_EEPROM_93CX6 is not set 500 # CONFIG_ENCLOSURE_SERVICES is not set 501 CONFIG_HAVE_IDE=y 502 # CONFIG_IDE is not set 503 ··· 525 # CONFIG_STNIC is not set 526 # CONFIG_SMC91X is not set 527 # CONFIG_SMC911X is not set 528 # CONFIG_IBM_NEW_EMAC_ZMII is not set 529 # CONFIG_IBM_NEW_EMAC_RGMII is not set 530 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 580 # 581 # CONFIG_SERIAL_SH_SCI is not set 582 CONFIG_UNIX98_PTYS=y 583 CONFIG_LEGACY_PTYS=y 584 CONFIG_LEGACY_PTY_COUNT=256 585 # CONFIG_IPMI_HANDLER is not set ··· 615 # 616 # CONFIG_SOFT_WATCHDOG is not set 617 # CONFIG_SH_WDT is not set 618 619 # 620 # Sonics Silicon Backplane 621 # 622 - CONFIG_SSB_POSSIBLE=y 623 # CONFIG_SSB is not set 624 625 # ··· 629 # CONFIG_MFD_SM501 is not set 630 # CONFIG_HTC_PASIC3 is not set 631 # CONFIG_MFD_TMIO is not set 632 - # CONFIG_MFD_WM8400 is not set 633 634 # 635 # Multimedia devices ··· 673 # 674 675 # 676 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 677 # 678 # CONFIG_USB_GADGET is not set 679 # CONFIG_MMC is not set ··· 733 # CONFIG_HUGETLBFS is not set 734 # CONFIG_HUGETLB_PAGE is not set 735 # CONFIG_CONFIGFS_FS is not set 736 - 737 - # 738 - # Miscellaneous filesystems 739 - # 740 # CONFIG_ADFS_FS is not set 741 # CONFIG_AFFS_FS is not set 742 # CONFIG_HFS_FS is not set ··· 795 # CONFIG_DEBUG_MEMORY_INIT is not set 796 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 797 # CONFIG_LATENCYTOP is not set 798 - CONFIG_NOP_TRACER=y 799 - CONFIG_HAVE_FTRACE=y 800 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 801 # CONFIG_SAMPLES is not set 802 # CONFIG_SH_STANDARD_BIOS is not set 803 # CONFIG_EARLY_SCIF_CONSOLE is not set 804 - # CONFIG_SH_KGDB is not set 805 806 # 807 # Security options ··· 823 # 824 # CONFIG_CRYPTO_FIPS is not set 825 # CONFIG_CRYPTO_MANAGER is not set 826 # CONFIG_CRYPTO_GF128MUL is not set 827 # CONFIG_CRYPTO_NULL is not set 828 # CONFIG_CRYPTO_CRYPTD is not set ··· 906 # Library routines 907 # 908 CONFIG_BITREVERSE=y 909 # CONFIG_CRC_CCITT is not set 910 # CONFIG_CRC16 is not set 911 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:51:47 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 72 CONFIG_SHMEM=y 73 CONFIG_AIO=y 74 CONFIG_VM_EVENT_COUNTERS=y 75 CONFIG_SLAB=y 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 # CONFIG_KPROBES is not set 81 CONFIG_HAVE_IOREMAP_PROT=y ··· 88 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 89 CONFIG_SLABINFO=y 90 CONFIG_RT_MUTEXES=y 91 CONFIG_BASE_SMALL=0 92 CONFIG_MODULES=y 93 # CONFIG_MODULE_FORCE_LOAD is not set 94 # CONFIG_MODULE_UNLOAD is not set 95 # CONFIG_MODVERSIONS is not set 96 # CONFIG_MODULE_SRCVERSION_ALL is not set 97 CONFIG_BLOCK=y 98 # CONFIG_LBD is not set 99 # CONFIG_BLK_DEV_IO_TRACE is not set 100 # CONFIG_BLK_DEV_BSG is not set 101 # CONFIG_BLK_DEV_INTEGRITY is not set 102 ··· 116 # CONFIG_DEFAULT_NOOP is not set 117 CONFIG_DEFAULT_IOSCHED="anticipatory" 118 CONFIG_CLASSIC_RCU=y 119 + # CONFIG_TREE_RCU is not set 120 + # CONFIG_PREEMPT_RCU is not set 121 + # CONFIG_TREE_RCU_TRACE is not set 122 + # CONFIG_PREEMPT_RCU_TRACE is not set 123 # CONFIG_FREEZER is not set 124 125 # ··· 123 # 124 CONFIG_CPU_SH4=y 125 # CONFIG_CPU_SUBTYPE_SH7619 is not set 126 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 127 # CONFIG_CPU_SUBTYPE_SH7203 is not set 128 # CONFIG_CPU_SUBTYPE_SH7206 is not set 129 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 186 CONFIG_SPARSEMEM_STATIC=y 187 CONFIG_PAGEFLAGS_EXTENDED=y 188 CONFIG_SPLIT_PTLOCK_CPUS=4 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 280 # 281 # Bus options 282 # 283 # CONFIG_ARCH_SUPPORTS_MSI is not set 284 285 # ··· 290 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 291 # CONFIG_HAVE_AOUT is not set 292 # CONFIG_BINFMT_MISC is not set 293 + 294 + # 295 + # Power management options (EXPERIMENTAL) 296 + # 297 + # CONFIG_PM is not set 298 + # CONFIG_CPU_IDLE is not set 299 CONFIG_NET=y 300 301 # 302 # Networking options 303 # 304 + CONFIG_COMPAT_NET_DEV_OPS=y 305 CONFIG_PACKET=y 306 # CONFIG_PACKET_MMAP is not set 307 CONFIG_UNIX=y ··· 370 # CONFIG_ECONET is not set 371 # CONFIG_WAN_ROUTER is not set 372 # CONFIG_NET_SCHED is not set 373 + # CONFIG_DCB is not set 374 375 # 376 # Network testing ··· 385 # CONFIG_CFG80211 is not set 386 # CONFIG_WIRELESS_OLD_REGULATORY is not set 387 # CONFIG_WIRELESS_EXT is not set 388 + # CONFIG_LIB80211 is not set 389 # CONFIG_MAC80211 is not set 390 # CONFIG_RFKILL is not set 391 # CONFIG_NET_9P is not set 392 ··· 490 CONFIG_MISC_DEVICES=y 491 # CONFIG_EEPROM_93CX6 is not set 492 # CONFIG_ENCLOSURE_SERVICES is not set 493 + # CONFIG_C2PORT is not set 494 CONFIG_HAVE_IDE=y 495 # CONFIG_IDE is not set 496 ··· 516 # CONFIG_STNIC is not set 517 # CONFIG_SMC91X is not set 518 # CONFIG_SMC911X is not set 519 + # CONFIG_SMSC911X is not set 520 # CONFIG_IBM_NEW_EMAC_ZMII is not set 521 # CONFIG_IBM_NEW_EMAC_RGMII is not set 522 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 570 # 571 # CONFIG_SERIAL_SH_SCI is not set 572 CONFIG_UNIX98_PTYS=y 573 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 574 CONFIG_LEGACY_PTYS=y 575 CONFIG_LEGACY_PTY_COUNT=256 576 # CONFIG_IPMI_HANDLER is not set ··· 604 # 605 # CONFIG_SOFT_WATCHDOG is not set 606 # CONFIG_SH_WDT is not set 607 + CONFIG_SSB_POSSIBLE=y 608 609 # 610 # Sonics Silicon Backplane 611 # 612 # CONFIG_SSB is not set 613 614 # ··· 618 # CONFIG_MFD_SM501 is not set 619 # CONFIG_HTC_PASIC3 is not set 620 # CONFIG_MFD_TMIO is not set 621 + # CONFIG_REGULATOR is not set 622 623 # 624 # Multimedia devices ··· 662 # 663 664 # 665 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 666 # 667 # CONFIG_USB_GADGET is not set 668 # CONFIG_MMC is not set ··· 722 # CONFIG_HUGETLBFS is not set 723 # CONFIG_HUGETLB_PAGE is not set 724 # CONFIG_CONFIGFS_FS is not set 725 + CONFIG_MISC_FILESYSTEMS=y 726 # CONFIG_ADFS_FS is not set 727 # CONFIG_AFFS_FS is not set 728 # CONFIG_HFS_FS is not set ··· 787 # CONFIG_DEBUG_MEMORY_INIT is not set 788 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 789 # CONFIG_LATENCYTOP is not set 790 + CONFIG_HAVE_FUNCTION_TRACER=y 791 + CONFIG_HAVE_DYNAMIC_FTRACE=y 792 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 793 + 794 + # 795 + # Tracers 796 + # 797 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 798 # CONFIG_SAMPLES is not set 799 + CONFIG_HAVE_ARCH_KGDB=y 800 # CONFIG_SH_STANDARD_BIOS is not set 801 # CONFIG_EARLY_SCIF_CONSOLE is not set 802 + # CONFIG_MORE_COMPILE_OPTIONS is not set 803 804 # 805 # Security options ··· 809 # 810 # CONFIG_CRYPTO_FIPS is not set 811 # CONFIG_CRYPTO_MANAGER is not set 812 + # CONFIG_CRYPTO_MANAGER2 is not set 813 # CONFIG_CRYPTO_GF128MUL is not set 814 # CONFIG_CRYPTO_NULL is not set 815 # CONFIG_CRYPTO_CRYPTD is not set ··· 891 # Library routines 892 # 893 CONFIG_BITREVERSE=y 894 + CONFIG_GENERIC_FIND_LAST_BIT=y 895 # CONFIG_CRC_CCITT is not set 896 # CONFIG_CRC16 is not set 897 # CONFIG_CRC_T10DIF is not set
+57 -30
arch/sh/configs/se7780_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:27:30 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 - # CONFIG_MARKERS is not set 80 CONFIG_HAVE_OPROFILE=y 81 CONFIG_HAVE_IOREMAP_PROT=y 82 CONFIG_HAVE_KPROBES=y ··· 85 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 86 CONFIG_SLABINFO=y 87 CONFIG_RT_MUTEXES=y 88 - # CONFIG_TINY_SHMEM is not set 89 CONFIG_BASE_SMALL=0 90 CONFIG_MODULES=y 91 # CONFIG_MODULE_FORCE_LOAD is not set 92 CONFIG_MODULE_UNLOAD=y 93 # CONFIG_MODVERSIONS is not set 94 # CONFIG_MODULE_SRCVERSION_ALL is not set 95 - CONFIG_KMOD=y 96 CONFIG_BLOCK=y 97 # CONFIG_LBD is not set 98 # CONFIG_BLK_DEV_IO_TRACE is not set 99 - # CONFIG_LSF is not set 100 # CONFIG_BLK_DEV_INTEGRITY is not set 101 102 # ··· 109 # CONFIG_DEFAULT_NOOP is not set 110 CONFIG_DEFAULT_IOSCHED="deadline" 111 CONFIG_CLASSIC_RCU=y 112 # CONFIG_FREEZER is not set 113 114 # ··· 121 CONFIG_CPU_SH4=y 122 CONFIG_CPU_SH4A=y 123 # CONFIG_CPU_SUBTYPE_SH7619 is not set 124 # CONFIG_CPU_SUBTYPE_SH7203 is not set 125 # CONFIG_CPU_SUBTYPE_SH7206 is not set 126 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 188 CONFIG_PAGEFLAGS_EXTENDED=y 189 CONFIG_SPLIT_PTLOCK_CPUS=4 190 CONFIG_MIGRATION=y 191 - # CONFIG_RESOURCES_64BIT is not set 192 # CONFIG_PHYS_ADDR_T_64BIT is not set 193 CONFIG_ZONE_DMA_FLAG=0 194 CONFIG_NR_QUICK=2 ··· 276 # 277 # Bus options 278 # 279 - # CONFIG_CF_ENABLER is not set 280 CONFIG_PCI=y 281 CONFIG_SH_PCIDMA_NONCOHERENT=y 282 CONFIG_PCI_AUTO=y 283 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 284 # CONFIG_ARCH_SUPPORTS_MSI is not set 285 CONFIG_PCI_LEGACY=y 286 ··· 296 # 297 # Networking options 298 # 299 CONFIG_PACKET=y 300 # CONFIG_PACKET_MMAP is not set 301 CONFIG_UNIX=y ··· 352 # CONFIG_IPX is not set 353 # CONFIG_ATALK is not set 354 # CONFIG_NET_SCHED is not set 355 356 # 357 # Network testing ··· 367 # CONFIG_CFG80211 is not set 368 # CONFIG_WIRELESS_OLD_REGULATORY is not set 369 # CONFIG_WIRELESS_EXT is not set 370 # CONFIG_MAC80211 is not set 371 - # CONFIG_IEEE80211 is not set 372 # CONFIG_RFKILL is not set 373 374 # ··· 537 # CONFIG_MEGARAID_LEGACY is not set 538 # CONFIG_MEGARAID_SAS is not set 539 # CONFIG_SCSI_HPTIOP is not set 540 # CONFIG_SCSI_DMX3191D is not set 541 # CONFIG_SCSI_FUTURE_DOMAIN is not set 542 # CONFIG_SCSI_IPS is not set ··· 575 # CONFIG_SATA_VIA is not set 576 # CONFIG_SATA_VITESSE is not set 577 # CONFIG_SATA_INIC162X is not set 578 # CONFIG_PATA_AMD is not set 579 # CONFIG_PATA_ARTOP is not set 580 # CONFIG_PATA_ATIIXP is not set 581 # CONFIG_PATA_CMD64X is not set 582 # CONFIG_PATA_CS5520 is not set 583 # CONFIG_PATA_EFAR is not set 584 # CONFIG_ATA_GENERIC is not set 585 # CONFIG_PATA_HPT366 is not set ··· 593 # CONFIG_PATA_MPIIX is not set 594 # CONFIG_PATA_OLDPIIX is not set 595 # CONFIG_PATA_NETCELL is not set 596 # CONFIG_PATA_RZ1000 is not set 597 # CONFIG_PATA_SERVERWORKS is not set 598 # CONFIG_PATA_PDC2027X is not set 599 # CONFIG_PATA_SIL680 is not set 600 # CONFIG_PATA_VIA is not set 601 # CONFIG_PATA_WINBOND is not set 602 # CONFIG_PATA_PLATFORM is not set ··· 640 # CONFIG_BROADCOM_PHY is not set 641 # CONFIG_ICPLUS_PHY is not set 642 # CONFIG_REALTEK_PHY is not set 643 # CONFIG_FIXED_PHY is not set 644 # CONFIG_MDIO_BITBANG is not set 645 CONFIG_NET_ETHERNET=y ··· 655 # CONFIG_NET_VENDOR_3COM is not set 656 CONFIG_SMC91X=y 657 # CONFIG_SMC911X is not set 658 # CONFIG_NET_TULIP is not set 659 # CONFIG_HP100 is not set 660 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 671 # CONFIG_ADAPTEC_STARFIRE is not set 672 # CONFIG_B44 is not set 673 # CONFIG_FORCEDETH is not set 674 - # CONFIG_EEPRO100 is not set 675 # CONFIG_E100 is not set 676 # CONFIG_FEALNX is not set 677 # CONFIG_NATSEMI is not set ··· 679 # CONFIG_R6040 is not set 680 # CONFIG_SIS900 is not set 681 # CONFIG_EPIC100 is not set 682 # CONFIG_SUNDANCE is not set 683 # CONFIG_TLAN is not set 684 # CONFIG_VIA_RHINE is not set ··· 771 CONFIG_SERIAL_CORE_CONSOLE=y 772 # CONFIG_SERIAL_JSM is not set 773 CONFIG_UNIX98_PTYS=y 774 # CONFIG_LEGACY_PTYS is not set 775 # CONFIG_IPMI_HANDLER is not set 776 # CONFIG_HW_RANDOM is not set ··· 797 CONFIG_THERMAL=y 798 # CONFIG_THERMAL_HWMON is not set 799 # CONFIG_WATCHDOG is not set 800 801 # 802 # Sonics Silicon Backplane 803 # 804 - CONFIG_SSB_POSSIBLE=y 805 # CONFIG_SSB is not set 806 807 # ··· 811 # CONFIG_MFD_SM501 is not set 812 # CONFIG_HTC_PASIC3 is not set 813 # CONFIG_MFD_TMIO is not set 814 - # CONFIG_MFD_WM8400 is not set 815 816 # 817 # Multimedia devices ··· 839 CONFIG_FIRMWARE_EDID=y 840 # CONFIG_FB_DDC is not set 841 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 842 - CONFIG_FB_CFB_FILLRECT=m 843 - CONFIG_FB_CFB_COPYAREA=m 844 - CONFIG_FB_CFB_IMAGEBLIT=m 845 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 846 - # CONFIG_FB_SYS_FILLRECT is not set 847 - # CONFIG_FB_SYS_COPYAREA is not set 848 - # CONFIG_FB_SYS_IMAGEBLIT is not set 849 # CONFIG_FB_FOREIGN_ENDIAN is not set 850 - # CONFIG_FB_SYS_FOPS is not set 851 # CONFIG_FB_SVGALIB is not set 852 # CONFIG_FB_MACMODES is not set 853 # CONFIG_FB_BACKLIGHT is not set ··· 884 CONFIG_FB_SH_MOBILE_LCDC=m 885 # CONFIG_FB_VIRTUAL is not set 886 # CONFIG_FB_METRONOME is not set 887 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 888 889 # ··· 932 CONFIG_HID_A4TECH=y 933 CONFIG_HID_APPLE=y 934 CONFIG_HID_BELKIN=y 935 - CONFIG_HID_BRIGHT=y 936 CONFIG_HID_CHERRY=y 937 CONFIG_HID_CHICONY=y 938 CONFIG_HID_CYPRESS=y 939 - CONFIG_HID_DELL=y 940 CONFIG_HID_EZKEY=y 941 CONFIG_HID_GYRATION=y 942 CONFIG_HID_LOGITECH=y ··· 942 # CONFIG_LOGIRUMBLEPAD2_FF is not set 943 CONFIG_HID_MICROSOFT=y 944 CONFIG_HID_MONTEREY=y 945 CONFIG_HID_PANTHERLORD=y 946 # CONFIG_PANTHERLORD_FF is not set 947 CONFIG_HID_PETALYNX=y 948 CONFIG_HID_SAMSUNG=y 949 CONFIG_HID_SONY=y 950 CONFIG_HID_SUNPLUS=y 951 CONFIG_THRUSTMASTER_FF=m 952 CONFIG_ZEROPLUS_FF=m 953 CONFIG_USB_SUPPORT=y ··· 970 # CONFIG_USB_OTG_WHITELIST is not set 971 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 972 CONFIG_USB_MON=y 973 974 # 975 # USB Host Controller Drivers ··· 996 # CONFIG_USB_TMC is not set 997 998 # 999 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1000 # 1001 1002 # 1003 - # may also be needed; see USB_STORAGE Help for more information 1004 # 1005 CONFIG_USB_STORAGE=y 1006 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1116 # CONFIG_HUGETLBFS is not set 1117 # CONFIG_HUGETLB_PAGE is not set 1118 # CONFIG_CONFIGFS_FS is not set 1119 - 1120 - # 1121 - # Miscellaneous filesystems 1122 - # 1123 # CONFIG_HFSPLUS_FS is not set 1124 # CONFIG_JFFS2_FS is not set 1125 CONFIG_CRAMFS=y ··· 1207 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1208 # CONFIG_LATENCYTOP is not set 1209 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1210 - CONFIG_NOP_TRACER=y 1211 - CONFIG_HAVE_FTRACE=y 1212 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1213 # CONFIG_SAMPLES is not set 1214 # CONFIG_SH_STANDARD_BIOS is not set 1215 # CONFIG_EARLY_SCIF_CONSOLE is not set 1216 - # CONFIG_SH_KGDB is not set 1217 1218 # 1219 # Security options ··· 1235 # 1236 # CONFIG_CRYPTO_FIPS is not set 1237 # CONFIG_CRYPTO_MANAGER is not set 1238 # CONFIG_CRYPTO_NULL is not set 1239 # CONFIG_CRYPTO_CRYPTD is not set 1240 # CONFIG_CRYPTO_AUTHENC is not set ··· 1314 # Library routines 1315 # 1316 CONFIG_BITREVERSE=y 1317 # CONFIG_CRC_CCITT is not set 1318 # CONFIG_CRC16 is not set 1319 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:53:50 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 74 # CONFIG_SLUB is not set 75 # CONFIG_SLOB is not set 76 # CONFIG_PROFILING is not set 77 CONFIG_HAVE_OPROFILE=y 78 CONFIG_HAVE_IOREMAP_PROT=y 79 CONFIG_HAVE_KPROBES=y ··· 84 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 85 CONFIG_SLABINFO=y 86 CONFIG_RT_MUTEXES=y 87 CONFIG_BASE_SMALL=0 88 CONFIG_MODULES=y 89 # CONFIG_MODULE_FORCE_LOAD is not set 90 CONFIG_MODULE_UNLOAD=y 91 # CONFIG_MODVERSIONS is not set 92 # CONFIG_MODULE_SRCVERSION_ALL is not set 93 CONFIG_BLOCK=y 94 # CONFIG_LBD is not set 95 # CONFIG_BLK_DEV_IO_TRACE is not set 96 # CONFIG_BLK_DEV_INTEGRITY is not set 97 98 # ··· 111 # CONFIG_DEFAULT_NOOP is not set 112 CONFIG_DEFAULT_IOSCHED="deadline" 113 CONFIG_CLASSIC_RCU=y 114 + # CONFIG_TREE_RCU is not set 115 + # CONFIG_PREEMPT_RCU is not set 116 + # CONFIG_TREE_RCU_TRACE is not set 117 + # CONFIG_PREEMPT_RCU_TRACE is not set 118 # CONFIG_FREEZER is not set 119 120 # ··· 119 CONFIG_CPU_SH4=y 120 CONFIG_CPU_SH4A=y 121 # CONFIG_CPU_SUBTYPE_SH7619 is not set 122 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 123 # CONFIG_CPU_SUBTYPE_SH7203 is not set 124 # CONFIG_CPU_SUBTYPE_SH7206 is not set 125 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 185 CONFIG_PAGEFLAGS_EXTENDED=y 186 CONFIG_SPLIT_PTLOCK_CPUS=4 187 CONFIG_MIGRATION=y 188 # CONFIG_PHYS_ADDR_T_64BIT is not set 189 CONFIG_ZONE_DMA_FLAG=0 190 CONFIG_NR_QUICK=2 ··· 274 # 275 # Bus options 276 # 277 CONFIG_PCI=y 278 CONFIG_SH_PCIDMA_NONCOHERENT=y 279 CONFIG_PCI_AUTO=y 280 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 281 + # CONFIG_PCIEPORTBUS is not set 282 # CONFIG_ARCH_SUPPORTS_MSI is not set 283 CONFIG_PCI_LEGACY=y 284 ··· 294 # 295 # Networking options 296 # 297 + CONFIG_COMPAT_NET_DEV_OPS=y 298 CONFIG_PACKET=y 299 # CONFIG_PACKET_MMAP is not set 300 CONFIG_UNIX=y ··· 349 # CONFIG_IPX is not set 350 # CONFIG_ATALK is not set 351 # CONFIG_NET_SCHED is not set 352 + # CONFIG_DCB is not set 353 354 # 355 # Network testing ··· 363 # CONFIG_CFG80211 is not set 364 # CONFIG_WIRELESS_OLD_REGULATORY is not set 365 # CONFIG_WIRELESS_EXT is not set 366 + # CONFIG_LIB80211 is not set 367 # CONFIG_MAC80211 is not set 368 # CONFIG_RFKILL is not set 369 370 # ··· 533 # CONFIG_MEGARAID_LEGACY is not set 534 # CONFIG_MEGARAID_SAS is not set 535 # CONFIG_SCSI_HPTIOP is not set 536 + # CONFIG_LIBFC is not set 537 + # CONFIG_FCOE is not set 538 # CONFIG_SCSI_DMX3191D is not set 539 # CONFIG_SCSI_FUTURE_DOMAIN is not set 540 # CONFIG_SCSI_IPS is not set ··· 569 # CONFIG_SATA_VIA is not set 570 # CONFIG_SATA_VITESSE is not set 571 # CONFIG_SATA_INIC162X is not set 572 + # CONFIG_PATA_ALI is not set 573 # CONFIG_PATA_AMD is not set 574 # CONFIG_PATA_ARTOP is not set 575 # CONFIG_PATA_ATIIXP is not set 576 # CONFIG_PATA_CMD64X is not set 577 # CONFIG_PATA_CS5520 is not set 578 + # CONFIG_PATA_CS5530 is not set 579 # CONFIG_PATA_EFAR is not set 580 # CONFIG_ATA_GENERIC is not set 581 # CONFIG_PATA_HPT366 is not set ··· 585 # CONFIG_PATA_MPIIX is not set 586 # CONFIG_PATA_OLDPIIX is not set 587 # CONFIG_PATA_NETCELL is not set 588 + # CONFIG_PATA_NS87410 is not set 589 + # CONFIG_PATA_NS87415 is not set 590 + # CONFIG_PATA_PDC_OLD is not set 591 # CONFIG_PATA_RZ1000 is not set 592 + # CONFIG_PATA_SC1200 is not set 593 # CONFIG_PATA_SERVERWORKS is not set 594 # CONFIG_PATA_PDC2027X is not set 595 # CONFIG_PATA_SIL680 is not set 596 + # CONFIG_PATA_SIS is not set 597 # CONFIG_PATA_VIA is not set 598 # CONFIG_PATA_WINBOND is not set 599 # CONFIG_PATA_PLATFORM is not set ··· 627 # CONFIG_BROADCOM_PHY is not set 628 # CONFIG_ICPLUS_PHY is not set 629 # CONFIG_REALTEK_PHY is not set 630 + # CONFIG_NATIONAL_PHY is not set 631 + # CONFIG_STE10XP is not set 632 + # CONFIG_LSI_ET1011C_PHY is not set 633 # CONFIG_FIXED_PHY is not set 634 # CONFIG_MDIO_BITBANG is not set 635 CONFIG_NET_ETHERNET=y ··· 639 # CONFIG_NET_VENDOR_3COM is not set 640 CONFIG_SMC91X=y 641 # CONFIG_SMC911X is not set 642 + # CONFIG_SMSC911X is not set 643 # CONFIG_NET_TULIP is not set 644 # CONFIG_HP100 is not set 645 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 654 # CONFIG_ADAPTEC_STARFIRE is not set 655 # CONFIG_B44 is not set 656 # CONFIG_FORCEDETH is not set 657 # CONFIG_E100 is not set 658 # CONFIG_FEALNX is not set 659 # CONFIG_NATSEMI is not set ··· 663 # CONFIG_R6040 is not set 664 # CONFIG_SIS900 is not set 665 # CONFIG_EPIC100 is not set 666 + # CONFIG_SMSC9420 is not set 667 # CONFIG_SUNDANCE is not set 668 # CONFIG_TLAN is not set 669 # CONFIG_VIA_RHINE is not set ··· 754 CONFIG_SERIAL_CORE_CONSOLE=y 755 # CONFIG_SERIAL_JSM is not set 756 CONFIG_UNIX98_PTYS=y 757 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 758 # CONFIG_LEGACY_PTYS is not set 759 # CONFIG_IPMI_HANDLER is not set 760 # CONFIG_HW_RANDOM is not set ··· 779 CONFIG_THERMAL=y 780 # CONFIG_THERMAL_HWMON is not set 781 # CONFIG_WATCHDOG is not set 782 + CONFIG_SSB_POSSIBLE=y 783 784 # 785 # Sonics Silicon Backplane 786 # 787 # CONFIG_SSB is not set 788 789 # ··· 793 # CONFIG_MFD_SM501 is not set 794 # CONFIG_HTC_PASIC3 is not set 795 # CONFIG_MFD_TMIO is not set 796 + # CONFIG_REGULATOR is not set 797 798 # 799 # Multimedia devices ··· 821 CONFIG_FIRMWARE_EDID=y 822 # CONFIG_FB_DDC is not set 823 # CONFIG_FB_BOOT_VESA_SUPPORT is not set 824 + # CONFIG_FB_CFB_FILLRECT is not set 825 + # CONFIG_FB_CFB_COPYAREA is not set 826 + # CONFIG_FB_CFB_IMAGEBLIT is not set 827 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 828 + CONFIG_FB_SYS_FILLRECT=m 829 + CONFIG_FB_SYS_COPYAREA=m 830 + CONFIG_FB_SYS_IMAGEBLIT=m 831 # CONFIG_FB_FOREIGN_ENDIAN is not set 832 + CONFIG_FB_SYS_FOPS=m 833 + CONFIG_FB_DEFERRED_IO=y 834 # CONFIG_FB_SVGALIB is not set 835 # CONFIG_FB_MACMODES is not set 836 # CONFIG_FB_BACKLIGHT is not set ··· 865 CONFIG_FB_SH_MOBILE_LCDC=m 866 # CONFIG_FB_VIRTUAL is not set 867 # CONFIG_FB_METRONOME is not set 868 + # CONFIG_FB_MB862XX is not set 869 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 870 871 # ··· 912 CONFIG_HID_A4TECH=y 913 CONFIG_HID_APPLE=y 914 CONFIG_HID_BELKIN=y 915 CONFIG_HID_CHERRY=y 916 CONFIG_HID_CHICONY=y 917 CONFIG_HID_CYPRESS=y 918 CONFIG_HID_EZKEY=y 919 CONFIG_HID_GYRATION=y 920 CONFIG_HID_LOGITECH=y ··· 924 # CONFIG_LOGIRUMBLEPAD2_FF is not set 925 CONFIG_HID_MICROSOFT=y 926 CONFIG_HID_MONTEREY=y 927 + # CONFIG_HID_NTRIG is not set 928 CONFIG_HID_PANTHERLORD=y 929 # CONFIG_PANTHERLORD_FF is not set 930 CONFIG_HID_PETALYNX=y 931 CONFIG_HID_SAMSUNG=y 932 CONFIG_HID_SONY=y 933 CONFIG_HID_SUNPLUS=y 934 + # CONFIG_GREENASIA_FF is not set 935 + # CONFIG_HID_TOPSEED is not set 936 CONFIG_THRUSTMASTER_FF=m 937 CONFIG_ZEROPLUS_FF=m 938 CONFIG_USB_SUPPORT=y ··· 949 # CONFIG_USB_OTG_WHITELIST is not set 950 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 951 CONFIG_USB_MON=y 952 + # CONFIG_USB_WUSB_CBAF is not set 953 954 # 955 # USB Host Controller Drivers ··· 974 # CONFIG_USB_TMC is not set 975 976 # 977 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 978 # 979 980 # 981 + # see USB_STORAGE Help for more information 982 # 983 CONFIG_USB_STORAGE=y 984 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1094 # CONFIG_HUGETLBFS is not set 1095 # CONFIG_HUGETLB_PAGE is not set 1096 # CONFIG_CONFIGFS_FS is not set 1097 + CONFIG_MISC_FILESYSTEMS=y 1098 # CONFIG_HFSPLUS_FS is not set 1099 # CONFIG_JFFS2_FS is not set 1100 CONFIG_CRAMFS=y ··· 1188 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1189 # CONFIG_LATENCYTOP is not set 1190 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1191 + CONFIG_HAVE_FUNCTION_TRACER=y 1192 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1193 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1194 + 1195 + # 1196 + # Tracers 1197 + # 1198 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1199 # CONFIG_SAMPLES is not set 1200 + CONFIG_HAVE_ARCH_KGDB=y 1201 # CONFIG_SH_STANDARD_BIOS is not set 1202 # CONFIG_EARLY_SCIF_CONSOLE is not set 1203 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1204 1205 # 1206 # Security options ··· 1210 # 1211 # CONFIG_CRYPTO_FIPS is not set 1212 # CONFIG_CRYPTO_MANAGER is not set 1213 + # CONFIG_CRYPTO_MANAGER2 is not set 1214 # CONFIG_CRYPTO_NULL is not set 1215 # CONFIG_CRYPTO_CRYPTD is not set 1216 # CONFIG_CRYPTO_AUTHENC is not set ··· 1288 # Library routines 1289 # 1290 CONFIG_BITREVERSE=y 1291 + CONFIG_GENERIC_FIND_LAST_BIT=y 1292 # CONFIG_CRC_CCITT is not set 1293 # CONFIG_CRC16 is not set 1294 # CONFIG_CRC_T10DIF is not set
+56 -26
arch/sh/configs/sh03_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:31:54 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 81 # CONFIG_SLUB is not set 82 # CONFIG_SLOB is not set 83 CONFIG_PROFILING=y 84 # CONFIG_MARKERS is not set 85 CONFIG_OPROFILE=m 86 CONFIG_HAVE_OPROFILE=y ··· 94 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 95 CONFIG_SLABINFO=y 96 CONFIG_RT_MUTEXES=y 97 - # CONFIG_TINY_SHMEM is not set 98 CONFIG_BASE_SMALL=0 99 CONFIG_MODULES=y 100 # CONFIG_MODULE_FORCE_LOAD is not set ··· 101 CONFIG_MODULE_FORCE_UNLOAD=y 102 CONFIG_MODVERSIONS=y 103 # CONFIG_MODULE_SRCVERSION_ALL is not set 104 - CONFIG_KMOD=y 105 CONFIG_BLOCK=y 106 # CONFIG_LBD is not set 107 # CONFIG_BLK_DEV_IO_TRACE is not set 108 - # CONFIG_LSF is not set 109 # CONFIG_BLK_DEV_BSG is not set 110 # CONFIG_BLK_DEV_INTEGRITY is not set 111 ··· 120 # CONFIG_DEFAULT_NOOP is not set 121 CONFIG_DEFAULT_IOSCHED="anticipatory" 122 CONFIG_CLASSIC_RCU=y 123 # CONFIG_FREEZER is not set 124 125 # ··· 131 # 132 CONFIG_CPU_SH4=y 133 # CONFIG_CPU_SUBTYPE_SH7619 is not set 134 # CONFIG_CPU_SUBTYPE_SH7203 is not set 135 # CONFIG_CPU_SUBTYPE_SH7206 is not set 136 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 195 CONFIG_SPARSEMEM_STATIC=y 196 CONFIG_PAGEFLAGS_EXTENDED=y 197 CONFIG_SPLIT_PTLOCK_CPUS=4 198 - # CONFIG_RESOURCES_64BIT is not set 199 # CONFIG_PHYS_ADDR_T_64BIT is not set 200 CONFIG_ZONE_DMA_FLAG=0 201 CONFIG_NR_QUICK=2 ··· 272 # CONFIG_PREEMPT_NONE is not set 273 # CONFIG_PREEMPT_VOLUNTARY is not set 274 CONFIG_PREEMPT=y 275 - # CONFIG_PREEMPT_RCU is not set 276 CONFIG_GUSA=y 277 # CONFIG_GUSA_RB is not set 278 ··· 287 # 288 # Bus options 289 # 290 - CONFIG_CF_ENABLER=y 291 - CONFIG_CF_AREA5=y 292 - # CONFIG_CF_AREA6 is not set 293 - CONFIG_CF_BASE_ADDR=0xb4000000 294 CONFIG_PCI=y 295 CONFIG_SH_PCIDMA_NONCOHERENT=y 296 CONFIG_PCI_AUTO=y 297 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 298 # CONFIG_ARCH_SUPPORTS_MSI is not set 299 CONFIG_PCI_LEGACY=y 300 # CONFIG_PCCARD is not set ··· 307 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 308 # CONFIG_HAVE_AOUT is not set 309 CONFIG_BINFMT_MISC=y 310 CONFIG_NET=y 311 312 # 313 # Networking options 314 # 315 CONFIG_PACKET=y 316 # CONFIG_PACKET_MMAP is not set 317 CONFIG_UNIX=y ··· 376 # CONFIG_ECONET is not set 377 # CONFIG_WAN_ROUTER is not set 378 # CONFIG_NET_SCHED is not set 379 380 # 381 # Network testing ··· 392 # CONFIG_CFG80211 is not set 393 # CONFIG_WIRELESS_OLD_REGULATORY is not set 394 # CONFIG_WIRELESS_EXT is not set 395 # CONFIG_MAC80211 is not set 396 - # CONFIG_IEEE80211 is not set 397 # CONFIG_RFKILL is not set 398 # CONFIG_NET_9P is not set 399 ··· 435 # CONFIG_TIFM_CORE is not set 436 # CONFIG_ENCLOSURE_SERVICES is not set 437 # CONFIG_HP_ILO is not set 438 CONFIG_HAVE_IDE=y 439 CONFIG_IDE=y 440 ··· 450 CONFIG_BLK_DEV_IDECD=m 451 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 452 CONFIG_BLK_DEV_IDETAPE=m 453 - # CONFIG_BLK_DEV_IDESCSI is not set 454 # CONFIG_IDE_TASK_IOCTL is not set 455 CONFIG_IDE_PROC_FS=y 456 ··· 474 # CONFIG_BLK_DEV_JMICRON is not set 475 # CONFIG_BLK_DEV_SC1200 is not set 476 # CONFIG_BLK_DEV_PIIX is not set 477 # CONFIG_BLK_DEV_IT8213 is not set 478 # CONFIG_BLK_DEV_IT821X is not set 479 # CONFIG_BLK_DEV_NS87415 is not set ··· 528 # CONFIG_SCSI_SRP_ATTRS is not set 529 CONFIG_SCSI_LOWLEVEL=y 530 # CONFIG_ISCSI_TCP is not set 531 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 532 # CONFIG_SCSI_3W_9XXX is not set 533 # CONFIG_SCSI_ACARD is not set ··· 542 # CONFIG_MEGARAID_LEGACY is not set 543 # CONFIG_MEGARAID_SAS is not set 544 # CONFIG_SCSI_HPTIOP is not set 545 # CONFIG_SCSI_DMX3191D is not set 546 # CONFIG_SCSI_FUTURE_DOMAIN is not set 547 # CONFIG_SCSI_IPS is not set ··· 595 # CONFIG_NET_VENDOR_3COM is not set 596 # CONFIG_SMC91X is not set 597 # CONFIG_SMC911X is not set 598 # CONFIG_NET_TULIP is not set 599 # CONFIG_HP100 is not set 600 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 611 # CONFIG_ADAPTEC_STARFIRE is not set 612 # CONFIG_B44 is not set 613 # CONFIG_FORCEDETH is not set 614 - # CONFIG_EEPRO100 is not set 615 # CONFIG_E100 is not set 616 # CONFIG_FEALNX is not set 617 # CONFIG_NATSEMI is not set ··· 620 # CONFIG_R6040 is not set 621 # CONFIG_SIS900 is not set 622 # CONFIG_EPIC100 is not set 623 # CONFIG_SUNDANCE is not set 624 # CONFIG_TLAN is not set 625 # CONFIG_VIA_RHINE is not set ··· 649 # CONFIG_JME is not set 650 CONFIG_NETDEV_10000=y 651 # CONFIG_CHELSIO_T1 is not set 652 # CONFIG_CHELSIO_T3 is not set 653 # CONFIG_ENIC is not set 654 # CONFIG_IXGBE is not set ··· 658 # CONFIG_MYRI10GE is not set 659 # CONFIG_NETXEN_NIC is not set 660 # CONFIG_NIU is not set 661 # CONFIG_MLX4_CORE is not set 662 # CONFIG_TEHUTI is not set 663 # CONFIG_BNX2X is not set ··· 749 CONFIG_SERIAL_CORE_CONSOLE=y 750 # CONFIG_SERIAL_JSM is not set 751 CONFIG_UNIX98_PTYS=y 752 CONFIG_LEGACY_PTYS=y 753 CONFIG_LEGACY_PTY_COUNT=256 754 # CONFIG_IPMI_HANDLER is not set ··· 798 # 799 # CONFIG_PCIPCWATCHDOG is not set 800 # CONFIG_WDTPCI is not set 801 802 # 803 # Sonics Silicon Backplane 804 # 805 - CONFIG_SSB_POSSIBLE=y 806 # CONFIG_SSB is not set 807 808 # ··· 812 # CONFIG_MFD_SM501 is not set 813 # CONFIG_HTC_PASIC3 is not set 814 # CONFIG_MFD_TMIO is not set 815 - # CONFIG_MFD_WM8400 is not set 816 817 # 818 # Multimedia devices ··· 872 # 873 874 # 875 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 876 # 877 # CONFIG_USB_GADGET is not set 878 # CONFIG_MMC is not set 879 # CONFIG_MEMSTICK is not set 880 # CONFIG_NEW_LEDS is not set ··· 900 # CONFIG_EXT3_FS_SECURITY is not set 901 # CONFIG_EXT4_FS is not set 902 CONFIG_JBD=y 903 CONFIG_FS_MBCACHE=y 904 # CONFIG_REISERFS_FS is not set 905 # CONFIG_JFS_FS is not set ··· 948 # CONFIG_HUGETLBFS is not set 949 # CONFIG_HUGETLB_PAGE is not set 950 # CONFIG_CONFIGFS_FS is not set 951 - 952 - # 953 - # Miscellaneous filesystems 954 - # 955 # CONFIG_ADFS_FS is not set 956 # CONFIG_AFFS_FS is not set 957 # CONFIG_HFS_FS is not set ··· 1063 CONFIG_FRAME_WARN=1024 1064 # CONFIG_MAGIC_SYSRQ is not set 1065 # CONFIG_UNUSED_SYMBOLS is not set 1066 - # CONFIG_DEBUG_FS is not set 1067 # CONFIG_HEADERS_CHECK is not set 1068 # CONFIG_DEBUG_KERNEL is not set 1069 # CONFIG_DEBUG_BUGVERBOSE is not set 1070 # CONFIG_DEBUG_MEMORY_INIT is not set 1071 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1072 # CONFIG_LATENCYTOP is not set 1073 CONFIG_NOP_TRACER=y 1074 - CONFIG_HAVE_FTRACE=y 1075 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1076 # CONFIG_SAMPLES is not set 1077 CONFIG_SH_STANDARD_BIOS=y 1078 # CONFIG_EARLY_SCIF_CONSOLE is not set 1079 # CONFIG_EARLY_PRINTK is not set 1080 - # CONFIG_SH_KGDB is not set 1081 1082 # 1083 # Security options ··· 1103 # 1104 # CONFIG_CRYPTO_FIPS is not set 1105 CONFIG_CRYPTO_ALGAPI=y 1106 - CONFIG_CRYPTO_AEAD=y 1107 CONFIG_CRYPTO_BLKCIPHER=y 1108 CONFIG_CRYPTO_HASH=y 1109 - CONFIG_CRYPTO_RNG=y 1110 CONFIG_CRYPTO_MANAGER=y 1111 # CONFIG_CRYPTO_GF128MUL is not set 1112 # CONFIG_CRYPTO_NULL is not set 1113 # CONFIG_CRYPTO_CRYPTD is not set ··· 1195 # Library routines 1196 # 1197 CONFIG_BITREVERSE=y 1198 CONFIG_CRC_CCITT=y 1199 # CONFIG_CRC16 is not set 1200 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 17:56:46 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 CONFIG_PROFILING=y 82 + CONFIG_TRACEPOINTS=y 83 # CONFIG_MARKERS is not set 84 CONFIG_OPROFILE=m 85 CONFIG_HAVE_OPROFILE=y ··· 91 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 92 CONFIG_SLABINFO=y 93 CONFIG_RT_MUTEXES=y 94 CONFIG_BASE_SMALL=0 95 CONFIG_MODULES=y 96 # CONFIG_MODULE_FORCE_LOAD is not set ··· 99 CONFIG_MODULE_FORCE_UNLOAD=y 100 CONFIG_MODVERSIONS=y 101 # CONFIG_MODULE_SRCVERSION_ALL is not set 102 CONFIG_BLOCK=y 103 # CONFIG_LBD is not set 104 # CONFIG_BLK_DEV_IO_TRACE is not set 105 # CONFIG_BLK_DEV_BSG is not set 106 # CONFIG_BLK_DEV_INTEGRITY is not set 107 ··· 120 # CONFIG_DEFAULT_NOOP is not set 121 CONFIG_DEFAULT_IOSCHED="anticipatory" 122 CONFIG_CLASSIC_RCU=y 123 + # CONFIG_TREE_RCU is not set 124 + # CONFIG_PREEMPT_RCU is not set 125 + # CONFIG_TREE_RCU_TRACE is not set 126 + # CONFIG_PREEMPT_RCU_TRACE is not set 127 # CONFIG_FREEZER is not set 128 129 # ··· 127 # 128 CONFIG_CPU_SH4=y 129 # CONFIG_CPU_SUBTYPE_SH7619 is not set 130 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 190 CONFIG_SPARSEMEM_STATIC=y 191 CONFIG_PAGEFLAGS_EXTENDED=y 192 CONFIG_SPLIT_PTLOCK_CPUS=4 193 # CONFIG_PHYS_ADDR_T_64BIT is not set 194 CONFIG_ZONE_DMA_FLAG=0 195 CONFIG_NR_QUICK=2 ··· 268 # CONFIG_PREEMPT_NONE is not set 269 # CONFIG_PREEMPT_VOLUNTARY is not set 270 CONFIG_PREEMPT=y 271 CONFIG_GUSA=y 272 # CONFIG_GUSA_RB is not set 273 ··· 284 # 285 # Bus options 286 # 287 CONFIG_PCI=y 288 CONFIG_SH_PCIDMA_NONCOHERENT=y 289 CONFIG_PCI_AUTO=y 290 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 291 + # CONFIG_PCIEPORTBUS is not set 292 # CONFIG_ARCH_SUPPORTS_MSI is not set 293 CONFIG_PCI_LEGACY=y 294 # CONFIG_PCCARD is not set ··· 307 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 308 # CONFIG_HAVE_AOUT is not set 309 CONFIG_BINFMT_MISC=y 310 + 311 + # 312 + # Power management options (EXPERIMENTAL) 313 + # 314 + # CONFIG_PM is not set 315 + # CONFIG_CPU_IDLE is not set 316 CONFIG_NET=y 317 318 # 319 # Networking options 320 # 321 + CONFIG_COMPAT_NET_DEV_OPS=y 322 CONFIG_PACKET=y 323 # CONFIG_PACKET_MMAP is not set 324 CONFIG_UNIX=y ··· 369 # CONFIG_ECONET is not set 370 # CONFIG_WAN_ROUTER is not set 371 # CONFIG_NET_SCHED is not set 372 + # CONFIG_DCB is not set 373 374 # 375 # Network testing ··· 384 # CONFIG_CFG80211 is not set 385 # CONFIG_WIRELESS_OLD_REGULATORY is not set 386 # CONFIG_WIRELESS_EXT is not set 387 + # CONFIG_LIB80211 is not set 388 # CONFIG_MAC80211 is not set 389 # CONFIG_RFKILL is not set 390 # CONFIG_NET_9P is not set 391 ··· 427 # CONFIG_TIFM_CORE is not set 428 # CONFIG_ENCLOSURE_SERVICES is not set 429 # CONFIG_HP_ILO is not set 430 + # CONFIG_C2PORT is not set 431 CONFIG_HAVE_IDE=y 432 CONFIG_IDE=y 433 ··· 441 CONFIG_BLK_DEV_IDECD=m 442 CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y 443 CONFIG_BLK_DEV_IDETAPE=m 444 # CONFIG_IDE_TASK_IOCTL is not set 445 CONFIG_IDE_PROC_FS=y 446 ··· 466 # CONFIG_BLK_DEV_JMICRON is not set 467 # CONFIG_BLK_DEV_SC1200 is not set 468 # CONFIG_BLK_DEV_PIIX is not set 469 + # CONFIG_BLK_DEV_IT8172 is not set 470 # CONFIG_BLK_DEV_IT8213 is not set 471 # CONFIG_BLK_DEV_IT821X is not set 472 # CONFIG_BLK_DEV_NS87415 is not set ··· 519 # CONFIG_SCSI_SRP_ATTRS is not set 520 CONFIG_SCSI_LOWLEVEL=y 521 # CONFIG_ISCSI_TCP is not set 522 + # CONFIG_SCSI_CXGB3_ISCSI is not set 523 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 524 # CONFIG_SCSI_3W_9XXX is not set 525 # CONFIG_SCSI_ACARD is not set ··· 532 # CONFIG_MEGARAID_LEGACY is not set 533 # CONFIG_MEGARAID_SAS is not set 534 # CONFIG_SCSI_HPTIOP is not set 535 + # CONFIG_LIBFC is not set 536 + # CONFIG_FCOE is not set 537 # CONFIG_SCSI_DMX3191D is not set 538 # CONFIG_SCSI_FUTURE_DOMAIN is not set 539 # CONFIG_SCSI_IPS is not set ··· 583 # CONFIG_NET_VENDOR_3COM is not set 584 # CONFIG_SMC91X is not set 585 # CONFIG_SMC911X is not set 586 + # CONFIG_SMSC911X is not set 587 # CONFIG_NET_TULIP is not set 588 # CONFIG_HP100 is not set 589 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 598 # CONFIG_ADAPTEC_STARFIRE is not set 599 # CONFIG_B44 is not set 600 # CONFIG_FORCEDETH is not set 601 # CONFIG_E100 is not set 602 # CONFIG_FEALNX is not set 603 # CONFIG_NATSEMI is not set ··· 608 # CONFIG_R6040 is not set 609 # CONFIG_SIS900 is not set 610 # CONFIG_EPIC100 is not set 611 + # CONFIG_SMSC9420 is not set 612 # CONFIG_SUNDANCE is not set 613 # CONFIG_TLAN is not set 614 # CONFIG_VIA_RHINE is not set ··· 636 # CONFIG_JME is not set 637 CONFIG_NETDEV_10000=y 638 # CONFIG_CHELSIO_T1 is not set 639 + CONFIG_CHELSIO_T3_DEPENDS=y 640 # CONFIG_CHELSIO_T3 is not set 641 # CONFIG_ENIC is not set 642 # CONFIG_IXGBE is not set ··· 644 # CONFIG_MYRI10GE is not set 645 # CONFIG_NETXEN_NIC is not set 646 # CONFIG_NIU is not set 647 + # CONFIG_MLX4_EN is not set 648 # CONFIG_MLX4_CORE is not set 649 # CONFIG_TEHUTI is not set 650 # CONFIG_BNX2X is not set ··· 734 CONFIG_SERIAL_CORE_CONSOLE=y 735 # CONFIG_SERIAL_JSM is not set 736 CONFIG_UNIX98_PTYS=y 737 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 738 CONFIG_LEGACY_PTYS=y 739 CONFIG_LEGACY_PTY_COUNT=256 740 # CONFIG_IPMI_HANDLER is not set ··· 782 # 783 # CONFIG_PCIPCWATCHDOG is not set 784 # CONFIG_WDTPCI is not set 785 + CONFIG_SSB_POSSIBLE=y 786 787 # 788 # Sonics Silicon Backplane 789 # 790 # CONFIG_SSB is not set 791 792 # ··· 796 # CONFIG_MFD_SM501 is not set 797 # CONFIG_HTC_PASIC3 is not set 798 # CONFIG_MFD_TMIO is not set 799 + # CONFIG_REGULATOR is not set 800 801 # 802 # Multimedia devices ··· 856 # 857 858 # 859 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 860 # 861 # CONFIG_USB_GADGET is not set 862 + # CONFIG_UWB is not set 863 # CONFIG_MMC is not set 864 # CONFIG_MEMSTICK is not set 865 # CONFIG_NEW_LEDS is not set ··· 883 # CONFIG_EXT3_FS_SECURITY is not set 884 # CONFIG_EXT4_FS is not set 885 CONFIG_JBD=y 886 + # CONFIG_JBD_DEBUG is not set 887 CONFIG_FS_MBCACHE=y 888 # CONFIG_REISERFS_FS is not set 889 # CONFIG_JFS_FS is not set ··· 930 # CONFIG_HUGETLBFS is not set 931 # CONFIG_HUGETLB_PAGE is not set 932 # CONFIG_CONFIGFS_FS is not set 933 + CONFIG_MISC_FILESYSTEMS=y 934 # CONFIG_ADFS_FS is not set 935 # CONFIG_AFFS_FS is not set 936 # CONFIG_HFS_FS is not set ··· 1048 CONFIG_FRAME_WARN=1024 1049 # CONFIG_MAGIC_SYSRQ is not set 1050 # CONFIG_UNUSED_SYMBOLS is not set 1051 + CONFIG_DEBUG_FS=y 1052 # CONFIG_HEADERS_CHECK is not set 1053 # CONFIG_DEBUG_KERNEL is not set 1054 + CONFIG_STACKTRACE=y 1055 # CONFIG_DEBUG_BUGVERBOSE is not set 1056 # CONFIG_DEBUG_MEMORY_INIT is not set 1057 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1058 # CONFIG_LATENCYTOP is not set 1059 CONFIG_NOP_TRACER=y 1060 + CONFIG_HAVE_FUNCTION_TRACER=y 1061 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1062 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1063 + CONFIG_RING_BUFFER=y 1064 + CONFIG_TRACING=y 1065 + 1066 + # 1067 + # Tracers 1068 + # 1069 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1070 # CONFIG_SAMPLES is not set 1071 + CONFIG_HAVE_ARCH_KGDB=y 1072 CONFIG_SH_STANDARD_BIOS=y 1073 # CONFIG_EARLY_SCIF_CONSOLE is not set 1074 # CONFIG_EARLY_PRINTK is not set 1075 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1076 1077 # 1078 # Security options ··· 1078 # 1079 # CONFIG_CRYPTO_FIPS is not set 1080 CONFIG_CRYPTO_ALGAPI=y 1081 + CONFIG_CRYPTO_ALGAPI2=y 1082 + CONFIG_CRYPTO_AEAD2=y 1083 CONFIG_CRYPTO_BLKCIPHER=y 1084 + CONFIG_CRYPTO_BLKCIPHER2=y 1085 CONFIG_CRYPTO_HASH=y 1086 + CONFIG_CRYPTO_HASH2=y 1087 + CONFIG_CRYPTO_RNG2=y 1088 CONFIG_CRYPTO_MANAGER=y 1089 + CONFIG_CRYPTO_MANAGER2=y 1090 # CONFIG_CRYPTO_GF128MUL is not set 1091 # CONFIG_CRYPTO_NULL is not set 1092 # CONFIG_CRYPTO_CRYPTD is not set ··· 1166 # Library routines 1167 # 1168 CONFIG_BITREVERSE=y 1169 + CONFIG_GENERIC_FIND_LAST_BIT=y 1170 CONFIG_CRC_CCITT=y 1171 # CONFIG_CRC16 is not set 1172 # CONFIG_CRC_T10DIF is not set
+36 -19
arch/sh/configs/sh7710voipgw_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:35:18 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 76 # CONFIG_SHMEM is not set 77 CONFIG_AIO=y 78 CONFIG_VM_EVENT_COUNTERS=y 79 - CONFIG_PCI_QUIRKS=y 80 CONFIG_SLAB=y 81 # CONFIG_SLUB is not set 82 # CONFIG_SLOB is not set 83 # CONFIG_PROFILING is not set 84 - # CONFIG_MARKERS is not set 85 CONFIG_HAVE_OPROFILE=y 86 # CONFIG_KPROBES is not set 87 CONFIG_HAVE_IOREMAP_PROT=y ··· 89 CONFIG_HAVE_CLK=y 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 - CONFIG_TINY_SHMEM=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 96 CONFIG_MODULE_FORCE_UNLOAD=y 97 # CONFIG_MODVERSIONS is not set 98 # CONFIG_MODULE_SRCVERSION_ALL is not set 99 - CONFIG_KMOD=y 100 CONFIG_BLOCK=y 101 # CONFIG_LBD is not set 102 # CONFIG_BLK_DEV_IO_TRACE is not set 103 - # CONFIG_LSF is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 115 # CONFIG_DEFAULT_NOOP is not set 116 CONFIG_DEFAULT_IOSCHED="deadline" 117 CONFIG_CLASSIC_RCU=y 118 # CONFIG_FREEZER is not set 119 120 # ··· 126 # 127 CONFIG_CPU_SH3=y 128 # CONFIG_CPU_SUBTYPE_SH7619 is not set 129 # CONFIG_CPU_SUBTYPE_SH7203 is not set 130 # CONFIG_CPU_SUBTYPE_SH7206 is not set 131 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 190 CONFIG_SPARSEMEM_STATIC=y 191 CONFIG_PAGEFLAGS_EXTENDED=y 192 CONFIG_SPLIT_PTLOCK_CPUS=4 193 - # CONFIG_RESOURCES_64BIT is not set 194 # CONFIG_PHYS_ADDR_T_64BIT is not set 195 CONFIG_ZONE_DMA_FLAG=0 196 CONFIG_NR_QUICK=2 ··· 288 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 289 # CONFIG_HAVE_AOUT is not set 290 # CONFIG_BINFMT_MISC is not set 291 CONFIG_NET=y 292 293 # 294 # Networking options 295 # 296 CONFIG_PACKET=y 297 # CONFIG_PACKET_MMAP is not set 298 CONFIG_UNIX=y ··· 386 # CONFIG_NET_SCH_GRED is not set 387 # CONFIG_NET_SCH_DSMARK is not set 388 # CONFIG_NET_SCH_NETEM is not set 389 390 # 391 # Classification ··· 407 # CONFIG_NET_CLS_ACT is not set 408 # CONFIG_NET_CLS_IND is not set 409 CONFIG_NET_SCH_FIFO=y 410 411 # 412 # Network testing ··· 423 # CONFIG_CFG80211 is not set 424 # CONFIG_WIRELESS_OLD_REGULATORY is not set 425 # CONFIG_WIRELESS_EXT is not set 426 # CONFIG_MAC80211 is not set 427 - # CONFIG_IEEE80211 is not set 428 # CONFIG_RFKILL is not set 429 # CONFIG_NET_9P is not set 430 ··· 529 CONFIG_MISC_DEVICES=y 530 # CONFIG_EEPROM_93CX6 is not set 531 # CONFIG_ENCLOSURE_SERVICES is not set 532 CONFIG_HAVE_IDE=y 533 # CONFIG_IDE is not set 534 ··· 557 # CONFIG_SH_ETH is not set 558 # CONFIG_SMC91X is not set 559 # CONFIG_SMC911X is not set 560 # CONFIG_IBM_NEW_EMAC_ZMII is not set 561 # CONFIG_IBM_NEW_EMAC_RGMII is not set 562 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 650 # CONFIG_HWMON is not set 651 CONFIG_THERMAL=y 652 # CONFIG_WATCHDOG is not set 653 654 # 655 # Sonics Silicon Backplane 656 # 657 - CONFIG_SSB_POSSIBLE=y 658 # CONFIG_SSB is not set 659 660 # ··· 664 # CONFIG_MFD_SM501 is not set 665 # CONFIG_HTC_PASIC3 is not set 666 # CONFIG_MFD_TMIO is not set 667 - # CONFIG_MFD_WM8400 is not set 668 669 # 670 # Multimedia devices ··· 718 # 719 720 # 721 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 722 # 723 # CONFIG_USB_GADGET is not set 724 # CONFIG_MMC is not set ··· 775 # CONFIG_HUGETLBFS is not set 776 # CONFIG_HUGETLB_PAGE is not set 777 # CONFIG_CONFIGFS_FS is not set 778 - 779 - # 780 - # Miscellaneous filesystems 781 - # 782 # CONFIG_ADFS_FS is not set 783 # CONFIG_AFFS_FS is not set 784 # CONFIG_HFS_FS is not set ··· 837 # CONFIG_DEBUG_MEMORY_INIT is not set 838 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 839 # CONFIG_LATENCYTOP is not set 840 - CONFIG_NOP_TRACER=y 841 - CONFIG_HAVE_FTRACE=y 842 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 843 # CONFIG_SAMPLES is not set 844 # CONFIG_SH_STANDARD_BIOS is not set 845 # CONFIG_EARLY_SCIF_CONSOLE is not set 846 - # CONFIG_SH_KGDB is not set 847 848 # 849 # Security options ··· 865 # 866 # CONFIG_CRYPTO_FIPS is not set 867 # CONFIG_CRYPTO_MANAGER is not set 868 # CONFIG_CRYPTO_GF128MUL is not set 869 # CONFIG_CRYPTO_NULL is not set 870 # CONFIG_CRYPTO_CRYPTD is not set ··· 948 # Library routines 949 # 950 CONFIG_BITREVERSE=y 951 # CONFIG_CRC_CCITT is not set 952 # CONFIG_CRC16 is not set 953 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:00:31 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 74 # CONFIG_SHMEM is not set 75 CONFIG_AIO=y 76 CONFIG_VM_EVENT_COUNTERS=y 77 CONFIG_SLAB=y 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 CONFIG_HAVE_OPROFILE=y 82 # CONFIG_KPROBES is not set 83 CONFIG_HAVE_IOREMAP_PROT=y ··· 89 CONFIG_HAVE_CLK=y 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_BASE_SMALL=0 93 CONFIG_MODULES=y 94 # CONFIG_MODULE_FORCE_LOAD is not set ··· 97 CONFIG_MODULE_FORCE_UNLOAD=y 98 # CONFIG_MODVERSIONS is not set 99 # CONFIG_MODULE_SRCVERSION_ALL is not set 100 CONFIG_BLOCK=y 101 # CONFIG_LBD is not set 102 # CONFIG_BLK_DEV_IO_TRACE is not set 103 # CONFIG_BLK_DEV_BSG is not set 104 # CONFIG_BLK_DEV_INTEGRITY is not set 105 ··· 118 # CONFIG_DEFAULT_NOOP is not set 119 CONFIG_DEFAULT_IOSCHED="deadline" 120 CONFIG_CLASSIC_RCU=y 121 + # CONFIG_TREE_RCU is not set 122 + # CONFIG_PREEMPT_RCU is not set 123 + # CONFIG_TREE_RCU_TRACE is not set 124 + # CONFIG_PREEMPT_RCU_TRACE is not set 125 # CONFIG_FREEZER is not set 126 127 # ··· 125 # 126 CONFIG_CPU_SH3=y 127 # CONFIG_CPU_SUBTYPE_SH7619 is not set 128 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 129 # CONFIG_CPU_SUBTYPE_SH7203 is not set 130 # CONFIG_CPU_SUBTYPE_SH7206 is not set 131 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 188 CONFIG_SPARSEMEM_STATIC=y 189 CONFIG_PAGEFLAGS_EXTENDED=y 190 CONFIG_SPLIT_PTLOCK_CPUS=4 191 # CONFIG_PHYS_ADDR_T_64BIT is not set 192 CONFIG_ZONE_DMA_FLAG=0 193 CONFIG_NR_QUICK=2 ··· 287 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 288 # CONFIG_HAVE_AOUT is not set 289 # CONFIG_BINFMT_MISC is not set 290 + 291 + # 292 + # Power management options (EXPERIMENTAL) 293 + # 294 + # CONFIG_PM is not set 295 + # CONFIG_CPU_IDLE is not set 296 CONFIG_NET=y 297 298 # 299 # Networking options 300 # 301 + CONFIG_COMPAT_NET_DEV_OPS=y 302 CONFIG_PACKET=y 303 # CONFIG_PACKET_MMAP is not set 304 CONFIG_UNIX=y ··· 378 # CONFIG_NET_SCH_GRED is not set 379 # CONFIG_NET_SCH_DSMARK is not set 380 # CONFIG_NET_SCH_NETEM is not set 381 + # CONFIG_NET_SCH_DRR is not set 382 383 # 384 # Classification ··· 398 # CONFIG_NET_CLS_ACT is not set 399 # CONFIG_NET_CLS_IND is not set 400 CONFIG_NET_SCH_FIFO=y 401 + # CONFIG_DCB is not set 402 403 # 404 # Network testing ··· 413 # CONFIG_CFG80211 is not set 414 # CONFIG_WIRELESS_OLD_REGULATORY is not set 415 # CONFIG_WIRELESS_EXT is not set 416 + # CONFIG_LIB80211 is not set 417 # CONFIG_MAC80211 is not set 418 # CONFIG_RFKILL is not set 419 # CONFIG_NET_9P is not set 420 ··· 519 CONFIG_MISC_DEVICES=y 520 # CONFIG_EEPROM_93CX6 is not set 521 # CONFIG_ENCLOSURE_SERVICES is not set 522 + # CONFIG_C2PORT is not set 523 CONFIG_HAVE_IDE=y 524 # CONFIG_IDE is not set 525 ··· 546 # CONFIG_SH_ETH is not set 547 # CONFIG_SMC91X is not set 548 # CONFIG_SMC911X is not set 549 + # CONFIG_SMSC911X is not set 550 # CONFIG_IBM_NEW_EMAC_ZMII is not set 551 # CONFIG_IBM_NEW_EMAC_RGMII is not set 552 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 638 # CONFIG_HWMON is not set 639 CONFIG_THERMAL=y 640 # CONFIG_WATCHDOG is not set 641 + CONFIG_SSB_POSSIBLE=y 642 643 # 644 # Sonics Silicon Backplane 645 # 646 # CONFIG_SSB is not set 647 648 # ··· 652 # CONFIG_MFD_SM501 is not set 653 # CONFIG_HTC_PASIC3 is not set 654 # CONFIG_MFD_TMIO is not set 655 + # CONFIG_REGULATOR is not set 656 657 # 658 # Multimedia devices ··· 706 # 707 708 # 709 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 710 # 711 # CONFIG_USB_GADGET is not set 712 # CONFIG_MMC is not set ··· 763 # CONFIG_HUGETLBFS is not set 764 # CONFIG_HUGETLB_PAGE is not set 765 # CONFIG_CONFIGFS_FS is not set 766 + CONFIG_MISC_FILESYSTEMS=y 767 # CONFIG_ADFS_FS is not set 768 # CONFIG_AFFS_FS is not set 769 # CONFIG_HFS_FS is not set ··· 828 # CONFIG_DEBUG_MEMORY_INIT is not set 829 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 830 # CONFIG_LATENCYTOP is not set 831 + CONFIG_HAVE_FUNCTION_TRACER=y 832 + CONFIG_HAVE_DYNAMIC_FTRACE=y 833 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 834 + 835 + # 836 + # Tracers 837 + # 838 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 839 # CONFIG_SAMPLES is not set 840 + CONFIG_HAVE_ARCH_KGDB=y 841 # CONFIG_SH_STANDARD_BIOS is not set 842 # CONFIG_EARLY_SCIF_CONSOLE is not set 843 + # CONFIG_MORE_COMPILE_OPTIONS is not set 844 845 # 846 # Security options ··· 850 # 851 # CONFIG_CRYPTO_FIPS is not set 852 # CONFIG_CRYPTO_MANAGER is not set 853 + # CONFIG_CRYPTO_MANAGER2 is not set 854 # CONFIG_CRYPTO_GF128MUL is not set 855 # CONFIG_CRYPTO_NULL is not set 856 # CONFIG_CRYPTO_CRYPTD is not set ··· 932 # Library routines 933 # 934 CONFIG_BITREVERSE=y 935 + CONFIG_GENERIC_FIND_LAST_BIT=y 936 # CONFIG_CRC_CCITT is not set 937 # CONFIG_CRC16 is not set 938 # CONFIG_CRC_T10DIF is not set
+51 -20
arch/sh/configs/sh7763rdp_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:37:12 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 81 CONFIG_SHMEM=y 82 CONFIG_AIO=y 83 CONFIG_VM_EVENT_COUNTERS=y 84 - CONFIG_PCI_QUIRKS=y 85 CONFIG_SLAB=y 86 # CONFIG_SLUB is not set 87 # CONFIG_SLOB is not set 88 CONFIG_PROFILING=y 89 # CONFIG_MARKERS is not set 90 CONFIG_OPROFILE=y 91 CONFIG_HAVE_OPROFILE=y ··· 98 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 99 CONFIG_SLABINFO=y 100 CONFIG_RT_MUTEXES=y 101 - # CONFIG_TINY_SHMEM is not set 102 CONFIG_BASE_SMALL=0 103 CONFIG_MODULES=y 104 # CONFIG_MODULE_FORCE_LOAD is not set 105 # CONFIG_MODULE_UNLOAD is not set 106 # CONFIG_MODVERSIONS is not set 107 # CONFIG_MODULE_SRCVERSION_ALL is not set 108 - CONFIG_KMOD=y 109 CONFIG_BLOCK=y 110 # CONFIG_LBD is not set 111 # CONFIG_BLK_DEV_IO_TRACE is not set 112 - # CONFIG_LSF is not set 113 # CONFIG_BLK_DEV_BSG is not set 114 # CONFIG_BLK_DEV_INTEGRITY is not set 115 ··· 123 # CONFIG_DEFAULT_NOOP is not set 124 CONFIG_DEFAULT_IOSCHED="anticipatory" 125 CONFIG_CLASSIC_RCU=y 126 # CONFIG_FREEZER is not set 127 128 # ··· 135 CONFIG_CPU_SH4=y 136 CONFIG_CPU_SH4A=y 137 # CONFIG_CPU_SUBTYPE_SH7619 is not set 138 # CONFIG_CPU_SUBTYPE_SH7203 is not set 139 # CONFIG_CPU_SUBTYPE_SH7206 is not set 140 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 203 CONFIG_PAGEFLAGS_EXTENDED=y 204 CONFIG_SPLIT_PTLOCK_CPUS=4 205 CONFIG_MIGRATION=y 206 - # CONFIG_RESOURCES_64BIT is not set 207 # CONFIG_PHYS_ADDR_T_64BIT is not set 208 CONFIG_ZONE_DMA_FLAG=0 209 CONFIG_NR_QUICK=2 ··· 300 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 301 # CONFIG_HAVE_AOUT is not set 302 # CONFIG_BINFMT_MISC is not set 303 CONFIG_NET=y 304 305 # 306 # Networking options 307 # 308 CONFIG_PACKET=y 309 # CONFIG_PACKET_MMAP is not set 310 CONFIG_UNIX=y ··· 368 # CONFIG_ECONET is not set 369 # CONFIG_WAN_ROUTER is not set 370 # CONFIG_NET_SCHED is not set 371 372 # 373 # Network testing ··· 385 # CONFIG_WIRELESS_OLD_REGULATORY is not set 386 CONFIG_WIRELESS_EXT=y 387 CONFIG_WIRELESS_EXT_SYSFS=y 388 # CONFIG_MAC80211 is not set 389 - # CONFIG_IEEE80211 is not set 390 # CONFIG_RFKILL is not set 391 # CONFIG_NET_9P is not set 392 ··· 541 # CONFIG_SCSI_SRP_ATTRS is not set 542 CONFIG_SCSI_LOWLEVEL=y 543 # CONFIG_ISCSI_TCP is not set 544 # CONFIG_SCSI_DEBUG is not set 545 # CONFIG_SCSI_DH is not set 546 # CONFIG_ATA is not set ··· 568 # CONFIG_BROADCOM_PHY is not set 569 # CONFIG_ICPLUS_PHY is not set 570 # CONFIG_REALTEK_PHY is not set 571 # CONFIG_FIXED_PHY is not set 572 CONFIG_MDIO_BITBANG=y 573 CONFIG_NET_ETHERNET=y ··· 580 CONFIG_SH_ETH=y 581 # CONFIG_SMC91X is not set 582 # CONFIG_SMC911X is not set 583 # CONFIG_IBM_NEW_EMAC_ZMII is not set 584 # CONFIG_IBM_NEW_EMAC_RGMII is not set 585 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 672 CONFIG_SERIAL_CORE=y 673 CONFIG_SERIAL_CORE_CONSOLE=y 674 CONFIG_UNIX98_PTYS=y 675 CONFIG_LEGACY_PTYS=y 676 CONFIG_LEGACY_PTY_COUNT=256 677 # CONFIG_IPMI_HANDLER is not set ··· 688 # CONFIG_THERMAL is not set 689 # CONFIG_THERMAL_HWMON is not set 690 # CONFIG_WATCHDOG is not set 691 692 # 693 # Sonics Silicon Backplane 694 # 695 - CONFIG_SSB_POSSIBLE=y 696 # CONFIG_SSB is not set 697 698 # ··· 702 # CONFIG_MFD_SM501 is not set 703 # CONFIG_HTC_PASIC3 is not set 704 # CONFIG_MFD_TMIO is not set 705 - # CONFIG_MFD_WM8400 is not set 706 707 # 708 # Multimedia devices ··· 755 CONFIG_FB_SH7760=y 756 # CONFIG_FB_VIRTUAL is not set 757 # CONFIG_FB_METRONOME is not set 758 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 759 760 # ··· 800 # CONFIG_USB_OTG_WHITELIST is not set 801 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 802 CONFIG_USB_MON=y 803 804 # 805 # USB Host Controller Drivers 806 # 807 # CONFIG_USB_C67X00_HCD is not set 808 # CONFIG_USB_ISP116X_HCD is not set 809 - # CONFIG_USB_ISP1760_HCD is not set 810 CONFIG_USB_OHCI_HCD=y 811 # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set 812 # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set 813 CONFIG_USB_OHCI_LITTLE_ENDIAN=y 814 # CONFIG_USB_SL811_HCD is not set 815 # CONFIG_USB_R8A66597_HCD is not set 816 817 # 818 # USB Device Class drivers ··· 825 # CONFIG_USB_TMC is not set 826 827 # 828 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 829 # 830 831 # 832 - # may also be needed; see USB_STORAGE Help for more information 833 # 834 CONFIG_USB_STORAGE=y 835 # CONFIG_USB_STORAGE_DEBUG is not set ··· 918 # CONFIG_EXT3_FS_SECURITY is not set 919 # CONFIG_EXT4_FS is not set 920 CONFIG_JBD=y 921 CONFIG_FS_MBCACHE=y 922 # CONFIG_REISERFS_FS is not set 923 # CONFIG_JFS_FS is not set ··· 964 # CONFIG_HUGETLBFS is not set 965 # CONFIG_HUGETLB_PAGE is not set 966 # CONFIG_CONFIGFS_FS is not set 967 - 968 - # 969 - # Miscellaneous filesystems 970 - # 971 # CONFIG_ADFS_FS is not set 972 # CONFIG_AFFS_FS is not set 973 # CONFIG_HFS_FS is not set ··· 1057 CONFIG_FRAME_WARN=1024 1058 # CONFIG_MAGIC_SYSRQ is not set 1059 # CONFIG_UNUSED_SYMBOLS is not set 1060 - # CONFIG_DEBUG_FS is not set 1061 # CONFIG_HEADERS_CHECK is not set 1062 # CONFIG_DEBUG_KERNEL is not set 1063 # CONFIG_DEBUG_BUGVERBOSE is not set 1064 # CONFIG_DEBUG_MEMORY_INIT is not set 1065 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1066 # CONFIG_LATENCYTOP is not set 1067 CONFIG_NOP_TRACER=y 1068 - CONFIG_HAVE_FTRACE=y 1069 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1070 # CONFIG_SAMPLES is not set 1071 # CONFIG_SH_STANDARD_BIOS is not set 1072 # CONFIG_EARLY_SCIF_CONSOLE is not set 1073 - # CONFIG_SH_KGDB is not set 1074 1075 # 1076 # Security options ··· 1096 # 1097 # CONFIG_CRYPTO_FIPS is not set 1098 # CONFIG_CRYPTO_MANAGER is not set 1099 # CONFIG_CRYPTO_GF128MUL is not set 1100 # CONFIG_CRYPTO_NULL is not set 1101 # CONFIG_CRYPTO_CRYPTD is not set ··· 1179 # Library routines 1180 # 1181 CONFIG_BITREVERSE=y 1182 # CONFIG_CRC_CCITT is not set 1183 # CONFIG_CRC16 is not set 1184 CONFIG_CRC_T10DIF=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:02:28 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 79 CONFIG_SHMEM=y 80 CONFIG_AIO=y 81 CONFIG_VM_EVENT_COUNTERS=y 82 CONFIG_SLAB=y 83 # CONFIG_SLUB is not set 84 # CONFIG_SLOB is not set 85 CONFIG_PROFILING=y 86 + CONFIG_TRACEPOINTS=y 87 # CONFIG_MARKERS is not set 88 CONFIG_OPROFILE=y 89 CONFIG_HAVE_OPROFILE=y ··· 96 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 97 CONFIG_SLABINFO=y 98 CONFIG_RT_MUTEXES=y 99 CONFIG_BASE_SMALL=0 100 CONFIG_MODULES=y 101 # CONFIG_MODULE_FORCE_LOAD is not set 102 # CONFIG_MODULE_UNLOAD is not set 103 # CONFIG_MODVERSIONS is not set 104 # CONFIG_MODULE_SRCVERSION_ALL is not set 105 CONFIG_BLOCK=y 106 # CONFIG_LBD is not set 107 # CONFIG_BLK_DEV_IO_TRACE is not set 108 # CONFIG_BLK_DEV_BSG is not set 109 # CONFIG_BLK_DEV_INTEGRITY is not set 110 ··· 124 # CONFIG_DEFAULT_NOOP is not set 125 CONFIG_DEFAULT_IOSCHED="anticipatory" 126 CONFIG_CLASSIC_RCU=y 127 + # CONFIG_TREE_RCU is not set 128 + # CONFIG_PREEMPT_RCU is not set 129 + # CONFIG_TREE_RCU_TRACE is not set 130 + # CONFIG_PREEMPT_RCU_TRACE is not set 131 # CONFIG_FREEZER is not set 132 133 # ··· 132 CONFIG_CPU_SH4=y 133 CONFIG_CPU_SH4A=y 134 # CONFIG_CPU_SUBTYPE_SH7619 is not set 135 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 136 # CONFIG_CPU_SUBTYPE_SH7203 is not set 137 # CONFIG_CPU_SUBTYPE_SH7206 is not set 138 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 199 CONFIG_PAGEFLAGS_EXTENDED=y 200 CONFIG_SPLIT_PTLOCK_CPUS=4 201 CONFIG_MIGRATION=y 202 # CONFIG_PHYS_ADDR_T_64BIT is not set 203 CONFIG_ZONE_DMA_FLAG=0 204 CONFIG_NR_QUICK=2 ··· 297 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 298 # CONFIG_HAVE_AOUT is not set 299 # CONFIG_BINFMT_MISC is not set 300 + 301 + # 302 + # Power management options (EXPERIMENTAL) 303 + # 304 + # CONFIG_PM is not set 305 + # CONFIG_CPU_IDLE is not set 306 CONFIG_NET=y 307 308 # 309 # Networking options 310 # 311 + # CONFIG_NET_NS is not set 312 + CONFIG_COMPAT_NET_DEV_OPS=y 313 CONFIG_PACKET=y 314 # CONFIG_PACKET_MMAP is not set 315 CONFIG_UNIX=y ··· 357 # CONFIG_ECONET is not set 358 # CONFIG_WAN_ROUTER is not set 359 # CONFIG_NET_SCHED is not set 360 + # CONFIG_DCB is not set 361 362 # 363 # Network testing ··· 373 # CONFIG_WIRELESS_OLD_REGULATORY is not set 374 CONFIG_WIRELESS_EXT=y 375 CONFIG_WIRELESS_EXT_SYSFS=y 376 + # CONFIG_LIB80211 is not set 377 # CONFIG_MAC80211 is not set 378 # CONFIG_RFKILL is not set 379 # CONFIG_NET_9P is not set 380 ··· 529 # CONFIG_SCSI_SRP_ATTRS is not set 530 CONFIG_SCSI_LOWLEVEL=y 531 # CONFIG_ISCSI_TCP is not set 532 + # CONFIG_LIBFC is not set 533 # CONFIG_SCSI_DEBUG is not set 534 # CONFIG_SCSI_DH is not set 535 # CONFIG_ATA is not set ··· 555 # CONFIG_BROADCOM_PHY is not set 556 # CONFIG_ICPLUS_PHY is not set 557 # CONFIG_REALTEK_PHY is not set 558 + # CONFIG_NATIONAL_PHY is not set 559 + # CONFIG_STE10XP is not set 560 + # CONFIG_LSI_ET1011C_PHY is not set 561 # CONFIG_FIXED_PHY is not set 562 CONFIG_MDIO_BITBANG=y 563 CONFIG_NET_ETHERNET=y ··· 564 CONFIG_SH_ETH=y 565 # CONFIG_SMC91X is not set 566 # CONFIG_SMC911X is not set 567 + # CONFIG_SMSC911X is not set 568 # CONFIG_IBM_NEW_EMAC_ZMII is not set 569 # CONFIG_IBM_NEW_EMAC_RGMII is not set 570 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 655 CONFIG_SERIAL_CORE=y 656 CONFIG_SERIAL_CORE_CONSOLE=y 657 CONFIG_UNIX98_PTYS=y 658 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 659 CONFIG_LEGACY_PTYS=y 660 CONFIG_LEGACY_PTY_COUNT=256 661 # CONFIG_IPMI_HANDLER is not set ··· 670 # CONFIG_THERMAL is not set 671 # CONFIG_THERMAL_HWMON is not set 672 # CONFIG_WATCHDOG is not set 673 + CONFIG_SSB_POSSIBLE=y 674 675 # 676 # Sonics Silicon Backplane 677 # 678 # CONFIG_SSB is not set 679 680 # ··· 684 # CONFIG_MFD_SM501 is not set 685 # CONFIG_HTC_PASIC3 is not set 686 # CONFIG_MFD_TMIO is not set 687 + # CONFIG_REGULATOR is not set 688 689 # 690 # Multimedia devices ··· 737 CONFIG_FB_SH7760=y 738 # CONFIG_FB_VIRTUAL is not set 739 # CONFIG_FB_METRONOME is not set 740 + # CONFIG_FB_MB862XX is not set 741 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 742 743 # ··· 781 # CONFIG_USB_OTG_WHITELIST is not set 782 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 783 CONFIG_USB_MON=y 784 + # CONFIG_USB_WUSB is not set 785 + # CONFIG_USB_WUSB_CBAF is not set 786 787 # 788 # USB Host Controller Drivers 789 # 790 # CONFIG_USB_C67X00_HCD is not set 791 # CONFIG_USB_ISP116X_HCD is not set 792 CONFIG_USB_OHCI_HCD=y 793 # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set 794 # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set 795 CONFIG_USB_OHCI_LITTLE_ENDIAN=y 796 # CONFIG_USB_SL811_HCD is not set 797 # CONFIG_USB_R8A66597_HCD is not set 798 + # CONFIG_USB_HWA_HCD is not set 799 800 # 801 # USB Device Class drivers ··· 804 # CONFIG_USB_TMC is not set 805 806 # 807 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 808 # 809 810 # 811 + # see USB_STORAGE Help for more information 812 # 813 CONFIG_USB_STORAGE=y 814 # CONFIG_USB_STORAGE_DEBUG is not set ··· 897 # CONFIG_EXT3_FS_SECURITY is not set 898 # CONFIG_EXT4_FS is not set 899 CONFIG_JBD=y 900 + # CONFIG_JBD_DEBUG is not set 901 CONFIG_FS_MBCACHE=y 902 # CONFIG_REISERFS_FS is not set 903 # CONFIG_JFS_FS is not set ··· 942 # CONFIG_HUGETLBFS is not set 943 # CONFIG_HUGETLB_PAGE is not set 944 # CONFIG_CONFIGFS_FS is not set 945 + CONFIG_MISC_FILESYSTEMS=y 946 # CONFIG_ADFS_FS is not set 947 # CONFIG_AFFS_FS is not set 948 # CONFIG_HFS_FS is not set ··· 1038 CONFIG_FRAME_WARN=1024 1039 # CONFIG_MAGIC_SYSRQ is not set 1040 # CONFIG_UNUSED_SYMBOLS is not set 1041 + CONFIG_DEBUG_FS=y 1042 # CONFIG_HEADERS_CHECK is not set 1043 # CONFIG_DEBUG_KERNEL is not set 1044 + CONFIG_STACKTRACE=y 1045 # CONFIG_DEBUG_BUGVERBOSE is not set 1046 # CONFIG_DEBUG_MEMORY_INIT is not set 1047 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1048 # CONFIG_LATENCYTOP is not set 1049 CONFIG_NOP_TRACER=y 1050 + CONFIG_HAVE_FUNCTION_TRACER=y 1051 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1052 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1053 + CONFIG_RING_BUFFER=y 1054 + CONFIG_TRACING=y 1055 + 1056 + # 1057 + # Tracers 1058 + # 1059 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1060 # CONFIG_SAMPLES is not set 1061 + CONFIG_HAVE_ARCH_KGDB=y 1062 # CONFIG_SH_STANDARD_BIOS is not set 1063 # CONFIG_EARLY_SCIF_CONSOLE is not set 1064 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1065 1066 # 1067 # Security options ··· 1067 # 1068 # CONFIG_CRYPTO_FIPS is not set 1069 # CONFIG_CRYPTO_MANAGER is not set 1070 + # CONFIG_CRYPTO_MANAGER2 is not set 1071 # CONFIG_CRYPTO_GF128MUL is not set 1072 # CONFIG_CRYPTO_NULL is not set 1073 # CONFIG_CRYPTO_CRYPTD is not set ··· 1149 # Library routines 1150 # 1151 CONFIG_BITREVERSE=y 1152 + CONFIG_GENERIC_FIND_LAST_BIT=y 1153 # CONFIG_CRC_CCITT is not set 1154 # CONFIG_CRC16 is not set 1155 CONFIG_CRC_T10DIF=y
+64 -28
arch/sh/configs/sh7785lcr_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:49:23 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_NUMA=y 20 CONFIG_SYS_SUPPORTS_PCI=y 21 CONFIG_STACKTRACE_SUPPORT=y ··· 88 # CONFIG_SLUB is not set 89 # CONFIG_SLOB is not set 90 CONFIG_PROFILING=y 91 - # CONFIG_MARKERS is not set 92 # CONFIG_OPROFILE is not set 93 CONFIG_HAVE_OPROFILE=y 94 # CONFIG_KPROBES is not set ··· 99 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 100 CONFIG_SLABINFO=y 101 CONFIG_RT_MUTEXES=y 102 - # CONFIG_TINY_SHMEM is not set 103 CONFIG_BASE_SMALL=0 104 CONFIG_MODULES=y 105 # CONFIG_MODULE_FORCE_LOAD is not set ··· 106 # CONFIG_MODULE_FORCE_UNLOAD is not set 107 # CONFIG_MODVERSIONS is not set 108 # CONFIG_MODULE_SRCVERSION_ALL is not set 109 - CONFIG_KMOD=y 110 CONFIG_BLOCK=y 111 # CONFIG_LBD is not set 112 # CONFIG_BLK_DEV_IO_TRACE is not set 113 - # CONFIG_LSF is not set 114 # CONFIG_BLK_DEV_BSG is not set 115 # CONFIG_BLK_DEV_INTEGRITY is not set 116 ··· 125 # CONFIG_DEFAULT_NOOP is not set 126 CONFIG_DEFAULT_IOSCHED="cfq" 127 CONFIG_CLASSIC_RCU=y 128 # CONFIG_FREEZER is not set 129 130 # ··· 138 CONFIG_CPU_SH4A=y 139 CONFIG_CPU_SHX2=y 140 # CONFIG_CPU_SUBTYPE_SH7619 is not set 141 # CONFIG_CPU_SUBTYPE_SH7203 is not set 142 # CONFIG_CPU_SUBTYPE_SH7206 is not set 143 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 209 CONFIG_PAGEFLAGS_EXTENDED=y 210 CONFIG_SPLIT_PTLOCK_CPUS=4 211 CONFIG_MIGRATION=y 212 - # CONFIG_RESOURCES_64BIT is not set 213 # CONFIG_PHYS_ADDR_T_64BIT is not set 214 CONFIG_ZONE_DMA_FLAG=0 215 CONFIG_NR_QUICK=2 ··· 287 # CONFIG_PREEMPT_NONE is not set 288 # CONFIG_PREEMPT_VOLUNTARY is not set 289 CONFIG_PREEMPT=y 290 - # CONFIG_PREEMPT_RCU is not set 291 CONFIG_GUSA=y 292 293 # ··· 303 CONFIG_SH_PCIDMA_NONCOHERENT=y 304 CONFIG_PCI_AUTO=y 305 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 306 # CONFIG_ARCH_SUPPORTS_MSI is not set 307 CONFIG_PCI_LEGACY=y 308 # CONFIG_PCI_DEBUG is not set ··· 317 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 318 # CONFIG_HAVE_AOUT is not set 319 # CONFIG_BINFMT_MISC is not set 320 CONFIG_NET=y 321 322 # 323 # Networking options 324 # 325 CONFIG_PACKET=y 326 # CONFIG_PACKET_MMAP is not set 327 CONFIG_UNIX=y ··· 389 # CONFIG_ECONET is not set 390 # CONFIG_WAN_ROUTER is not set 391 # CONFIG_NET_SCHED is not set 392 393 # 394 # Network testing ··· 406 # CONFIG_WIRELESS_OLD_REGULATORY is not set 407 CONFIG_WIRELESS_EXT=y 408 CONFIG_WIRELESS_EXT_SYSFS=y 409 # CONFIG_MAC80211 is not set 410 - # CONFIG_IEEE80211 is not set 411 # CONFIG_RFKILL is not set 412 # CONFIG_NET_9P is not set 413 ··· 767 CONFIG_SERIAL_CORE_CONSOLE=y 768 # CONFIG_SERIAL_JSM is not set 769 CONFIG_UNIX98_PTYS=y 770 CONFIG_LEGACY_PTYS=y 771 CONFIG_LEGACY_PTY_COUNT=256 772 # CONFIG_IPMI_HANDLER is not set ··· 853 # CONFIG_THERMAL is not set 854 # CONFIG_THERMAL_HWMON is not set 855 # CONFIG_WATCHDOG is not set 856 857 # 858 # Sonics Silicon Backplane 859 # 860 - CONFIG_SSB_POSSIBLE=y 861 # CONFIG_SSB is not set 862 863 # ··· 866 # CONFIG_MFD_CORE is not set 867 CONFIG_MFD_SM501=y 868 # CONFIG_HTC_PASIC3 is not set 869 # CONFIG_MFD_TMIO is not set 870 # CONFIG_MFD_WM8400 is not set 871 # CONFIG_MFD_WM8350_I2C is not set 872 873 # 874 # Multimedia devices ··· 903 CONFIG_FB_CFB_COPYAREA=y 904 CONFIG_FB_CFB_IMAGEBLIT=y 905 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 906 - # CONFIG_FB_SYS_FILLRECT is not set 907 - # CONFIG_FB_SYS_COPYAREA is not set 908 - # CONFIG_FB_SYS_IMAGEBLIT is not set 909 # CONFIG_FB_FOREIGN_ENDIAN is not set 910 - # CONFIG_FB_SYS_FOPS is not set 911 # CONFIG_FB_SVGALIB is not set 912 # CONFIG_FB_MACMODES is not set 913 # CONFIG_FB_BACKLIGHT is not set ··· 947 CONFIG_FB_SM501=y 948 # CONFIG_FB_VIRTUAL is not set 949 # CONFIG_FB_METRONOME is not set 950 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 951 952 # ··· 992 CONFIG_HID_A4TECH=y 993 CONFIG_HID_APPLE=y 994 CONFIG_HID_BELKIN=y 995 - CONFIG_HID_BRIGHT=y 996 CONFIG_HID_CHERRY=y 997 CONFIG_HID_CHICONY=y 998 CONFIG_HID_CYPRESS=y 999 - CONFIG_HID_DELL=y 1000 CONFIG_HID_EZKEY=y 1001 CONFIG_HID_GYRATION=y 1002 CONFIG_HID_LOGITECH=y ··· 1002 # CONFIG_LOGIRUMBLEPAD2_FF is not set 1003 CONFIG_HID_MICROSOFT=y 1004 CONFIG_HID_MONTEREY=y 1005 CONFIG_HID_PANTHERLORD=y 1006 # CONFIG_PANTHERLORD_FF is not set 1007 CONFIG_HID_PETALYNX=y 1008 CONFIG_HID_SAMSUNG=y 1009 CONFIG_HID_SONY=y 1010 CONFIG_HID_SUNPLUS=y 1011 CONFIG_THRUSTMASTER_FF=m 1012 CONFIG_ZEROPLUS_FF=m 1013 CONFIG_USB_SUPPORT=y ··· 1031 # CONFIG_USB_OTG_WHITELIST is not set 1032 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1033 CONFIG_USB_MON=y 1034 1035 # 1036 # USB Host Controller Drivers ··· 1050 # CONFIG_USB_UHCI_HCD is not set 1051 # CONFIG_USB_SL811_HCD is not set 1052 CONFIG_USB_R8A66597_HCD=y 1053 1054 # 1055 # USB Device Class drivers ··· 1062 # CONFIG_USB_TMC is not set 1063 1064 # 1065 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1066 # 1067 1068 # 1069 - # may also be needed; see USB_STORAGE Help for more information 1070 # 1071 CONFIG_USB_STORAGE=y 1072 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1121 # CONFIG_USB_ISIGHTFW is not set 1122 # CONFIG_USB_VST is not set 1123 # CONFIG_USB_GADGET is not set 1124 # CONFIG_MMC is not set 1125 # CONFIG_MEMSTICK is not set 1126 # CONFIG_NEW_LEDS is not set ··· 1157 # CONFIG_RTC_DRV_M41T80 is not set 1158 # CONFIG_RTC_DRV_S35390A is not set 1159 # CONFIG_RTC_DRV_FM3130 is not set 1160 1161 # 1162 # SPI RTC drivers ··· 1243 # CONFIG_HUGETLBFS is not set 1244 # CONFIG_HUGETLB_PAGE is not set 1245 # CONFIG_CONFIGFS_FS is not set 1246 - 1247 - # 1248 - # Miscellaneous filesystems 1249 - # 1250 # CONFIG_ADFS_FS is not set 1251 # CONFIG_AFFS_FS is not set 1252 # CONFIG_HFS_FS is not set ··· 1373 # CONFIG_DEBUG_MEMORY_INIT is not set 1374 # CONFIG_DEBUG_LIST is not set 1375 # CONFIG_DEBUG_SG is not set 1376 # CONFIG_FRAME_POINTER is not set 1377 # CONFIG_RCU_TORTURE_TEST is not set 1378 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1382 # CONFIG_FAULT_INJECTION is not set 1383 # CONFIG_LATENCYTOP is not set 1384 CONFIG_SYSCTL_SYSCALL_CHECK=y 1385 - CONFIG_NOP_TRACER=y 1386 - CONFIG_HAVE_FTRACE=y 1387 - # CONFIG_FTRACE is not set 1388 # CONFIG_IRQSOFF_TRACER is not set 1389 # CONFIG_PREEMPT_TRACER is not set 1390 # CONFIG_SCHED_TRACER is not set 1391 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1392 # CONFIG_BOOT_TRACER is not set 1393 # CONFIG_STACK_TRACER is not set 1394 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1395 # CONFIG_SAMPLES is not set 1396 # CONFIG_SH_STANDARD_BIOS is not set 1397 # CONFIG_EARLY_SCIF_CONSOLE is not set 1398 # CONFIG_DEBUG_BOOTMEM is not set ··· 1408 # CONFIG_DEBUG_STACK_USAGE is not set 1409 # CONFIG_4KSTACKS is not set 1410 # CONFIG_IRQSTACKS is not set 1411 - # CONFIG_SH_KGDB is not set 1412 1413 # 1414 # Security options ··· 1426 # 1427 # CONFIG_CRYPTO_FIPS is not set 1428 CONFIG_CRYPTO_ALGAPI=y 1429 - CONFIG_CRYPTO_AEAD=y 1430 CONFIG_CRYPTO_BLKCIPHER=y 1431 CONFIG_CRYPTO_HASH=y 1432 - CONFIG_CRYPTO_RNG=y 1433 CONFIG_CRYPTO_MANAGER=y 1434 # CONFIG_CRYPTO_GF128MUL is not set 1435 # CONFIG_CRYPTO_NULL is not set 1436 # CONFIG_CRYPTO_CRYPTD is not set ··· 1517 # Library routines 1518 # 1519 CONFIG_BITREVERSE=y 1520 # CONFIG_CRC_CCITT is not set 1521 # CONFIG_CRC16 is not set 1522 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:05:18 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_NUMA=y 22 CONFIG_SYS_SUPPORTS_PCI=y 23 CONFIG_STACKTRACE_SUPPORT=y ··· 86 # CONFIG_SLUB is not set 87 # CONFIG_SLOB is not set 88 CONFIG_PROFILING=y 89 # CONFIG_OPROFILE is not set 90 CONFIG_HAVE_OPROFILE=y 91 # CONFIG_KPROBES is not set ··· 98 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 99 CONFIG_SLABINFO=y 100 CONFIG_RT_MUTEXES=y 101 CONFIG_BASE_SMALL=0 102 CONFIG_MODULES=y 103 # CONFIG_MODULE_FORCE_LOAD is not set ··· 106 # CONFIG_MODULE_FORCE_UNLOAD is not set 107 # CONFIG_MODVERSIONS is not set 108 # CONFIG_MODULE_SRCVERSION_ALL is not set 109 CONFIG_BLOCK=y 110 # CONFIG_LBD is not set 111 # CONFIG_BLK_DEV_IO_TRACE is not set 112 # CONFIG_BLK_DEV_BSG is not set 113 # CONFIG_BLK_DEV_INTEGRITY is not set 114 ··· 127 # CONFIG_DEFAULT_NOOP is not set 128 CONFIG_DEFAULT_IOSCHED="cfq" 129 CONFIG_CLASSIC_RCU=y 130 + # CONFIG_TREE_RCU is not set 131 + # CONFIG_PREEMPT_RCU is not set 132 + # CONFIG_TREE_RCU_TRACE is not set 133 + # CONFIG_PREEMPT_RCU_TRACE is not set 134 # CONFIG_FREEZER is not set 135 136 # ··· 136 CONFIG_CPU_SH4A=y 137 CONFIG_CPU_SHX2=y 138 # CONFIG_CPU_SUBTYPE_SH7619 is not set 139 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 140 # CONFIG_CPU_SUBTYPE_SH7203 is not set 141 # CONFIG_CPU_SUBTYPE_SH7206 is not set 142 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 206 CONFIG_PAGEFLAGS_EXTENDED=y 207 CONFIG_SPLIT_PTLOCK_CPUS=4 208 CONFIG_MIGRATION=y 209 # CONFIG_PHYS_ADDR_T_64BIT is not set 210 CONFIG_ZONE_DMA_FLAG=0 211 CONFIG_NR_QUICK=2 ··· 285 # CONFIG_PREEMPT_NONE is not set 286 # CONFIG_PREEMPT_VOLUNTARY is not set 287 CONFIG_PREEMPT=y 288 CONFIG_GUSA=y 289 290 # ··· 302 CONFIG_SH_PCIDMA_NONCOHERENT=y 303 CONFIG_PCI_AUTO=y 304 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 305 + # CONFIG_PCIEPORTBUS is not set 306 # CONFIG_ARCH_SUPPORTS_MSI is not set 307 CONFIG_PCI_LEGACY=y 308 # CONFIG_PCI_DEBUG is not set ··· 315 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 316 # CONFIG_HAVE_AOUT is not set 317 # CONFIG_BINFMT_MISC is not set 318 + 319 + # 320 + # Power management options (EXPERIMENTAL) 321 + # 322 + # CONFIG_PM is not set 323 + # CONFIG_CPU_IDLE is not set 324 CONFIG_NET=y 325 326 # 327 # Networking options 328 # 329 + CONFIG_COMPAT_NET_DEV_OPS=y 330 CONFIG_PACKET=y 331 # CONFIG_PACKET_MMAP is not set 332 CONFIG_UNIX=y ··· 380 # CONFIG_ECONET is not set 381 # CONFIG_WAN_ROUTER is not set 382 # CONFIG_NET_SCHED is not set 383 + # CONFIG_DCB is not set 384 385 # 386 # Network testing ··· 396 # CONFIG_WIRELESS_OLD_REGULATORY is not set 397 CONFIG_WIRELESS_EXT=y 398 CONFIG_WIRELESS_EXT_SYSFS=y 399 + # CONFIG_LIB80211 is not set 400 # CONFIG_MAC80211 is not set 401 # CONFIG_RFKILL is not set 402 # CONFIG_NET_9P is not set 403 ··· 757 CONFIG_SERIAL_CORE_CONSOLE=y 758 # CONFIG_SERIAL_JSM is not set 759 CONFIG_UNIX98_PTYS=y 760 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 761 CONFIG_LEGACY_PTYS=y 762 CONFIG_LEGACY_PTY_COUNT=256 763 # CONFIG_IPMI_HANDLER is not set ··· 842 # CONFIG_THERMAL is not set 843 # CONFIG_THERMAL_HWMON is not set 844 # CONFIG_WATCHDOG is not set 845 + CONFIG_SSB_POSSIBLE=y 846 847 # 848 # Sonics Silicon Backplane 849 # 850 # CONFIG_SSB is not set 851 852 # ··· 855 # CONFIG_MFD_CORE is not set 856 CONFIG_MFD_SM501=y 857 # CONFIG_HTC_PASIC3 is not set 858 + # CONFIG_TWL4030_CORE is not set 859 # CONFIG_MFD_TMIO is not set 860 + # CONFIG_PMIC_DA903X is not set 861 # CONFIG_MFD_WM8400 is not set 862 # CONFIG_MFD_WM8350_I2C is not set 863 + # CONFIG_REGULATOR is not set 864 865 # 866 # Multimedia devices ··· 889 CONFIG_FB_CFB_COPYAREA=y 890 CONFIG_FB_CFB_IMAGEBLIT=y 891 # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set 892 + CONFIG_FB_SYS_FILLRECT=m 893 + CONFIG_FB_SYS_COPYAREA=m 894 + CONFIG_FB_SYS_IMAGEBLIT=m 895 # CONFIG_FB_FOREIGN_ENDIAN is not set 896 + CONFIG_FB_SYS_FOPS=m 897 + CONFIG_FB_DEFERRED_IO=y 898 # CONFIG_FB_SVGALIB is not set 899 # CONFIG_FB_MACMODES is not set 900 # CONFIG_FB_BACKLIGHT is not set ··· 932 CONFIG_FB_SM501=y 933 # CONFIG_FB_VIRTUAL is not set 934 # CONFIG_FB_METRONOME is not set 935 + # CONFIG_FB_MB862XX is not set 936 # CONFIG_BACKLIGHT_LCD_SUPPORT is not set 937 938 # ··· 976 CONFIG_HID_A4TECH=y 977 CONFIG_HID_APPLE=y 978 CONFIG_HID_BELKIN=y 979 CONFIG_HID_CHERRY=y 980 CONFIG_HID_CHICONY=y 981 CONFIG_HID_CYPRESS=y 982 CONFIG_HID_EZKEY=y 983 CONFIG_HID_GYRATION=y 984 CONFIG_HID_LOGITECH=y ··· 988 # CONFIG_LOGIRUMBLEPAD2_FF is not set 989 CONFIG_HID_MICROSOFT=y 990 CONFIG_HID_MONTEREY=y 991 + # CONFIG_HID_NTRIG is not set 992 CONFIG_HID_PANTHERLORD=y 993 # CONFIG_PANTHERLORD_FF is not set 994 CONFIG_HID_PETALYNX=y 995 CONFIG_HID_SAMSUNG=y 996 CONFIG_HID_SONY=y 997 CONFIG_HID_SUNPLUS=y 998 + # CONFIG_GREENASIA_FF is not set 999 + # CONFIG_HID_TOPSEED is not set 1000 CONFIG_THRUSTMASTER_FF=m 1001 CONFIG_ZEROPLUS_FF=m 1002 CONFIG_USB_SUPPORT=y ··· 1014 # CONFIG_USB_OTG_WHITELIST is not set 1015 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1016 CONFIG_USB_MON=y 1017 + # CONFIG_USB_WUSB is not set 1018 + # CONFIG_USB_WUSB_CBAF is not set 1019 1020 # 1021 # USB Host Controller Drivers ··· 1031 # CONFIG_USB_UHCI_HCD is not set 1032 # CONFIG_USB_SL811_HCD is not set 1033 CONFIG_USB_R8A66597_HCD=y 1034 + # CONFIG_USB_WHCI_HCD is not set 1035 + # CONFIG_USB_HWA_HCD is not set 1036 1037 # 1038 # USB Device Class drivers ··· 1041 # CONFIG_USB_TMC is not set 1042 1043 # 1044 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1045 # 1046 1047 # 1048 + # see USB_STORAGE Help for more information 1049 # 1050 CONFIG_USB_STORAGE=y 1051 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1100 # CONFIG_USB_ISIGHTFW is not set 1101 # CONFIG_USB_VST is not set 1102 # CONFIG_USB_GADGET is not set 1103 + # CONFIG_UWB is not set 1104 # CONFIG_MMC is not set 1105 # CONFIG_MEMSTICK is not set 1106 # CONFIG_NEW_LEDS is not set ··· 1135 # CONFIG_RTC_DRV_M41T80 is not set 1136 # CONFIG_RTC_DRV_S35390A is not set 1137 # CONFIG_RTC_DRV_FM3130 is not set 1138 + # CONFIG_RTC_DRV_RX8581 is not set 1139 1140 # 1141 # SPI RTC drivers ··· 1220 # CONFIG_HUGETLBFS is not set 1221 # CONFIG_HUGETLB_PAGE is not set 1222 # CONFIG_CONFIGFS_FS is not set 1223 + CONFIG_MISC_FILESYSTEMS=y 1224 # CONFIG_ADFS_FS is not set 1225 # CONFIG_AFFS_FS is not set 1226 # CONFIG_HFS_FS is not set ··· 1353 # CONFIG_DEBUG_MEMORY_INIT is not set 1354 # CONFIG_DEBUG_LIST is not set 1355 # CONFIG_DEBUG_SG is not set 1356 + # CONFIG_DEBUG_NOTIFIERS is not set 1357 # CONFIG_FRAME_POINTER is not set 1358 # CONFIG_RCU_TORTURE_TEST is not set 1359 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1361 # CONFIG_FAULT_INJECTION is not set 1362 # CONFIG_LATENCYTOP is not set 1363 CONFIG_SYSCTL_SYSCALL_CHECK=y 1364 + CONFIG_HAVE_FUNCTION_TRACER=y 1365 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1366 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1367 + 1368 + # 1369 + # Tracers 1370 + # 1371 + # CONFIG_FUNCTION_TRACER is not set 1372 # CONFIG_IRQSOFF_TRACER is not set 1373 # CONFIG_PREEMPT_TRACER is not set 1374 # CONFIG_SCHED_TRACER is not set 1375 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1376 # CONFIG_BOOT_TRACER is not set 1377 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1378 # CONFIG_STACK_TRACER is not set 1379 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1380 # CONFIG_SAMPLES is not set 1381 + CONFIG_HAVE_ARCH_KGDB=y 1382 + # CONFIG_KGDB is not set 1383 # CONFIG_SH_STANDARD_BIOS is not set 1384 # CONFIG_EARLY_SCIF_CONSOLE is not set 1385 # CONFIG_DEBUG_BOOTMEM is not set ··· 1379 # CONFIG_DEBUG_STACK_USAGE is not set 1380 # CONFIG_4KSTACKS is not set 1381 # CONFIG_IRQSTACKS is not set 1382 + # CONFIG_DUMP_CODE is not set 1383 + # CONFIG_SH_NO_BSS_INIT is not set 1384 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1385 1386 # 1387 # Security options ··· 1395 # 1396 # CONFIG_CRYPTO_FIPS is not set 1397 CONFIG_CRYPTO_ALGAPI=y 1398 + CONFIG_CRYPTO_ALGAPI2=y 1399 + CONFIG_CRYPTO_AEAD2=y 1400 CONFIG_CRYPTO_BLKCIPHER=y 1401 + CONFIG_CRYPTO_BLKCIPHER2=y 1402 CONFIG_CRYPTO_HASH=y 1403 + CONFIG_CRYPTO_HASH2=y 1404 + CONFIG_CRYPTO_RNG2=y 1405 CONFIG_CRYPTO_MANAGER=y 1406 + CONFIG_CRYPTO_MANAGER2=y 1407 # CONFIG_CRYPTO_GF128MUL is not set 1408 # CONFIG_CRYPTO_NULL is not set 1409 # CONFIG_CRYPTO_CRYPTD is not set ··· 1482 # Library routines 1483 # 1484 CONFIG_BITREVERSE=y 1485 + CONFIG_GENERIC_FIND_LAST_BIT=y 1486 # CONFIG_CRC_CCITT is not set 1487 # CONFIG_CRC16 is not set 1488 # CONFIG_CRC_T10DIF is not set
+36 -18
arch/sh/configs/shmin_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:52:59 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 CONFIG_STACKTRACE_SUPPORT=y 19 CONFIG_LOCKDEP_SUPPORT=y 20 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 67 # CONFIG_SHMEM is not set 68 CONFIG_AIO=y 69 CONFIG_VM_EVENT_COUNTERS=y 70 - CONFIG_PCI_QUIRKS=y 71 # CONFIG_SLAB is not set 72 # CONFIG_SLUB is not set 73 CONFIG_SLOB=y 74 # CONFIG_PROFILING is not set 75 - # CONFIG_MARKERS is not set 76 CONFIG_HAVE_OPROFILE=y 77 CONFIG_HAVE_IOREMAP_PROT=y 78 CONFIG_HAVE_KPROBES=y ··· 78 CONFIG_HAVE_ARCH_TRACEHOOK=y 79 CONFIG_HAVE_CLK=y 80 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 81 - CONFIG_TINY_SHMEM=y 82 CONFIG_BASE_SMALL=1 83 # CONFIG_MODULES is not set 84 CONFIG_BLOCK=y 85 # CONFIG_LBD is not set 86 - # CONFIG_LSF is not set 87 # CONFIG_BLK_DEV_BSG is not set 88 # CONFIG_BLK_DEV_INTEGRITY is not set 89 ··· 98 CONFIG_DEFAULT_NOOP=y 99 CONFIG_DEFAULT_IOSCHED="noop" 100 CONFIG_CLASSIC_RCU=y 101 # CONFIG_FREEZER is not set 102 103 # ··· 109 # 110 CONFIG_CPU_SH3=y 111 # CONFIG_CPU_SUBTYPE_SH7619 is not set 112 # CONFIG_CPU_SUBTYPE_SH7203 is not set 113 # CONFIG_CPU_SUBTYPE_SH7206 is not set 114 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 173 CONFIG_SPARSEMEM_STATIC=y 174 CONFIG_PAGEFLAGS_EXTENDED=y 175 CONFIG_SPLIT_PTLOCK_CPUS=4 176 - # CONFIG_RESOURCES_64BIT is not set 177 # CONFIG_PHYS_ADDR_T_64BIT is not set 178 CONFIG_ZONE_DMA_FLAG=0 179 CONFIG_NR_QUICK=2 ··· 270 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 271 # CONFIG_HAVE_AOUT is not set 272 # CONFIG_BINFMT_MISC is not set 273 CONFIG_NET=y 274 275 # 276 # Networking options 277 # 278 # CONFIG_PACKET is not set 279 CONFIG_UNIX=y 280 CONFIG_XFRM=y ··· 336 # CONFIG_ECONET is not set 337 # CONFIG_WAN_ROUTER is not set 338 # CONFIG_NET_SCHED is not set 339 340 # 341 # Network testing ··· 352 # CONFIG_CFG80211 is not set 353 # CONFIG_WIRELESS_OLD_REGULATORY is not set 354 # CONFIG_WIRELESS_EXT is not set 355 # CONFIG_MAC80211 is not set 356 - # CONFIG_IEEE80211 is not set 357 # CONFIG_RFKILL is not set 358 # CONFIG_NET_9P is not set 359 ··· 458 CONFIG_MISC_DEVICES=y 459 # CONFIG_EEPROM_93CX6 is not set 460 # CONFIG_ENCLOSURE_SERVICES is not set 461 CONFIG_HAVE_IDE=y 462 # CONFIG_IDE is not set 463 ··· 485 # CONFIG_STNIC is not set 486 # CONFIG_SMC91X is not set 487 # CONFIG_SMC911X is not set 488 # CONFIG_IBM_NEW_EMAC_ZMII is not set 489 # CONFIG_IBM_NEW_EMAC_RGMII is not set 490 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 544 CONFIG_SERIAL_CORE=y 545 CONFIG_SERIAL_CORE_CONSOLE=y 546 CONFIG_UNIX98_PTYS=y 547 CONFIG_LEGACY_PTYS=y 548 CONFIG_LEGACY_PTY_COUNT=256 549 # CONFIG_IPMI_HANDLER is not set ··· 560 # CONFIG_THERMAL is not set 561 # CONFIG_THERMAL_HWMON is not set 562 # CONFIG_WATCHDOG is not set 563 564 # 565 # Sonics Silicon Backplane 566 # 567 - CONFIG_SSB_POSSIBLE=y 568 # CONFIG_SSB is not set 569 570 # ··· 574 # CONFIG_MFD_SM501 is not set 575 # CONFIG_HTC_PASIC3 is not set 576 # CONFIG_MFD_TMIO is not set 577 - # CONFIG_MFD_WM8400 is not set 578 579 # 580 # Multimedia devices ··· 618 # 619 620 # 621 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 622 # 623 # CONFIG_USB_GADGET is not set 624 # CONFIG_MMC is not set ··· 673 # CONFIG_TMPFS_POSIX_ACL is not set 674 # CONFIG_HUGETLBFS is not set 675 # CONFIG_HUGETLB_PAGE is not set 676 - 677 - # 678 - # Miscellaneous filesystems 679 - # 680 # CONFIG_ADFS_FS is not set 681 # CONFIG_AFFS_FS is not set 682 # CONFIG_HFS_FS is not set ··· 733 # CONFIG_DEBUG_MEMORY_INIT is not set 734 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 735 # CONFIG_LATENCYTOP is not set 736 - CONFIG_NOP_TRACER=y 737 - CONFIG_HAVE_FTRACE=y 738 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 739 # CONFIG_SAMPLES is not set 740 CONFIG_SH_STANDARD_BIOS=y 741 # CONFIG_EARLY_SCIF_CONSOLE is not set 742 CONFIG_EARLY_PRINTK=y 743 - # CONFIG_SH_KGDB is not set 744 745 # 746 # Security options ··· 761 # 762 # CONFIG_CRYPTO_FIPS is not set 763 # CONFIG_CRYPTO_MANAGER is not set 764 # CONFIG_CRYPTO_GF128MUL is not set 765 # CONFIG_CRYPTO_NULL is not set 766 # CONFIG_CRYPTO_CRYPTD is not set ··· 843 # Library routines 844 # 845 CONFIG_BITREVERSE=y 846 # CONFIG_CRC_CCITT is not set 847 # CONFIG_CRC16 is not set 848 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:09:00 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 15 # CONFIG_GENERIC_GPIO is not set 16 CONFIG_GENERIC_TIME=y 17 CONFIG_GENERIC_CLOCKEVENTS=y 18 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 19 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y 22 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 65 # CONFIG_SHMEM is not set 66 CONFIG_AIO=y 67 CONFIG_VM_EVENT_COUNTERS=y 68 # CONFIG_SLAB is not set 69 # CONFIG_SLUB is not set 70 CONFIG_SLOB=y 71 # CONFIG_PROFILING is not set 72 CONFIG_HAVE_OPROFILE=y 73 CONFIG_HAVE_IOREMAP_PROT=y 74 CONFIG_HAVE_KPROBES=y ··· 78 CONFIG_HAVE_ARCH_TRACEHOOK=y 79 CONFIG_HAVE_CLK=y 80 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 81 CONFIG_BASE_SMALL=1 82 # CONFIG_MODULES is not set 83 CONFIG_BLOCK=y 84 # CONFIG_LBD is not set 85 # CONFIG_BLK_DEV_BSG is not set 86 # CONFIG_BLK_DEV_INTEGRITY is not set 87 ··· 100 CONFIG_DEFAULT_NOOP=y 101 CONFIG_DEFAULT_IOSCHED="noop" 102 CONFIG_CLASSIC_RCU=y 103 + # CONFIG_TREE_RCU is not set 104 + # CONFIG_PREEMPT_RCU is not set 105 + # CONFIG_TREE_RCU_TRACE is not set 106 + # CONFIG_PREEMPT_RCU_TRACE is not set 107 # CONFIG_FREEZER is not set 108 109 # ··· 107 # 108 CONFIG_CPU_SH3=y 109 # CONFIG_CPU_SUBTYPE_SH7619 is not set 110 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 111 # CONFIG_CPU_SUBTYPE_SH7203 is not set 112 # CONFIG_CPU_SUBTYPE_SH7206 is not set 113 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 170 CONFIG_SPARSEMEM_STATIC=y 171 CONFIG_PAGEFLAGS_EXTENDED=y 172 CONFIG_SPLIT_PTLOCK_CPUS=4 173 # CONFIG_PHYS_ADDR_T_64BIT is not set 174 CONFIG_ZONE_DMA_FLAG=0 175 CONFIG_NR_QUICK=2 ··· 268 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 269 # CONFIG_HAVE_AOUT is not set 270 # CONFIG_BINFMT_MISC is not set 271 + 272 + # 273 + # Power management options (EXPERIMENTAL) 274 + # 275 + # CONFIG_PM is not set 276 + # CONFIG_CPU_IDLE is not set 277 CONFIG_NET=y 278 279 # 280 # Networking options 281 # 282 + CONFIG_COMPAT_NET_DEV_OPS=y 283 # CONFIG_PACKET is not set 284 CONFIG_UNIX=y 285 CONFIG_XFRM=y ··· 327 # CONFIG_ECONET is not set 328 # CONFIG_WAN_ROUTER is not set 329 # CONFIG_NET_SCHED is not set 330 + # CONFIG_DCB is not set 331 332 # 333 # Network testing ··· 342 # CONFIG_CFG80211 is not set 343 # CONFIG_WIRELESS_OLD_REGULATORY is not set 344 # CONFIG_WIRELESS_EXT is not set 345 + # CONFIG_LIB80211 is not set 346 # CONFIG_MAC80211 is not set 347 # CONFIG_RFKILL is not set 348 # CONFIG_NET_9P is not set 349 ··· 448 CONFIG_MISC_DEVICES=y 449 # CONFIG_EEPROM_93CX6 is not set 450 # CONFIG_ENCLOSURE_SERVICES is not set 451 + # CONFIG_C2PORT is not set 452 CONFIG_HAVE_IDE=y 453 # CONFIG_IDE is not set 454 ··· 474 # CONFIG_STNIC is not set 475 # CONFIG_SMC91X is not set 476 # CONFIG_SMC911X is not set 477 + # CONFIG_SMSC911X is not set 478 # CONFIG_IBM_NEW_EMAC_ZMII is not set 479 # CONFIG_IBM_NEW_EMAC_RGMII is not set 480 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 532 CONFIG_SERIAL_CORE=y 533 CONFIG_SERIAL_CORE_CONSOLE=y 534 CONFIG_UNIX98_PTYS=y 535 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 536 CONFIG_LEGACY_PTYS=y 537 CONFIG_LEGACY_PTY_COUNT=256 538 # CONFIG_IPMI_HANDLER is not set ··· 547 # CONFIG_THERMAL is not set 548 # CONFIG_THERMAL_HWMON is not set 549 # CONFIG_WATCHDOG is not set 550 + CONFIG_SSB_POSSIBLE=y 551 552 # 553 # Sonics Silicon Backplane 554 # 555 # CONFIG_SSB is not set 556 557 # ··· 561 # CONFIG_MFD_SM501 is not set 562 # CONFIG_HTC_PASIC3 is not set 563 # CONFIG_MFD_TMIO is not set 564 + # CONFIG_REGULATOR is not set 565 566 # 567 # Multimedia devices ··· 605 # 606 607 # 608 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 609 # 610 # CONFIG_USB_GADGET is not set 611 # CONFIG_MMC is not set ··· 660 # CONFIG_TMPFS_POSIX_ACL is not set 661 # CONFIG_HUGETLBFS is not set 662 # CONFIG_HUGETLB_PAGE is not set 663 + CONFIG_MISC_FILESYSTEMS=y 664 # CONFIG_ADFS_FS is not set 665 # CONFIG_AFFS_FS is not set 666 # CONFIG_HFS_FS is not set ··· 723 # CONFIG_DEBUG_MEMORY_INIT is not set 724 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 725 # CONFIG_LATENCYTOP is not set 726 + CONFIG_HAVE_FUNCTION_TRACER=y 727 + CONFIG_HAVE_DYNAMIC_FTRACE=y 728 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 729 + 730 + # 731 + # Tracers 732 + # 733 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 734 # CONFIG_SAMPLES is not set 735 + CONFIG_HAVE_ARCH_KGDB=y 736 CONFIG_SH_STANDARD_BIOS=y 737 # CONFIG_EARLY_SCIF_CONSOLE is not set 738 CONFIG_EARLY_PRINTK=y 739 + # CONFIG_MORE_COMPILE_OPTIONS is not set 740 741 # 742 # Security options ··· 745 # 746 # CONFIG_CRYPTO_FIPS is not set 747 # CONFIG_CRYPTO_MANAGER is not set 748 + # CONFIG_CRYPTO_MANAGER2 is not set 749 # CONFIG_CRYPTO_GF128MUL is not set 750 # CONFIG_CRYPTO_NULL is not set 751 # CONFIG_CRYPTO_CRYPTD is not set ··· 826 # Library routines 827 # 828 CONFIG_BITREVERSE=y 829 + CONFIG_GENERIC_FIND_LAST_BIT=y 830 # CONFIG_CRC_CCITT is not set 831 # CONFIG_CRC16 is not set 832 # CONFIG_CRC_T10DIF is not set
+57 -20
arch/sh/configs/shx3_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Tue Oct 21 12:16:25 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y 20 CONFIG_GENERIC_LOCKBREAK=y 21 CONFIG_SYS_SUPPORTS_SMP=y 22 CONFIG_SYS_SUPPORTS_NUMA=y 23 CONFIG_STACKTRACE_SUPPORT=y ··· 81 CONFIG_SYSCTL_SYSCALL=y 82 CONFIG_KALLSYMS=y 83 CONFIG_KALLSYMS_ALL=y 84 # CONFIG_KALLSYMS_EXTRA_PASS is not set 85 CONFIG_HOTPLUG=y 86 CONFIG_PRINTK=y ··· 98 CONFIG_SHMEM=y 99 CONFIG_AIO=y 100 CONFIG_VM_EVENT_COUNTERS=y 101 - CONFIG_PCI_QUIRKS=y 102 # CONFIG_SLAB is not set 103 # CONFIG_SLUB is not set 104 CONFIG_SLOB=y 105 CONFIG_PROFILING=y 106 # CONFIG_MARKERS is not set 107 CONFIG_OPROFILE=y 108 CONFIG_HAVE_OPROFILE=y ··· 116 CONFIG_HAVE_CLK=y 117 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 118 CONFIG_RT_MUTEXES=y 119 - # CONFIG_TINY_SHMEM is not set 120 CONFIG_BASE_SMALL=0 121 CONFIG_MODULES=y 122 # CONFIG_MODULE_FORCE_LOAD is not set ··· 123 # CONFIG_MODULE_FORCE_UNLOAD is not set 124 # CONFIG_MODVERSIONS is not set 125 # CONFIG_MODULE_SRCVERSION_ALL is not set 126 - CONFIG_KMOD=y 127 CONFIG_STOP_MACHINE=y 128 CONFIG_BLOCK=y 129 # CONFIG_LBD is not set 130 # CONFIG_BLK_DEV_IO_TRACE is not set 131 - # CONFIG_LSF is not set 132 # CONFIG_BLK_DEV_BSG is not set 133 # CONFIG_BLK_DEV_INTEGRITY is not set 134 ··· 143 # CONFIG_DEFAULT_NOOP is not set 144 CONFIG_DEFAULT_IOSCHED="anticipatory" 145 # CONFIG_CLASSIC_RCU is not set 146 CONFIG_FREEZER=y 147 148 # ··· 157 CONFIG_CPU_SH4A=y 158 CONFIG_CPU_SHX3=y 159 # CONFIG_CPU_SUBTYPE_SH7619 is not set 160 # CONFIG_CPU_SUBTYPE_SH7203 is not set 161 # CONFIG_CPU_SUBTYPE_SH7206 is not set 162 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 236 CONFIG_MEMORY_HOTREMOVE=y 237 CONFIG_SPLIT_PTLOCK_CPUS=4 238 CONFIG_MIGRATION=y 239 - # CONFIG_RESOURCES_64BIT is not set 240 # CONFIG_PHYS_ADDR_T_64BIT is not set 241 CONFIG_ZONE_DMA_FLAG=0 242 CONFIG_NR_QUICK=2 ··· 328 # CONFIG_PREEMPT_NONE is not set 329 # CONFIG_PREEMPT_VOLUNTARY is not set 330 CONFIG_PREEMPT=y 331 - CONFIG_PREEMPT_RCU=y 332 - CONFIG_RCU_TRACE=y 333 334 # 335 # Boot options ··· 350 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 351 # CONFIG_HAVE_AOUT is not set 352 CONFIG_BINFMT_MISC=y 353 CONFIG_NET=y 354 355 # 356 # Networking options 357 # 358 # CONFIG_PACKET is not set 359 # CONFIG_UNIX is not set 360 CONFIG_XFRM=y ··· 435 # CONFIG_ECONET is not set 436 # CONFIG_WAN_ROUTER is not set 437 # CONFIG_NET_SCHED is not set 438 439 # 440 # Network testing ··· 491 # CONFIG_BLK_DEV_HD is not set 492 CONFIG_MISC_DEVICES=y 493 # CONFIG_EEPROM_93CX6 is not set 494 # CONFIG_ENCLOSURE_SERVICES is not set 495 CONFIG_HAVE_IDE=y 496 # CONFIG_IDE is not set 497 ··· 536 # CONFIG_SCSI_SRP_ATTRS is not set 537 CONFIG_SCSI_LOWLEVEL=y 538 # CONFIG_ISCSI_TCP is not set 539 # CONFIG_SCSI_DEBUG is not set 540 # CONFIG_SCSI_DH is not set 541 CONFIG_ATA=y ··· 561 CONFIG_SMC91X=y 562 # CONFIG_ENC28J60 is not set 563 # CONFIG_SMC911X is not set 564 # CONFIG_IBM_NEW_EMAC_ZMII is not set 565 # CONFIG_IBM_NEW_EMAC_RGMII is not set 566 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 629 CONFIG_SERIAL_CORE=y 630 CONFIG_SERIAL_CORE_CONSOLE=y 631 CONFIG_UNIX98_PTYS=y 632 CONFIG_LEGACY_PTYS=y 633 CONFIG_LEGACY_PTY_COUNT=256 634 # CONFIG_IPMI_HANDLER is not set ··· 716 # USB-based Watchdog Cards 717 # 718 # CONFIG_USBPCWATCHDOG is not set 719 720 # 721 # Sonics Silicon Backplane 722 # 723 - CONFIG_SSB_POSSIBLE=y 724 # CONFIG_SSB is not set 725 726 # ··· 732 # CONFIG_MFD_TMIO is not set 733 # CONFIG_MFD_WM8400 is not set 734 # CONFIG_MFD_WM8350_I2C is not set 735 736 # 737 # Multimedia devices ··· 781 # CONFIG_USB_OTG_WHITELIST is not set 782 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 783 CONFIG_USB_MON=y 784 785 # 786 # USB Host Controller Drivers 787 # 788 # CONFIG_USB_C67X00_HCD is not set 789 # CONFIG_USB_ISP116X_HCD is not set 790 - # CONFIG_USB_ISP1760_HCD is not set 791 # CONFIG_USB_SL811_HCD is not set 792 CONFIG_USB_R8A66597_HCD=m 793 # CONFIG_USB_GADGET_MUSB_HDRC is not set 794 795 # ··· 803 # CONFIG_USB_TMC is not set 804 805 # 806 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 807 # 808 809 # 810 - # may also be needed; see USB_STORAGE Help for more information 811 # 812 # CONFIG_USB_STORAGE is not set 813 # CONFIG_USB_LIBUSUAL is not set ··· 910 # CONFIG_RTC_DRV_M41T80 is not set 911 # CONFIG_RTC_DRV_S35390A is not set 912 # CONFIG_RTC_DRV_FM3130 is not set 913 914 # 915 # SPI RTC drivers 916 # 917 # CONFIG_RTC_DRV_M41T94 is not set 918 # CONFIG_RTC_DRV_DS1305 is not set 919 # CONFIG_RTC_DRV_MAX6902 is not set 920 # CONFIG_RTC_DRV_R9701 is not set 921 # CONFIG_RTC_DRV_RS5C348 is not set ··· 1003 CONFIG_HUGETLBFS=y 1004 CONFIG_HUGETLB_PAGE=y 1005 # CONFIG_CONFIGFS_FS is not set 1006 - 1007 - # 1008 - # Miscellaneous filesystems 1009 - # 1010 # CONFIG_ADFS_FS is not set 1011 # CONFIG_AFFS_FS is not set 1012 # CONFIG_HFS_FS is not set ··· 1068 # CONFIG_LOCK_STAT is not set 1069 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1070 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1071 # CONFIG_DEBUG_KOBJECT is not set 1072 CONFIG_DEBUG_BUGVERBOSE=y 1073 # CONFIG_DEBUG_INFO is not set ··· 1077 # CONFIG_DEBUG_MEMORY_INIT is not set 1078 # CONFIG_DEBUG_LIST is not set 1079 # CONFIG_DEBUG_SG is not set 1080 CONFIG_FRAME_POINTER=y 1081 # CONFIG_RCU_TORTURE_TEST is not set 1082 # CONFIG_KPROBES_SANITY_TEST is not set ··· 1087 # CONFIG_FAULT_INJECTION is not set 1088 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1089 CONFIG_NOP_TRACER=y 1090 - CONFIG_HAVE_FTRACE=y 1091 - # CONFIG_FTRACE is not set 1092 # CONFIG_IRQSOFF_TRACER is not set 1093 # CONFIG_PREEMPT_TRACER is not set 1094 # CONFIG_SCHED_TRACER is not set 1095 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1096 # CONFIG_BOOT_TRACER is not set 1097 # CONFIG_STACK_TRACER is not set 1098 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1099 # CONFIG_SAMPLES is not set 1100 CONFIG_SH_STANDARD_BIOS=y 1101 # CONFIG_EARLY_SCIF_CONSOLE is not set 1102 CONFIG_EARLY_PRINTK=y ··· 1116 CONFIG_DEBUG_STACKOVERFLOW=y 1117 CONFIG_DEBUG_STACK_USAGE=y 1118 # CONFIG_IRQSTACKS is not set 1119 - # CONFIG_SH_KGDB is not set 1120 1121 # 1122 # Security options ··· 1134 # 1135 # CONFIG_CRYPTO_FIPS is not set 1136 # CONFIG_CRYPTO_MANAGER is not set 1137 # CONFIG_CRYPTO_GF128MUL is not set 1138 # CONFIG_CRYPTO_NULL is not set 1139 # CONFIG_CRYPTO_CRYPTD is not set ··· 1217 # Library routines 1218 # 1219 CONFIG_BITREVERSE=y 1220 # CONFIG_CRC_CCITT is not set 1221 # CONFIG_CRC16 is not set 1222 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:10:57 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y 20 CONFIG_GENERIC_LOCKBREAK=y 21 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 22 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 23 CONFIG_SYS_SUPPORTS_SMP=y 24 CONFIG_SYS_SUPPORTS_NUMA=y 25 CONFIG_STACKTRACE_SUPPORT=y ··· 79 CONFIG_SYSCTL_SYSCALL=y 80 CONFIG_KALLSYMS=y 81 CONFIG_KALLSYMS_ALL=y 82 + CONFIG_KALLSYMS_STRIP_GENERATED=y 83 # CONFIG_KALLSYMS_EXTRA_PASS is not set 84 CONFIG_HOTPLUG=y 85 CONFIG_PRINTK=y ··· 95 CONFIG_SHMEM=y 96 CONFIG_AIO=y 97 CONFIG_VM_EVENT_COUNTERS=y 98 # CONFIG_SLAB is not set 99 # CONFIG_SLUB is not set 100 CONFIG_SLOB=y 101 CONFIG_PROFILING=y 102 + CONFIG_TRACEPOINTS=y 103 # CONFIG_MARKERS is not set 104 CONFIG_OPROFILE=y 105 CONFIG_HAVE_OPROFILE=y ··· 113 CONFIG_HAVE_CLK=y 114 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 115 CONFIG_RT_MUTEXES=y 116 CONFIG_BASE_SMALL=0 117 CONFIG_MODULES=y 118 # CONFIG_MODULE_FORCE_LOAD is not set ··· 121 # CONFIG_MODULE_FORCE_UNLOAD is not set 122 # CONFIG_MODVERSIONS is not set 123 # CONFIG_MODULE_SRCVERSION_ALL is not set 124 CONFIG_STOP_MACHINE=y 125 CONFIG_BLOCK=y 126 # CONFIG_LBD is not set 127 # CONFIG_BLK_DEV_IO_TRACE is not set 128 # CONFIG_BLK_DEV_BSG is not set 129 # CONFIG_BLK_DEV_INTEGRITY is not set 130 ··· 143 # CONFIG_DEFAULT_NOOP is not set 144 CONFIG_DEFAULT_IOSCHED="anticipatory" 145 # CONFIG_CLASSIC_RCU is not set 146 + # CONFIG_TREE_RCU is not set 147 + CONFIG_PREEMPT_RCU=y 148 + CONFIG_RCU_TRACE=y 149 + # CONFIG_TREE_RCU_TRACE is not set 150 + CONFIG_PREEMPT_RCU_TRACE=y 151 CONFIG_FREEZER=y 152 153 # ··· 152 CONFIG_CPU_SH4A=y 153 CONFIG_CPU_SHX3=y 154 # CONFIG_CPU_SUBTYPE_SH7619 is not set 155 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 156 # CONFIG_CPU_SUBTYPE_SH7203 is not set 157 # CONFIG_CPU_SUBTYPE_SH7206 is not set 158 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 230 CONFIG_MEMORY_HOTREMOVE=y 231 CONFIG_SPLIT_PTLOCK_CPUS=4 232 CONFIG_MIGRATION=y 233 # CONFIG_PHYS_ADDR_T_64BIT is not set 234 CONFIG_ZONE_DMA_FLAG=0 235 CONFIG_NR_QUICK=2 ··· 323 # CONFIG_PREEMPT_NONE is not set 324 # CONFIG_PREEMPT_VOLUNTARY is not set 325 CONFIG_PREEMPT=y 326 327 # 328 # Boot options ··· 347 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 348 # CONFIG_HAVE_AOUT is not set 349 CONFIG_BINFMT_MISC=y 350 + 351 + # 352 + # Power management options (EXPERIMENTAL) 353 + # 354 + # CONFIG_PM is not set 355 + # CONFIG_CPU_IDLE is not set 356 CONFIG_NET=y 357 358 # 359 # Networking options 360 # 361 + # CONFIG_NET_NS is not set 362 + CONFIG_COMPAT_NET_DEV_OPS=y 363 # CONFIG_PACKET is not set 364 # CONFIG_UNIX is not set 365 CONFIG_XFRM=y ··· 424 # CONFIG_ECONET is not set 425 # CONFIG_WAN_ROUTER is not set 426 # CONFIG_NET_SCHED is not set 427 + # CONFIG_DCB is not set 428 429 # 430 # Network testing ··· 479 # CONFIG_BLK_DEV_HD is not set 480 CONFIG_MISC_DEVICES=y 481 # CONFIG_EEPROM_93CX6 is not set 482 + # CONFIG_ICS932S401 is not set 483 # CONFIG_ENCLOSURE_SERVICES is not set 484 + # CONFIG_C2PORT is not set 485 CONFIG_HAVE_IDE=y 486 # CONFIG_IDE is not set 487 ··· 522 # CONFIG_SCSI_SRP_ATTRS is not set 523 CONFIG_SCSI_LOWLEVEL=y 524 # CONFIG_ISCSI_TCP is not set 525 + # CONFIG_LIBFC is not set 526 # CONFIG_SCSI_DEBUG is not set 527 # CONFIG_SCSI_DH is not set 528 CONFIG_ATA=y ··· 546 CONFIG_SMC91X=y 547 # CONFIG_ENC28J60 is not set 548 # CONFIG_SMC911X is not set 549 + # CONFIG_SMSC911X is not set 550 # CONFIG_IBM_NEW_EMAC_ZMII is not set 551 # CONFIG_IBM_NEW_EMAC_RGMII is not set 552 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 613 CONFIG_SERIAL_CORE=y 614 CONFIG_SERIAL_CORE_CONSOLE=y 615 CONFIG_UNIX98_PTYS=y 616 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 617 CONFIG_LEGACY_PTYS=y 618 CONFIG_LEGACY_PTY_COUNT=256 619 # CONFIG_IPMI_HANDLER is not set ··· 699 # USB-based Watchdog Cards 700 # 701 # CONFIG_USBPCWATCHDOG is not set 702 + CONFIG_SSB_POSSIBLE=y 703 704 # 705 # Sonics Silicon Backplane 706 # 707 # CONFIG_SSB is not set 708 709 # ··· 715 # CONFIG_MFD_TMIO is not set 716 # CONFIG_MFD_WM8400 is not set 717 # CONFIG_MFD_WM8350_I2C is not set 718 + # CONFIG_REGULATOR is not set 719 720 # 721 # Multimedia devices ··· 763 # CONFIG_USB_OTG_WHITELIST is not set 764 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 765 CONFIG_USB_MON=y 766 + # CONFIG_USB_WUSB is not set 767 + # CONFIG_USB_WUSB_CBAF is not set 768 769 # 770 # USB Host Controller Drivers 771 # 772 # CONFIG_USB_C67X00_HCD is not set 773 # CONFIG_USB_ISP116X_HCD is not set 774 # CONFIG_USB_SL811_HCD is not set 775 CONFIG_USB_R8A66597_HCD=m 776 + # CONFIG_USB_HWA_HCD is not set 777 # CONFIG_USB_GADGET_MUSB_HDRC is not set 778 779 # ··· 783 # CONFIG_USB_TMC is not set 784 785 # 786 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 787 # 788 789 # 790 + # see USB_STORAGE Help for more information 791 # 792 # CONFIG_USB_STORAGE is not set 793 # CONFIG_USB_LIBUSUAL is not set ··· 890 # CONFIG_RTC_DRV_M41T80 is not set 891 # CONFIG_RTC_DRV_S35390A is not set 892 # CONFIG_RTC_DRV_FM3130 is not set 893 + # CONFIG_RTC_DRV_RX8581 is not set 894 895 # 896 # SPI RTC drivers 897 # 898 # CONFIG_RTC_DRV_M41T94 is not set 899 # CONFIG_RTC_DRV_DS1305 is not set 900 + # CONFIG_RTC_DRV_DS1390 is not set 901 # CONFIG_RTC_DRV_MAX6902 is not set 902 # CONFIG_RTC_DRV_R9701 is not set 903 # CONFIG_RTC_DRV_RS5C348 is not set ··· 981 CONFIG_HUGETLBFS=y 982 CONFIG_HUGETLB_PAGE=y 983 # CONFIG_CONFIGFS_FS is not set 984 + CONFIG_MISC_FILESYSTEMS=y 985 # CONFIG_ADFS_FS is not set 986 # CONFIG_AFFS_FS is not set 987 # CONFIG_HFS_FS is not set ··· 1049 # CONFIG_LOCK_STAT is not set 1050 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1051 # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1052 + CONFIG_STACKTRACE=y 1053 # CONFIG_DEBUG_KOBJECT is not set 1054 CONFIG_DEBUG_BUGVERBOSE=y 1055 # CONFIG_DEBUG_INFO is not set ··· 1057 # CONFIG_DEBUG_MEMORY_INIT is not set 1058 # CONFIG_DEBUG_LIST is not set 1059 # CONFIG_DEBUG_SG is not set 1060 + # CONFIG_DEBUG_NOTIFIERS is not set 1061 CONFIG_FRAME_POINTER=y 1062 # CONFIG_RCU_TORTURE_TEST is not set 1063 # CONFIG_KPROBES_SANITY_TEST is not set ··· 1066 # CONFIG_FAULT_INJECTION is not set 1067 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1068 CONFIG_NOP_TRACER=y 1069 + CONFIG_HAVE_FUNCTION_TRACER=y 1070 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1071 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1072 + CONFIG_RING_BUFFER=y 1073 + CONFIG_TRACING=y 1074 + 1075 + # 1076 + # Tracers 1077 + # 1078 + # CONFIG_FUNCTION_TRACER is not set 1079 # CONFIG_IRQSOFF_TRACER is not set 1080 # CONFIG_PREEMPT_TRACER is not set 1081 # CONFIG_SCHED_TRACER is not set 1082 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1083 # CONFIG_BOOT_TRACER is not set 1084 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1085 # CONFIG_STACK_TRACER is not set 1086 + # CONFIG_FTRACE_STARTUP_TEST is not set 1087 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1088 # CONFIG_SAMPLES is not set 1089 + CONFIG_HAVE_ARCH_KGDB=y 1090 + # CONFIG_KGDB is not set 1091 CONFIG_SH_STANDARD_BIOS=y 1092 # CONFIG_EARLY_SCIF_CONSOLE is not set 1093 CONFIG_EARLY_PRINTK=y ··· 1083 CONFIG_DEBUG_STACKOVERFLOW=y 1084 CONFIG_DEBUG_STACK_USAGE=y 1085 # CONFIG_IRQSTACKS is not set 1086 + CONFIG_DUMP_CODE=y 1087 + # CONFIG_SH_NO_BSS_INIT is not set 1088 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1089 1090 # 1091 # Security options ··· 1099 # 1100 # CONFIG_CRYPTO_FIPS is not set 1101 # CONFIG_CRYPTO_MANAGER is not set 1102 + # CONFIG_CRYPTO_MANAGER2 is not set 1103 # CONFIG_CRYPTO_GF128MUL is not set 1104 # CONFIG_CRYPTO_NULL is not set 1105 # CONFIG_CRYPTO_CRYPTD is not set ··· 1181 # Library routines 1182 # 1183 CONFIG_BITREVERSE=y 1184 + CONFIG_GENERIC_FIND_LAST_BIT=y 1185 # CONFIG_CRC_CCITT is not set 1186 # CONFIG_CRC16 is not set 1187 # CONFIG_CRC_T10DIF is not set
+36 -17
arch/sh/configs/snapgear_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:55:03 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 78 # CONFIG_SLUB is not set 79 # CONFIG_SLOB is not set 80 # CONFIG_PROFILING is not set 81 - # CONFIG_MARKERS is not set 82 CONFIG_HAVE_OPROFILE=y 83 CONFIG_HAVE_IOREMAP_PROT=y 84 CONFIG_HAVE_KPROBES=y ··· 87 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 88 CONFIG_SLABINFO=y 89 CONFIG_RT_MUTEXES=y 90 - # CONFIG_TINY_SHMEM is not set 91 CONFIG_BASE_SMALL=0 92 # CONFIG_MODULES is not set 93 CONFIG_BLOCK=y 94 # CONFIG_LBD is not set 95 # CONFIG_BLK_DEV_IO_TRACE is not set 96 - # CONFIG_LSF is not set 97 # CONFIG_BLK_DEV_BSG is not set 98 # CONFIG_BLK_DEV_INTEGRITY is not set 99 ··· 108 # CONFIG_DEFAULT_NOOP is not set 109 CONFIG_DEFAULT_IOSCHED="anticipatory" 110 CONFIG_CLASSIC_RCU=y 111 # CONFIG_FREEZER is not set 112 113 # ··· 119 # 120 CONFIG_CPU_SH4=y 121 # CONFIG_CPU_SUBTYPE_SH7619 is not set 122 # CONFIG_CPU_SUBTYPE_SH7203 is not set 123 # CONFIG_CPU_SUBTYPE_SH7206 is not set 124 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 183 CONFIG_SPARSEMEM_STATIC=y 184 CONFIG_PAGEFLAGS_EXTENDED=y 185 CONFIG_SPLIT_PTLOCK_CPUS=4 186 - # CONFIG_RESOURCES_64BIT is not set 187 # CONFIG_PHYS_ADDR_T_64BIT is not set 188 CONFIG_ZONE_DMA_FLAG=0 189 CONFIG_NR_QUICK=2 ··· 285 CONFIG_SH_PCIDMA_NONCOHERENT=y 286 CONFIG_PCI_AUTO=y 287 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 288 # CONFIG_ARCH_SUPPORTS_MSI is not set 289 CONFIG_PCI_LEGACY=y 290 ··· 296 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 297 # CONFIG_HAVE_AOUT is not set 298 # CONFIG_BINFMT_MISC is not set 299 CONFIG_NET=y 300 301 # 302 # Networking options 303 # 304 # CONFIG_PACKET is not set 305 # CONFIG_UNIX is not set 306 # CONFIG_NET_KEY is not set ··· 353 # CONFIG_ECONET is not set 354 # CONFIG_WAN_ROUTER is not set 355 # CONFIG_NET_SCHED is not set 356 357 # 358 # Network testing ··· 369 # CONFIG_CFG80211 is not set 370 # CONFIG_WIRELESS_OLD_REGULATORY is not set 371 # CONFIG_WIRELESS_EXT is not set 372 # CONFIG_MAC80211 is not set 373 - # CONFIG_IEEE80211 is not set 374 # CONFIG_RFKILL is not set 375 # CONFIG_NET_9P is not set 376 ··· 527 # CONFIG_NET_VENDOR_3COM is not set 528 # CONFIG_SMC91X is not set 529 # CONFIG_SMC911X is not set 530 # CONFIG_NET_TULIP is not set 531 # CONFIG_HP100 is not set 532 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 543 # CONFIG_ADAPTEC_STARFIRE is not set 544 # CONFIG_B44 is not set 545 # CONFIG_FORCEDETH is not set 546 - # CONFIG_EEPRO100 is not set 547 # CONFIG_E100 is not set 548 # CONFIG_FEALNX is not set 549 # CONFIG_NATSEMI is not set ··· 556 # CONFIG_R6040 is not set 557 # CONFIG_SIS900 is not set 558 # CONFIG_EPIC100 is not set 559 # CONFIG_SUNDANCE is not set 560 # CONFIG_TLAN is not set 561 # CONFIG_VIA_RHINE is not set ··· 637 CONFIG_SERIAL_CORE_CONSOLE=y 638 # CONFIG_SERIAL_JSM is not set 639 CONFIG_UNIX98_PTYS=y 640 CONFIG_LEGACY_PTYS=y 641 CONFIG_LEGACY_PTY_COUNT=256 642 # CONFIG_IPMI_HANDLER is not set ··· 655 # CONFIG_THERMAL is not set 656 # CONFIG_THERMAL_HWMON is not set 657 # CONFIG_WATCHDOG is not set 658 659 # 660 # Sonics Silicon Backplane 661 # 662 - CONFIG_SSB_POSSIBLE=y 663 # CONFIG_SSB is not set 664 665 # ··· 669 # CONFIG_MFD_SM501 is not set 670 # CONFIG_HTC_PASIC3 is not set 671 # CONFIG_MFD_TMIO is not set 672 - # CONFIG_MFD_WM8400 is not set 673 674 # 675 # Multimedia devices ··· 703 # CONFIG_SOUND is not set 704 # CONFIG_HID_SUPPORT is not set 705 # CONFIG_USB_SUPPORT is not set 706 # CONFIG_MMC is not set 707 # CONFIG_MEMSTICK is not set 708 # CONFIG_NEW_LEDS is not set ··· 761 # CONFIG_HUGETLBFS is not set 762 # CONFIG_HUGETLB_PAGE is not set 763 # CONFIG_CONFIGFS_FS is not set 764 - 765 - # 766 - # Miscellaneous filesystems 767 - # 768 # CONFIG_ADFS_FS is not set 769 # CONFIG_AFFS_FS is not set 770 # CONFIG_HFS_FS is not set ··· 813 # CONFIG_DEBUG_MEMORY_INIT is not set 814 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 815 # CONFIG_LATENCYTOP is not set 816 - CONFIG_NOP_TRACER=y 817 - CONFIG_HAVE_FTRACE=y 818 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 819 # CONFIG_SAMPLES is not set 820 # CONFIG_SH_STANDARD_BIOS is not set 821 # CONFIG_EARLY_SCIF_CONSOLE is not set 822 - # CONFIG_SH_KGDB is not set 823 824 # 825 # Security options ··· 840 # Library routines 841 # 842 CONFIG_BITREVERSE=y 843 # CONFIG_CRC_CCITT is not set 844 # CONFIG_CRC16 is not set 845 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:14:08 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 76 # CONFIG_SLUB is not set 77 # CONFIG_SLOB is not set 78 # CONFIG_PROFILING is not set 79 CONFIG_HAVE_OPROFILE=y 80 CONFIG_HAVE_IOREMAP_PROT=y 81 CONFIG_HAVE_KPROBES=y ··· 86 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 87 CONFIG_SLABINFO=y 88 CONFIG_RT_MUTEXES=y 89 CONFIG_BASE_SMALL=0 90 # CONFIG_MODULES is not set 91 CONFIG_BLOCK=y 92 # CONFIG_LBD is not set 93 # CONFIG_BLK_DEV_IO_TRACE is not set 94 # CONFIG_BLK_DEV_BSG is not set 95 # CONFIG_BLK_DEV_INTEGRITY is not set 96 ··· 109 # CONFIG_DEFAULT_NOOP is not set 110 CONFIG_DEFAULT_IOSCHED="anticipatory" 111 CONFIG_CLASSIC_RCU=y 112 + # CONFIG_TREE_RCU is not set 113 + # CONFIG_PREEMPT_RCU is not set 114 + # CONFIG_TREE_RCU_TRACE is not set 115 + # CONFIG_PREEMPT_RCU_TRACE is not set 116 # CONFIG_FREEZER is not set 117 118 # ··· 116 # 117 CONFIG_CPU_SH4=y 118 # CONFIG_CPU_SUBTYPE_SH7619 is not set 119 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 120 # CONFIG_CPU_SUBTYPE_SH7203 is not set 121 # CONFIG_CPU_SUBTYPE_SH7206 is not set 122 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 179 CONFIG_SPARSEMEM_STATIC=y 180 CONFIG_PAGEFLAGS_EXTENDED=y 181 CONFIG_SPLIT_PTLOCK_CPUS=4 182 # CONFIG_PHYS_ADDR_T_64BIT is not set 183 CONFIG_ZONE_DMA_FLAG=0 184 CONFIG_NR_QUICK=2 ··· 282 CONFIG_SH_PCIDMA_NONCOHERENT=y 283 CONFIG_PCI_AUTO=y 284 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 285 + # CONFIG_PCIEPORTBUS is not set 286 # CONFIG_ARCH_SUPPORTS_MSI is not set 287 CONFIG_PCI_LEGACY=y 288 ··· 292 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 293 # CONFIG_HAVE_AOUT is not set 294 # CONFIG_BINFMT_MISC is not set 295 + 296 + # 297 + # Power management options (EXPERIMENTAL) 298 + # 299 + # CONFIG_PM is not set 300 + # CONFIG_CPU_IDLE is not set 301 CONFIG_NET=y 302 303 # 304 # Networking options 305 # 306 + CONFIG_COMPAT_NET_DEV_OPS=y 307 # CONFIG_PACKET is not set 308 # CONFIG_UNIX is not set 309 # CONFIG_NET_KEY is not set ··· 342 # CONFIG_ECONET is not set 343 # CONFIG_WAN_ROUTER is not set 344 # CONFIG_NET_SCHED is not set 345 + # CONFIG_DCB is not set 346 347 # 348 # Network testing ··· 357 # CONFIG_CFG80211 is not set 358 # CONFIG_WIRELESS_OLD_REGULATORY is not set 359 # CONFIG_WIRELESS_EXT is not set 360 + # CONFIG_LIB80211 is not set 361 # CONFIG_MAC80211 is not set 362 # CONFIG_RFKILL is not set 363 # CONFIG_NET_9P is not set 364 ··· 515 # CONFIG_NET_VENDOR_3COM is not set 516 # CONFIG_SMC91X is not set 517 # CONFIG_SMC911X is not set 518 + # CONFIG_SMSC911X is not set 519 # CONFIG_NET_TULIP is not set 520 # CONFIG_HP100 is not set 521 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 530 # CONFIG_ADAPTEC_STARFIRE is not set 531 # CONFIG_B44 is not set 532 # CONFIG_FORCEDETH is not set 533 # CONFIG_E100 is not set 534 # CONFIG_FEALNX is not set 535 # CONFIG_NATSEMI is not set ··· 544 # CONFIG_R6040 is not set 545 # CONFIG_SIS900 is not set 546 # CONFIG_EPIC100 is not set 547 + # CONFIG_SMSC9420 is not set 548 # CONFIG_SUNDANCE is not set 549 # CONFIG_TLAN is not set 550 # CONFIG_VIA_RHINE is not set ··· 624 CONFIG_SERIAL_CORE_CONSOLE=y 625 # CONFIG_SERIAL_JSM is not set 626 CONFIG_UNIX98_PTYS=y 627 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 628 CONFIG_LEGACY_PTYS=y 629 CONFIG_LEGACY_PTY_COUNT=256 630 # CONFIG_IPMI_HANDLER is not set ··· 641 # CONFIG_THERMAL is not set 642 # CONFIG_THERMAL_HWMON is not set 643 # CONFIG_WATCHDOG is not set 644 + CONFIG_SSB_POSSIBLE=y 645 646 # 647 # Sonics Silicon Backplane 648 # 649 # CONFIG_SSB is not set 650 651 # ··· 655 # CONFIG_MFD_SM501 is not set 656 # CONFIG_HTC_PASIC3 is not set 657 # CONFIG_MFD_TMIO is not set 658 + # CONFIG_REGULATOR is not set 659 660 # 661 # Multimedia devices ··· 689 # CONFIG_SOUND is not set 690 # CONFIG_HID_SUPPORT is not set 691 # CONFIG_USB_SUPPORT is not set 692 + # CONFIG_UWB is not set 693 # CONFIG_MMC is not set 694 # CONFIG_MEMSTICK is not set 695 # CONFIG_NEW_LEDS is not set ··· 746 # CONFIG_HUGETLBFS is not set 747 # CONFIG_HUGETLB_PAGE is not set 748 # CONFIG_CONFIGFS_FS is not set 749 + CONFIG_MISC_FILESYSTEMS=y 750 # CONFIG_ADFS_FS is not set 751 # CONFIG_AFFS_FS is not set 752 # CONFIG_HFS_FS is not set ··· 801 # CONFIG_DEBUG_MEMORY_INIT is not set 802 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 803 # CONFIG_LATENCYTOP is not set 804 + CONFIG_HAVE_FUNCTION_TRACER=y 805 + CONFIG_HAVE_DYNAMIC_FTRACE=y 806 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 807 + 808 + # 809 + # Tracers 810 + # 811 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 812 # CONFIG_SAMPLES is not set 813 + CONFIG_HAVE_ARCH_KGDB=y 814 # CONFIG_SH_STANDARD_BIOS is not set 815 # CONFIG_EARLY_SCIF_CONSOLE is not set 816 + # CONFIG_MORE_COMPILE_OPTIONS is not set 817 818 # 819 # Security options ··· 822 # Library routines 823 # 824 CONFIG_BITREVERSE=y 825 + CONFIG_GENERIC_FIND_LAST_BIT=y 826 # CONFIG_CRC_CCITT is not set 827 # CONFIG_CRC16 is not set 828 # CONFIG_CRC_T10DIF is not set
+31 -19
arch/sh/configs/systemh_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:56:48 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_STACKTRACE_SUPPORT=y 20 CONFIG_LOCKDEP_SUPPORT=y 21 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 70 CONFIG_SHMEM=y 71 CONFIG_AIO=y 72 CONFIG_VM_EVENT_COUNTERS=y 73 - CONFIG_PCI_QUIRKS=y 74 CONFIG_SLAB=y 75 # CONFIG_SLUB is not set 76 # CONFIG_SLOB is not set 77 # CONFIG_PROFILING is not set 78 - # CONFIG_MARKERS is not set 79 CONFIG_HAVE_OPROFILE=y 80 # CONFIG_KPROBES is not set 81 CONFIG_HAVE_IOREMAP_PROT=y ··· 84 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 85 CONFIG_SLABINFO=y 86 CONFIG_RT_MUTEXES=y 87 - # CONFIG_TINY_SHMEM is not set 88 CONFIG_BASE_SMALL=0 89 CONFIG_MODULES=y 90 # CONFIG_MODULE_FORCE_LOAD is not set ··· 91 # CONFIG_MODULE_FORCE_UNLOAD is not set 92 # CONFIG_MODVERSIONS is not set 93 # CONFIG_MODULE_SRCVERSION_ALL is not set 94 - CONFIG_KMOD=y 95 CONFIG_BLOCK=y 96 # CONFIG_LBD is not set 97 # CONFIG_BLK_DEV_IO_TRACE is not set 98 - # CONFIG_LSF is not set 99 # CONFIG_BLK_DEV_BSG is not set 100 # CONFIG_BLK_DEV_INTEGRITY is not set 101 ··· 110 # CONFIG_DEFAULT_NOOP is not set 111 CONFIG_DEFAULT_IOSCHED="anticipatory" 112 CONFIG_CLASSIC_RCU=y 113 # CONFIG_FREEZER is not set 114 115 # ··· 121 # 122 CONFIG_CPU_SH4=y 123 # CONFIG_CPU_SUBTYPE_SH7619 is not set 124 # CONFIG_CPU_SUBTYPE_SH7203 is not set 125 # CONFIG_CPU_SUBTYPE_SH7206 is not set 126 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 185 CONFIG_SPARSEMEM_STATIC=y 186 CONFIG_PAGEFLAGS_EXTENDED=y 187 CONFIG_SPLIT_PTLOCK_CPUS=4 188 - # CONFIG_RESOURCES_64BIT is not set 189 # CONFIG_PHYS_ADDR_T_64BIT is not set 190 CONFIG_ZONE_DMA_FLAG=0 191 CONFIG_NR_QUICK=2 ··· 265 # CONFIG_PREEMPT_NONE is not set 266 # CONFIG_PREEMPT_VOLUNTARY is not set 267 CONFIG_PREEMPT=y 268 - # CONFIG_PREEMPT_RCU is not set 269 CONFIG_GUSA=y 270 # CONFIG_GUSA_RB is not set 271 ··· 288 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 289 # CONFIG_HAVE_AOUT is not set 290 # CONFIG_BINFMT_MISC is not set 291 # CONFIG_NET is not set 292 293 # ··· 320 CONFIG_MISC_DEVICES=y 321 # CONFIG_EEPROM_93CX6 is not set 322 # CONFIG_ENCLOSURE_SERVICES is not set 323 CONFIG_HAVE_IDE=y 324 # CONFIG_IDE is not set 325 ··· 367 # 368 # CONFIG_SERIAL_SH_SCI is not set 369 CONFIG_UNIX98_PTYS=y 370 CONFIG_LEGACY_PTYS=y 371 CONFIG_LEGACY_PTY_COUNT=256 372 # CONFIG_IPMI_HANDLER is not set ··· 395 # CONFIG_THERMAL is not set 396 # CONFIG_THERMAL_HWMON is not set 397 # CONFIG_WATCHDOG is not set 398 399 # 400 # Sonics Silicon Backplane 401 # 402 - CONFIG_SSB_POSSIBLE=y 403 # CONFIG_SSB is not set 404 405 # ··· 409 # CONFIG_MFD_SM501 is not set 410 # CONFIG_HTC_PASIC3 is not set 411 # CONFIG_MFD_TMIO is not set 412 - # CONFIG_MFD_WM8400 is not set 413 414 # 415 # Multimedia devices ··· 452 # 453 454 # 455 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 456 # 457 # CONFIG_USB_GADGET is not set 458 # CONFIG_MMC is not set ··· 509 # CONFIG_HUGETLBFS is not set 510 # CONFIG_HUGETLB_PAGE is not set 511 # CONFIG_CONFIGFS_FS is not set 512 - 513 - # 514 - # Miscellaneous filesystems 515 - # 516 # CONFIG_ADFS_FS is not set 517 # CONFIG_AFFS_FS is not set 518 # CONFIG_HFS_FS is not set ··· 551 # CONFIG_DEBUG_MEMORY_INIT is not set 552 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 553 # CONFIG_LATENCYTOP is not set 554 - CONFIG_NOP_TRACER=y 555 - CONFIG_HAVE_FTRACE=y 556 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 557 # CONFIG_SAMPLES is not set 558 # CONFIG_SH_STANDARD_BIOS is not set 559 # CONFIG_EARLY_SCIF_CONSOLE is not set 560 - # CONFIG_SH_KGDB is not set 561 562 # 563 # Security options ··· 578 # Library routines 579 # 580 CONFIG_BITREVERSE=y 581 # CONFIG_CRC_CCITT is not set 582 # CONFIG_CRC16 is not set 583 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:15:56 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_STACKTRACE_SUPPORT=y 22 CONFIG_LOCKDEP_SUPPORT=y 23 CONFIG_HAVE_LATENCYTOP_SUPPORT=y ··· 68 CONFIG_SHMEM=y 69 CONFIG_AIO=y 70 CONFIG_VM_EVENT_COUNTERS=y 71 CONFIG_SLAB=y 72 # CONFIG_SLUB is not set 73 # CONFIG_SLOB is not set 74 # CONFIG_PROFILING is not set 75 CONFIG_HAVE_OPROFILE=y 76 # CONFIG_KPROBES is not set 77 CONFIG_HAVE_IOREMAP_PROT=y ··· 84 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 85 CONFIG_SLABINFO=y 86 CONFIG_RT_MUTEXES=y 87 CONFIG_BASE_SMALL=0 88 CONFIG_MODULES=y 89 # CONFIG_MODULE_FORCE_LOAD is not set ··· 92 # CONFIG_MODULE_FORCE_UNLOAD is not set 93 # CONFIG_MODVERSIONS is not set 94 # CONFIG_MODULE_SRCVERSION_ALL is not set 95 CONFIG_BLOCK=y 96 # CONFIG_LBD is not set 97 # CONFIG_BLK_DEV_IO_TRACE is not set 98 # CONFIG_BLK_DEV_BSG is not set 99 # CONFIG_BLK_DEV_INTEGRITY is not set 100 ··· 113 # CONFIG_DEFAULT_NOOP is not set 114 CONFIG_DEFAULT_IOSCHED="anticipatory" 115 CONFIG_CLASSIC_RCU=y 116 + # CONFIG_TREE_RCU is not set 117 + # CONFIG_PREEMPT_RCU is not set 118 + # CONFIG_TREE_RCU_TRACE is not set 119 + # CONFIG_PREEMPT_RCU_TRACE is not set 120 # CONFIG_FREEZER is not set 121 122 # ··· 120 # 121 CONFIG_CPU_SH4=y 122 # CONFIG_CPU_SUBTYPE_SH7619 is not set 123 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 124 # CONFIG_CPU_SUBTYPE_SH7203 is not set 125 # CONFIG_CPU_SUBTYPE_SH7206 is not set 126 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 183 CONFIG_SPARSEMEM_STATIC=y 184 CONFIG_PAGEFLAGS_EXTENDED=y 185 CONFIG_SPLIT_PTLOCK_CPUS=4 186 # CONFIG_PHYS_ADDR_T_64BIT is not set 187 CONFIG_ZONE_DMA_FLAG=0 188 CONFIG_NR_QUICK=2 ··· 264 # CONFIG_PREEMPT_NONE is not set 265 # CONFIG_PREEMPT_VOLUNTARY is not set 266 CONFIG_PREEMPT=y 267 CONFIG_GUSA=y 268 # CONFIG_GUSA_RB is not set 269 ··· 288 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 289 # CONFIG_HAVE_AOUT is not set 290 # CONFIG_BINFMT_MISC is not set 291 + 292 + # 293 + # Power management options (EXPERIMENTAL) 294 + # 295 + # CONFIG_PM is not set 296 + # CONFIG_CPU_IDLE is not set 297 # CONFIG_NET is not set 298 299 # ··· 314 CONFIG_MISC_DEVICES=y 315 # CONFIG_EEPROM_93CX6 is not set 316 # CONFIG_ENCLOSURE_SERVICES is not set 317 + # CONFIG_C2PORT is not set 318 CONFIG_HAVE_IDE=y 319 # CONFIG_IDE is not set 320 ··· 360 # 361 # CONFIG_SERIAL_SH_SCI is not set 362 CONFIG_UNIX98_PTYS=y 363 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 364 CONFIG_LEGACY_PTYS=y 365 CONFIG_LEGACY_PTY_COUNT=256 366 # CONFIG_IPMI_HANDLER is not set ··· 387 # CONFIG_THERMAL is not set 388 # CONFIG_THERMAL_HWMON is not set 389 # CONFIG_WATCHDOG is not set 390 + CONFIG_SSB_POSSIBLE=y 391 392 # 393 # Sonics Silicon Backplane 394 # 395 # CONFIG_SSB is not set 396 397 # ··· 401 # CONFIG_MFD_SM501 is not set 402 # CONFIG_HTC_PASIC3 is not set 403 # CONFIG_MFD_TMIO is not set 404 + # CONFIG_REGULATOR is not set 405 406 # 407 # Multimedia devices ··· 444 # 445 446 # 447 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 448 # 449 # CONFIG_USB_GADGET is not set 450 # CONFIG_MMC is not set ··· 501 # CONFIG_HUGETLBFS is not set 502 # CONFIG_HUGETLB_PAGE is not set 503 # CONFIG_CONFIGFS_FS is not set 504 + CONFIG_MISC_FILESYSTEMS=y 505 # CONFIG_ADFS_FS is not set 506 # CONFIG_AFFS_FS is not set 507 # CONFIG_HFS_FS is not set ··· 546 # CONFIG_DEBUG_MEMORY_INIT is not set 547 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 548 # CONFIG_LATENCYTOP is not set 549 + CONFIG_HAVE_FUNCTION_TRACER=y 550 + CONFIG_HAVE_DYNAMIC_FTRACE=y 551 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 552 + 553 + # 554 + # Tracers 555 + # 556 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 557 # CONFIG_SAMPLES is not set 558 + CONFIG_HAVE_ARCH_KGDB=y 559 # CONFIG_SH_STANDARD_BIOS is not set 560 # CONFIG_EARLY_SCIF_CONSOLE is not set 561 + # CONFIG_MORE_COMPILE_OPTIONS is not set 562 563 # 564 # Security options ··· 567 # Library routines 568 # 569 CONFIG_BITREVERSE=y 570 + CONFIG_GENERIC_FIND_LAST_BIT=y 571 # CONFIG_CRC_CCITT is not set 572 # CONFIG_CRC16 is not set 573 # CONFIG_CRC_T10DIF is not set
+64 -26
arch/sh/configs/titan_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.27 4 - # Wed Oct 22 19:58:12 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_PCI=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 81 # CONFIG_SLUB is not set 82 # CONFIG_SLOB is not set 83 # CONFIG_PROFILING is not set 84 - # CONFIG_MARKERS is not set 85 CONFIG_HAVE_OPROFILE=y 86 # CONFIG_KPROBES is not set 87 CONFIG_HAVE_IOREMAP_PROT=y ··· 91 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 92 CONFIG_SLABINFO=y 93 CONFIG_RT_MUTEXES=y 94 - # CONFIG_TINY_SHMEM is not set 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 CONFIG_MODULE_FORCE_UNLOAD=y 99 # CONFIG_MODVERSIONS is not set 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 101 - CONFIG_KMOD=y 102 CONFIG_BLOCK=y 103 # CONFIG_LBD is not set 104 # CONFIG_BLK_DEV_IO_TRACE is not set 105 - # CONFIG_LSF is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 117 # CONFIG_DEFAULT_NOOP is not set 118 CONFIG_DEFAULT_IOSCHED="anticipatory" 119 CONFIG_CLASSIC_RCU=y 120 # CONFIG_FREEZER is not set 121 122 # ··· 128 # 129 CONFIG_CPU_SH4=y 130 # CONFIG_CPU_SUBTYPE_SH7619 is not set 131 # CONFIG_CPU_SUBTYPE_SH7203 is not set 132 # CONFIG_CPU_SUBTYPE_SH7206 is not set 133 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 192 CONFIG_SPARSEMEM_STATIC=y 193 CONFIG_PAGEFLAGS_EXTENDED=y 194 CONFIG_SPLIT_PTLOCK_CPUS=4 195 - # CONFIG_RESOURCES_64BIT is not set 196 # CONFIG_PHYS_ADDR_T_64BIT is not set 197 CONFIG_ZONE_DMA_FLAG=0 198 CONFIG_NR_QUICK=2 ··· 295 CONFIG_SH_PCIDMA_NONCOHERENT=y 296 CONFIG_PCI_AUTO=y 297 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 298 # CONFIG_ARCH_SUPPORTS_MSI is not set 299 CONFIG_PCI_LEGACY=y 300 # CONFIG_PCI_DEBUG is not set ··· 312 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 313 # CONFIG_HAVE_AOUT is not set 314 # CONFIG_BINFMT_MISC is not set 315 CONFIG_NET=y 316 317 # 318 # Networking options 319 # 320 CONFIG_PACKET=y 321 CONFIG_PACKET_MMAP=y 322 CONFIG_UNIX=y ··· 517 CONFIG_NET_SCH_GRED=m 518 CONFIG_NET_SCH_DSMARK=m 519 CONFIG_NET_SCH_NETEM=m 520 CONFIG_NET_SCH_INGRESS=m 521 522 # ··· 554 # CONFIG_NET_ACT_SKBEDIT is not set 555 CONFIG_NET_CLS_IND=y 556 CONFIG_NET_SCH_FIFO=y 557 558 # 559 # Network testing ··· 572 # CONFIG_WIRELESS_OLD_REGULATORY is not set 573 CONFIG_WIRELESS_EXT=y 574 CONFIG_WIRELESS_EXT_SYSFS=y 575 # CONFIG_MAC80211 is not set 576 - CONFIG_IEEE80211=y 577 - # CONFIG_IEEE80211_DEBUG is not set 578 - CONFIG_IEEE80211_CRYPT_WEP=y 579 - CONFIG_IEEE80211_CRYPT_CCMP=y 580 - CONFIG_IEEE80211_CRYPT_TKIP=y 581 # CONFIG_RFKILL is not set 582 # CONFIG_NET_9P is not set 583 ··· 703 # CONFIG_TIFM_CORE is not set 704 # CONFIG_ENCLOSURE_SERVICES is not set 705 # CONFIG_HP_ILO is not set 706 CONFIG_HAVE_IDE=y 707 # CONFIG_IDE is not set 708 ··· 747 # CONFIG_SCSI_SRP_ATTRS is not set 748 CONFIG_SCSI_LOWLEVEL=y 749 # CONFIG_ISCSI_TCP is not set 750 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 751 # CONFIG_SCSI_3W_9XXX is not set 752 # CONFIG_SCSI_ACARD is not set ··· 761 # CONFIG_MEGARAID_LEGACY is not set 762 # CONFIG_MEGARAID_SAS is not set 763 # CONFIG_SCSI_HPTIOP is not set 764 # CONFIG_SCSI_DMX3191D is not set 765 # CONFIG_SCSI_FUTURE_DOMAIN is not set 766 # CONFIG_SCSI_IPS is not set ··· 819 # CONFIG_BROADCOM_PHY is not set 820 # CONFIG_ICPLUS_PHY is not set 821 # CONFIG_REALTEK_PHY is not set 822 # CONFIG_MDIO_BITBANG is not set 823 CONFIG_NET_ETHERNET=y 824 CONFIG_MII=y ··· 833 # CONFIG_NET_VENDOR_3COM is not set 834 # CONFIG_SMC91X is not set 835 # CONFIG_SMC911X is not set 836 # CONFIG_NET_TULIP is not set 837 # CONFIG_HP100 is not set 838 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 849 # CONFIG_ADAPTEC_STARFIRE is not set 850 # CONFIG_B44 is not set 851 # CONFIG_FORCEDETH is not set 852 - # CONFIG_EEPRO100 is not set 853 # CONFIG_E100 is not set 854 # CONFIG_FEALNX is not set 855 # CONFIG_NATSEMI is not set ··· 862 # CONFIG_R6040 is not set 863 # CONFIG_SIS900 is not set 864 # CONFIG_EPIC100 is not set 865 # CONFIG_SUNDANCE is not set 866 # CONFIG_TLAN is not set 867 # CONFIG_VIA_RHINE is not set ··· 891 # CONFIG_JME is not set 892 CONFIG_NETDEV_10000=y 893 # CONFIG_CHELSIO_T1 is not set 894 # CONFIG_CHELSIO_T3 is not set 895 # CONFIG_ENIC is not set 896 # CONFIG_IXGBE is not set ··· 900 # CONFIG_MYRI10GE is not set 901 # CONFIG_NETXEN_NIC is not set 902 # CONFIG_NIU is not set 903 # CONFIG_MLX4_CORE is not set 904 # CONFIG_TEHUTI is not set 905 # CONFIG_BNX2X is not set ··· 1020 CONFIG_SERIAL_CORE_CONSOLE=y 1021 # CONFIG_SERIAL_JSM is not set 1022 CONFIG_UNIX98_PTYS=y 1023 CONFIG_LEGACY_PTYS=y 1024 CONFIG_LEGACY_PTY_COUNT=256 1025 # CONFIG_IPMI_HANDLER is not set ··· 1074 # USB-based Watchdog Cards 1075 # 1076 # CONFIG_USBPCWATCHDOG is not set 1077 1078 # 1079 # Sonics Silicon Backplane 1080 # 1081 - CONFIG_SSB_POSSIBLE=y 1082 # CONFIG_SSB is not set 1083 1084 # ··· 1088 # CONFIG_MFD_SM501 is not set 1089 # CONFIG_HTC_PASIC3 is not set 1090 # CONFIG_MFD_TMIO is not set 1091 - # CONFIG_MFD_WM8400 is not set 1092 1093 # 1094 # Multimedia devices ··· 1164 # CONFIG_USB_OTG_WHITELIST is not set 1165 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1166 CONFIG_USB_MON=y 1167 1168 # 1169 # USB Host Controller Drivers ··· 1183 # CONFIG_USB_UHCI_HCD is not set 1184 # CONFIG_USB_SL811_HCD is not set 1185 # CONFIG_USB_R8A66597_HCD is not set 1186 1187 # 1188 # USB Device Class drivers ··· 1195 # CONFIG_USB_TMC is not set 1196 1197 # 1198 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 1199 # 1200 1201 # 1202 - # may also be needed; see USB_STORAGE Help for more information 1203 # 1204 CONFIG_USB_STORAGE=y 1205 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1296 # CONFIG_USB_ISIGHTFW is not set 1297 # CONFIG_USB_VST is not set 1298 # CONFIG_USB_GADGET is not set 1299 # CONFIG_MMC is not set 1300 # CONFIG_MEMSTICK is not set 1301 # CONFIG_NEW_LEDS is not set ··· 1403 # CONFIG_HUGETLBFS is not set 1404 # CONFIG_HUGETLB_PAGE is not set 1405 CONFIG_CONFIGFS_FS=m 1406 - 1407 - # 1408 - # Miscellaneous filesystems 1409 - # 1410 # CONFIG_ADFS_FS is not set 1411 # CONFIG_AFFS_FS is not set 1412 # CONFIG_HFS_FS is not set ··· 1551 # CONFIG_DEBUG_MEMORY_INIT is not set 1552 # CONFIG_DEBUG_LIST is not set 1553 # CONFIG_DEBUG_SG is not set 1554 # CONFIG_FRAME_POINTER is not set 1555 # CONFIG_RCU_TORTURE_TEST is not set 1556 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1559 # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1560 # CONFIG_FAULT_INJECTION is not set 1561 # CONFIG_LATENCYTOP is not set 1562 - CONFIG_NOP_TRACER=y 1563 - CONFIG_HAVE_FTRACE=y 1564 - # CONFIG_FTRACE is not set 1565 # CONFIG_IRQSOFF_TRACER is not set 1566 # CONFIG_SCHED_TRACER is not set 1567 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1568 # CONFIG_BOOT_TRACER is not set 1569 # CONFIG_STACK_TRACER is not set 1570 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1571 # CONFIG_SAMPLES is not set 1572 # CONFIG_SH_STANDARD_BIOS is not set 1573 # CONFIG_EARLY_SCIF_CONSOLE is not set 1574 # CONFIG_DEBUG_BOOTMEM is not set ··· 1584 # CONFIG_DEBUG_STACK_USAGE is not set 1585 # CONFIG_4KSTACKS is not set 1586 # CONFIG_IRQSTACKS is not set 1587 - # CONFIG_SH_KGDB is not set 1588 1589 # 1590 # Security options ··· 1602 # 1603 # CONFIG_CRYPTO_FIPS is not set 1604 CONFIG_CRYPTO_ALGAPI=y 1605 CONFIG_CRYPTO_AEAD=y 1606 CONFIG_CRYPTO_BLKCIPHER=y 1607 CONFIG_CRYPTO_HASH=y 1608 - CONFIG_CRYPTO_RNG=y 1609 CONFIG_CRYPTO_MANAGER=y 1610 # CONFIG_CRYPTO_GF128MUL is not set 1611 CONFIG_CRYPTO_NULL=m 1612 # CONFIG_CRYPTO_CRYPTD is not set ··· 1696 # Library routines 1697 # 1698 CONFIG_BITREVERSE=y 1699 CONFIG_CRC_CCITT=m 1700 CONFIG_CRC16=m 1701 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:17:19 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_PCI=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 79 # CONFIG_SLUB is not set 80 # CONFIG_SLOB is not set 81 # CONFIG_PROFILING is not set 82 CONFIG_HAVE_OPROFILE=y 83 # CONFIG_KPROBES is not set 84 CONFIG_HAVE_IOREMAP_PROT=y ··· 90 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 91 CONFIG_SLABINFO=y 92 CONFIG_RT_MUTEXES=y 93 CONFIG_BASE_SMALL=0 94 CONFIG_MODULES=y 95 # CONFIG_MODULE_FORCE_LOAD is not set ··· 98 CONFIG_MODULE_FORCE_UNLOAD=y 99 # CONFIG_MODVERSIONS is not set 100 # CONFIG_MODULE_SRCVERSION_ALL is not set 101 CONFIG_BLOCK=y 102 # CONFIG_LBD is not set 103 # CONFIG_BLK_DEV_IO_TRACE is not set 104 # CONFIG_BLK_DEV_BSG is not set 105 # CONFIG_BLK_DEV_INTEGRITY is not set 106 ··· 119 # CONFIG_DEFAULT_NOOP is not set 120 CONFIG_DEFAULT_IOSCHED="anticipatory" 121 CONFIG_CLASSIC_RCU=y 122 + # CONFIG_TREE_RCU is not set 123 + # CONFIG_PREEMPT_RCU is not set 124 + # CONFIG_TREE_RCU_TRACE is not set 125 + # CONFIG_PREEMPT_RCU_TRACE is not set 126 # CONFIG_FREEZER is not set 127 128 # ··· 126 # 127 CONFIG_CPU_SH4=y 128 # CONFIG_CPU_SUBTYPE_SH7619 is not set 129 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 130 # CONFIG_CPU_SUBTYPE_SH7203 is not set 131 # CONFIG_CPU_SUBTYPE_SH7206 is not set 132 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 189 CONFIG_SPARSEMEM_STATIC=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 ··· 293 CONFIG_SH_PCIDMA_NONCOHERENT=y 294 CONFIG_PCI_AUTO=y 295 CONFIG_PCI_AUTO_UPDATE_RESOURCES=y 296 + # CONFIG_PCIEPORTBUS is not set 297 # CONFIG_ARCH_SUPPORTS_MSI is not set 298 CONFIG_PCI_LEGACY=y 299 # CONFIG_PCI_DEBUG is not set ··· 309 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 310 # CONFIG_HAVE_AOUT is not set 311 # CONFIG_BINFMT_MISC is not set 312 + 313 + # 314 + # Power management options (EXPERIMENTAL) 315 + # 316 + # CONFIG_PM is not set 317 + # CONFIG_CPU_IDLE is not set 318 CONFIG_NET=y 319 320 # 321 # Networking options 322 # 323 + CONFIG_COMPAT_NET_DEV_OPS=y 324 CONFIG_PACKET=y 325 CONFIG_PACKET_MMAP=y 326 CONFIG_UNIX=y ··· 507 CONFIG_NET_SCH_GRED=m 508 CONFIG_NET_SCH_DSMARK=m 509 CONFIG_NET_SCH_NETEM=m 510 + # CONFIG_NET_SCH_DRR is not set 511 CONFIG_NET_SCH_INGRESS=m 512 513 # ··· 543 # CONFIG_NET_ACT_SKBEDIT is not set 544 CONFIG_NET_CLS_IND=y 545 CONFIG_NET_SCH_FIFO=y 546 + # CONFIG_DCB is not set 547 548 # 549 # Network testing ··· 560 # CONFIG_WIRELESS_OLD_REGULATORY is not set 561 CONFIG_WIRELESS_EXT=y 562 CONFIG_WIRELESS_EXT_SYSFS=y 563 + # CONFIG_LIB80211 is not set 564 # CONFIG_MAC80211 is not set 565 # CONFIG_RFKILL is not set 566 # CONFIG_NET_9P is not set 567 ··· 695 # CONFIG_TIFM_CORE is not set 696 # CONFIG_ENCLOSURE_SERVICES is not set 697 # CONFIG_HP_ILO is not set 698 + # CONFIG_C2PORT is not set 699 CONFIG_HAVE_IDE=y 700 # CONFIG_IDE is not set 701 ··· 738 # CONFIG_SCSI_SRP_ATTRS is not set 739 CONFIG_SCSI_LOWLEVEL=y 740 # CONFIG_ISCSI_TCP is not set 741 + # CONFIG_SCSI_CXGB3_ISCSI is not set 742 # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 743 # CONFIG_SCSI_3W_9XXX is not set 744 # CONFIG_SCSI_ACARD is not set ··· 751 # CONFIG_MEGARAID_LEGACY is not set 752 # CONFIG_MEGARAID_SAS is not set 753 # CONFIG_SCSI_HPTIOP is not set 754 + # CONFIG_LIBFC is not set 755 + # CONFIG_FCOE is not set 756 # CONFIG_SCSI_DMX3191D is not set 757 # CONFIG_SCSI_FUTURE_DOMAIN is not set 758 # CONFIG_SCSI_IPS is not set ··· 807 # CONFIG_BROADCOM_PHY is not set 808 # CONFIG_ICPLUS_PHY is not set 809 # CONFIG_REALTEK_PHY is not set 810 + # CONFIG_NATIONAL_PHY is not set 811 + # CONFIG_STE10XP is not set 812 + # CONFIG_LSI_ET1011C_PHY is not set 813 # CONFIG_MDIO_BITBANG is not set 814 CONFIG_NET_ETHERNET=y 815 CONFIG_MII=y ··· 818 # CONFIG_NET_VENDOR_3COM is not set 819 # CONFIG_SMC91X is not set 820 # CONFIG_SMC911X is not set 821 + # CONFIG_SMSC911X is not set 822 # CONFIG_NET_TULIP is not set 823 # CONFIG_HP100 is not set 824 # CONFIG_IBM_NEW_EMAC_ZMII is not set ··· 833 # CONFIG_ADAPTEC_STARFIRE is not set 834 # CONFIG_B44 is not set 835 # CONFIG_FORCEDETH is not set 836 # CONFIG_E100 is not set 837 # CONFIG_FEALNX is not set 838 # CONFIG_NATSEMI is not set ··· 847 # CONFIG_R6040 is not set 848 # CONFIG_SIS900 is not set 849 # CONFIG_EPIC100 is not set 850 + # CONFIG_SMSC9420 is not set 851 # CONFIG_SUNDANCE is not set 852 # CONFIG_TLAN is not set 853 # CONFIG_VIA_RHINE is not set ··· 875 # CONFIG_JME is not set 876 CONFIG_NETDEV_10000=y 877 # CONFIG_CHELSIO_T1 is not set 878 + CONFIG_CHELSIO_T3_DEPENDS=y 879 # CONFIG_CHELSIO_T3 is not set 880 # CONFIG_ENIC is not set 881 # CONFIG_IXGBE is not set ··· 883 # CONFIG_MYRI10GE is not set 884 # CONFIG_NETXEN_NIC is not set 885 # CONFIG_NIU is not set 886 + # CONFIG_MLX4_EN is not set 887 # CONFIG_MLX4_CORE is not set 888 # CONFIG_TEHUTI is not set 889 # CONFIG_BNX2X is not set ··· 1002 CONFIG_SERIAL_CORE_CONSOLE=y 1003 # CONFIG_SERIAL_JSM is not set 1004 CONFIG_UNIX98_PTYS=y 1005 + # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set 1006 CONFIG_LEGACY_PTYS=y 1007 CONFIG_LEGACY_PTY_COUNT=256 1008 # CONFIG_IPMI_HANDLER is not set ··· 1055 # USB-based Watchdog Cards 1056 # 1057 # CONFIG_USBPCWATCHDOG is not set 1058 + CONFIG_SSB_POSSIBLE=y 1059 1060 # 1061 # Sonics Silicon Backplane 1062 # 1063 # CONFIG_SSB is not set 1064 1065 # ··· 1069 # CONFIG_MFD_SM501 is not set 1070 # CONFIG_HTC_PASIC3 is not set 1071 # CONFIG_MFD_TMIO is not set 1072 + # CONFIG_REGULATOR is not set 1073 1074 # 1075 # Multimedia devices ··· 1145 # CONFIG_USB_OTG_WHITELIST is not set 1146 # CONFIG_USB_OTG_BLACKLIST_HUB is not set 1147 CONFIG_USB_MON=y 1148 + # CONFIG_USB_WUSB is not set 1149 + # CONFIG_USB_WUSB_CBAF is not set 1150 1151 # 1152 # USB Host Controller Drivers ··· 1162 # CONFIG_USB_UHCI_HCD is not set 1163 # CONFIG_USB_SL811_HCD is not set 1164 # CONFIG_USB_R8A66597_HCD is not set 1165 + # CONFIG_USB_WHCI_HCD is not set 1166 + # CONFIG_USB_HWA_HCD is not set 1167 1168 # 1169 # USB Device Class drivers ··· 1172 # CONFIG_USB_TMC is not set 1173 1174 # 1175 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 1176 # 1177 1178 # 1179 + # see USB_STORAGE Help for more information 1180 # 1181 CONFIG_USB_STORAGE=y 1182 # CONFIG_USB_STORAGE_DEBUG is not set ··· 1273 # CONFIG_USB_ISIGHTFW is not set 1274 # CONFIG_USB_VST is not set 1275 # CONFIG_USB_GADGET is not set 1276 + # CONFIG_UWB is not set 1277 # CONFIG_MMC is not set 1278 # CONFIG_MEMSTICK is not set 1279 # CONFIG_NEW_LEDS is not set ··· 1379 # CONFIG_HUGETLBFS is not set 1380 # CONFIG_HUGETLB_PAGE is not set 1381 CONFIG_CONFIGFS_FS=m 1382 + CONFIG_MISC_FILESYSTEMS=y 1383 # CONFIG_ADFS_FS is not set 1384 # CONFIG_AFFS_FS is not set 1385 # CONFIG_HFS_FS is not set ··· 1530 # CONFIG_DEBUG_MEMORY_INIT is not set 1531 # CONFIG_DEBUG_LIST is not set 1532 # CONFIG_DEBUG_SG is not set 1533 + # CONFIG_DEBUG_NOTIFIERS is not set 1534 # CONFIG_FRAME_POINTER is not set 1535 # CONFIG_RCU_TORTURE_TEST is not set 1536 # CONFIG_RCU_CPU_STALL_DETECTOR is not set ··· 1537 # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set 1538 # CONFIG_FAULT_INJECTION is not set 1539 # CONFIG_LATENCYTOP is not set 1540 + CONFIG_HAVE_FUNCTION_TRACER=y 1541 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1542 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1543 + 1544 + # 1545 + # Tracers 1546 + # 1547 + # CONFIG_FUNCTION_TRACER is not set 1548 # CONFIG_IRQSOFF_TRACER is not set 1549 # CONFIG_SCHED_TRACER is not set 1550 # CONFIG_CONTEXT_SWITCH_TRACER is not set 1551 # CONFIG_BOOT_TRACER is not set 1552 + # CONFIG_TRACE_BRANCH_PROFILING is not set 1553 # CONFIG_STACK_TRACER is not set 1554 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1555 # CONFIG_SAMPLES is not set 1556 + CONFIG_HAVE_ARCH_KGDB=y 1557 + # CONFIG_KGDB is not set 1558 # CONFIG_SH_STANDARD_BIOS is not set 1559 # CONFIG_EARLY_SCIF_CONSOLE is not set 1560 # CONFIG_DEBUG_BOOTMEM is not set ··· 1554 # CONFIG_DEBUG_STACK_USAGE is not set 1555 # CONFIG_4KSTACKS is not set 1556 # CONFIG_IRQSTACKS is not set 1557 + # CONFIG_DUMP_CODE is not set 1558 + # CONFIG_SH_NO_BSS_INIT is not set 1559 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1560 1561 # 1562 # Security options ··· 1570 # 1571 # CONFIG_CRYPTO_FIPS is not set 1572 CONFIG_CRYPTO_ALGAPI=y 1573 + CONFIG_CRYPTO_ALGAPI2=y 1574 CONFIG_CRYPTO_AEAD=y 1575 + CONFIG_CRYPTO_AEAD2=y 1576 CONFIG_CRYPTO_BLKCIPHER=y 1577 + CONFIG_CRYPTO_BLKCIPHER2=y 1578 CONFIG_CRYPTO_HASH=y 1579 + CONFIG_CRYPTO_HASH2=y 1580 + CONFIG_CRYPTO_RNG2=y 1581 CONFIG_CRYPTO_MANAGER=y 1582 + CONFIG_CRYPTO_MANAGER2=y 1583 # CONFIG_CRYPTO_GF128MUL is not set 1584 CONFIG_CRYPTO_NULL=m 1585 # CONFIG_CRYPTO_CRYPTD is not set ··· 1659 # Library routines 1660 # 1661 CONFIG_BITREVERSE=y 1662 + CONFIG_GENERIC_FIND_LAST_BIT=y 1663 CONFIG_CRC_CCITT=m 1664 CONFIG_CRC16=m 1665 # CONFIG_CRC_T10DIF is not set
+43 -26
arch/sh/configs/ul2_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.28-rc2 4 - # Tue Oct 28 17:35:17 2008 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 CONFIG_SYS_SUPPORTS_NUMA=y 20 CONFIG_STACKTRACE_SUPPORT=y 21 CONFIG_LOCKDEP_SUPPORT=y ··· 82 CONFIG_SLUB=y 83 # CONFIG_SLOB is not set 84 CONFIG_PROFILING=y 85 - # CONFIG_MARKERS is not set 86 # CONFIG_OPROFILE is not set 87 CONFIG_HAVE_OPROFILE=y 88 # CONFIG_KPROBES is not set ··· 93 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 94 CONFIG_SLABINFO=y 95 CONFIG_RT_MUTEXES=y 96 - # CONFIG_TINY_SHMEM is not set 97 CONFIG_BASE_SMALL=0 98 CONFIG_MODULES=y 99 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 # CONFIG_MODULE_FORCE_UNLOAD is not set 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 - CONFIG_KMOD=y 104 CONFIG_BLOCK=y 105 # CONFIG_LBD is not set 106 # CONFIG_BLK_DEV_IO_TRACE is not set 107 - # CONFIG_LSF is not set 108 # CONFIG_BLK_DEV_BSG is not set 109 # CONFIG_BLK_DEV_INTEGRITY is not set 110 ··· 119 CONFIG_DEFAULT_NOOP=y 120 CONFIG_DEFAULT_IOSCHED="noop" 121 CONFIG_CLASSIC_RCU=y 122 # CONFIG_FREEZER is not set 123 124 # ··· 133 CONFIG_CPU_SH4AL_DSP=y 134 CONFIG_CPU_SHX2=y 135 # CONFIG_CPU_SUBTYPE_SH7619 is not set 136 # CONFIG_CPU_SUBTYPE_SH7203 is not set 137 # CONFIG_CPU_SUBTYPE_SH7206 is not set 138 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 209 # CONFIG_MEMORY_HOTPLUG is not set 210 CONFIG_SPLIT_PTLOCK_CPUS=4 211 # CONFIG_MIGRATION is not set 212 - # CONFIG_RESOURCES_64BIT is not set 213 # CONFIG_PHYS_ADDR_T_64BIT is not set 214 CONFIG_ZONE_DMA_FLAG=0 215 CONFIG_NR_QUICK=2 ··· 285 # CONFIG_PREEMPT_NONE is not set 286 # CONFIG_PREEMPT_VOLUNTARY is not set 287 CONFIG_PREEMPT=y 288 - # CONFIG_PREEMPT_RCU is not set 289 CONFIG_GUSA=y 290 291 # ··· 308 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 309 # CONFIG_HAVE_AOUT is not set 310 # CONFIG_BINFMT_MISC is not set 311 CONFIG_NET=y 312 313 # 314 # Networking options 315 # 316 CONFIG_PACKET=y 317 CONFIG_PACKET_MMAP=y 318 CONFIG_UNIX=y ··· 375 # CONFIG_ECONET is not set 376 # CONFIG_WAN_ROUTER is not set 377 # CONFIG_NET_SCHED is not set 378 379 # 380 # Network testing ··· 389 # CONFIG_PHONET is not set 390 CONFIG_WIRELESS=y 391 CONFIG_CFG80211=y 392 CONFIG_NL80211=y 393 # CONFIG_WIRELESS_OLD_REGULATORY is not set 394 CONFIG_WIRELESS_EXT=y 395 CONFIG_WIRELESS_EXT_SYSFS=y 396 CONFIG_MAC80211=y 397 398 # ··· 408 # CONFIG_MAC80211_MESH is not set 409 # CONFIG_MAC80211_LEDS is not set 410 # CONFIG_MAC80211_DEBUG_MENU is not set 411 - CONFIG_IEEE80211=m 412 - CONFIG_IEEE80211_DEBUG=y 413 - CONFIG_IEEE80211_CRYPT_WEP=m 414 - CONFIG_IEEE80211_CRYPT_CCMP=m 415 - CONFIG_IEEE80211_CRYPT_TKIP=m 416 # CONFIG_RFKILL is not set 417 # CONFIG_NET_9P is not set 418 ··· 516 CONFIG_MISC_DEVICES=y 517 # CONFIG_EEPROM_93CX6 is not set 518 # CONFIG_ENCLOSURE_SERVICES is not set 519 CONFIG_HAVE_IDE=y 520 # CONFIG_IDE is not set 521 ··· 559 # CONFIG_SCSI_SRP_ATTRS is not set 560 CONFIG_SCSI_LOWLEVEL=y 561 # CONFIG_ISCSI_TCP is not set 562 # CONFIG_SCSI_DEBUG is not set 563 # CONFIG_SCSI_DH is not set 564 CONFIG_ATA=y ··· 583 # CONFIG_STNIC is not set 584 # CONFIG_SMC91X is not set 585 # CONFIG_SMC911X is not set 586 # CONFIG_IBM_NEW_EMAC_ZMII is not set 587 # CONFIG_IBM_NEW_EMAC_RGMII is not set 588 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 723 # CONFIG_THERMAL is not set 724 # CONFIG_THERMAL_HWMON is not set 725 # CONFIG_WATCHDOG is not set 726 727 # 728 # Sonics Silicon Backplane 729 # 730 - CONFIG_SSB_POSSIBLE=y 731 # CONFIG_SSB is not set 732 733 # ··· 737 # CONFIG_MFD_SM501 is not set 738 # CONFIG_HTC_PASIC3 is not set 739 # CONFIG_MFD_TMIO is not set 740 741 # 742 # Multimedia devices ··· 795 # 796 # CONFIG_USB_C67X00_HCD is not set 797 # CONFIG_USB_ISP116X_HCD is not set 798 - # CONFIG_USB_ISP1760_HCD is not set 799 # CONFIG_USB_SL811_HCD is not set 800 CONFIG_USB_R8A66597_HCD=y 801 # CONFIG_SUPERH_ON_CHIP_R8A66597 is not set ··· 809 # CONFIG_USB_TMC is not set 810 811 # 812 - # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 813 # 814 815 # 816 - # may also be needed; see USB_STORAGE Help for more information 817 # 818 CONFIG_USB_STORAGE=y 819 # CONFIG_USB_STORAGE_DEBUG is not set ··· 946 CONFIG_HUGETLBFS=y 947 CONFIG_HUGETLB_PAGE=y 948 # CONFIG_CONFIGFS_FS is not set 949 - 950 - # 951 - # Miscellaneous filesystems 952 - # 953 # CONFIG_ADFS_FS is not set 954 # CONFIG_AFFS_FS is not set 955 # CONFIG_HFS_FS is not set ··· 1052 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1053 # CONFIG_LATENCYTOP is not set 1054 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1055 - CONFIG_NOP_TRACER=y 1056 - CONFIG_HAVE_FTRACE=y 1057 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1058 # CONFIG_SAMPLES is not set 1059 # CONFIG_SH_STANDARD_BIOS is not set 1060 # CONFIG_EARLY_SCIF_CONSOLE is not set 1061 - # CONFIG_SH_KGDB is not set 1062 1063 # 1064 # Security options ··· 1080 # 1081 # CONFIG_CRYPTO_FIPS is not set 1082 CONFIG_CRYPTO_ALGAPI=y 1083 - CONFIG_CRYPTO_AEAD=y 1084 CONFIG_CRYPTO_BLKCIPHER=y 1085 CONFIG_CRYPTO_HASH=y 1086 - CONFIG_CRYPTO_RNG=y 1087 CONFIG_CRYPTO_MANAGER=y 1088 # CONFIG_CRYPTO_GF128MUL is not set 1089 # CONFIG_CRYPTO_NULL is not set 1090 # CONFIG_CRYPTO_CRYPTD is not set ··· 1171 # Library routines 1172 # 1173 CONFIG_BITREVERSE=y 1174 # CONFIG_CRC_CCITT is not set 1175 # CONFIG_CRC16 is not set 1176 # CONFIG_CRC_T10DIF is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.28 4 + # Fri Jan 9 18:22:53 2009 5 # 6 CONFIG_SUPERH=y 7 CONFIG_SUPERH32=y ··· 16 # CONFIG_GENERIC_GPIO is not set 17 CONFIG_GENERIC_TIME=y 18 CONFIG_GENERIC_CLOCKEVENTS=y 19 + # CONFIG_ARCH_SUSPEND_POSSIBLE is not set 20 + # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set 21 CONFIG_SYS_SUPPORTS_NUMA=y 22 CONFIG_STACKTRACE_SUPPORT=y 23 CONFIG_LOCKDEP_SUPPORT=y ··· 80 CONFIG_SLUB=y 81 # CONFIG_SLOB is not set 82 CONFIG_PROFILING=y 83 # CONFIG_OPROFILE is not set 84 CONFIG_HAVE_OPROFILE=y 85 # CONFIG_KPROBES is not set ··· 92 CONFIG_HAVE_GENERIC_DMA_COHERENT=y 93 CONFIG_SLABINFO=y 94 CONFIG_RT_MUTEXES=y 95 CONFIG_BASE_SMALL=0 96 CONFIG_MODULES=y 97 # CONFIG_MODULE_FORCE_LOAD is not set ··· 100 # CONFIG_MODULE_FORCE_UNLOAD is not set 101 # CONFIG_MODVERSIONS is not set 102 # CONFIG_MODULE_SRCVERSION_ALL is not set 103 CONFIG_BLOCK=y 104 # CONFIG_LBD is not set 105 # CONFIG_BLK_DEV_IO_TRACE is not set 106 # CONFIG_BLK_DEV_BSG is not set 107 # CONFIG_BLK_DEV_INTEGRITY is not set 108 ··· 121 CONFIG_DEFAULT_NOOP=y 122 CONFIG_DEFAULT_IOSCHED="noop" 123 CONFIG_CLASSIC_RCU=y 124 + # CONFIG_TREE_RCU is not set 125 + # CONFIG_PREEMPT_RCU is not set 126 + # CONFIG_TREE_RCU_TRACE is not set 127 + # CONFIG_PREEMPT_RCU_TRACE is not set 128 # CONFIG_FREEZER is not set 129 130 # ··· 131 CONFIG_CPU_SH4AL_DSP=y 132 CONFIG_CPU_SHX2=y 133 # CONFIG_CPU_SUBTYPE_SH7619 is not set 134 + # CONFIG_CPU_SUBTYPE_SH7201 is not set 135 # CONFIG_CPU_SUBTYPE_SH7203 is not set 136 # CONFIG_CPU_SUBTYPE_SH7206 is not set 137 # CONFIG_CPU_SUBTYPE_SH7263 is not set ··· 206 # CONFIG_MEMORY_HOTPLUG is not set 207 CONFIG_SPLIT_PTLOCK_CPUS=4 208 # CONFIG_MIGRATION is not set 209 # CONFIG_PHYS_ADDR_T_64BIT is not set 210 CONFIG_ZONE_DMA_FLAG=0 211 CONFIG_NR_QUICK=2 ··· 283 # CONFIG_PREEMPT_NONE is not set 284 # CONFIG_PREEMPT_VOLUNTARY is not set 285 CONFIG_PREEMPT=y 286 CONFIG_GUSA=y 287 288 # ··· 307 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set 308 # CONFIG_HAVE_AOUT is not set 309 # CONFIG_BINFMT_MISC is not set 310 + 311 + # 312 + # Power management options (EXPERIMENTAL) 313 + # 314 + # CONFIG_PM is not set 315 + # CONFIG_CPU_IDLE is not set 316 CONFIG_NET=y 317 318 # 319 # Networking options 320 # 321 + CONFIG_COMPAT_NET_DEV_OPS=y 322 CONFIG_PACKET=y 323 CONFIG_PACKET_MMAP=y 324 CONFIG_UNIX=y ··· 367 # CONFIG_ECONET is not set 368 # CONFIG_WAN_ROUTER is not set 369 # CONFIG_NET_SCHED is not set 370 + # CONFIG_DCB is not set 371 372 # 373 # Network testing ··· 380 # CONFIG_PHONET is not set 381 CONFIG_WIRELESS=y 382 CONFIG_CFG80211=y 383 + # CONFIG_CFG80211_REG_DEBUG is not set 384 CONFIG_NL80211=y 385 # CONFIG_WIRELESS_OLD_REGULATORY is not set 386 CONFIG_WIRELESS_EXT=y 387 CONFIG_WIRELESS_EXT_SYSFS=y 388 + CONFIG_LIB80211=m 389 CONFIG_MAC80211=y 390 391 # ··· 397 # CONFIG_MAC80211_MESH is not set 398 # CONFIG_MAC80211_LEDS is not set 399 # CONFIG_MAC80211_DEBUG_MENU is not set 400 # CONFIG_RFKILL is not set 401 # CONFIG_NET_9P is not set 402 ··· 510 CONFIG_MISC_DEVICES=y 511 # CONFIG_EEPROM_93CX6 is not set 512 # CONFIG_ENCLOSURE_SERVICES is not set 513 + # CONFIG_C2PORT is not set 514 CONFIG_HAVE_IDE=y 515 # CONFIG_IDE is not set 516 ··· 552 # CONFIG_SCSI_SRP_ATTRS is not set 553 CONFIG_SCSI_LOWLEVEL=y 554 # CONFIG_ISCSI_TCP is not set 555 + # CONFIG_LIBFC is not set 556 # CONFIG_SCSI_DEBUG is not set 557 # CONFIG_SCSI_DH is not set 558 CONFIG_ATA=y ··· 575 # CONFIG_STNIC is not set 576 # CONFIG_SMC91X is not set 577 # CONFIG_SMC911X is not set 578 + # CONFIG_SMSC911X is not set 579 # CONFIG_IBM_NEW_EMAC_ZMII is not set 580 # CONFIG_IBM_NEW_EMAC_RGMII is not set 581 # CONFIG_IBM_NEW_EMAC_TAH is not set ··· 714 # CONFIG_THERMAL is not set 715 # CONFIG_THERMAL_HWMON is not set 716 # CONFIG_WATCHDOG is not set 717 + CONFIG_SSB_POSSIBLE=y 718 719 # 720 # Sonics Silicon Backplane 721 # 722 # CONFIG_SSB is not set 723 724 # ··· 728 # CONFIG_MFD_SM501 is not set 729 # CONFIG_HTC_PASIC3 is not set 730 # CONFIG_MFD_TMIO is not set 731 + # CONFIG_REGULATOR is not set 732 733 # 734 # Multimedia devices ··· 785 # 786 # CONFIG_USB_C67X00_HCD is not set 787 # CONFIG_USB_ISP116X_HCD is not set 788 # CONFIG_USB_SL811_HCD is not set 789 CONFIG_USB_R8A66597_HCD=y 790 # CONFIG_SUPERH_ON_CHIP_R8A66597 is not set ··· 800 # CONFIG_USB_TMC is not set 801 802 # 803 + # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; 804 # 805 806 # 807 + # see USB_STORAGE Help for more information 808 # 809 CONFIG_USB_STORAGE=y 810 # CONFIG_USB_STORAGE_DEBUG is not set ··· 937 CONFIG_HUGETLBFS=y 938 CONFIG_HUGETLB_PAGE=y 939 # CONFIG_CONFIGFS_FS is not set 940 + CONFIG_MISC_FILESYSTEMS=y 941 # CONFIG_ADFS_FS is not set 942 # CONFIG_AFFS_FS is not set 943 # CONFIG_HFS_FS is not set ··· 1046 # CONFIG_RCU_CPU_STALL_DETECTOR is not set 1047 # CONFIG_LATENCYTOP is not set 1048 # CONFIG_SYSCTL_SYSCALL_CHECK is not set 1049 + CONFIG_HAVE_FUNCTION_TRACER=y 1050 + CONFIG_HAVE_DYNAMIC_FTRACE=y 1051 + CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1052 + 1053 + # 1054 + # Tracers 1055 + # 1056 # CONFIG_DYNAMIC_PRINTK_DEBUG is not set 1057 # CONFIG_SAMPLES is not set 1058 + CONFIG_HAVE_ARCH_KGDB=y 1059 # CONFIG_SH_STANDARD_BIOS is not set 1060 # CONFIG_EARLY_SCIF_CONSOLE is not set 1061 + # CONFIG_MORE_COMPILE_OPTIONS is not set 1062 1063 # 1064 # Security options ··· 1068 # 1069 # CONFIG_CRYPTO_FIPS is not set 1070 CONFIG_CRYPTO_ALGAPI=y 1071 + CONFIG_CRYPTO_ALGAPI2=y 1072 + CONFIG_CRYPTO_AEAD2=y 1073 CONFIG_CRYPTO_BLKCIPHER=y 1074 + CONFIG_CRYPTO_BLKCIPHER2=y 1075 CONFIG_CRYPTO_HASH=y 1076 + CONFIG_CRYPTO_HASH2=y 1077 + CONFIG_CRYPTO_RNG2=y 1078 CONFIG_CRYPTO_MANAGER=y 1079 + CONFIG_CRYPTO_MANAGER2=y 1080 # CONFIG_CRYPTO_GF128MUL is not set 1081 # CONFIG_CRYPTO_NULL is not set 1082 # CONFIG_CRYPTO_CRYPTD is not set ··· 1155 # Library routines 1156 # 1157 CONFIG_BITREVERSE=y 1158 + CONFIG_GENERIC_FIND_LAST_BIT=y 1159 # CONFIG_CRC_CCITT is not set 1160 # CONFIG_CRC16 is not set 1161 # CONFIG_CRC_T10DIF is not set
+2 -6
arch/sh/include/asm/posix_types_32.h
··· 39 #endif 40 41 typedef struct { 42 - #if defined(__KERNEL__) || defined(__USE_ALL) 43 int val[2]; 44 - #else /* !defined(__KERNEL__) && !defined(__USE_ALL) */ 45 - int __val[2]; 46 - #endif /* !defined(__KERNEL__) && !defined(__USE_ALL) */ 47 } __kernel_fsid_t; 48 49 - #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) 50 51 #undef __FD_SET 52 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) ··· 113 } 114 } 115 116 - #endif /* defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) */ 117 118 #endif /* __ASM_SH_POSIX_TYPES_H */
··· 39 #endif 40 41 typedef struct { 42 int val[2]; 43 } __kernel_fsid_t; 44 45 + #if defined(__KERNEL__) 46 47 #undef __FD_SET 48 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) ··· 117 } 118 } 119 120 + #endif /* defined(__KERNEL__) */ 121 122 #endif /* __ASM_SH_POSIX_TYPES_H */
+2 -6
arch/sh/include/asm/posix_types_64.h
··· 48 #endif 49 50 typedef struct { 51 - #if defined(__KERNEL__) || defined(__USE_ALL) 52 int val[2]; 53 - #else /* !defined(__KERNEL__) && !defined(__USE_ALL) */ 54 - int __val[2]; 55 - #endif /* !defined(__KERNEL__) && !defined(__USE_ALL) */ 56 } __kernel_fsid_t; 57 58 - #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) 59 60 #undef __FD_SET 61 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) ··· 122 } 123 } 124 125 - #endif /* defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) */ 126 127 #endif /* __ASM_SH64_POSIX_TYPES_H */
··· 48 #endif 49 50 typedef struct { 51 int val[2]; 52 } __kernel_fsid_t; 53 54 + #if defined(__KERNEL__) 55 56 #undef __FD_SET 57 static __inline__ void __FD_SET(unsigned long __fd, __kernel_fd_set *__fdsetp) ··· 126 } 127 } 128 129 + #endif /* defined(__KERNEL__) */ 130 131 #endif /* __ASM_SH64_POSIX_TYPES_H */
+31
arch/sh/kernel/cpu/sh4a/setup-sh7343.c
··· 112 .num_resources = ARRAY_SIZE(veu_resources), 113 }; 114 115 static struct plat_sci_port sci_platform_data[] = { 116 { 117 .mapbase = 0xffe00000, ··· 180 &sci_device, 181 &vpu_device, 182 &veu_device, 183 }; 184 185 static int __init sh7343_devices_setup(void) ··· 189 clk_always_enable("xymem0"); /* XYMEM */ 190 clk_always_enable("veu0"); /* VEU */ 191 clk_always_enable("vpu0"); /* VPU */ 192 193 platform_resource_setup_memory(&vpu_device, "vpu", 1 << 20); 194 platform_resource_setup_memory(&veu_device, "veu", 2 << 20); 195 196 return platform_add_devices(sh7343_devices, 197 ARRAY_SIZE(sh7343_devices));
··· 112 .num_resources = ARRAY_SIZE(veu_resources), 113 }; 114 115 + static struct uio_info jpu_platform_data = { 116 + .name = "JPU", 117 + .version = "0", 118 + .irq = 27, 119 + }; 120 + 121 + static struct resource jpu_resources[] = { 122 + [0] = { 123 + .name = "JPU", 124 + .start = 0xfea00000, 125 + .end = 0xfea102d3, 126 + .flags = IORESOURCE_MEM, 127 + }, 128 + [1] = { 129 + /* place holder for contiguous memory */ 130 + }, 131 + }; 132 + 133 + static struct platform_device jpu_device = { 134 + .name = "uio_pdrv_genirq", 135 + .id = 2, 136 + .dev = { 137 + .platform_data = &jpu_platform_data, 138 + }, 139 + .resource = jpu_resources, 140 + .num_resources = ARRAY_SIZE(jpu_resources), 141 + }; 142 + 143 static struct plat_sci_port sci_platform_data[] = { 144 { 145 .mapbase = 0xffe00000, ··· 152 &sci_device, 153 &vpu_device, 154 &veu_device, 155 + &jpu_device, 156 }; 157 158 static int __init sh7343_devices_setup(void) ··· 160 clk_always_enable("xymem0"); /* XYMEM */ 161 clk_always_enable("veu0"); /* VEU */ 162 clk_always_enable("vpu0"); /* VPU */ 163 + clk_always_enable("jpu0"); /* JPU */ 164 165 platform_resource_setup_memory(&vpu_device, "vpu", 1 << 20); 166 platform_resource_setup_memory(&veu_device, "veu", 2 << 20); 167 + platform_resource_setup_memory(&jpu_device, "jpu", 2 << 20); 168 169 return platform_add_devices(sh7343_devices, 170 ARRAY_SIZE(sh7343_devices));
+1 -1
arch/sh/kernel/cpu/sh4a/setup-sh7722.c
··· 158 [0] = { 159 .name = "JPU", 160 .start = 0xfea00000, 161 - .end = 0xfea102d0, 162 .flags = IORESOURCE_MEM, 163 }, 164 [1] = {
··· 158 [0] = { 159 .name = "JPU", 160 .start = 0xfea00000, 161 + .end = 0xfea102d3, 162 .flags = IORESOURCE_MEM, 163 }, 164 [1] = {
-2
arch/sh/kernel/process_64.c
··· 520 int error; 521 char *filename; 522 523 - lock_kernel(); 524 filename = getname((char __user *)ufilename); 525 error = PTR_ERR(filename); 526 if (IS_ERR(filename)) ··· 536 } 537 putname(filename); 538 out: 539 - unlock_kernel(); 540 return error; 541 } 542
··· 520 int error; 521 char *filename; 522 523 filename = getname((char __user *)ufilename); 524 error = PTR_ERR(filename); 525 if (IS_ERR(filename)) ··· 537 } 538 putname(filename); 539 out: 540 return error; 541 } 542
+4 -5
arch/sh/kernel/traps_32.c
··· 125 * - userspace errors just cause EFAULT to be returned, resulting in SEGV 126 * - kernel/userspace interfaces cause a jump to an appropriate handler 127 * - other kernel errors are bad 128 - * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault 129 */ 130 - static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err) 131 { 132 if (!user_mode(regs)) { 133 const struct exception_table_entry *fixup; 134 fixup = search_exception_tables(regs->pc); 135 if (fixup) { 136 regs->pc = fixup->fixup; 137 - return 0; 138 } 139 die(str, regs, err); 140 } 141 - return -EFAULT; 142 } 143 144 static inline void sign_extend(unsigned int count, unsigned char *dst) ··· 312 /* Argh. Address not only misaligned but also non-existent. 313 * Raise an EFAULT and see if it's trapped 314 */ 315 - return die_if_no_fixup("Fault in unaligned fixup", regs, 0); 316 } 317 318 /*
··· 125 * - userspace errors just cause EFAULT to be returned, resulting in SEGV 126 * - kernel/userspace interfaces cause a jump to an appropriate handler 127 * - other kernel errors are bad 128 */ 129 + static void die_if_no_fixup(const char * str, struct pt_regs * regs, long err) 130 { 131 if (!user_mode(regs)) { 132 const struct exception_table_entry *fixup; 133 fixup = search_exception_tables(regs->pc); 134 if (fixup) { 135 regs->pc = fixup->fixup; 136 + return; 137 } 138 die(str, regs, err); 139 } 140 } 141 142 static inline void sign_extend(unsigned int count, unsigned char *dst) ··· 314 /* Argh. Address not only misaligned but also non-existent. 315 * Raise an EFAULT and see if it's trapped 316 */ 317 + die_if_no_fixup("Fault in unaligned fixup", regs, 0); 318 + return -EFAULT; 319 } 320 321 /*
+1 -1
arch/sh/mm/ioremap_64.c
··· 71 * Ok, go for it.. 72 */ 73 area = get_vm_area(size, VM_IOREMAP); 74 - pr_debug("Get vm_area returns %p addr %p\n",area,area->addr); 75 if (!area) 76 return NULL; 77 area->phys_addr = phys_addr; 78 addr = area->addr; 79 if (ioremap_page_range((unsigned long)addr, (unsigned long)addr + size,
··· 71 * Ok, go for it.. 72 */ 73 area = get_vm_area(size, VM_IOREMAP); 74 if (!area) 75 return NULL; 76 + pr_debug("Get vm_area returns %p addr %p\n", area, area->addr); 77 area->phys_addr = phys_addr; 78 addr = area->addr; 79 if (ioremap_page_range((unsigned long)addr, (unsigned long)addr + size,
+4 -1
drivers/serial/sh-sci.h
··· 32 #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \ 33 defined(CONFIG_CPU_SUBTYPE_SH7721) 34 # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */ 35 - #define SCIF_ORER 0x0200 /* overrun error bit */ 36 #elif defined(CONFIG_SH_RTS7751R2D) 37 # define SCSPTR1 0xFFE0001C /* 8 bit SCIF */ 38 # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */ ··· 395 SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8) 396 SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16) 397 SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8) 398 SCIF_FNS(SCTDSR, 0x0c, 8) 399 SCIF_FNS(SCFER, 0x10, 16) 400 SCIF_FNS(SCFCR, 0x18, 16)
··· 32 #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \ 33 defined(CONFIG_CPU_SUBTYPE_SH7721) 34 # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */ 35 + # define PORT_PTCR 0xA405011EUL 36 + # define PORT_PVCR 0xA4050122UL 37 + # define SCIF_ORER 0x0200 /* overrun error bit */ 38 #elif defined(CONFIG_SH_RTS7751R2D) 39 # define SCSPTR1 0xFFE0001C /* 8 bit SCIF */ 40 # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */ ··· 393 SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8) 394 SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16) 395 SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8) 396 + SCIx_FNS(SCSPTR, 0, 0, 0, 0) 397 SCIF_FNS(SCTDSR, 0x0c, 8) 398 SCIF_FNS(SCFER, 0x10, 16) 399 SCIF_FNS(SCFCR, 0x18, 16)
+24 -23
kernel/dma-coherent.c
··· 98 * @size: size of requested memory area 99 * @dma_handle: This will be filled with the correct dma handle 100 * @ret: This pointer will be filled with the virtual address 101 - * to allocated area. 102 * 103 * This function should be only called from per-arch dma_alloc_coherent() 104 * to support allocation from per-device coherent memory pools. ··· 118 mem = dev->dma_mem; 119 if (!mem) 120 return 0; 121 - if (unlikely(size > mem->size)) 122 - return 0; 123 124 pageno = bitmap_find_free_region(mem->bitmap, mem->size, order); 125 - if (pageno >= 0) { 126 - /* 127 - * Memory was found in the per-device arena. 128 - */ 129 - *dma_handle = mem->device_base + (pageno << PAGE_SHIFT); 130 - *ret = mem->virt_base + (pageno << PAGE_SHIFT); 131 - memset(*ret, 0, size); 132 - } else if (mem->flags & DMA_MEMORY_EXCLUSIVE) { 133 - /* 134 - * The per-device arena is exhausted and we are not 135 - * permitted to fall back to generic memory. 136 - */ 137 - *ret = NULL; 138 - } else { 139 - /* 140 - * The per-device arena is exhausted and we are 141 - * permitted to fall back to generic memory. 142 - */ 143 - return 0; 144 - } 145 return 1; 146 } 147 EXPORT_SYMBOL(dma_alloc_from_coherent); 148
··· 98 * @size: size of requested memory area 99 * @dma_handle: This will be filled with the correct dma handle 100 * @ret: This pointer will be filled with the virtual address 101 + * to allocated area. 102 * 103 * This function should be only called from per-arch dma_alloc_coherent() 104 * to support allocation from per-device coherent memory pools. ··· 118 mem = dev->dma_mem; 119 if (!mem) 120 return 0; 121 + 122 + *ret = NULL; 123 + 124 + if (unlikely(size > (mem->size << PAGE_SHIFT))) 125 + goto err; 126 127 pageno = bitmap_find_free_region(mem->bitmap, mem->size, order); 128 + if (unlikely(pageno < 0)) 129 + goto err; 130 + 131 + /* 132 + * Memory was found in the per-device area. 133 + */ 134 + *dma_handle = mem->device_base + (pageno << PAGE_SHIFT); 135 + *ret = mem->virt_base + (pageno << PAGE_SHIFT); 136 + memset(*ret, 0, size); 137 + 138 return 1; 139 + 140 + err: 141 + /* 142 + * In the case where the allocation can not be satisfied from the 143 + * per-device area, try to fall back to generic memory if the 144 + * constraints allow it. 145 + */ 146 + return mem->flags & DMA_MEMORY_EXCLUSIVE; 147 } 148 EXPORT_SYMBOL(dma_alloc_from_coherent); 149
+19 -1
mm/nommu.c
··· 10 * Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com> 11 * Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org> 12 * Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com> 13 - * Copyright (c) 2007-2008 Paul Mundt <lethal@linux-sh.org> 14 */ 15 16 #include <linux/module.h> ··· 393 BUG(); 394 } 395 EXPORT_SYMBOL(vunmap); 396 397 /* 398 * Implement a stub for vmalloc_sync_all() if the architecture chose not to
··· 10 * Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com> 11 * Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org> 12 * Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com> 13 + * Copyright (c) 2007-2009 Paul Mundt <lethal@linux-sh.org> 14 */ 15 16 #include <linux/module.h> ··· 393 BUG(); 394 } 395 EXPORT_SYMBOL(vunmap); 396 + 397 + void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot) 398 + { 399 + BUG(); 400 + return NULL; 401 + } 402 + EXPORT_SYMBOL(vm_map_ram); 403 + 404 + void vm_unmap_ram(const void *mem, unsigned int count) 405 + { 406 + BUG(); 407 + } 408 + EXPORT_SYMBOL(vm_unmap_ram); 409 + 410 + void vm_unmap_aliases(void) 411 + { 412 + } 413 + EXPORT_SYMBOL_GPL(vm_unmap_aliases); 414 415 /* 416 * Implement a stub for vmalloc_sync_all() if the architecture chose not to