diff options
71 files changed, 2754 insertions, 1515 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 8932c58850be..8e3f6e943866 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
| @@ -1559,6 +1559,8 @@ and is between 256 and 4096 characters. It is defined in the file | |||
| 1559 | Valid arguments: on, off | 1559 | Valid arguments: on, off |
| 1560 | Default: on | 1560 | Default: on |
| 1561 | 1561 | ||
| 1562 | noiotrap [SH] Disables trapped I/O port accesses. | ||
| 1563 | |||
| 1562 | noirqdebug [X86-32] Disables the code which attempts to detect and | 1564 | noirqdebug [X86-32] Disables the code which attempts to detect and |
| 1563 | disable unhandled interrupt sources. | 1565 | disable unhandled interrupt sources. |
| 1564 | 1566 | ||
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 2d52b515c241..5e4babecf934 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
| @@ -28,6 +28,7 @@ config SUPERH32 | |||
| 28 | select HAVE_FTRACE_MCOUNT_RECORD | 28 | select HAVE_FTRACE_MCOUNT_RECORD |
| 29 | select HAVE_DYNAMIC_FTRACE | 29 | select HAVE_DYNAMIC_FTRACE |
| 30 | select HAVE_ARCH_KGDB | 30 | select HAVE_ARCH_KGDB |
| 31 | select ARCH_HIBERNATION_POSSIBLE if MMU | ||
| 31 | 32 | ||
| 32 | config SUPERH64 | 33 | config SUPERH64 |
| 33 | def_bool y if CPU_SH5 | 34 | def_bool y if CPU_SH5 |
| @@ -129,6 +130,9 @@ config ARCH_HAS_ILOG2_U64 | |||
| 129 | config ARCH_NO_VIRT_TO_BUS | 130 | config ARCH_NO_VIRT_TO_BUS |
| 130 | def_bool y | 131 | def_bool y |
| 131 | 132 | ||
| 133 | config ARCH_HAS_DEFAULT_IDLE | ||
| 134 | def_bool y | ||
| 135 | |||
| 132 | config IO_TRAPPED | 136 | config IO_TRAPPED |
| 133 | bool | 137 | bool |
| 134 | 138 | ||
| @@ -530,7 +534,7 @@ source kernel/Kconfig.hz | |||
| 530 | 534 | ||
| 531 | config KEXEC | 535 | config KEXEC |
| 532 | bool "kexec system call (EXPERIMENTAL)" | 536 | bool "kexec system call (EXPERIMENTAL)" |
| 533 | depends on SUPERH32 && EXPERIMENTAL | 537 | depends on SUPERH32 && EXPERIMENTAL && MMU |
| 534 | help | 538 | help |
| 535 | kexec is a system call that implements the ability to shutdown your | 539 | kexec is a system call that implements the ability to shutdown your |
| 536 | current kernel, and to start another kernel. It is like a reboot | 540 | current kernel, and to start another kernel. It is like a reboot |
diff --git a/arch/sh/boards/board-ap325rxa.c b/arch/sh/boards/board-ap325rxa.c index e27655b8a98d..912458f666eb 100644 --- a/arch/sh/boards/board-ap325rxa.c +++ b/arch/sh/boards/board-ap325rxa.c | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
| 23 | #include <linux/spi/spi.h> | 23 | #include <linux/spi/spi.h> |
| 24 | #include <linux/spi/spi_gpio.h> | 24 | #include <linux/spi/spi_gpio.h> |
| 25 | #include <media/ov772x.h> | ||
| 25 | #include <media/soc_camera.h> | 26 | #include <media/soc_camera.h> |
| 26 | #include <media/soc_camera_platform.h> | 27 | #include <media/soc_camera_platform.h> |
| 27 | #include <media/sh_mobile_ceu.h> | 28 | #include <media/sh_mobile_ceu.h> |
| @@ -235,6 +236,7 @@ static void camera_power(int val) | |||
| 235 | } | 236 | } |
| 236 | 237 | ||
| 237 | #ifdef CONFIG_I2C | 238 | #ifdef CONFIG_I2C |
| 239 | /* support for the old ncm03j camera */ | ||
| 238 | static unsigned char camera_ncm03j_magic[] = | 240 | static unsigned char camera_ncm03j_magic[] = |
| 239 | { | 241 | { |
| 240 | 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8, | 242 | 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8, |
| @@ -255,6 +257,23 @@ static unsigned char camera_ncm03j_magic[] = | |||
| 255 | 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F, | 257 | 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F, |
| 256 | }; | 258 | }; |
| 257 | 259 | ||
| 260 | static int camera_probe(void) | ||
| 261 | { | ||
| 262 | struct i2c_adapter *a = i2c_get_adapter(0); | ||
| 263 | struct i2c_msg msg; | ||
| 264 | int ret; | ||
| 265 | |||
| 266 | camera_power(1); | ||
| 267 | msg.addr = 0x6e; | ||
| 268 | msg.buf = camera_ncm03j_magic; | ||
| 269 | msg.len = 2; | ||
| 270 | msg.flags = 0; | ||
| 271 | ret = i2c_transfer(a, &msg, 1); | ||
| 272 | camera_power(0); | ||
| 273 | |||
| 274 | return ret; | ||
| 275 | } | ||
| 276 | |||
| 258 | static int camera_set_capture(struct soc_camera_platform_info *info, | 277 | static int camera_set_capture(struct soc_camera_platform_info *info, |
| 259 | int enable) | 278 | int enable) |
| 260 | { | 279 | { |
| @@ -306,12 +325,37 @@ static struct platform_device camera_device = { | |||
| 306 | .platform_data = &camera_info, | 325 | .platform_data = &camera_info, |
| 307 | }, | 326 | }, |
| 308 | }; | 327 | }; |
| 328 | |||
| 329 | static int __init camera_setup(void) | ||
| 330 | { | ||
| 331 | if (camera_probe() > 0) | ||
| 332 | platform_device_register(&camera_device); | ||
| 333 | |||
| 334 | return 0; | ||
| 335 | } | ||
| 336 | late_initcall(camera_setup); | ||
| 337 | |||
| 309 | #endif /* CONFIG_I2C */ | 338 | #endif /* CONFIG_I2C */ |
| 310 | 339 | ||
| 340 | static int ov7725_power(struct device *dev, int mode) | ||
| 341 | { | ||
| 342 | camera_power(0); | ||
| 343 | if (mode) | ||
| 344 | camera_power(1); | ||
| 345 | |||
| 346 | return 0; | ||
| 347 | } | ||
| 348 | |||
| 349 | static struct ov772x_camera_info ov7725_info = { | ||
| 350 | .buswidth = SOCAM_DATAWIDTH_8, | ||
| 351 | .flags = OV772X_FLAG_VFLIP | OV772X_FLAG_HFLIP, | ||
| 352 | .link = { | ||
| 353 | .power = ov7725_power, | ||
| 354 | }, | ||
| 355 | }; | ||
| 356 | |||
| 311 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { | 357 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { |
| 312 | .flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | | 358 | .flags = SH_CEU_FLAG_USE_8BIT_BUS, |
| 313 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_DATA_ACTIVE_HIGH | SOCAM_MASTER | | ||
| 314 | SOCAM_DATAWIDTH_8, | ||
| 315 | }; | 359 | }; |
| 316 | 360 | ||
| 317 | static struct resource ceu_resources[] = { | 361 | static struct resource ceu_resources[] = { |
| @@ -359,9 +403,6 @@ static struct platform_device *ap325rxa_devices[] __initdata = { | |||
| 359 | &ap325rxa_nor_flash_device, | 403 | &ap325rxa_nor_flash_device, |
| 360 | &lcdc_device, | 404 | &lcdc_device, |
| 361 | &ceu_device, | 405 | &ceu_device, |
| 362 | #ifdef CONFIG_I2C | ||
| 363 | &camera_device, | ||
| 364 | #endif | ||
| 365 | &nand_flash_device, | 406 | &nand_flash_device, |
| 366 | &sdcard_cn3_device, | 407 | &sdcard_cn3_device, |
| 367 | }; | 408 | }; |
| @@ -370,6 +411,10 @@ static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { | |||
| 370 | { | 411 | { |
| 371 | I2C_BOARD_INFO("pcf8563", 0x51), | 412 | I2C_BOARD_INFO("pcf8563", 0x51), |
| 372 | }, | 413 | }, |
| 414 | { | ||
| 415 | I2C_BOARD_INFO("ov772x", 0x21), | ||
| 416 | .platform_data = &ov7725_info, | ||
| 417 | }, | ||
| 373 | }; | 418 | }; |
| 374 | 419 | ||
| 375 | static struct spi_board_info ap325rxa_spi_devices[] = { | 420 | static struct spi_board_info ap325rxa_spi_devices[] = { |
diff --git a/arch/sh/boards/board-urquell.c b/arch/sh/boards/board-urquell.c index 17036ce20086..8367d1d789c3 100644 --- a/arch/sh/boards/board-urquell.c +++ b/arch/sh/boards/board-urquell.c | |||
| @@ -129,6 +129,10 @@ static int __init urquell_devices_setup(void) | |||
| 129 | gpio_request(GPIO_FN_USB_OVC0, NULL); | 129 | gpio_request(GPIO_FN_USB_OVC0, NULL); |
| 130 | gpio_request(GPIO_FN_USB_PENC0, NULL); | 130 | gpio_request(GPIO_FN_USB_PENC0, NULL); |
| 131 | 131 | ||
| 132 | /* enable LAN */ | ||
| 133 | __raw_writew(__raw_readw(UBOARDREG(IRL2MSKR)) & ~0x00000001, | ||
| 134 | UBOARDREG(IRL2MSKR)); | ||
| 135 | |||
| 132 | return platform_add_devices(urquell_devices, | 136 | return platform_add_devices(urquell_devices, |
| 133 | ARRAY_SIZE(urquell_devices)); | 137 | ARRAY_SIZE(urquell_devices)); |
| 134 | } | 138 | } |
diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index 4fd6a727873c..1ee1de0bc1c3 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c | |||
| @@ -352,9 +352,7 @@ static int tw9910_power(struct device *dev, int mode) | |||
| 352 | } | 352 | } |
| 353 | 353 | ||
| 354 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { | 354 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { |
| 355 | .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING | 355 | .flags = SH_CEU_FLAG_USE_8BIT_BUS, |
| 356 | | SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH | ||
| 357 | | SOCAM_DATA_ACTIVE_HIGH, | ||
| 358 | }; | 356 | }; |
| 359 | 357 | ||
| 360 | static struct resource migor_ceu_resources[] = { | 358 | static struct resource migor_ceu_resources[] = { |
diff --git a/arch/sh/configs/ap325rxa_defconfig b/arch/sh/configs/ap325rxa_defconfig index 352f87d50fdc..c8d982a8a2e6 100644 --- a/arch/sh/configs/ap325rxa_defconfig +++ b/arch/sh/configs/ap325rxa_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Tue Jan 27 11:45:08 2009 | 4 | # Thu Apr 2 17:46:53 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,14 +16,16 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_GPIO=y | 16 | CONFIG_GENERIC_GPIO=y |
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| 29 | # | 31 | # |
| @@ -43,6 +45,15 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 44 | # CONFIG_TASKSTATS is not set | 46 | # CONFIG_TASKSTATS is not set |
| 45 | # CONFIG_AUDIT is not set | 47 | # CONFIG_AUDIT is not set |
| 48 | |||
| 49 | # | ||
| 50 | # RCU Subsystem | ||
| 51 | # | ||
| 52 | CONFIG_CLASSIC_RCU=y | ||
| 53 | # CONFIG_TREE_RCU is not set | ||
| 54 | # CONFIG_PREEMPT_RCU is not set | ||
| 55 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 56 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | 57 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 58 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | CONFIG_GROUP_SCHED=y | 59 | CONFIG_GROUP_SCHED=y |
| @@ -58,6 +69,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 58 | # CONFIG_BLK_DEV_INITRD is not set | 69 | # CONFIG_BLK_DEV_INITRD is not set |
| 59 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 70 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 60 | CONFIG_SYSCTL=y | 71 | CONFIG_SYSCTL=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 61 | CONFIG_EMBEDDED=y | 73 | CONFIG_EMBEDDED=y |
| 62 | CONFIG_UID16=y | 74 | CONFIG_UID16=y |
| 63 | CONFIG_SYSCTL_SYSCALL=y | 75 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -66,10 +78,8 @@ CONFIG_HOTPLUG=y | |||
| 66 | CONFIG_PRINTK=y | 78 | CONFIG_PRINTK=y |
| 67 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
| 68 | CONFIG_ELF_CORE=y | 80 | CONFIG_ELF_CORE=y |
| 69 | CONFIG_COMPAT_BRK=y | ||
| 70 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
| 71 | CONFIG_FUTEX=y | 82 | CONFIG_FUTEX=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 73 | CONFIG_EPOLL=y | 83 | CONFIG_EPOLL=y |
| 74 | CONFIG_SIGNALFD=y | 84 | CONFIG_SIGNALFD=y |
| 75 | CONFIG_TIMERFD=y | 85 | CONFIG_TIMERFD=y |
| @@ -77,6 +87,7 @@ CONFIG_EVENTFD=y | |||
| 77 | CONFIG_SHMEM=y | 87 | CONFIG_SHMEM=y |
| 78 | CONFIG_AIO=y | 88 | CONFIG_AIO=y |
| 79 | CONFIG_VM_EVENT_COUNTERS=y | 89 | CONFIG_VM_EVENT_COUNTERS=y |
| 90 | CONFIG_COMPAT_BRK=y | ||
| 80 | CONFIG_SLAB=y | 91 | CONFIG_SLAB=y |
| 81 | # CONFIG_SLUB is not set | 92 | # CONFIG_SLUB is not set |
| 82 | # CONFIG_SLOB is not set | 93 | # CONFIG_SLOB is not set |
| @@ -115,11 +126,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 115 | CONFIG_DEFAULT_CFQ=y | 126 | CONFIG_DEFAULT_CFQ=y |
| 116 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
| 117 | CONFIG_DEFAULT_IOSCHED="cfq" | 128 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 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 | 129 | # CONFIG_FREEZER is not set |
| 124 | 130 | ||
| 125 | # | 131 | # |
| @@ -128,6 +134,7 @@ CONFIG_CLASSIC_RCU=y | |||
| 128 | CONFIG_CPU_SH4=y | 134 | CONFIG_CPU_SH4=y |
| 129 | CONFIG_CPU_SH4A=y | 135 | CONFIG_CPU_SH4A=y |
| 130 | CONFIG_CPU_SHX2=y | 136 | CONFIG_CPU_SHX2=y |
| 137 | CONFIG_ARCH_SHMOBILE=y | ||
| 131 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 138 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 132 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7201 is not set |
| 133 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 140 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| @@ -156,6 +163,7 @@ CONFIG_CPU_SUBTYPE_SH7723=y | |||
| 156 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 159 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 167 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -198,11 +206,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 198 | CONFIG_ZONE_DMA_FLAG=0 | 206 | CONFIG_ZONE_DMA_FLAG=0 |
| 199 | CONFIG_NR_QUICK=2 | 207 | CONFIG_NR_QUICK=2 |
| 200 | CONFIG_UNEVICTABLE_LRU=y | 208 | CONFIG_UNEVICTABLE_LRU=y |
| 209 | CONFIG_HAVE_MLOCK=y | ||
| 210 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 201 | 211 | ||
| 202 | # | 212 | # |
| 203 | # Cache configuration | 213 | # Cache configuration |
| 204 | # | 214 | # |
| 205 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 206 | CONFIG_CACHE_WRITEBACK=y | 215 | CONFIG_CACHE_WRITEBACK=y |
| 207 | # CONFIG_CACHE_WRITETHROUGH is not set | 216 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 208 | # CONFIG_CACHE_OFF is not set | 217 | # CONFIG_CACHE_OFF is not set |
| @@ -228,6 +237,7 @@ CONFIG_SH_AP325RXA=y | |||
| 228 | # Timer and clock configuration | 237 | # Timer and clock configuration |
| 229 | # | 238 | # |
| 230 | CONFIG_SH_TMU=y | 239 | CONFIG_SH_TMU=y |
| 240 | # CONFIG_SH_TIMER_CMT is not set | ||
| 231 | CONFIG_SH_TIMER_IRQ=16 | 241 | CONFIG_SH_TIMER_IRQ=16 |
| 232 | CONFIG_SH_PCLK_FREQ=33333333 | 242 | CONFIG_SH_PCLK_FREQ=33333333 |
| 233 | CONFIG_TICK_ONESHOT=y | 243 | CONFIG_TICK_ONESHOT=y |
| @@ -304,7 +314,6 @@ CONFIG_NET=y | |||
| 304 | # | 314 | # |
| 305 | # Networking options | 315 | # Networking options |
| 306 | # | 316 | # |
| 307 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 308 | CONFIG_PACKET=y | 317 | CONFIG_PACKET=y |
| 309 | # CONFIG_PACKET_MMAP is not set | 318 | # CONFIG_PACKET_MMAP is not set |
| 310 | CONFIG_UNIX=y | 319 | CONFIG_UNIX=y |
| @@ -359,6 +368,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 359 | # CONFIG_LAPB is not set | 368 | # CONFIG_LAPB is not set |
| 360 | # CONFIG_ECONET is not set | 369 | # CONFIG_ECONET is not set |
| 361 | # CONFIG_WAN_ROUTER is not set | 370 | # CONFIG_WAN_ROUTER is not set |
| 371 | # CONFIG_PHONET is not set | ||
| 362 | # CONFIG_NET_SCHED is not set | 372 | # CONFIG_NET_SCHED is not set |
| 363 | # CONFIG_DCB is not set | 373 | # CONFIG_DCB is not set |
| 364 | 374 | ||
| @@ -371,7 +381,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 371 | # CONFIG_IRDA is not set | 381 | # CONFIG_IRDA is not set |
| 372 | # CONFIG_BT is not set | 382 | # CONFIG_BT is not set |
| 373 | # CONFIG_AF_RXRPC is not set | 383 | # CONFIG_AF_RXRPC is not set |
| 374 | # CONFIG_PHONET is not set | ||
| 375 | CONFIG_WIRELESS=y | 384 | CONFIG_WIRELESS=y |
| 376 | # CONFIG_CFG80211 is not set | 385 | # CONFIG_CFG80211 is not set |
| 377 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 386 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -483,7 +492,6 @@ CONFIG_MTD_NAND_SH_FLCTL=y | |||
| 483 | # LPDDR flash memory drivers | 492 | # LPDDR flash memory drivers |
| 484 | # | 493 | # |
| 485 | # CONFIG_MTD_LPDDR is not set | 494 | # CONFIG_MTD_LPDDR is not set |
| 486 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 487 | 495 | ||
| 488 | # | 496 | # |
| 489 | # UBI - Unsorted block images | 497 | # UBI - Unsorted block images |
| @@ -510,10 +518,18 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 510 | # CONFIG_ATA_OVER_ETH is not set | 518 | # CONFIG_ATA_OVER_ETH is not set |
| 511 | # CONFIG_BLK_DEV_HD is not set | 519 | # CONFIG_BLK_DEV_HD is not set |
| 512 | CONFIG_MISC_DEVICES=y | 520 | CONFIG_MISC_DEVICES=y |
| 513 | # CONFIG_EEPROM_93CX6 is not set | ||
| 514 | # CONFIG_ICS932S401 is not set | 521 | # CONFIG_ICS932S401 is not set |
| 515 | # CONFIG_ENCLOSURE_SERVICES is not set | 522 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 523 | # CONFIG_ISL29003 is not set | ||
| 516 | # CONFIG_C2PORT is not set | 524 | # CONFIG_C2PORT is not set |
| 525 | |||
| 526 | # | ||
| 527 | # EEPROM support | ||
| 528 | # | ||
| 529 | # CONFIG_EEPROM_AT24 is not set | ||
| 530 | # CONFIG_EEPROM_AT25 is not set | ||
| 531 | # CONFIG_EEPROM_LEGACY is not set | ||
| 532 | # CONFIG_EEPROM_93CX6 is not set | ||
| 517 | CONFIG_HAVE_IDE=y | 533 | CONFIG_HAVE_IDE=y |
| 518 | # CONFIG_IDE is not set | 534 | # CONFIG_IDE is not set |
| 519 | 535 | ||
| @@ -559,9 +575,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 559 | # CONFIG_LIBFC is not set | 575 | # CONFIG_LIBFC is not set |
| 560 | # CONFIG_SCSI_DEBUG is not set | 576 | # CONFIG_SCSI_DEBUG is not set |
| 561 | # CONFIG_SCSI_DH is not set | 577 | # CONFIG_SCSI_DH is not set |
| 578 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 562 | # CONFIG_ATA is not set | 579 | # CONFIG_ATA is not set |
| 563 | # CONFIG_MD is not set | 580 | # CONFIG_MD is not set |
| 564 | CONFIG_NETDEVICES=y | 581 | CONFIG_NETDEVICES=y |
| 582 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 565 | # CONFIG_DUMMY is not set | 583 | # CONFIG_DUMMY is not set |
| 566 | # CONFIG_BONDING is not set | 584 | # CONFIG_BONDING is not set |
| 567 | # CONFIG_MACVLAN is not set | 585 | # CONFIG_MACVLAN is not set |
| @@ -594,8 +612,10 @@ CONFIG_MII=y | |||
| 594 | # CONFIG_STNIC is not set | 612 | # CONFIG_STNIC is not set |
| 595 | # CONFIG_SMC91X is not set | 613 | # CONFIG_SMC91X is not set |
| 596 | # CONFIG_ENC28J60 is not set | 614 | # CONFIG_ENC28J60 is not set |
| 615 | # CONFIG_ETHOC is not set | ||
| 597 | # CONFIG_SMC911X is not set | 616 | # CONFIG_SMC911X is not set |
| 598 | CONFIG_SMSC911X=y | 617 | CONFIG_SMSC911X=y |
| 618 | # CONFIG_DNET is not set | ||
| 599 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 619 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 600 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 620 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 601 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 621 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -612,7 +632,6 @@ CONFIG_SMSC911X=y | |||
| 612 | # | 632 | # |
| 613 | # CONFIG_WLAN_PRE80211 is not set | 633 | # CONFIG_WLAN_PRE80211 is not set |
| 614 | # CONFIG_WLAN_80211 is not set | 634 | # CONFIG_WLAN_80211 is not set |
| 615 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 616 | 635 | ||
| 617 | # | 636 | # |
| 618 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 637 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -687,6 +706,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 687 | CONFIG_LEGACY_PTY_COUNT=256 | 706 | CONFIG_LEGACY_PTY_COUNT=256 |
| 688 | # CONFIG_IPMI_HANDLER is not set | 707 | # CONFIG_IPMI_HANDLER is not set |
| 689 | CONFIG_HW_RANDOM=y | 708 | CONFIG_HW_RANDOM=y |
| 709 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 690 | # CONFIG_R3964 is not set | 710 | # CONFIG_R3964 is not set |
| 691 | # CONFIG_RAW_DRIVER is not set | 711 | # CONFIG_RAW_DRIVER is not set |
| 692 | # CONFIG_TCG_TPM is not set | 712 | # CONFIG_TCG_TPM is not set |
| @@ -723,12 +743,9 @@ CONFIG_I2C_SH_MOBILE=y | |||
| 723 | # Miscellaneous I2C Chip support | 743 | # Miscellaneous I2C Chip support |
| 724 | # | 744 | # |
| 725 | # CONFIG_DS1682 is not set | 745 | # CONFIG_DS1682 is not set |
| 726 | # CONFIG_AT24 is not set | ||
| 727 | # CONFIG_SENSORS_EEPROM is not set | ||
| 728 | # CONFIG_SENSORS_PCF8574 is not set | 746 | # CONFIG_SENSORS_PCF8574 is not set |
| 729 | # CONFIG_PCF8575 is not set | 747 | # CONFIG_PCF8575 is not set |
| 730 | # CONFIG_SENSORS_PCA9539 is not set | 748 | # CONFIG_SENSORS_PCA9539 is not set |
| 731 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 732 | # CONFIG_SENSORS_MAX6875 is not set | 749 | # CONFIG_SENSORS_MAX6875 is not set |
| 733 | # CONFIG_SENSORS_TSL2550 is not set | 750 | # CONFIG_SENSORS_TSL2550 is not set |
| 734 | # CONFIG_I2C_DEBUG_CORE is not set | 751 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -748,7 +765,6 @@ CONFIG_SPI_GPIO=y | |||
| 748 | # | 765 | # |
| 749 | # SPI Protocol Masters | 766 | # SPI Protocol Masters |
| 750 | # | 767 | # |
| 751 | # CONFIG_SPI_AT25 is not set | ||
| 752 | # CONFIG_SPI_SPIDEV is not set | 768 | # CONFIG_SPI_SPIDEV is not set |
| 753 | # CONFIG_SPI_TLE62X0 is not set | 769 | # CONFIG_SPI_TLE62X0 is not set |
| 754 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | 770 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
| @@ -822,7 +838,7 @@ CONFIG_VIDEO_MEDIA=y | |||
| 822 | # | 838 | # |
| 823 | # CONFIG_MEDIA_ATTACH is not set | 839 | # CONFIG_MEDIA_ATTACH is not set |
| 824 | CONFIG_MEDIA_TUNER=y | 840 | CONFIG_MEDIA_TUNER=y |
| 825 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 841 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 826 | CONFIG_MEDIA_TUNER_SIMPLE=y | 842 | CONFIG_MEDIA_TUNER_SIMPLE=y |
| 827 | CONFIG_MEDIA_TUNER_TDA8290=y | 843 | CONFIG_MEDIA_TUNER_TDA8290=y |
| 828 | CONFIG_MEDIA_TUNER_TDA9887=y | 844 | CONFIG_MEDIA_TUNER_TDA9887=y |
| @@ -831,6 +847,7 @@ CONFIG_MEDIA_TUNER_TEA5767=y | |||
| 831 | CONFIG_MEDIA_TUNER_MT20XX=y | 847 | CONFIG_MEDIA_TUNER_MT20XX=y |
| 832 | CONFIG_MEDIA_TUNER_XC2028=y | 848 | CONFIG_MEDIA_TUNER_XC2028=y |
| 833 | CONFIG_MEDIA_TUNER_XC5000=y | 849 | CONFIG_MEDIA_TUNER_XC5000=y |
| 850 | CONFIG_MEDIA_TUNER_MC44S803=y | ||
| 834 | CONFIG_VIDEO_V4L2=y | 851 | CONFIG_VIDEO_V4L2=y |
| 835 | CONFIG_VIDEOBUF_GEN=y | 852 | CONFIG_VIDEOBUF_GEN=y |
| 836 | CONFIG_VIDEOBUF_DMA_CONTIG=y | 853 | CONFIG_VIDEOBUF_DMA_CONTIG=y |
| @@ -886,6 +903,7 @@ CONFIG_FB_SH_MOBILE_LCDC=y | |||
| 886 | # CONFIG_FB_VIRTUAL is not set | 903 | # CONFIG_FB_VIRTUAL is not set |
| 887 | # CONFIG_FB_METRONOME is not set | 904 | # CONFIG_FB_METRONOME is not set |
| 888 | # CONFIG_FB_MB862XX is not set | 905 | # CONFIG_FB_MB862XX is not set |
| 906 | # CONFIG_FB_BROADSHEET is not set | ||
| 889 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 907 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 890 | 908 | ||
| 891 | # | 909 | # |
| @@ -995,6 +1013,7 @@ CONFIG_RTC_DRV_PCF8563=y | |||
| 995 | # | 1013 | # |
| 996 | # CONFIG_RTC_DRV_SH is not set | 1014 | # CONFIG_RTC_DRV_SH is not set |
| 997 | # CONFIG_DMADEVICES is not set | 1015 | # CONFIG_DMADEVICES is not set |
| 1016 | # CONFIG_AUXDISPLAY is not set | ||
| 998 | CONFIG_UIO=y | 1017 | CONFIG_UIO=y |
| 999 | # CONFIG_UIO_PDRV is not set | 1018 | # CONFIG_UIO_PDRV is not set |
| 1000 | CONFIG_UIO_PDRV_GENIRQ=y | 1019 | CONFIG_UIO_PDRV_GENIRQ=y |
| @@ -1096,7 +1115,6 @@ CONFIG_LOCKD_V4=y | |||
| 1096 | CONFIG_EXPORTFS=y | 1115 | CONFIG_EXPORTFS=y |
| 1097 | CONFIG_NFS_COMMON=y | 1116 | CONFIG_NFS_COMMON=y |
| 1098 | CONFIG_SUNRPC=y | 1117 | CONFIG_SUNRPC=y |
| 1099 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1100 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1118 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1101 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1119 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1102 | # CONFIG_SMB_FS is not set | 1120 | # CONFIG_SMB_FS is not set |
| @@ -1177,7 +1195,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1177 | # | 1195 | # |
| 1178 | # Tracers | 1196 | # Tracers |
| 1179 | # | 1197 | # |
| 1180 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1181 | # CONFIG_SAMPLES is not set | 1198 | # CONFIG_SAMPLES is not set |
| 1182 | CONFIG_HAVE_ARCH_KGDB=y | 1199 | CONFIG_HAVE_ARCH_KGDB=y |
| 1183 | # CONFIG_SH_STANDARD_BIOS is not set | 1200 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1204,10 +1221,12 @@ CONFIG_CRYPTO_BLKCIPHER=y | |||
| 1204 | CONFIG_CRYPTO_BLKCIPHER2=y | 1221 | CONFIG_CRYPTO_BLKCIPHER2=y |
| 1205 | CONFIG_CRYPTO_HASH2=y | 1222 | CONFIG_CRYPTO_HASH2=y |
| 1206 | CONFIG_CRYPTO_RNG2=y | 1223 | CONFIG_CRYPTO_RNG2=y |
| 1224 | CONFIG_CRYPTO_PCOMP=y | ||
| 1207 | CONFIG_CRYPTO_MANAGER=y | 1225 | CONFIG_CRYPTO_MANAGER=y |
| 1208 | CONFIG_CRYPTO_MANAGER2=y | 1226 | CONFIG_CRYPTO_MANAGER2=y |
| 1209 | # CONFIG_CRYPTO_GF128MUL is not set | 1227 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1210 | # CONFIG_CRYPTO_NULL is not set | 1228 | # CONFIG_CRYPTO_NULL is not set |
| 1229 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1211 | # CONFIG_CRYPTO_CRYPTD is not set | 1230 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1212 | # CONFIG_CRYPTO_AUTHENC is not set | 1231 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1213 | # CONFIG_CRYPTO_TEST is not set | 1232 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1276,6 +1295,7 @@ CONFIG_CRYPTO_CBC=y | |||
| 1276 | # Compression | 1295 | # Compression |
| 1277 | # | 1296 | # |
| 1278 | # CONFIG_CRYPTO_DEFLATE is not set | 1297 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1298 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1279 | # CONFIG_CRYPTO_LZO is not set | 1299 | # CONFIG_CRYPTO_LZO is not set |
| 1280 | 1300 | ||
| 1281 | # | 1301 | # |
| @@ -1296,7 +1316,7 @@ CONFIG_CRC_ITU_T=y | |||
| 1296 | CONFIG_CRC32=y | 1316 | CONFIG_CRC32=y |
| 1297 | CONFIG_CRC7=y | 1317 | CONFIG_CRC7=y |
| 1298 | # CONFIG_LIBCRC32C is not set | 1318 | # CONFIG_LIBCRC32C is not set |
| 1299 | CONFIG_PLIST=y | ||
| 1300 | CONFIG_HAS_IOMEM=y | 1319 | CONFIG_HAS_IOMEM=y |
| 1301 | CONFIG_HAS_IOPORT=y | 1320 | CONFIG_HAS_IOPORT=y |
| 1302 | CONFIG_HAS_DMA=y | 1321 | CONFIG_HAS_DMA=y |
| 1322 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/cayman_defconfig b/arch/sh/configs/cayman_defconfig index 92895013813d..fa5fc1e1e980 100644 --- a/arch/sh/configs/cayman_defconfig +++ b/arch/sh/configs/cayman_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.27 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Wed Oct 22 18:04:52 2008 | 4 | # Thu Apr 2 17:49:14 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | # CONFIG_SUPERH32 is not set | 7 | # CONFIG_SUPERH32 is not set |
| @@ -16,6 +16,8 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | # CONFIG_GENERIC_GPIO is not set | 16 | # CONFIG_GENERIC_GPIO is not set |
| 17 | # CONFIG_GENERIC_TIME is not set | 17 | # CONFIG_GENERIC_TIME is not set |
| 18 | # CONFIG_GENERIC_CLOCKEVENTS 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 | ||
| 19 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 20 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 21 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -23,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 27 | 30 | ||
| 28 | # | 31 | # |
| @@ -40,10 +43,19 @@ CONFIG_POSIX_MQUEUE=y | |||
| 40 | # CONFIG_BSD_PROCESS_ACCT is not set | 43 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 41 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 42 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 43 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 44 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 45 | # CONFIG_CGROUPS is not set | ||
| 46 | # CONFIG_GROUP_SCHED is not set | 57 | # CONFIG_GROUP_SCHED is not set |
| 58 | # CONFIG_CGROUPS is not set | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | 59 | CONFIG_SYSFS_DEPRECATED=y |
| 48 | CONFIG_SYSFS_DEPRECATED_V2=y | 60 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 49 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| @@ -51,6 +63,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 51 | # CONFIG_BLK_DEV_INITRD is not set | 63 | # CONFIG_BLK_DEV_INITRD is not set |
| 52 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 64 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 53 | CONFIG_SYSCTL=y | 65 | CONFIG_SYSCTL=y |
| 66 | CONFIG_ANON_INODES=y | ||
| 54 | CONFIG_EMBEDDED=y | 67 | CONFIG_EMBEDDED=y |
| 55 | CONFIG_UID16=y | 68 | CONFIG_UID16=y |
| 56 | CONFIG_SYSCTL_SYSCALL=y | 69 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -61,10 +74,8 @@ CONFIG_HOTPLUG=y | |||
| 61 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 62 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 63 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 64 | CONFIG_COMPAT_BRK=y | ||
| 65 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 66 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 67 | CONFIG_ANON_INODES=y | ||
| 68 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 69 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 70 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -73,18 +84,18 @@ CONFIG_SHMEM=y | |||
| 73 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 74 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 75 | CONFIG_PCI_QUIRKS=y | 86 | CONFIG_PCI_QUIRKS=y |
| 87 | CONFIG_COMPAT_BRK=y | ||
| 76 | CONFIG_SLAB=y | 88 | CONFIG_SLAB=y |
| 77 | # CONFIG_SLUB is not set | 89 | # CONFIG_SLUB is not set |
| 78 | # CONFIG_SLOB is not set | 90 | # CONFIG_SLOB is not set |
| 79 | # CONFIG_PROFILING is not set | 91 | # CONFIG_PROFILING is not set |
| 80 | # CONFIG_MARKERS is not set | ||
| 81 | CONFIG_HAVE_OPROFILE=y | 92 | CONFIG_HAVE_OPROFILE=y |
| 82 | CONFIG_HAVE_IOREMAP_PROT=y | 93 | CONFIG_HAVE_IOREMAP_PROT=y |
| 94 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 83 | CONFIG_HAVE_CLK=y | 95 | CONFIG_HAVE_CLK=y |
| 84 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 96 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
| 85 | CONFIG_SLABINFO=y | 97 | CONFIG_SLABINFO=y |
| 86 | CONFIG_RT_MUTEXES=y | 98 | CONFIG_RT_MUTEXES=y |
| 87 | # CONFIG_TINY_SHMEM is not set | ||
| 88 | CONFIG_BASE_SMALL=0 | 99 | CONFIG_BASE_SMALL=0 |
| 89 | CONFIG_MODULES=y | 100 | CONFIG_MODULES=y |
| 90 | # CONFIG_MODULE_FORCE_LOAD is not set | 101 | # CONFIG_MODULE_FORCE_LOAD is not set |
| @@ -92,11 +103,9 @@ CONFIG_MODULE_UNLOAD=y | |||
| 92 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 103 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 93 | # CONFIG_MODVERSIONS is not set | 104 | # CONFIG_MODVERSIONS is not set |
| 94 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 105 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 95 | CONFIG_KMOD=y | ||
| 96 | CONFIG_BLOCK=y | 106 | CONFIG_BLOCK=y |
| 97 | # CONFIG_LBD is not set | 107 | # CONFIG_LBD is not set |
| 98 | # CONFIG_BLK_DEV_IO_TRACE is not set | 108 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 99 | # CONFIG_LSF is not set | ||
| 100 | # CONFIG_BLK_DEV_BSG is not set | 109 | # CONFIG_BLK_DEV_BSG is not set |
| 101 | # CONFIG_BLK_DEV_INTEGRITY is not set | 110 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 102 | 111 | ||
| @@ -112,7 +121,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 112 | CONFIG_DEFAULT_CFQ=y | 121 | CONFIG_DEFAULT_CFQ=y |
| 113 | # CONFIG_DEFAULT_NOOP is not set | 122 | # CONFIG_DEFAULT_NOOP is not set |
| 114 | CONFIG_DEFAULT_IOSCHED="cfq" | 123 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 115 | CONFIG_CLASSIC_RCU=y | ||
| 116 | # CONFIG_FREEZER is not set | 124 | # CONFIG_FREEZER is not set |
| 117 | 125 | ||
| 118 | # | 126 | # |
| @@ -120,6 +128,7 @@ CONFIG_CLASSIC_RCU=y | |||
| 120 | # | 128 | # |
| 121 | CONFIG_CPU_SH5=y | 129 | CONFIG_CPU_SH5=y |
| 122 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 130 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 131 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | ||
| 123 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 132 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| 124 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | 133 | # CONFIG_CPU_SUBTYPE_SH7206 is not set |
| 125 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | 134 | # CONFIG_CPU_SUBTYPE_SH7263 is not set |
| @@ -146,6 +155,7 @@ CONFIG_CPU_SH5=y | |||
| 146 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 147 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 148 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 149 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 159 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 150 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 151 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -188,16 +198,16 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 188 | CONFIG_SPARSEMEM_STATIC=y | 198 | CONFIG_SPARSEMEM_STATIC=y |
| 189 | CONFIG_PAGEFLAGS_EXTENDED=y | 199 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 190 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 200 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 191 | CONFIG_RESOURCES_64BIT=y | ||
| 192 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 201 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 193 | CONFIG_ZONE_DMA_FLAG=0 | 202 | CONFIG_ZONE_DMA_FLAG=0 |
| 194 | CONFIG_NR_QUICK=2 | 203 | CONFIG_NR_QUICK=2 |
| 195 | CONFIG_UNEVICTABLE_LRU=y | 204 | CONFIG_UNEVICTABLE_LRU=y |
| 205 | CONFIG_HAVE_MLOCK=y | ||
| 206 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 196 | 207 | ||
| 197 | # | 208 | # |
| 198 | # Cache configuration | 209 | # Cache configuration |
| 199 | # | 210 | # |
| 200 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 201 | # CONFIG_CACHE_WRITEBACK is not set | 211 | # CONFIG_CACHE_WRITEBACK is not set |
| 202 | # CONFIG_CACHE_WRITETHROUGH is not set | 212 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 203 | CONFIG_CACHE_OFF=y | 213 | CONFIG_CACHE_OFF=y |
| @@ -256,7 +266,6 @@ CONFIG_HZ=250 | |||
| 256 | # CONFIG_PREEMPT_NONE is not set | 266 | # CONFIG_PREEMPT_NONE is not set |
| 257 | # CONFIG_PREEMPT_VOLUNTARY is not set | 267 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 258 | CONFIG_PREEMPT=y | 268 | CONFIG_PREEMPT=y |
| 259 | # CONFIG_PREEMPT_RCU is not set | ||
| 260 | 269 | ||
| 261 | # | 270 | # |
| 262 | # Boot options | 271 | # Boot options |
| @@ -272,9 +281,12 @@ CONFIG_PCI=y | |||
| 272 | CONFIG_SH_PCIDMA_NONCOHERENT=y | 281 | CONFIG_SH_PCIDMA_NONCOHERENT=y |
| 273 | CONFIG_PCI_AUTO=y | 282 | CONFIG_PCI_AUTO=y |
| 274 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | 283 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y |
| 284 | # CONFIG_PCIEPORTBUS is not set | ||
| 275 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 285 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 276 | CONFIG_PCI_LEGACY=y | 286 | CONFIG_PCI_LEGACY=y |
| 277 | # CONFIG_PCI_DEBUG is not set | 287 | # CONFIG_PCI_DEBUG is not set |
| 288 | # CONFIG_PCI_STUB is not set | ||
| 289 | # CONFIG_PCI_IOV is not set | ||
| 278 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 279 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 280 | 292 | ||
| @@ -285,6 +297,12 @@ CONFIG_BINFMT_ELF=y | |||
| 285 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 297 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
| 286 | # CONFIG_HAVE_AOUT is not set | 298 | # CONFIG_HAVE_AOUT is not set |
| 287 | # CONFIG_BINFMT_MISC 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 | ||
| 288 | CONFIG_NET=y | 306 | CONFIG_NET=y |
| 289 | 307 | ||
| 290 | # | 308 | # |
| @@ -344,7 +362,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 344 | # CONFIG_LAPB is not set | 362 | # CONFIG_LAPB is not set |
| 345 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
| 346 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 347 | # CONFIG_NET_SCHED is not set | 366 | # CONFIG_NET_SCHED is not set |
| 367 | # CONFIG_DCB is not set | ||
| 348 | 368 | ||
| 349 | # | 369 | # |
| 350 | # Network testing | 370 | # Network testing |
| @@ -355,13 +375,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 355 | # CONFIG_IRDA is not set | 375 | # CONFIG_IRDA is not set |
| 356 | # CONFIG_BT is not set | 376 | # CONFIG_BT is not set |
| 357 | # CONFIG_AF_RXRPC is not set | 377 | # CONFIG_AF_RXRPC is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 359 | CONFIG_WIRELESS=y | 378 | CONFIG_WIRELESS=y |
| 360 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
| 361 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 380 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 362 | # CONFIG_WIRELESS_EXT is not set | 381 | # CONFIG_WIRELESS_EXT is not set |
| 382 | # CONFIG_LIB80211 is not set | ||
| 363 | # CONFIG_MAC80211 is not set | 383 | # CONFIG_MAC80211 is not set |
| 364 | # CONFIG_IEEE80211 is not set | 384 | # CONFIG_WIMAX is not set |
| 365 | # CONFIG_RFKILL is not set | 385 | # CONFIG_RFKILL is not set |
| 366 | # CONFIG_NET_9P is not set | 386 | # CONFIG_NET_9P is not set |
| 367 | 387 | ||
| @@ -400,11 +420,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 400 | # CONFIG_BLK_DEV_HD is not set | 420 | # CONFIG_BLK_DEV_HD is not set |
| 401 | CONFIG_MISC_DEVICES=y | 421 | CONFIG_MISC_DEVICES=y |
| 402 | # CONFIG_PHANTOM is not set | 422 | # CONFIG_PHANTOM is not set |
| 403 | # CONFIG_EEPROM_93CX6 is not set | ||
| 404 | # CONFIG_SGI_IOC4 is not set | 423 | # CONFIG_SGI_IOC4 is not set |
| 405 | # CONFIG_TIFM_CORE is not set | 424 | # CONFIG_TIFM_CORE is not set |
| 425 | # CONFIG_ICS932S401 is not set | ||
| 406 | # CONFIG_ENCLOSURE_SERVICES is not set | 426 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 407 | # CONFIG_HP_ILO is not set | 427 | # CONFIG_HP_ILO is not set |
| 428 | # CONFIG_ISL29003 is not set | ||
| 429 | # CONFIG_C2PORT is not set | ||
| 430 | |||
| 431 | # | ||
| 432 | # EEPROM support | ||
| 433 | # | ||
| 434 | # CONFIG_EEPROM_AT24 is not set | ||
| 435 | # CONFIG_EEPROM_LEGACY is not set | ||
| 436 | # CONFIG_EEPROM_93CX6 is not set | ||
| 408 | CONFIG_HAVE_IDE=y | 437 | CONFIG_HAVE_IDE=y |
| 409 | # CONFIG_IDE is not set | 438 | # CONFIG_IDE is not set |
| 410 | 439 | ||
| @@ -447,6 +476,7 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
| 447 | # CONFIG_SCSI_SRP_ATTRS is not set | 476 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 448 | CONFIG_SCSI_LOWLEVEL=y | 477 | CONFIG_SCSI_LOWLEVEL=y |
| 449 | # CONFIG_ISCSI_TCP is not set | 478 | # CONFIG_ISCSI_TCP is not set |
| 479 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
| 450 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 480 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 451 | # CONFIG_SCSI_3W_9XXX is not set | 481 | # CONFIG_SCSI_3W_9XXX is not set |
| 452 | # CONFIG_SCSI_ACARD is not set | 482 | # CONFIG_SCSI_ACARD is not set |
| @@ -459,7 +489,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 459 | # CONFIG_MEGARAID_NEWGEN is not set | 489 | # CONFIG_MEGARAID_NEWGEN is not set |
| 460 | # CONFIG_MEGARAID_LEGACY is not set | 490 | # CONFIG_MEGARAID_LEGACY is not set |
| 461 | # CONFIG_MEGARAID_SAS is not set | 491 | # CONFIG_MEGARAID_SAS is not set |
| 492 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 462 | # CONFIG_SCSI_HPTIOP is not set | 493 | # CONFIG_SCSI_HPTIOP is not set |
| 494 | # CONFIG_LIBFC is not set | ||
| 495 | # CONFIG_FCOE is not set | ||
| 463 | # CONFIG_SCSI_DMX3191D is not set | 496 | # CONFIG_SCSI_DMX3191D is not set |
| 464 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 497 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
| 465 | # CONFIG_SCSI_IPS is not set | 498 | # CONFIG_SCSI_IPS is not set |
| @@ -478,6 +511,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 478 | # CONFIG_SCSI_DEBUG is not set | 511 | # CONFIG_SCSI_DEBUG is not set |
| 479 | # CONFIG_SCSI_SRP is not set | 512 | # CONFIG_SCSI_SRP is not set |
| 480 | # CONFIG_SCSI_DH is not set | 513 | # CONFIG_SCSI_DH is not set |
| 514 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 481 | # CONFIG_ATA is not set | 515 | # CONFIG_ATA is not set |
| 482 | # CONFIG_MD is not set | 516 | # CONFIG_MD is not set |
| 483 | # CONFIG_FUSION is not set | 517 | # CONFIG_FUSION is not set |
| @@ -493,6 +527,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 493 | # CONFIG_IEEE1394 is not set | 527 | # CONFIG_IEEE1394 is not set |
| 494 | # CONFIG_I2O is not set | 528 | # CONFIG_I2O is not set |
| 495 | CONFIG_NETDEVICES=y | 529 | CONFIG_NETDEVICES=y |
| 530 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 496 | # CONFIG_DUMMY is not set | 531 | # CONFIG_DUMMY is not set |
| 497 | # CONFIG_BONDING is not set | 532 | # CONFIG_BONDING is not set |
| 498 | # CONFIG_MACVLAN is not set | 533 | # CONFIG_MACVLAN is not set |
| @@ -510,7 +545,10 @@ CONFIG_NET_ETHERNET=y | |||
| 510 | # CONFIG_CASSINI is not set | 545 | # CONFIG_CASSINI is not set |
| 511 | # CONFIG_NET_VENDOR_3COM is not set | 546 | # CONFIG_NET_VENDOR_3COM is not set |
| 512 | # CONFIG_SMC91X is not set | 547 | # CONFIG_SMC91X is not set |
| 548 | # CONFIG_ETHOC is not set | ||
| 513 | # CONFIG_SMC911X is not set | 549 | # CONFIG_SMC911X is not set |
| 550 | # CONFIG_SMSC911X is not set | ||
| 551 | # CONFIG_DNET is not set | ||
| 514 | # CONFIG_NET_TULIP is not set | 552 | # CONFIG_NET_TULIP is not set |
| 515 | # CONFIG_HP100 is not set | 553 | # CONFIG_HP100 is not set |
| 516 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 554 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -543,9 +581,11 @@ CONFIG_NETDEV_1000=y | |||
| 543 | # CONFIG_QLA3XXX is not set | 581 | # CONFIG_QLA3XXX is not set |
| 544 | # CONFIG_ATL1 is not set | 582 | # CONFIG_ATL1 is not set |
| 545 | # CONFIG_ATL1E is not set | 583 | # CONFIG_ATL1E is not set |
| 584 | # CONFIG_ATL1C is not set | ||
| 546 | # CONFIG_JME is not set | 585 | # CONFIG_JME is not set |
| 547 | CONFIG_NETDEV_10000=y | 586 | CONFIG_NETDEV_10000=y |
| 548 | # CONFIG_CHELSIO_T1 is not set | 587 | # CONFIG_CHELSIO_T1 is not set |
| 588 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
| 549 | # CONFIG_CHELSIO_T3 is not set | 589 | # CONFIG_CHELSIO_T3 is not set |
| 550 | # CONFIG_ENIC is not set | 590 | # CONFIG_ENIC is not set |
| 551 | # CONFIG_IXGBE is not set | 591 | # CONFIG_IXGBE is not set |
| @@ -554,11 +594,13 @@ CONFIG_NETDEV_10000=y | |||
| 554 | # CONFIG_MYRI10GE is not set | 594 | # CONFIG_MYRI10GE is not set |
| 555 | # CONFIG_NETXEN_NIC is not set | 595 | # CONFIG_NETXEN_NIC is not set |
| 556 | # CONFIG_NIU is not set | 596 | # CONFIG_NIU is not set |
| 597 | # CONFIG_MLX4_EN is not set | ||
| 557 | # CONFIG_MLX4_CORE is not set | 598 | # CONFIG_MLX4_CORE is not set |
| 558 | # CONFIG_TEHUTI is not set | 599 | # CONFIG_TEHUTI is not set |
| 559 | # CONFIG_BNX2X is not set | 600 | # CONFIG_BNX2X is not set |
| 560 | # CONFIG_QLGE is not set | 601 | # CONFIG_QLGE is not set |
| 561 | # CONFIG_SFC is not set | 602 | # CONFIG_SFC is not set |
| 603 | # CONFIG_BE2NET is not set | ||
| 562 | # CONFIG_TR is not set | 604 | # CONFIG_TR is not set |
| 563 | 605 | ||
| 564 | # | 606 | # |
| @@ -566,7 +608,10 @@ CONFIG_NETDEV_10000=y | |||
| 566 | # | 608 | # |
| 567 | # CONFIG_WLAN_PRE80211 is not set | 609 | # CONFIG_WLAN_PRE80211 is not set |
| 568 | # CONFIG_WLAN_80211 is not set | 610 | # CONFIG_WLAN_80211 is not set |
| 569 | # CONFIG_IWLWIFI_LEDS is not set | 611 | |
| 612 | # | ||
| 613 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 614 | # | ||
| 570 | # CONFIG_WAN is not set | 615 | # CONFIG_WAN is not set |
| 571 | # CONFIG_FDDI is not set | 616 | # CONFIG_FDDI is not set |
| 572 | # CONFIG_HIPPI is not set | 617 | # CONFIG_HIPPI is not set |
| @@ -636,10 +681,12 @@ CONFIG_DEVKMEM=y | |||
| 636 | # CONFIG_SERIAL_SH_SCI is not set | 681 | # CONFIG_SERIAL_SH_SCI is not set |
| 637 | # CONFIG_SERIAL_JSM is not set | 682 | # CONFIG_SERIAL_JSM is not set |
| 638 | CONFIG_UNIX98_PTYS=y | 683 | CONFIG_UNIX98_PTYS=y |
| 684 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 639 | CONFIG_LEGACY_PTYS=y | 685 | CONFIG_LEGACY_PTYS=y |
| 640 | CONFIG_LEGACY_PTY_COUNT=256 | 686 | CONFIG_LEGACY_PTY_COUNT=256 |
| 641 | # CONFIG_IPMI_HANDLER is not set | 687 | # CONFIG_IPMI_HANDLER is not set |
| 642 | CONFIG_HW_RANDOM=y | 688 | CONFIG_HW_RANDOM=y |
| 689 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 643 | # CONFIG_R3964 is not set | 690 | # CONFIG_R3964 is not set |
| 644 | # CONFIG_APPLICOM is not set | 691 | # CONFIG_APPLICOM is not set |
| 645 | # CONFIG_RAW_DRIVER is not set | 692 | # CONFIG_RAW_DRIVER is not set |
| @@ -700,12 +747,9 @@ CONFIG_I2C_HELPER_AUTO=y | |||
| 700 | # Miscellaneous I2C Chip support | 747 | # Miscellaneous I2C Chip support |
| 701 | # | 748 | # |
| 702 | # CONFIG_DS1682 is not set | 749 | # CONFIG_DS1682 is not set |
| 703 | # CONFIG_EEPROM_AT24 is not set | ||
| 704 | # CONFIG_EEPROM_LEGACY is not set | ||
| 705 | # CONFIG_SENSORS_PCF8574 is not set | 750 | # CONFIG_SENSORS_PCF8574 is not set |
| 706 | # CONFIG_PCF8575 is not set | 751 | # CONFIG_PCF8575 is not set |
| 707 | # CONFIG_SENSORS_PCA9539 is not set | 752 | # CONFIG_SENSORS_PCA9539 is not set |
| 708 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 709 | # CONFIG_SENSORS_MAX6875 is not set | 753 | # CONFIG_SENSORS_MAX6875 is not set |
| 710 | # CONFIG_SENSORS_TSL2550 is not set | 754 | # CONFIG_SENSORS_TSL2550 is not set |
| 711 | # CONFIG_I2C_DEBUG_CORE is not set | 755 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -725,8 +769,10 @@ CONFIG_HWMON=y | |||
| 725 | # CONFIG_SENSORS_ADM1029 is not set | 769 | # CONFIG_SENSORS_ADM1029 is not set |
| 726 | # CONFIG_SENSORS_ADM1031 is not set | 770 | # CONFIG_SENSORS_ADM1031 is not set |
| 727 | # CONFIG_SENSORS_ADM9240 is not set | 771 | # CONFIG_SENSORS_ADM9240 is not set |
| 772 | # CONFIG_SENSORS_ADT7462 is not set | ||
| 728 | # CONFIG_SENSORS_ADT7470 is not set | 773 | # CONFIG_SENSORS_ADT7470 is not set |
| 729 | # CONFIG_SENSORS_ADT7473 is not set | 774 | # CONFIG_SENSORS_ADT7473 is not set |
| 775 | # CONFIG_SENSORS_ADT7475 is not set | ||
| 730 | # CONFIG_SENSORS_ATXP1 is not set | 776 | # CONFIG_SENSORS_ATXP1 is not set |
| 731 | # CONFIG_SENSORS_DS1621 is not set | 777 | # CONFIG_SENSORS_DS1621 is not set |
| 732 | # CONFIG_SENSORS_I5K_AMB is not set | 778 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -747,10 +793,14 @@ CONFIG_HWMON=y | |||
| 747 | # CONFIG_SENSORS_LM90 is not set | 793 | # CONFIG_SENSORS_LM90 is not set |
| 748 | # CONFIG_SENSORS_LM92 is not set | 794 | # CONFIG_SENSORS_LM92 is not set |
| 749 | # CONFIG_SENSORS_LM93 is not set | 795 | # CONFIG_SENSORS_LM93 is not set |
| 796 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 797 | # CONFIG_SENSORS_LTC4245 is not set | ||
| 798 | # CONFIG_SENSORS_LM95241 is not set | ||
| 750 | # CONFIG_SENSORS_MAX1619 is not set | 799 | # CONFIG_SENSORS_MAX1619 is not set |
| 751 | # CONFIG_SENSORS_MAX6650 is not set | 800 | # CONFIG_SENSORS_MAX6650 is not set |
| 752 | # CONFIG_SENSORS_PC87360 is not set | 801 | # CONFIG_SENSORS_PC87360 is not set |
| 753 | # CONFIG_SENSORS_PC87427 is not set | 802 | # CONFIG_SENSORS_PC87427 is not set |
| 803 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 754 | # CONFIG_SENSORS_SIS5595 is not set | 804 | # CONFIG_SENSORS_SIS5595 is not set |
| 755 | # CONFIG_SENSORS_DME1737 is not set | 805 | # CONFIG_SENSORS_DME1737 is not set |
| 756 | # CONFIG_SENSORS_SMSC47M1 is not set | 806 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -786,11 +836,11 @@ CONFIG_WATCHDOG=y | |||
| 786 | # | 836 | # |
| 787 | # CONFIG_PCIPCWATCHDOG is not set | 837 | # CONFIG_PCIPCWATCHDOG is not set |
| 788 | # CONFIG_WDTPCI is not set | 838 | # CONFIG_WDTPCI is not set |
| 839 | CONFIG_SSB_POSSIBLE=y | ||
| 789 | 840 | ||
| 790 | # | 841 | # |
| 791 | # Sonics Silicon Backplane | 842 | # Sonics Silicon Backplane |
| 792 | # | 843 | # |
| 793 | CONFIG_SSB_POSSIBLE=y | ||
| 794 | # CONFIG_SSB is not set | 844 | # CONFIG_SSB is not set |
| 795 | 845 | ||
| 796 | # | 846 | # |
| @@ -802,6 +852,8 @@ CONFIG_SSB_POSSIBLE=y | |||
| 802 | # CONFIG_MFD_TMIO is not set | 852 | # CONFIG_MFD_TMIO is not set |
| 803 | # CONFIG_MFD_WM8400 is not set | 853 | # CONFIG_MFD_WM8400 is not set |
| 804 | # CONFIG_MFD_WM8350_I2C is not set | 854 | # CONFIG_MFD_WM8350_I2C is not set |
| 855 | # CONFIG_MFD_PCF50633 is not set | ||
| 856 | # CONFIG_REGULATOR is not set | ||
| 805 | 857 | ||
| 806 | # | 858 | # |
| 807 | # Multimedia devices | 859 | # Multimedia devices |
| @@ -822,7 +874,7 @@ CONFIG_VIDEO_MEDIA=m | |||
| 822 | # | 874 | # |
| 823 | # CONFIG_MEDIA_ATTACH is not set | 875 | # CONFIG_MEDIA_ATTACH is not set |
| 824 | CONFIG_MEDIA_TUNER=m | 876 | CONFIG_MEDIA_TUNER=m |
| 825 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 877 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 826 | CONFIG_MEDIA_TUNER_SIMPLE=m | 878 | CONFIG_MEDIA_TUNER_SIMPLE=m |
| 827 | CONFIG_MEDIA_TUNER_TDA8290=m | 879 | CONFIG_MEDIA_TUNER_TDA8290=m |
| 828 | CONFIG_MEDIA_TUNER_TDA9887=m | 880 | CONFIG_MEDIA_TUNER_TDA9887=m |
| @@ -831,6 +883,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
| 831 | CONFIG_MEDIA_TUNER_MT20XX=m | 883 | CONFIG_MEDIA_TUNER_MT20XX=m |
| 832 | CONFIG_MEDIA_TUNER_XC2028=m | 884 | CONFIG_MEDIA_TUNER_XC2028=m |
| 833 | CONFIG_MEDIA_TUNER_XC5000=m | 885 | CONFIG_MEDIA_TUNER_XC5000=m |
| 886 | CONFIG_MEDIA_TUNER_MC44S803=m | ||
| 834 | CONFIG_VIDEO_V4L2=m | 887 | CONFIG_VIDEO_V4L2=m |
| 835 | CONFIG_VIDEO_V4L1=m | 888 | CONFIG_VIDEO_V4L1=m |
| 836 | CONFIG_VIDEO_CAPTURE_DRIVERS=y | 889 | CONFIG_VIDEO_CAPTURE_DRIVERS=y |
| @@ -853,6 +906,7 @@ CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | |||
| 853 | # CONFIG_VIDEO_CAFE_CCIC is not set | 906 | # CONFIG_VIDEO_CAFE_CCIC is not set |
| 854 | # CONFIG_SOC_CAMERA is not set | 907 | # CONFIG_SOC_CAMERA is not set |
| 855 | # CONFIG_RADIO_ADAPTERS is not set | 908 | # CONFIG_RADIO_ADAPTERS is not set |
| 909 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
| 856 | CONFIG_DVB_CAPTURE_DRIVERS=y | 910 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 857 | 911 | ||
| 858 | # | 912 | # |
| @@ -884,89 +938,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 884 | # | 938 | # |
| 885 | # Supported DVB Frontends | 939 | # Supported DVB Frontends |
| 886 | # | 940 | # |
| 887 | |||
| 888 | # | ||
| 889 | # Customise DVB Frontends | ||
| 890 | # | ||
| 891 | # CONFIG_DVB_FE_CUSTOMISE is not set | 941 | # CONFIG_DVB_FE_CUSTOMISE is not set |
| 892 | |||
| 893 | # | ||
| 894 | # DVB-S (satellite) frontends | ||
| 895 | # | ||
| 896 | # CONFIG_DVB_CX24110 is not set | ||
| 897 | # CONFIG_DVB_CX24123 is not set | ||
| 898 | # CONFIG_DVB_MT312 is not set | ||
| 899 | # CONFIG_DVB_S5H1420 is not set | ||
| 900 | # CONFIG_DVB_STV0288 is not set | ||
| 901 | # CONFIG_DVB_STB6000 is not set | ||
| 902 | # CONFIG_DVB_STV0299 is not set | ||
| 903 | # CONFIG_DVB_TDA8083 is not set | ||
| 904 | # CONFIG_DVB_TDA10086 is not set | ||
| 905 | # CONFIG_DVB_VES1X93 is not set | ||
| 906 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 907 | # CONFIG_DVB_TDA826X is not set | ||
| 908 | # CONFIG_DVB_TUA6100 is not set | ||
| 909 | # CONFIG_DVB_CX24116 is not set | ||
| 910 | # CONFIG_DVB_SI21XX is not set | ||
| 911 | |||
| 912 | # | ||
| 913 | # DVB-T (terrestrial) frontends | ||
| 914 | # | ||
| 915 | # CONFIG_DVB_SP8870 is not set | ||
| 916 | # CONFIG_DVB_SP887X is not set | ||
| 917 | # CONFIG_DVB_CX22700 is not set | ||
| 918 | # CONFIG_DVB_CX22702 is not set | ||
| 919 | # CONFIG_DVB_DRX397XD is not set | ||
| 920 | # CONFIG_DVB_L64781 is not set | ||
| 921 | # CONFIG_DVB_TDA1004X is not set | ||
| 922 | # CONFIG_DVB_NXT6000 is not set | ||
| 923 | # CONFIG_DVB_MT352 is not set | ||
| 924 | # CONFIG_DVB_ZL10353 is not set | ||
| 925 | # CONFIG_DVB_DIB3000MB is not set | ||
| 926 | # CONFIG_DVB_DIB3000MC is not set | ||
| 927 | # CONFIG_DVB_DIB7000M is not set | ||
| 928 | # CONFIG_DVB_DIB7000P is not set | ||
| 929 | # CONFIG_DVB_TDA10048 is not set | ||
| 930 | |||
| 931 | # | ||
| 932 | # DVB-C (cable) frontends | ||
| 933 | # | ||
| 934 | # CONFIG_DVB_VES1820 is not set | ||
| 935 | # CONFIG_DVB_TDA10021 is not set | ||
| 936 | # CONFIG_DVB_TDA10023 is not set | ||
| 937 | # CONFIG_DVB_STV0297 is not set | ||
| 938 | |||
| 939 | # | ||
| 940 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
| 941 | # | ||
| 942 | # CONFIG_DVB_NXT200X is not set | ||
| 943 | # CONFIG_DVB_OR51211 is not set | ||
| 944 | # CONFIG_DVB_OR51132 is not set | ||
| 945 | # CONFIG_DVB_BCM3510 is not set | ||
| 946 | # CONFIG_DVB_LGDT330X is not set | ||
| 947 | # CONFIG_DVB_S5H1409 is not set | ||
| 948 | # CONFIG_DVB_AU8522 is not set | ||
| 949 | # CONFIG_DVB_S5H1411 is not set | ||
| 950 | |||
| 951 | # | ||
| 952 | # Digital terrestrial only tuners/PLL | ||
| 953 | # | ||
| 954 | # CONFIG_DVB_PLL is not set | ||
| 955 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
| 956 | |||
| 957 | # | ||
| 958 | # SEC control devices for DVB-S | ||
| 959 | # | ||
| 960 | # CONFIG_DVB_LNBP21 is not set | ||
| 961 | # CONFIG_DVB_ISL6405 is not set | ||
| 962 | # CONFIG_DVB_ISL6421 is not set | ||
| 963 | # CONFIG_DVB_LGS8GL5 is not set | ||
| 964 | |||
| 965 | # | ||
| 966 | # Tools to develop new frontends | ||
| 967 | # | ||
| 968 | # CONFIG_DVB_DUMMY_FE is not set | ||
| 969 | # CONFIG_DVB_AF9013 is not set | ||
| 970 | CONFIG_DAB=y | 942 | CONFIG_DAB=y |
| 971 | 943 | ||
| 972 | # | 944 | # |
| @@ -979,15 +951,16 @@ CONFIG_FB=y | |||
| 979 | CONFIG_FIRMWARE_EDID=y | 951 | CONFIG_FIRMWARE_EDID=y |
| 980 | # CONFIG_FB_DDC is not set | 952 | # CONFIG_FB_DDC is not set |
| 981 | # CONFIG_FB_BOOT_VESA_SUPPORT is not set | 953 | # CONFIG_FB_BOOT_VESA_SUPPORT is not set |
| 982 | CONFIG_FB_CFB_FILLRECT=m | 954 | # CONFIG_FB_CFB_FILLRECT is not set |
| 983 | CONFIG_FB_CFB_COPYAREA=m | 955 | # CONFIG_FB_CFB_COPYAREA is not set |
| 984 | CONFIG_FB_CFB_IMAGEBLIT=m | 956 | # CONFIG_FB_CFB_IMAGEBLIT is not set |
| 985 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | 957 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set |
| 986 | # CONFIG_FB_SYS_FILLRECT is not set | 958 | CONFIG_FB_SYS_FILLRECT=m |
| 987 | # CONFIG_FB_SYS_COPYAREA is not set | 959 | CONFIG_FB_SYS_COPYAREA=m |
| 988 | # CONFIG_FB_SYS_IMAGEBLIT is not set | 960 | CONFIG_FB_SYS_IMAGEBLIT=m |
| 989 | # CONFIG_FB_FOREIGN_ENDIAN is not set | 961 | # CONFIG_FB_FOREIGN_ENDIAN is not set |
| 990 | # CONFIG_FB_SYS_FOPS is not set | 962 | CONFIG_FB_SYS_FOPS=m |
| 963 | CONFIG_FB_DEFERRED_IO=y | ||
| 991 | # CONFIG_FB_SVGALIB is not set | 964 | # CONFIG_FB_SVGALIB is not set |
| 992 | # CONFIG_FB_MACMODES is not set | 965 | # CONFIG_FB_MACMODES is not set |
| 993 | # CONFIG_FB_BACKLIGHT is not set | 966 | # CONFIG_FB_BACKLIGHT is not set |
| @@ -1025,6 +998,8 @@ CONFIG_FB_MODE_HELPERS=y | |||
| 1025 | CONFIG_FB_SH_MOBILE_LCDC=m | 998 | CONFIG_FB_SH_MOBILE_LCDC=m |
| 1026 | # CONFIG_FB_VIRTUAL is not set | 999 | # CONFIG_FB_VIRTUAL is not set |
| 1027 | # CONFIG_FB_METRONOME is not set | 1000 | # CONFIG_FB_METRONOME is not set |
| 1001 | # CONFIG_FB_MB862XX is not set | ||
| 1002 | # CONFIG_FB_BROADSHEET is not set | ||
| 1028 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1003 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 1029 | 1004 | ||
| 1030 | # | 1005 | # |
| @@ -1081,9 +1056,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1081 | # | 1056 | # |
| 1082 | 1057 | ||
| 1083 | # | 1058 | # |
| 1084 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1059 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1085 | # | 1060 | # |
| 1086 | # CONFIG_USB_GADGET is not set | 1061 | # CONFIG_USB_GADGET is not set |
| 1062 | |||
| 1063 | # | ||
| 1064 | # OTG and related infrastructure | ||
| 1065 | # | ||
| 1066 | # CONFIG_UWB is not set | ||
| 1087 | # CONFIG_MMC is not set | 1067 | # CONFIG_MMC is not set |
| 1088 | # CONFIG_MEMSTICK is not set | 1068 | # CONFIG_MEMSTICK is not set |
| 1089 | # CONFIG_NEW_LEDS is not set | 1069 | # CONFIG_NEW_LEDS is not set |
| @@ -1091,6 +1071,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1091 | # CONFIG_INFINIBAND is not set | 1071 | # CONFIG_INFINIBAND is not set |
| 1092 | # CONFIG_RTC_CLASS is not set | 1072 | # CONFIG_RTC_CLASS is not set |
| 1093 | # CONFIG_DMADEVICES is not set | 1073 | # CONFIG_DMADEVICES is not set |
| 1074 | # CONFIG_AUXDISPLAY is not set | ||
| 1094 | # CONFIG_UIO is not set | 1075 | # CONFIG_UIO is not set |
| 1095 | # CONFIG_STAGING is not set | 1076 | # CONFIG_STAGING is not set |
| 1096 | 1077 | ||
| @@ -1114,6 +1095,7 @@ CONFIG_FS_MBCACHE=y | |||
| 1114 | CONFIG_FILE_LOCKING=y | 1095 | CONFIG_FILE_LOCKING=y |
| 1115 | # CONFIG_XFS_FS is not set | 1096 | # CONFIG_XFS_FS is not set |
| 1116 | # CONFIG_OCFS2_FS is not set | 1097 | # CONFIG_OCFS2_FS is not set |
| 1098 | # CONFIG_BTRFS_FS is not set | ||
| 1117 | CONFIG_DNOTIFY=y | 1099 | CONFIG_DNOTIFY=y |
| 1118 | CONFIG_INOTIFY=y | 1100 | CONFIG_INOTIFY=y |
| 1119 | CONFIG_INOTIFY_USER=y | 1101 | CONFIG_INOTIFY_USER=y |
| @@ -1148,10 +1130,7 @@ CONFIG_TMPFS=y | |||
| 1148 | CONFIG_HUGETLBFS=y | 1130 | CONFIG_HUGETLBFS=y |
| 1149 | CONFIG_HUGETLB_PAGE=y | 1131 | CONFIG_HUGETLB_PAGE=y |
| 1150 | # CONFIG_CONFIGFS_FS is not set | 1132 | # CONFIG_CONFIGFS_FS is not set |
| 1151 | 1133 | CONFIG_MISC_FILESYSTEMS=y | |
| 1152 | # | ||
| 1153 | # Miscellaneous filesystems | ||
| 1154 | # | ||
| 1155 | # CONFIG_ADFS_FS is not set | 1134 | # CONFIG_ADFS_FS is not set |
| 1156 | # CONFIG_AFFS_FS is not set | 1135 | # CONFIG_AFFS_FS is not set |
| 1157 | # CONFIG_HFS_FS is not set | 1136 | # CONFIG_HFS_FS is not set |
| @@ -1160,6 +1139,7 @@ CONFIG_HUGETLB_PAGE=y | |||
| 1160 | # CONFIG_BFS_FS is not set | 1139 | # CONFIG_BFS_FS is not set |
| 1161 | # CONFIG_EFS_FS is not set | 1140 | # CONFIG_EFS_FS is not set |
| 1162 | # CONFIG_CRAMFS is not set | 1141 | # CONFIG_CRAMFS is not set |
| 1142 | # CONFIG_SQUASHFS is not set | ||
| 1163 | # CONFIG_VXFS_FS is not set | 1143 | # CONFIG_VXFS_FS is not set |
| 1164 | CONFIG_MINIX_FS=y | 1144 | CONFIG_MINIX_FS=y |
| 1165 | # CONFIG_OMFS_FS is not set | 1145 | # CONFIG_OMFS_FS is not set |
| @@ -1179,7 +1159,6 @@ CONFIG_LOCKD=y | |||
| 1179 | CONFIG_LOCKD_V4=y | 1159 | CONFIG_LOCKD_V4=y |
| 1180 | CONFIG_NFS_COMMON=y | 1160 | CONFIG_NFS_COMMON=y |
| 1181 | CONFIG_SUNRPC=y | 1161 | CONFIG_SUNRPC=y |
| 1182 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1183 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1162 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1184 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1163 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1185 | # CONFIG_SMB_FS is not set | 1164 | # CONFIG_SMB_FS is not set |
| @@ -1252,6 +1231,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1252 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1231 | # CONFIG_DEBUG_MEMORY_INIT is not set |
| 1253 | # CONFIG_DEBUG_LIST is not set | 1232 | # CONFIG_DEBUG_LIST is not set |
| 1254 | # CONFIG_DEBUG_SG is not set | 1233 | # CONFIG_DEBUG_SG is not set |
| 1234 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
| 1255 | CONFIG_FRAME_POINTER=y | 1235 | CONFIG_FRAME_POINTER=y |
| 1256 | # CONFIG_RCU_TORTURE_TEST is not set | 1236 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1257 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1237 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
| @@ -1260,17 +1240,25 @@ CONFIG_FRAME_POINTER=y | |||
| 1260 | # CONFIG_FAULT_INJECTION is not set | 1240 | # CONFIG_FAULT_INJECTION is not set |
| 1261 | # CONFIG_LATENCYTOP is not set | 1241 | # CONFIG_LATENCYTOP is not set |
| 1262 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1242 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
| 1263 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1243 | # CONFIG_PAGE_POISONING is not set |
| 1244 | |||
| 1245 | # | ||
| 1246 | # Tracers | ||
| 1247 | # | ||
| 1248 | # CONFIG_SCHED_TRACER is not set | ||
| 1249 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1250 | # CONFIG_BOOT_TRACER is not set | ||
| 1251 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1252 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 1264 | # CONFIG_SAMPLES is not set | 1253 | # CONFIG_SAMPLES is not set |
| 1265 | # CONFIG_EARLY_SCIF_CONSOLE is not set | 1254 | # CONFIG_EARLY_SCIF_CONSOLE is not set |
| 1266 | # CONFIG_DEBUG_BOOTMEM is not set | 1255 | # CONFIG_DEBUG_BOOTMEM is not set |
| 1267 | # CONFIG_DEBUG_STACK_USAGE is not set | 1256 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1268 | # CONFIG_4KSTACKS is not set | 1257 | # CONFIG_4KSTACKS is not set |
| 1269 | CONFIG_SH64_PROC_ASIDS=y | 1258 | # CONFIG_SH_NO_BSS_INIT is not set |
| 1259 | # CONFIG_MORE_COMPILE_OPTIONS is not set | ||
| 1270 | CONFIG_SH64_SR_WATCH=y | 1260 | CONFIG_SH64_SR_WATCH=y |
| 1271 | # CONFIG_POOR_MANS_STRACE is not set | 1261 | # CONFIG_POOR_MANS_STRACE is not set |
| 1272 | # CONFIG_SH_ALPHANUMERIC is not set | ||
| 1273 | # CONFIG_SH_NO_BSS_INIT is not set | ||
| 1274 | 1262 | ||
| 1275 | # | 1263 | # |
| 1276 | # Security options | 1264 | # Security options |
| @@ -1286,6 +1274,7 @@ CONFIG_CRYPTO=y | |||
| 1286 | # | 1274 | # |
| 1287 | # CONFIG_CRYPTO_FIPS is not set | 1275 | # CONFIG_CRYPTO_FIPS is not set |
| 1288 | # CONFIG_CRYPTO_MANAGER is not set | 1276 | # CONFIG_CRYPTO_MANAGER is not set |
| 1277 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
| 1289 | # CONFIG_CRYPTO_GF128MUL is not set | 1278 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1290 | # CONFIG_CRYPTO_NULL is not set | 1279 | # CONFIG_CRYPTO_NULL is not set |
| 1291 | # CONFIG_CRYPTO_CRYPTD is not set | 1280 | # CONFIG_CRYPTO_CRYPTD is not set |
| @@ -1356,6 +1345,7 @@ CONFIG_CRYPTO=y | |||
| 1356 | # Compression | 1345 | # Compression |
| 1357 | # | 1346 | # |
| 1358 | # CONFIG_CRYPTO_DEFLATE is not set | 1347 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1348 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1359 | # CONFIG_CRYPTO_LZO is not set | 1349 | # CONFIG_CRYPTO_LZO is not set |
| 1360 | 1350 | ||
| 1361 | # | 1351 | # |
| @@ -1369,6 +1359,7 @@ CONFIG_CRYPTO_HW=y | |||
| 1369 | # Library routines | 1359 | # Library routines |
| 1370 | # | 1360 | # |
| 1371 | CONFIG_BITREVERSE=y | 1361 | CONFIG_BITREVERSE=y |
| 1362 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 1372 | # CONFIG_CRC_CCITT is not set | 1363 | # CONFIG_CRC_CCITT is not set |
| 1373 | # CONFIG_CRC16 is not set | 1364 | # CONFIG_CRC16 is not set |
| 1374 | # CONFIG_CRC_T10DIF is not set | 1365 | # CONFIG_CRC_T10DIF is not set |
| @@ -1376,7 +1367,7 @@ CONFIG_BITREVERSE=y | |||
| 1376 | CONFIG_CRC32=y | 1367 | CONFIG_CRC32=y |
| 1377 | # CONFIG_CRC7 is not set | 1368 | # CONFIG_CRC7 is not set |
| 1378 | # CONFIG_LIBCRC32C is not set | 1369 | # CONFIG_LIBCRC32C is not set |
| 1379 | CONFIG_PLIST=y | ||
| 1380 | CONFIG_HAS_IOMEM=y | 1370 | CONFIG_HAS_IOMEM=y |
| 1381 | CONFIG_HAS_IOPORT=y | 1371 | CONFIG_HAS_IOPORT=y |
| 1382 | CONFIG_HAS_DMA=y | 1372 | CONFIG_HAS_DMA=y |
| 1373 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/dreamcast_defconfig b/arch/sh/configs/dreamcast_defconfig index 2d86e0487517..5c1123640142 100644 --- a/arch/sh/configs/dreamcast_defconfig +++ b/arch/sh/configs/dreamcast_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 16:54:55 2009 | 4 | # Thu Apr 2 17:51:48 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -44,10 +45,19 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 45 | # CONFIG_TASKSTATS is not set | 46 | # CONFIG_TASKSTATS is not set |
| 46 | # CONFIG_AUDIT is not set | 47 | # CONFIG_AUDIT is not set |
| 48 | |||
| 49 | # | ||
| 50 | # RCU Subsystem | ||
| 51 | # | ||
| 52 | CONFIG_CLASSIC_RCU=y | ||
| 53 | # CONFIG_TREE_RCU is not set | ||
| 54 | # CONFIG_PREEMPT_RCU is not set | ||
| 55 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 56 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 47 | # CONFIG_IKCONFIG is not set | 57 | # CONFIG_IKCONFIG is not set |
| 48 | CONFIG_LOG_BUF_SHIFT=14 | 58 | CONFIG_LOG_BUF_SHIFT=14 |
| 49 | # CONFIG_CGROUPS is not set | ||
| 50 | # CONFIG_GROUP_SCHED is not set | 59 | # CONFIG_GROUP_SCHED is not set |
| 60 | # CONFIG_CGROUPS is not set | ||
| 51 | CONFIG_SYSFS_DEPRECATED=y | 61 | CONFIG_SYSFS_DEPRECATED=y |
| 52 | CONFIG_SYSFS_DEPRECATED_V2=y | 62 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 53 | # CONFIG_RELAY is not set | 63 | # CONFIG_RELAY is not set |
| @@ -55,6 +65,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 55 | # CONFIG_BLK_DEV_INITRD is not set | 65 | # CONFIG_BLK_DEV_INITRD is not set |
| 56 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 66 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 57 | CONFIG_SYSCTL=y | 67 | CONFIG_SYSCTL=y |
| 68 | CONFIG_ANON_INODES=y | ||
| 58 | CONFIG_EMBEDDED=y | 69 | CONFIG_EMBEDDED=y |
| 59 | CONFIG_UID16=y | 70 | CONFIG_UID16=y |
| 60 | # CONFIG_SYSCTL_SYSCALL is not set | 71 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -64,10 +75,8 @@ CONFIG_HOTPLUG=y | |||
| 64 | CONFIG_PRINTK=y | 75 | CONFIG_PRINTK=y |
| 65 | CONFIG_BUG=y | 76 | CONFIG_BUG=y |
| 66 | CONFIG_ELF_CORE=y | 77 | CONFIG_ELF_CORE=y |
| 67 | CONFIG_COMPAT_BRK=y | ||
| 68 | CONFIG_BASE_FULL=y | 78 | CONFIG_BASE_FULL=y |
| 69 | CONFIG_FUTEX=y | 79 | CONFIG_FUTEX=y |
| 70 | CONFIG_ANON_INODES=y | ||
| 71 | CONFIG_EPOLL=y | 80 | CONFIG_EPOLL=y |
| 72 | CONFIG_SIGNALFD=y | 81 | CONFIG_SIGNALFD=y |
| 73 | CONFIG_TIMERFD=y | 82 | CONFIG_TIMERFD=y |
| @@ -76,6 +85,7 @@ CONFIG_SHMEM=y | |||
| 76 | CONFIG_AIO=y | 85 | CONFIG_AIO=y |
| 77 | CONFIG_VM_EVENT_COUNTERS=y | 86 | CONFIG_VM_EVENT_COUNTERS=y |
| 78 | CONFIG_PCI_QUIRKS=y | 87 | CONFIG_PCI_QUIRKS=y |
| 88 | CONFIG_COMPAT_BRK=y | ||
| 79 | CONFIG_SLAB=y | 89 | CONFIG_SLAB=y |
| 80 | # CONFIG_SLUB is not set | 90 | # CONFIG_SLUB is not set |
| 81 | # CONFIG_SLOB is not set | 91 | # CONFIG_SLOB is not set |
| @@ -116,11 +126,6 @@ CONFIG_DEFAULT_AS=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
| 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 128 | 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 | 129 | # CONFIG_FREEZER is not set |
| 125 | 130 | ||
| 126 | # | 131 | # |
| @@ -155,6 +160,7 @@ CONFIG_CPU_SUBTYPE_SH7091=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 164 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -202,11 +208,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 202 | CONFIG_ZONE_DMA_FLAG=0 | 208 | CONFIG_ZONE_DMA_FLAG=0 |
| 203 | CONFIG_NR_QUICK=2 | 209 | CONFIG_NR_QUICK=2 |
| 204 | CONFIG_UNEVICTABLE_LRU=y | 210 | CONFIG_UNEVICTABLE_LRU=y |
| 211 | CONFIG_HAVE_MLOCK=y | ||
| 212 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 205 | 213 | ||
| 206 | # | 214 | # |
| 207 | # Cache configuration | 215 | # Cache configuration |
| 208 | # | 216 | # |
| 209 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 210 | CONFIG_CACHE_WRITEBACK=y | 217 | CONFIG_CACHE_WRITEBACK=y |
| 211 | # CONFIG_CACHE_WRITETHROUGH is not set | 218 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 212 | # CONFIG_CACHE_OFF is not set | 219 | # CONFIG_CACHE_OFF is not set |
| @@ -263,9 +270,12 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y | |||
| 263 | # | 270 | # |
| 264 | CONFIG_SH_DMA_API=y | 271 | CONFIG_SH_DMA_API=y |
| 265 | CONFIG_SH_DMA=y | 272 | CONFIG_SH_DMA=y |
| 266 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 273 | CONFIG_SH_DMA_IRQ_MULTI=y |
| 274 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 | ||
| 267 | CONFIG_NR_DMA_CHANNELS_BOOL=y | 275 | CONFIG_NR_DMA_CHANNELS_BOOL=y |
| 268 | CONFIG_NR_DMA_CHANNELS=9 | 276 | CONFIG_NR_DMA_CHANNELS=9 |
| 277 | # CONFIG_PVR2_DMA is not set | ||
| 278 | # CONFIG_G2_DMA is not set | ||
| 269 | 279 | ||
| 270 | # | 280 | # |
| 271 | # Companion Chips | 281 | # Companion Chips |
| @@ -314,6 +324,8 @@ CONFIG_PCI_AUTO=y | |||
| 314 | # CONFIG_PCIEPORTBUS is not set | 324 | # CONFIG_PCIEPORTBUS is not set |
| 315 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 325 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 316 | CONFIG_PCI_LEGACY=y | 326 | CONFIG_PCI_LEGACY=y |
| 327 | # CONFIG_PCI_STUB is not set | ||
| 328 | # CONFIG_PCI_IOV is not set | ||
| 317 | # CONFIG_PCCARD is not set | 329 | # CONFIG_PCCARD is not set |
| 318 | # CONFIG_HOTPLUG_PCI is not set | 330 | # CONFIG_HOTPLUG_PCI is not set |
| 319 | 331 | ||
| @@ -335,7 +347,6 @@ CONFIG_NET=y | |||
| 335 | # | 347 | # |
| 336 | # Networking options | 348 | # Networking options |
| 337 | # | 349 | # |
| 338 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 339 | CONFIG_PACKET=y | 350 | CONFIG_PACKET=y |
| 340 | # CONFIG_PACKET_MMAP is not set | 351 | # CONFIG_PACKET_MMAP is not set |
| 341 | CONFIG_UNIX=y | 352 | CONFIG_UNIX=y |
| @@ -387,6 +398,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 387 | # CONFIG_LAPB is not set | 398 | # CONFIG_LAPB is not set |
| 388 | # CONFIG_ECONET is not set | 399 | # CONFIG_ECONET is not set |
| 389 | # CONFIG_WAN_ROUTER is not set | 400 | # CONFIG_WAN_ROUTER is not set |
| 401 | # CONFIG_PHONET is not set | ||
| 390 | # CONFIG_NET_SCHED is not set | 402 | # CONFIG_NET_SCHED is not set |
| 391 | # CONFIG_DCB is not set | 403 | # CONFIG_DCB is not set |
| 392 | 404 | ||
| @@ -399,13 +411,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 399 | # CONFIG_IRDA is not set | 411 | # CONFIG_IRDA is not set |
| 400 | # CONFIG_BT is not set | 412 | # CONFIG_BT is not set |
| 401 | # CONFIG_AF_RXRPC is not set | 413 | # CONFIG_AF_RXRPC is not set |
| 402 | # CONFIG_PHONET is not set | ||
| 403 | CONFIG_WIRELESS=y | 414 | CONFIG_WIRELESS=y |
| 404 | # CONFIG_CFG80211 is not set | 415 | # CONFIG_CFG80211 is not set |
| 405 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 416 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 406 | # CONFIG_WIRELESS_EXT is not set | 417 | # CONFIG_WIRELESS_EXT is not set |
| 407 | # CONFIG_LIB80211 is not set | 418 | # CONFIG_LIB80211 is not set |
| 408 | # CONFIG_MAC80211 is not set | 419 | # CONFIG_MAC80211 is not set |
| 420 | # CONFIG_WIMAX is not set | ||
| 409 | # CONFIG_RFKILL is not set | 421 | # CONFIG_RFKILL is not set |
| 410 | # CONFIG_NET_9P is not set | 422 | # CONFIG_NET_9P is not set |
| 411 | 423 | ||
| @@ -439,12 +451,16 @@ CONFIG_GDROM=y | |||
| 439 | # CONFIG_BLK_DEV_HD is not set | 451 | # CONFIG_BLK_DEV_HD is not set |
| 440 | CONFIG_MISC_DEVICES=y | 452 | CONFIG_MISC_DEVICES=y |
| 441 | # CONFIG_PHANTOM is not set | 453 | # CONFIG_PHANTOM is not set |
| 442 | # CONFIG_EEPROM_93CX6 is not set | ||
| 443 | # CONFIG_SGI_IOC4 is not set | 454 | # CONFIG_SGI_IOC4 is not set |
| 444 | # CONFIG_TIFM_CORE is not set | 455 | # CONFIG_TIFM_CORE is not set |
| 445 | # CONFIG_ENCLOSURE_SERVICES is not set | 456 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 446 | # CONFIG_HP_ILO is not set | 457 | # CONFIG_HP_ILO is not set |
| 447 | # CONFIG_C2PORT is not set | 458 | # CONFIG_C2PORT is not set |
| 459 | |||
| 460 | # | ||
| 461 | # EEPROM support | ||
| 462 | # | ||
| 463 | # CONFIG_EEPROM_93CX6 is not set | ||
| 448 | CONFIG_HAVE_IDE=y | 464 | CONFIG_HAVE_IDE=y |
| 449 | # CONFIG_IDE is not set | 465 | # CONFIG_IDE is not set |
| 450 | 466 | ||
| @@ -470,6 +486,7 @@ CONFIG_HAVE_IDE=y | |||
| 470 | # CONFIG_IEEE1394 is not set | 486 | # CONFIG_IEEE1394 is not set |
| 471 | # CONFIG_I2O is not set | 487 | # CONFIG_I2O is not set |
| 472 | CONFIG_NETDEVICES=y | 488 | CONFIG_NETDEVICES=y |
| 489 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 473 | # CONFIG_DUMMY is not set | 490 | # CONFIG_DUMMY is not set |
| 474 | # CONFIG_BONDING is not set | 491 | # CONFIG_BONDING is not set |
| 475 | # CONFIG_MACVLAN is not set | 492 | # CONFIG_MACVLAN is not set |
| @@ -487,8 +504,10 @@ CONFIG_MII=y | |||
| 487 | # CONFIG_CASSINI is not set | 504 | # CONFIG_CASSINI is not set |
| 488 | # CONFIG_NET_VENDOR_3COM is not set | 505 | # CONFIG_NET_VENDOR_3COM is not set |
| 489 | # CONFIG_SMC91X is not set | 506 | # CONFIG_SMC91X is not set |
| 507 | # CONFIG_ETHOC is not set | ||
| 490 | # CONFIG_SMC911X is not set | 508 | # CONFIG_SMC911X is not set |
| 491 | # CONFIG_SMSC911X is not set | 509 | # CONFIG_SMSC911X is not set |
| 510 | # CONFIG_DNET is not set | ||
| 492 | # CONFIG_NET_TULIP is not set | 511 | # CONFIG_NET_TULIP is not set |
| 493 | # CONFIG_HP100 is not set | 512 | # CONFIG_HP100 is not set |
| 494 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 513 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -532,7 +551,10 @@ CONFIG_8139TOO=y | |||
| 532 | # | 551 | # |
| 533 | # CONFIG_WLAN_PRE80211 is not set | 552 | # CONFIG_WLAN_PRE80211 is not set |
| 534 | # CONFIG_WLAN_80211 is not set | 553 | # CONFIG_WLAN_80211 is not set |
| 535 | # CONFIG_IWLWIFI_LEDS is not set | 554 | |
| 555 | # | ||
| 556 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 557 | # | ||
| 536 | # CONFIG_WAN is not set | 558 | # CONFIG_WAN is not set |
| 537 | # CONFIG_FDDI is not set | 559 | # CONFIG_FDDI is not set |
| 538 | # CONFIG_HIPPI is not set | 560 | # CONFIG_HIPPI is not set |
| @@ -628,6 +650,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 628 | CONFIG_LEGACY_PTY_COUNT=256 | 650 | CONFIG_LEGACY_PTY_COUNT=256 |
| 629 | # CONFIG_IPMI_HANDLER is not set | 651 | # CONFIG_IPMI_HANDLER is not set |
| 630 | CONFIG_HW_RANDOM=y | 652 | CONFIG_HW_RANDOM=y |
| 653 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 631 | # CONFIG_R3964 is not set | 654 | # CONFIG_R3964 is not set |
| 632 | # CONFIG_APPLICOM is not set | 655 | # CONFIG_APPLICOM is not set |
| 633 | # CONFIG_RAW_DRIVER is not set | 656 | # CONFIG_RAW_DRIVER is not set |
| @@ -746,6 +769,7 @@ CONFIG_FB_PVR2=y | |||
| 746 | # CONFIG_FB_VIRTUAL is not set | 769 | # CONFIG_FB_VIRTUAL is not set |
| 747 | # CONFIG_FB_METRONOME is not set | 770 | # CONFIG_FB_METRONOME is not set |
| 748 | # CONFIG_FB_MB862XX is not set | 771 | # CONFIG_FB_MB862XX is not set |
| 772 | # CONFIG_FB_BROADSHEET is not set | ||
| 749 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 773 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 750 | 774 | ||
| 751 | # | 775 | # |
| @@ -802,9 +826,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 802 | # | 826 | # |
| 803 | 827 | ||
| 804 | # | 828 | # |
| 805 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 829 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 806 | # | 830 | # |
| 807 | # CONFIG_USB_GADGET is not set | 831 | # CONFIG_USB_GADGET is not set |
| 832 | |||
| 833 | # | ||
| 834 | # OTG and related infrastructure | ||
| 835 | # | ||
| 808 | # CONFIG_UWB is not set | 836 | # CONFIG_UWB is not set |
| 809 | # CONFIG_MMC is not set | 837 | # CONFIG_MMC is not set |
| 810 | # CONFIG_MEMSTICK is not set | 838 | # CONFIG_MEMSTICK is not set |
| @@ -813,6 +841,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 813 | # CONFIG_INFINIBAND is not set | 841 | # CONFIG_INFINIBAND is not set |
| 814 | # CONFIG_RTC_CLASS is not set | 842 | # CONFIG_RTC_CLASS is not set |
| 815 | # CONFIG_DMADEVICES is not set | 843 | # CONFIG_DMADEVICES is not set |
| 844 | # CONFIG_AUXDISPLAY is not set | ||
| 816 | # CONFIG_UIO is not set | 845 | # CONFIG_UIO is not set |
| 817 | # CONFIG_STAGING is not set | 846 | # CONFIG_STAGING is not set |
| 818 | 847 | ||
| @@ -828,6 +857,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 828 | CONFIG_FILE_LOCKING=y | 857 | CONFIG_FILE_LOCKING=y |
| 829 | # CONFIG_XFS_FS is not set | 858 | # CONFIG_XFS_FS is not set |
| 830 | # CONFIG_OCFS2_FS is not set | 859 | # CONFIG_OCFS2_FS is not set |
| 860 | # CONFIG_BTRFS_FS is not set | ||
| 831 | # CONFIG_DNOTIFY is not set | 861 | # CONFIG_DNOTIFY is not set |
| 832 | CONFIG_INOTIFY=y | 862 | CONFIG_INOTIFY=y |
| 833 | CONFIG_INOTIFY_USER=y | 863 | CONFIG_INOTIFY_USER=y |
| @@ -871,6 +901,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 871 | # CONFIG_BFS_FS is not set | 901 | # CONFIG_BFS_FS is not set |
| 872 | # CONFIG_EFS_FS is not set | 902 | # CONFIG_EFS_FS is not set |
| 873 | # CONFIG_CRAMFS is not set | 903 | # CONFIG_CRAMFS is not set |
| 904 | # CONFIG_SQUASHFS is not set | ||
| 874 | # CONFIG_VXFS_FS is not set | 905 | # CONFIG_VXFS_FS is not set |
| 875 | # CONFIG_MINIX_FS is not set | 906 | # CONFIG_MINIX_FS is not set |
| 876 | # CONFIG_OMFS_FS is not set | 907 | # CONFIG_OMFS_FS is not set |
| @@ -920,7 +951,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 920 | # | 951 | # |
| 921 | # Tracers | 952 | # Tracers |
| 922 | # | 953 | # |
| 923 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 924 | # CONFIG_SAMPLES is not set | 954 | # CONFIG_SAMPLES is not set |
| 925 | CONFIG_HAVE_ARCH_KGDB=y | 955 | CONFIG_HAVE_ARCH_KGDB=y |
| 926 | # CONFIG_SH_STANDARD_BIOS is not set | 956 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1012,6 +1042,7 @@ CONFIG_CRYPTO=y | |||
| 1012 | # Compression | 1042 | # Compression |
| 1013 | # | 1043 | # |
| 1014 | # CONFIG_CRYPTO_DEFLATE is not set | 1044 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1045 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1015 | # CONFIG_CRYPTO_LZO is not set | 1046 | # CONFIG_CRYPTO_LZO is not set |
| 1016 | 1047 | ||
| 1017 | # | 1048 | # |
| @@ -1033,7 +1064,7 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1033 | CONFIG_CRC32=y | 1064 | CONFIG_CRC32=y |
| 1034 | # CONFIG_CRC7 is not set | 1065 | # CONFIG_CRC7 is not set |
| 1035 | # CONFIG_LIBCRC32C is not set | 1066 | # CONFIG_LIBCRC32C is not set |
| 1036 | CONFIG_PLIST=y | ||
| 1037 | CONFIG_HAS_IOMEM=y | 1067 | CONFIG_HAS_IOMEM=y |
| 1038 | CONFIG_HAS_IOPORT=y | 1068 | CONFIG_HAS_IOPORT=y |
| 1039 | CONFIG_HAS_DMA=y | 1069 | CONFIG_HAS_DMA=y |
| 1070 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/edosk7705_defconfig b/arch/sh/configs/edosk7705_defconfig index 461bfb350221..f4c34b039312 100644 --- a/arch/sh/configs/edosk7705_defconfig +++ b/arch/sh/configs/edosk7705_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 16:55:29 2009 | 4 | # Thu Apr 2 17:54:02 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,13 +16,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_TIME=y | 16 | CONFIG_GENERIC_TIME=y |
| 17 | CONFIG_GENERIC_CLOCKEVENTS=y | 17 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 19 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 19 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 20 | CONFIG_STACKTRACE_SUPPORT=y | 20 | CONFIG_STACKTRACE_SUPPORT=y |
| 21 | CONFIG_LOCKDEP_SUPPORT=y | 21 | CONFIG_LOCKDEP_SUPPORT=y |
| 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 26 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 27 | 28 | ||
| 28 | # | 29 | # |
| @@ -35,6 +36,15 @@ CONFIG_LOCALVERSION="" | |||
| 35 | # CONFIG_LOCALVERSION_AUTO is not set | 36 | # CONFIG_LOCALVERSION_AUTO is not set |
| 36 | # CONFIG_SYSVIPC is not set | 37 | # CONFIG_SYSVIPC is not set |
| 37 | # CONFIG_BSD_PROCESS_ACCT is not set | 38 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 39 | |||
| 40 | # | ||
| 41 | # RCU Subsystem | ||
| 42 | # | ||
| 43 | CONFIG_CLASSIC_RCU=y | ||
| 44 | # CONFIG_TREE_RCU is not set | ||
| 45 | # CONFIG_PREEMPT_RCU is not set | ||
| 46 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 47 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 38 | # CONFIG_IKCONFIG is not set | 48 | # CONFIG_IKCONFIG is not set |
| 39 | CONFIG_LOG_BUF_SHIFT=17 | 49 | CONFIG_LOG_BUF_SHIFT=17 |
| 40 | # CONFIG_CGROUPS is not set | 50 | # CONFIG_CGROUPS is not set |
| @@ -50,7 +60,6 @@ CONFIG_EMBEDDED=y | |||
| 50 | # CONFIG_PRINTK is not set | 60 | # CONFIG_PRINTK is not set |
| 51 | # CONFIG_BUG is not set | 61 | # CONFIG_BUG is not set |
| 52 | # CONFIG_ELF_CORE is not set | 62 | # CONFIG_ELF_CORE is not set |
| 53 | # CONFIG_COMPAT_BRK is not set | ||
| 54 | # CONFIG_BASE_FULL is not set | 63 | # CONFIG_BASE_FULL is not set |
| 55 | # CONFIG_FUTEX is not set | 64 | # CONFIG_FUTEX is not set |
| 56 | # CONFIG_EPOLL is not set | 65 | # CONFIG_EPOLL is not set |
| @@ -60,6 +69,7 @@ CONFIG_EMBEDDED=y | |||
| 60 | CONFIG_SHMEM=y | 69 | CONFIG_SHMEM=y |
| 61 | # CONFIG_AIO is not set | 70 | # CONFIG_AIO is not set |
| 62 | # CONFIG_VM_EVENT_COUNTERS is not set | 71 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 72 | # CONFIG_COMPAT_BRK is not set | ||
| 63 | # CONFIG_SLAB is not set | 73 | # CONFIG_SLAB is not set |
| 64 | CONFIG_SLUB=y | 74 | CONFIG_SLUB=y |
| 65 | # CONFIG_SLOB is not set | 75 | # CONFIG_SLOB is not set |
| @@ -74,11 +84,6 @@ CONFIG_HAVE_GENERIC_DMA_COHERENT=y | |||
| 74 | CONFIG_BASE_SMALL=1 | 84 | CONFIG_BASE_SMALL=1 |
| 75 | # CONFIG_MODULES is not set | 85 | # CONFIG_MODULES is not set |
| 76 | # CONFIG_BLOCK is not set | 86 | # CONFIG_BLOCK is not set |
| 77 | CONFIG_CLASSIC_RCU=y | ||
| 78 | # CONFIG_TREE_RCU is not set | ||
| 79 | # CONFIG_PREEMPT_RCU is not set | ||
| 80 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 81 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 82 | # CONFIG_FREEZER is not set | 87 | # CONFIG_FREEZER is not set |
| 83 | 88 | ||
| 84 | # | 89 | # |
| @@ -113,6 +118,7 @@ CONFIG_CPU_SUBTYPE_SH7705=y | |||
| 113 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 118 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 114 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 119 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 115 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 120 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 121 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 116 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 122 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 117 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 123 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 118 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 124 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -157,12 +163,13 @@ CONFIG_MIGRATION=y | |||
| 157 | CONFIG_ZONE_DMA_FLAG=0 | 163 | CONFIG_ZONE_DMA_FLAG=0 |
| 158 | CONFIG_NR_QUICK=2 | 164 | CONFIG_NR_QUICK=2 |
| 159 | CONFIG_UNEVICTABLE_LRU=y | 165 | CONFIG_UNEVICTABLE_LRU=y |
| 166 | CONFIG_HAVE_MLOCK=y | ||
| 167 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 160 | 168 | ||
| 161 | # | 169 | # |
| 162 | # Cache configuration | 170 | # Cache configuration |
| 163 | # | 171 | # |
| 164 | CONFIG_SH7705_CACHE_32KB=y | 172 | CONFIG_SH7705_CACHE_32KB=y |
| 165 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 166 | CONFIG_CACHE_WRITEBACK=y | 173 | CONFIG_CACHE_WRITEBACK=y |
| 167 | # CONFIG_CACHE_WRITETHROUGH is not set | 174 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 168 | # CONFIG_CACHE_OFF is not set | 175 | # CONFIG_CACHE_OFF is not set |
| @@ -243,7 +250,6 @@ CONFIG_BOOT_LINK_OFFSET=0x00800000 | |||
| 243 | # Executable file formats | 250 | # Executable file formats |
| 244 | # | 251 | # |
| 245 | CONFIG_BINFMT_ELF=y | 252 | CONFIG_BINFMT_ELF=y |
| 246 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
| 247 | # CONFIG_HAVE_AOUT is not set | 253 | # CONFIG_HAVE_AOUT is not set |
| 248 | # CONFIG_BINFMT_MISC is not set | 254 | # CONFIG_BINFMT_MISC is not set |
| 249 | # CONFIG_NET is not set | 255 | # CONFIG_NET is not set |
| @@ -361,6 +367,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 361 | # CONFIG_ACCESSIBILITY is not set | 367 | # CONFIG_ACCESSIBILITY is not set |
| 362 | # CONFIG_RTC_CLASS is not set | 368 | # CONFIG_RTC_CLASS is not set |
| 363 | # CONFIG_DMADEVICES is not set | 369 | # CONFIG_DMADEVICES is not set |
| 370 | # CONFIG_AUXDISPLAY is not set | ||
| 364 | # CONFIG_UIO is not set | 371 | # CONFIG_UIO is not set |
| 365 | # CONFIG_STAGING is not set | 372 | # CONFIG_STAGING is not set |
| 366 | 373 | ||
diff --git a/arch/sh/configs/edosk7760_defconfig b/arch/sh/configs/edosk7760_defconfig index 14d4b35685a1..7825c2699f18 100644 --- a/arch/sh/configs/edosk7760_defconfig +++ b/arch/sh/configs/edosk7760_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 16:55:48 2009 | 4 | # Thu Apr 2 17:54:57 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -43,34 +44,45 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 44 | # CONFIG_TASKSTATS is not set | 45 | # CONFIG_TASKSTATS is not set |
| 45 | # CONFIG_AUDIT is not set | 46 | # CONFIG_AUDIT is not set |
| 47 | |||
| 48 | # | ||
| 49 | # RCU Subsystem | ||
| 50 | # | ||
| 51 | CONFIG_CLASSIC_RCU=y | ||
| 52 | # CONFIG_TREE_RCU is not set | ||
| 53 | # CONFIG_PREEMPT_RCU is not set | ||
| 54 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 55 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 46 | CONFIG_IKCONFIG=y | 56 | CONFIG_IKCONFIG=y |
| 47 | CONFIG_IKCONFIG_PROC=y | 57 | CONFIG_IKCONFIG_PROC=y |
| 48 | CONFIG_LOG_BUF_SHIFT=17 | 58 | CONFIG_LOG_BUF_SHIFT=17 |
| 49 | # CONFIG_CGROUPS is not set | ||
| 50 | # CONFIG_GROUP_SCHED is not set | 59 | # CONFIG_GROUP_SCHED is not set |
| 60 | # CONFIG_CGROUPS is not set | ||
| 51 | CONFIG_SYSFS_DEPRECATED=y | 61 | CONFIG_SYSFS_DEPRECATED=y |
| 52 | CONFIG_SYSFS_DEPRECATED_V2=y | 62 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 53 | # CONFIG_RELAY is not set | 63 | # CONFIG_RELAY is not set |
| 54 | # CONFIG_NAMESPACES is not set | 64 | # CONFIG_NAMESPACES is not set |
| 55 | CONFIG_BLK_DEV_INITRD=y | 65 | CONFIG_BLK_DEV_INITRD=y |
| 56 | CONFIG_INITRAMFS_SOURCE="" | 66 | CONFIG_INITRAMFS_SOURCE="" |
| 67 | CONFIG_RD_GZIP=y | ||
| 68 | # CONFIG_RD_BZIP2 is not set | ||
| 69 | # CONFIG_RD_LZMA is not set | ||
| 70 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 71 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 58 | CONFIG_SYSCTL=y | 72 | CONFIG_SYSCTL=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 74 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 75 | CONFIG_UID16=y |
| 61 | CONFIG_SYSCTL_SYSCALL=y | 76 | CONFIG_SYSCTL_SYSCALL=y |
| 62 | CONFIG_KALLSYMS=y | 77 | CONFIG_KALLSYMS=y |
| 63 | CONFIG_KALLSYMS_ALL=y | 78 | CONFIG_KALLSYMS_ALL=y |
| 64 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 65 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 79 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 66 | CONFIG_HOTPLUG=y | 80 | CONFIG_HOTPLUG=y |
| 67 | CONFIG_PRINTK=y | 81 | CONFIG_PRINTK=y |
| 68 | CONFIG_BUG=y | 82 | CONFIG_BUG=y |
| 69 | CONFIG_ELF_CORE=y | 83 | CONFIG_ELF_CORE=y |
| 70 | CONFIG_COMPAT_BRK=y | ||
| 71 | CONFIG_BASE_FULL=y | 84 | CONFIG_BASE_FULL=y |
| 72 | CONFIG_FUTEX=y | 85 | CONFIG_FUTEX=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 74 | CONFIG_EPOLL=y | 86 | CONFIG_EPOLL=y |
| 75 | CONFIG_SIGNALFD=y | 87 | CONFIG_SIGNALFD=y |
| 76 | CONFIG_TIMERFD=y | 88 | CONFIG_TIMERFD=y |
| @@ -79,6 +91,7 @@ CONFIG_SHMEM=y | |||
| 79 | CONFIG_AIO=y | 91 | CONFIG_AIO=y |
| 80 | CONFIG_VM_EVENT_COUNTERS=y | 92 | CONFIG_VM_EVENT_COUNTERS=y |
| 81 | CONFIG_SLUB_DEBUG=y | 93 | CONFIG_SLUB_DEBUG=y |
| 94 | CONFIG_COMPAT_BRK=y | ||
| 82 | # CONFIG_SLAB is not set | 95 | # CONFIG_SLAB is not set |
| 83 | CONFIG_SLUB=y | 96 | CONFIG_SLUB=y |
| 84 | # CONFIG_SLOB is not set | 97 | # CONFIG_SLOB is not set |
| @@ -118,11 +131,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 118 | CONFIG_DEFAULT_CFQ=y | 131 | CONFIG_DEFAULT_CFQ=y |
| 119 | # CONFIG_DEFAULT_NOOP is not set | 132 | # CONFIG_DEFAULT_NOOP is not set |
| 120 | CONFIG_DEFAULT_IOSCHED="cfq" | 133 | 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 | 134 | # CONFIG_FREEZER is not set |
| 127 | 135 | ||
| 128 | # | 136 | # |
| @@ -157,6 +165,7 @@ CONFIG_CPU_SUBTYPE_SH7760=y | |||
| 157 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 167 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 168 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 160 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 169 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -198,11 +207,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 198 | CONFIG_ZONE_DMA_FLAG=0 | 207 | CONFIG_ZONE_DMA_FLAG=0 |
| 199 | CONFIG_NR_QUICK=2 | 208 | CONFIG_NR_QUICK=2 |
| 200 | CONFIG_UNEVICTABLE_LRU=y | 209 | CONFIG_UNEVICTABLE_LRU=y |
| 210 | CONFIG_HAVE_MLOCK=y | ||
| 211 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 201 | 212 | ||
| 202 | # | 213 | # |
| 203 | # Cache configuration | 214 | # Cache configuration |
| 204 | # | 215 | # |
| 205 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 206 | CONFIG_CACHE_WRITEBACK=y | 216 | CONFIG_CACHE_WRITEBACK=y |
| 207 | # CONFIG_CACHE_WRITETHROUGH is not set | 217 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 208 | # CONFIG_CACHE_OFF is not set | 218 | # CONFIG_CACHE_OFF is not set |
| @@ -245,7 +255,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 245 | # | 255 | # |
| 246 | CONFIG_SH_DMA_API=y | 256 | CONFIG_SH_DMA_API=y |
| 247 | CONFIG_SH_DMA=y | 257 | CONFIG_SH_DMA=y |
| 248 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 258 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
| 249 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 259 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 250 | # CONFIG_SH_DMABRG is not set | 260 | # CONFIG_SH_DMABRG is not set |
| 251 | 261 | ||
| @@ -310,7 +320,6 @@ CONFIG_NET=y | |||
| 310 | # | 320 | # |
| 311 | # Networking options | 321 | # Networking options |
| 312 | # | 322 | # |
| 313 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 314 | CONFIG_PACKET=y | 323 | CONFIG_PACKET=y |
| 315 | # CONFIG_PACKET_MMAP is not set | 324 | # CONFIG_PACKET_MMAP is not set |
| 316 | CONFIG_UNIX=y | 325 | CONFIG_UNIX=y |
| @@ -360,6 +369,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 360 | # CONFIG_LAPB is not set | 369 | # CONFIG_LAPB is not set |
| 361 | # CONFIG_ECONET is not set | 370 | # CONFIG_ECONET is not set |
| 362 | # CONFIG_WAN_ROUTER is not set | 371 | # CONFIG_WAN_ROUTER is not set |
| 372 | # CONFIG_PHONET is not set | ||
| 363 | # CONFIG_NET_SCHED is not set | 373 | # CONFIG_NET_SCHED is not set |
| 364 | # CONFIG_DCB is not set | 374 | # CONFIG_DCB is not set |
| 365 | 375 | ||
| @@ -372,13 +382,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 372 | # CONFIG_IRDA is not set | 382 | # CONFIG_IRDA is not set |
| 373 | # CONFIG_BT is not set | 383 | # CONFIG_BT is not set |
| 374 | # CONFIG_AF_RXRPC is not set | 384 | # CONFIG_AF_RXRPC is not set |
| 375 | # CONFIG_PHONET is not set | ||
| 376 | CONFIG_WIRELESS=y | 385 | CONFIG_WIRELESS=y |
| 377 | # CONFIG_CFG80211 is not set | 386 | # CONFIG_CFG80211 is not set |
| 378 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 387 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 379 | # CONFIG_WIRELESS_EXT is not set | 388 | # CONFIG_WIRELESS_EXT is not set |
| 380 | # CONFIG_LIB80211 is not set | 389 | # CONFIG_LIB80211 is not set |
| 381 | # CONFIG_MAC80211 is not set | 390 | # CONFIG_MAC80211 is not set |
| 391 | # CONFIG_WIMAX is not set | ||
| 382 | # CONFIG_RFKILL is not set | 392 | # CONFIG_RFKILL is not set |
| 383 | # CONFIG_NET_9P is not set | 393 | # CONFIG_NET_9P is not set |
| 384 | 394 | ||
| @@ -402,6 +412,7 @@ CONFIG_MTD_DEBUG=y | |||
| 402 | CONFIG_MTD_DEBUG_VERBOSE=0 | 412 | CONFIG_MTD_DEBUG_VERBOSE=0 |
| 403 | CONFIG_MTD_CONCAT=y | 413 | CONFIG_MTD_CONCAT=y |
| 404 | CONFIG_MTD_PARTITIONS=y | 414 | CONFIG_MTD_PARTITIONS=y |
| 415 | # CONFIG_MTD_TESTS is not set | ||
| 405 | # CONFIG_MTD_REDBOOT_PARTS is not set | 416 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 406 | CONFIG_MTD_CMDLINE_PARTS=y | 417 | CONFIG_MTD_CMDLINE_PARTS=y |
| 407 | # CONFIG_MTD_AR7_PARTS is not set | 418 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -454,9 +465,7 @@ CONFIG_MTD_ABSENT=y | |||
| 454 | # | 465 | # |
| 455 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 466 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 456 | CONFIG_MTD_PHYSMAP=y | 467 | CONFIG_MTD_PHYSMAP=y |
| 457 | CONFIG_MTD_PHYSMAP_START=0xffffffff | 468 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 458 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
| 459 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
| 460 | # CONFIG_MTD_PLATRAM is not set | 469 | # CONFIG_MTD_PLATRAM is not set |
| 461 | 470 | ||
| 462 | # | 471 | # |
| @@ -477,6 +486,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | |||
| 477 | # CONFIG_MTD_ONENAND is not set | 486 | # CONFIG_MTD_ONENAND is not set |
| 478 | 487 | ||
| 479 | # | 488 | # |
| 489 | # LPDDR flash memory drivers | ||
| 490 | # | ||
| 491 | # CONFIG_MTD_LPDDR is not set | ||
| 492 | |||
| 493 | # | ||
| 480 | # UBI - Unsorted block images | 494 | # UBI - Unsorted block images |
| 481 | # | 495 | # |
| 482 | # CONFIG_MTD_UBI is not set | 496 | # CONFIG_MTD_UBI is not set |
| @@ -506,6 +520,7 @@ CONFIG_HAVE_IDE=y | |||
| 506 | # CONFIG_ATA is not set | 520 | # CONFIG_ATA is not set |
| 507 | # CONFIG_MD is not set | 521 | # CONFIG_MD is not set |
| 508 | CONFIG_NETDEVICES=y | 522 | CONFIG_NETDEVICES=y |
| 523 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 509 | # CONFIG_DUMMY is not set | 524 | # CONFIG_DUMMY is not set |
| 510 | # CONFIG_BONDING is not set | 525 | # CONFIG_BONDING is not set |
| 511 | # CONFIG_MACVLAN is not set | 526 | # CONFIG_MACVLAN is not set |
| @@ -518,8 +533,10 @@ CONFIG_MII=y | |||
| 518 | # CONFIG_AX88796 is not set | 533 | # CONFIG_AX88796 is not set |
| 519 | # CONFIG_STNIC is not set | 534 | # CONFIG_STNIC is not set |
| 520 | CONFIG_SMC91X=y | 535 | CONFIG_SMC91X=y |
| 536 | # CONFIG_ETHOC is not set | ||
| 521 | # CONFIG_SMC911X is not set | 537 | # CONFIG_SMC911X is not set |
| 522 | # CONFIG_SMSC911X is not set | 538 | # CONFIG_SMSC911X is not set |
| 539 | # CONFIG_DNET is not set | ||
| 523 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 540 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 524 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 541 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 525 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 542 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -536,7 +553,10 @@ CONFIG_SMC91X=y | |||
| 536 | # | 553 | # |
| 537 | # CONFIG_WLAN_PRE80211 is not set | 554 | # CONFIG_WLAN_PRE80211 is not set |
| 538 | # CONFIG_WLAN_80211 is not set | 555 | # CONFIG_WLAN_80211 is not set |
| 539 | # CONFIG_IWLWIFI_LEDS is not set | 556 | |
| 557 | # | ||
| 558 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 559 | # | ||
| 540 | # CONFIG_WAN is not set | 560 | # CONFIG_WAN is not set |
| 541 | # CONFIG_PPP is not set | 561 | # CONFIG_PPP is not set |
| 542 | # CONFIG_SLIP is not set | 562 | # CONFIG_SLIP is not set |
| @@ -607,6 +627,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 607 | CONFIG_LEGACY_PTY_COUNT=256 | 627 | CONFIG_LEGACY_PTY_COUNT=256 |
| 608 | # CONFIG_IPMI_HANDLER is not set | 628 | # CONFIG_IPMI_HANDLER is not set |
| 609 | CONFIG_HW_RANDOM=y | 629 | CONFIG_HW_RANDOM=y |
| 630 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 610 | # CONFIG_R3964 is not set | 631 | # CONFIG_R3964 is not set |
| 611 | # CONFIG_RAW_DRIVER is not set | 632 | # CONFIG_RAW_DRIVER is not set |
| 612 | # CONFIG_TCG_TPM is not set | 633 | # CONFIG_TCG_TPM is not set |
| @@ -643,12 +664,9 @@ CONFIG_I2C_SH7760=y | |||
| 643 | # Miscellaneous I2C Chip support | 664 | # Miscellaneous I2C Chip support |
| 644 | # | 665 | # |
| 645 | # CONFIG_DS1682 is not set | 666 | # CONFIG_DS1682 is not set |
| 646 | # CONFIG_EEPROM_AT24 is not set | ||
| 647 | # CONFIG_EEPROM_LEGACY is not set | ||
| 648 | # CONFIG_SENSORS_PCF8574 is not set | 667 | # CONFIG_SENSORS_PCF8574 is not set |
| 649 | # CONFIG_PCF8575 is not set | 668 | # CONFIG_PCF8575 is not set |
| 650 | # CONFIG_SENSORS_PCA9539 is not set | 669 | # CONFIG_SENSORS_PCA9539 is not set |
| 651 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 652 | # CONFIG_SENSORS_MAX6875 is not set | 670 | # CONFIG_SENSORS_MAX6875 is not set |
| 653 | # CONFIG_SENSORS_TSL2550 is not set | 671 | # CONFIG_SENSORS_TSL2550 is not set |
| 654 | CONFIG_I2C_DEBUG_CORE=y | 672 | CONFIG_I2C_DEBUG_CORE=y |
| @@ -680,6 +698,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 680 | # CONFIG_PMIC_DA903X is not set | 698 | # CONFIG_PMIC_DA903X is not set |
| 681 | # CONFIG_MFD_WM8400 is not set | 699 | # CONFIG_MFD_WM8400 is not set |
| 682 | # CONFIG_MFD_WM8350_I2C is not set | 700 | # CONFIG_MFD_WM8350_I2C is not set |
| 701 | # CONFIG_MFD_PCF50633 is not set | ||
| 683 | # CONFIG_REGULATOR is not set | 702 | # CONFIG_REGULATOR is not set |
| 684 | 703 | ||
| 685 | # | 704 | # |
| @@ -732,6 +751,7 @@ CONFIG_FB_SH_MOBILE_LCDC=m | |||
| 732 | # CONFIG_FB_VIRTUAL is not set | 751 | # CONFIG_FB_VIRTUAL is not set |
| 733 | # CONFIG_FB_METRONOME is not set | 752 | # CONFIG_FB_METRONOME is not set |
| 734 | # CONFIG_FB_MB862XX is not set | 753 | # CONFIG_FB_MB862XX is not set |
| 754 | # CONFIG_FB_BROADSHEET is not set | ||
| 735 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 755 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 736 | 756 | ||
| 737 | # | 757 | # |
| @@ -750,6 +770,7 @@ CONFIG_SOUND=y | |||
| 750 | CONFIG_SND=y | 770 | CONFIG_SND=y |
| 751 | CONFIG_SND_TIMER=y | 771 | CONFIG_SND_TIMER=y |
| 752 | CONFIG_SND_PCM=y | 772 | CONFIG_SND_PCM=y |
| 773 | CONFIG_SND_JACK=y | ||
| 753 | # CONFIG_SND_SEQUENCER is not set | 774 | # CONFIG_SND_SEQUENCER is not set |
| 754 | # CONFIG_SND_MIXER_OSS is not set | 775 | # CONFIG_SND_MIXER_OSS is not set |
| 755 | # CONFIG_SND_PCM_OSS is not set | 776 | # CONFIG_SND_PCM_OSS is not set |
| @@ -781,6 +802,7 @@ CONFIG_SND_SOC_I2C_AND_SPI=y | |||
| 781 | # CONFIG_ACCESSIBILITY is not set | 802 | # CONFIG_ACCESSIBILITY is not set |
| 782 | # CONFIG_RTC_CLASS is not set | 803 | # CONFIG_RTC_CLASS is not set |
| 783 | # CONFIG_DMADEVICES is not set | 804 | # CONFIG_DMADEVICES is not set |
| 805 | # CONFIG_AUXDISPLAY is not set | ||
| 784 | # CONFIG_UIO is not set | 806 | # CONFIG_UIO is not set |
| 785 | # CONFIG_STAGING is not set | 807 | # CONFIG_STAGING is not set |
| 786 | 808 | ||
| @@ -806,6 +828,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 806 | CONFIG_FILE_LOCKING=y | 828 | CONFIG_FILE_LOCKING=y |
| 807 | # CONFIG_XFS_FS is not set | 829 | # CONFIG_XFS_FS is not set |
| 808 | # CONFIG_OCFS2_FS is not set | 830 | # CONFIG_OCFS2_FS is not set |
| 831 | # CONFIG_BTRFS_FS is not set | ||
| 809 | CONFIG_DNOTIFY=y | 832 | CONFIG_DNOTIFY=y |
| 810 | CONFIG_INOTIFY=y | 833 | CONFIG_INOTIFY=y |
| 811 | CONFIG_INOTIFY_USER=y | 834 | CONFIG_INOTIFY_USER=y |
| @@ -851,6 +874,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 851 | # CONFIG_EFS_FS is not set | 874 | # CONFIG_EFS_FS is not set |
| 852 | # CONFIG_JFFS2_FS is not set | 875 | # CONFIG_JFFS2_FS is not set |
| 853 | # CONFIG_CRAMFS is not set | 876 | # CONFIG_CRAMFS is not set |
| 877 | # CONFIG_SQUASHFS is not set | ||
| 854 | # CONFIG_VXFS_FS is not set | 878 | # CONFIG_VXFS_FS is not set |
| 855 | # CONFIG_MINIX_FS is not set | 879 | # CONFIG_MINIX_FS is not set |
| 856 | # CONFIG_OMFS_FS is not set | 880 | # CONFIG_OMFS_FS is not set |
| @@ -868,7 +892,6 @@ CONFIG_ROOT_NFS=y | |||
| 868 | CONFIG_LOCKD=y | 892 | CONFIG_LOCKD=y |
| 869 | CONFIG_NFS_COMMON=y | 893 | CONFIG_NFS_COMMON=y |
| 870 | CONFIG_SUNRPC=y | 894 | CONFIG_SUNRPC=y |
| 871 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 872 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 895 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 896 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 874 | # CONFIG_SMB_FS is not set | 897 | # CONFIG_SMB_FS is not set |
| @@ -974,6 +997,7 @@ CONFIG_DEBUG_INFO=y | |||
| 974 | # CONFIG_FAULT_INJECTION is not set | 997 | # CONFIG_FAULT_INJECTION is not set |
| 975 | # CONFIG_LATENCYTOP is not set | 998 | # CONFIG_LATENCYTOP is not set |
| 976 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 999 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1000 | # CONFIG_PAGE_POISONING is not set | ||
| 977 | CONFIG_HAVE_FUNCTION_TRACER=y | 1001 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 978 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1002 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 979 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1003 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -989,7 +1013,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 989 | # CONFIG_BOOT_TRACER is not set | 1013 | # CONFIG_BOOT_TRACER is not set |
| 990 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1014 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 991 | # CONFIG_STACK_TRACER is not set | 1015 | # CONFIG_STACK_TRACER is not set |
| 992 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 993 | # CONFIG_SAMPLES is not set | 1016 | # CONFIG_SAMPLES is not set |
| 994 | CONFIG_HAVE_ARCH_KGDB=y | 1017 | CONFIG_HAVE_ARCH_KGDB=y |
| 995 | # CONFIG_KGDB is not set | 1018 | # CONFIG_KGDB is not set |
| @@ -1095,6 +1118,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1095 | # Compression | 1118 | # Compression |
| 1096 | # | 1119 | # |
| 1097 | # CONFIG_CRYPTO_DEFLATE is not set | 1120 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1121 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1098 | # CONFIG_CRYPTO_LZO is not set | 1122 | # CONFIG_CRYPTO_LZO is not set |
| 1099 | 1123 | ||
| 1100 | # | 1124 | # |
| @@ -1115,7 +1139,9 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1115 | CONFIG_CRC32=y | 1139 | CONFIG_CRC32=y |
| 1116 | # CONFIG_CRC7 is not set | 1140 | # CONFIG_CRC7 is not set |
| 1117 | # CONFIG_LIBCRC32C is not set | 1141 | # CONFIG_LIBCRC32C is not set |
| 1118 | CONFIG_PLIST=y | 1142 | CONFIG_ZLIB_INFLATE=y |
| 1143 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1119 | CONFIG_HAS_IOMEM=y | 1144 | CONFIG_HAS_IOMEM=y |
| 1120 | CONFIG_HAS_IOPORT=y | 1145 | CONFIG_HAS_IOPORT=y |
| 1121 | CONFIG_HAS_DMA=y | 1146 | CONFIG_HAS_DMA=y |
| 1147 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/espt_defconfig b/arch/sh/configs/espt_defconfig index 873ec42c6e69..ebb4c37abaa6 100644 --- a/arch/sh/configs/espt_defconfig +++ b/arch/sh/configs/espt_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc7 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Tue Mar 17 13:25:58 2009 | 4 | # Thu Apr 2 17:58:18 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -71,6 +72,7 @@ CONFIG_IPC_NS=y | |||
| 71 | # CONFIG_BLK_DEV_INITRD is not set | 72 | # CONFIG_BLK_DEV_INITRD is not set |
| 72 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 73 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 74 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 75 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 76 | # CONFIG_SYSCTL_SYSCALL is not set | 78 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -80,10 +82,8 @@ CONFIG_HOTPLUG=y | |||
| 80 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 81 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 82 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 83 | CONFIG_COMPAT_BRK=y | ||
| 84 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 85 | CONFIG_FUTEX=y | 86 | CONFIG_FUTEX=y |
| 86 | CONFIG_ANON_INODES=y | ||
| 87 | CONFIG_EPOLL=y | 87 | CONFIG_EPOLL=y |
| 88 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 89 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -91,6 +91,7 @@ CONFIG_EVENTFD=y | |||
| 91 | CONFIG_SHMEM=y | 91 | CONFIG_SHMEM=y |
| 92 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 93 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 94 | CONFIG_COMPAT_BRK=y | ||
| 94 | CONFIG_SLAB=y | 95 | CONFIG_SLAB=y |
| 95 | # CONFIG_SLUB is not set | 96 | # CONFIG_SLUB is not set |
| 96 | # CONFIG_SLOB is not set | 97 | # CONFIG_SLOB is not set |
| @@ -213,11 +214,12 @@ CONFIG_MIGRATION=y | |||
| 213 | CONFIG_ZONE_DMA_FLAG=0 | 214 | CONFIG_ZONE_DMA_FLAG=0 |
| 214 | CONFIG_NR_QUICK=2 | 215 | CONFIG_NR_QUICK=2 |
| 215 | CONFIG_UNEVICTABLE_LRU=y | 216 | CONFIG_UNEVICTABLE_LRU=y |
| 217 | CONFIG_HAVE_MLOCK=y | ||
| 218 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 216 | 219 | ||
| 217 | # | 220 | # |
| 218 | # Cache configuration | 221 | # Cache configuration |
| 219 | # | 222 | # |
| 220 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 221 | CONFIG_CACHE_WRITEBACK=y | 223 | CONFIG_CACHE_WRITEBACK=y |
| 222 | # CONFIG_CACHE_WRITETHROUGH is not set | 224 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 223 | # CONFIG_CACHE_OFF is not set | 225 | # CONFIG_CACHE_OFF is not set |
| @@ -318,7 +320,6 @@ CONFIG_NET=y | |||
| 318 | # | 320 | # |
| 319 | # Networking options | 321 | # Networking options |
| 320 | # | 322 | # |
| 321 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 322 | CONFIG_PACKET=y | 323 | CONFIG_PACKET=y |
| 323 | # CONFIG_PACKET_MMAP is not set | 324 | # CONFIG_PACKET_MMAP is not set |
| 324 | CONFIG_UNIX=y | 325 | CONFIG_UNIX=y |
| @@ -373,6 +374,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 373 | # CONFIG_LAPB is not set | 374 | # CONFIG_LAPB is not set |
| 374 | # CONFIG_ECONET is not set | 375 | # CONFIG_ECONET is not set |
| 375 | # CONFIG_WAN_ROUTER is not set | 376 | # CONFIG_WAN_ROUTER is not set |
| 377 | # CONFIG_PHONET is not set | ||
| 376 | # CONFIG_NET_SCHED is not set | 378 | # CONFIG_NET_SCHED is not set |
| 377 | # CONFIG_DCB is not set | 379 | # CONFIG_DCB is not set |
| 378 | 380 | ||
| @@ -380,12 +382,12 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 380 | # Network testing | 382 | # Network testing |
| 381 | # | 383 | # |
| 382 | # CONFIG_NET_PKTGEN is not set | 384 | # CONFIG_NET_PKTGEN is not set |
| 385 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 383 | # CONFIG_HAMRADIO is not set | 386 | # CONFIG_HAMRADIO is not set |
| 384 | # CONFIG_CAN is not set | 387 | # CONFIG_CAN is not set |
| 385 | # CONFIG_IRDA is not set | 388 | # CONFIG_IRDA is not set |
| 386 | # CONFIG_BT is not set | 389 | # CONFIG_BT is not set |
| 387 | # CONFIG_AF_RXRPC is not set | 390 | # CONFIG_AF_RXRPC is not set |
| 388 | # CONFIG_PHONET is not set | ||
| 389 | # CONFIG_WIRELESS is not set | 391 | # CONFIG_WIRELESS is not set |
| 390 | # CONFIG_WIMAX is not set | 392 | # CONFIG_WIMAX is not set |
| 391 | # CONFIG_RFKILL is not set | 393 | # CONFIG_RFKILL is not set |
| @@ -548,9 +550,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 548 | # CONFIG_LIBFC is not set | 550 | # CONFIG_LIBFC is not set |
| 549 | # CONFIG_SCSI_DEBUG is not set | 551 | # CONFIG_SCSI_DEBUG is not set |
| 550 | # CONFIG_SCSI_DH is not set | 552 | # CONFIG_SCSI_DH is not set |
| 553 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 551 | # CONFIG_ATA is not set | 554 | # CONFIG_ATA is not set |
| 552 | # CONFIG_MD is not set | 555 | # CONFIG_MD is not set |
| 553 | CONFIG_NETDEVICES=y | 556 | CONFIG_NETDEVICES=y |
| 557 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 554 | # CONFIG_DUMMY is not set | 558 | # CONFIG_DUMMY is not set |
| 555 | # CONFIG_BONDING is not set | 559 | # CONFIG_BONDING is not set |
| 556 | # CONFIG_MACVLAN is not set | 560 | # CONFIG_MACVLAN is not set |
| @@ -583,8 +587,10 @@ CONFIG_MII=y | |||
| 583 | # CONFIG_STNIC is not set | 587 | # CONFIG_STNIC is not set |
| 584 | CONFIG_SH_ETH=y | 588 | CONFIG_SH_ETH=y |
| 585 | # CONFIG_SMC91X is not set | 589 | # CONFIG_SMC91X is not set |
| 590 | # CONFIG_ETHOC is not set | ||
| 586 | # CONFIG_SMC911X is not set | 591 | # CONFIG_SMC911X is not set |
| 587 | # CONFIG_SMSC911X is not set | 592 | # CONFIG_SMSC911X is not set |
| 593 | # CONFIG_DNET is not set | ||
| 588 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 594 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 589 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 595 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 590 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 596 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -601,7 +607,6 @@ CONFIG_SH_ETH=y | |||
| 601 | # | 607 | # |
| 602 | # CONFIG_WLAN_PRE80211 is not set | 608 | # CONFIG_WLAN_PRE80211 is not set |
| 603 | # CONFIG_WLAN_80211 is not set | 609 | # CONFIG_WLAN_80211 is not set |
| 604 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 605 | 610 | ||
| 606 | # | 611 | # |
| 607 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 612 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -685,6 +690,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 685 | CONFIG_LEGACY_PTY_COUNT=256 | 690 | CONFIG_LEGACY_PTY_COUNT=256 |
| 686 | # CONFIG_IPMI_HANDLER is not set | 691 | # CONFIG_IPMI_HANDLER is not set |
| 687 | CONFIG_HW_RANDOM=y | 692 | CONFIG_HW_RANDOM=y |
| 693 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 688 | # CONFIG_R3964 is not set | 694 | # CONFIG_R3964 is not set |
| 689 | # CONFIG_RAW_DRIVER is not set | 695 | # CONFIG_RAW_DRIVER is not set |
| 690 | # CONFIG_TCG_TPM is not set | 696 | # CONFIG_TCG_TPM is not set |
| @@ -764,6 +770,7 @@ CONFIG_FB_SH7760=y | |||
| 764 | # CONFIG_FB_VIRTUAL is not set | 770 | # CONFIG_FB_VIRTUAL is not set |
| 765 | # CONFIG_FB_METRONOME is not set | 771 | # CONFIG_FB_METRONOME is not set |
| 766 | # CONFIG_FB_MB862XX is not set | 772 | # CONFIG_FB_MB862XX is not set |
| 773 | # CONFIG_FB_BROADSHEET is not set | ||
| 767 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 774 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 768 | 775 | ||
| 769 | # | 776 | # |
| @@ -817,6 +824,7 @@ CONFIG_USB_MON=y | |||
| 817 | # CONFIG_USB_C67X00_HCD is not set | 824 | # CONFIG_USB_C67X00_HCD is not set |
| 818 | # CONFIG_USB_OXU210HP_HCD is not set | 825 | # CONFIG_USB_OXU210HP_HCD is not set |
| 819 | # CONFIG_USB_ISP116X_HCD is not set | 826 | # CONFIG_USB_ISP116X_HCD is not set |
| 827 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 820 | CONFIG_USB_OHCI_HCD=y | 828 | CONFIG_USB_OHCI_HCD=y |
| 821 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 829 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 822 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 830 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -834,11 +842,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 834 | # CONFIG_USB_TMC is not set | 842 | # CONFIG_USB_TMC is not set |
| 835 | 843 | ||
| 836 | # | 844 | # |
| 837 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 845 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 838 | # | 846 | # |
| 839 | 847 | ||
| 840 | # | 848 | # |
| 841 | # see USB_STORAGE Help for more information | 849 | # also be needed; see USB_STORAGE Help for more info |
| 842 | # | 850 | # |
| 843 | CONFIG_USB_STORAGE=y | 851 | CONFIG_USB_STORAGE=y |
| 844 | # CONFIG_USB_STORAGE_DEBUG is not set | 852 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -880,7 +888,6 @@ CONFIG_USB_STORAGE=y | |||
| 880 | # CONFIG_USB_LED is not set | 888 | # CONFIG_USB_LED is not set |
| 881 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 889 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 882 | # CONFIG_USB_CYTHERM is not set | 890 | # CONFIG_USB_CYTHERM is not set |
| 883 | # CONFIG_USB_PHIDGET is not set | ||
| 884 | # CONFIG_USB_IDMOUSE is not set | 891 | # CONFIG_USB_IDMOUSE is not set |
| 885 | # CONFIG_USB_FTDI_ELAN is not set | 892 | # CONFIG_USB_FTDI_ELAN is not set |
| 886 | # CONFIG_USB_APPLEDISPLAY is not set | 893 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -894,12 +901,14 @@ CONFIG_USB_STORAGE=y | |||
| 894 | # | 901 | # |
| 895 | # OTG and related infrastructure | 902 | # OTG and related infrastructure |
| 896 | # | 903 | # |
| 904 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 897 | # CONFIG_MMC is not set | 905 | # CONFIG_MMC is not set |
| 898 | # CONFIG_MEMSTICK is not set | 906 | # CONFIG_MEMSTICK is not set |
| 899 | # CONFIG_NEW_LEDS is not set | 907 | # CONFIG_NEW_LEDS is not set |
| 900 | # CONFIG_ACCESSIBILITY is not set | 908 | # CONFIG_ACCESSIBILITY is not set |
| 901 | # CONFIG_RTC_CLASS is not set | 909 | # CONFIG_RTC_CLASS is not set |
| 902 | # CONFIG_DMADEVICES is not set | 910 | # CONFIG_DMADEVICES is not set |
| 911 | # CONFIG_AUXDISPLAY is not set | ||
| 903 | # CONFIG_UIO is not set | 912 | # CONFIG_UIO is not set |
| 904 | # CONFIG_STAGING is not set | 913 | # CONFIG_STAGING is not set |
| 905 | 914 | ||
| @@ -987,7 +996,6 @@ CONFIG_ROOT_NFS=y | |||
| 987 | CONFIG_LOCKD=y | 996 | CONFIG_LOCKD=y |
| 988 | CONFIG_NFS_COMMON=y | 997 | CONFIG_NFS_COMMON=y |
| 989 | CONFIG_SUNRPC=y | 998 | CONFIG_SUNRPC=y |
| 990 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 991 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 999 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 992 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1000 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 993 | # CONFIG_SMB_FS is not set | 1001 | # CONFIG_SMB_FS is not set |
| @@ -1071,7 +1079,7 @@ CONFIG_TRACING=y | |||
| 1071 | # | 1079 | # |
| 1072 | # Tracers | 1080 | # Tracers |
| 1073 | # | 1081 | # |
| 1074 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1082 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1075 | # CONFIG_SAMPLES is not set | 1083 | # CONFIG_SAMPLES is not set |
| 1076 | CONFIG_HAVE_ARCH_KGDB=y | 1084 | CONFIG_HAVE_ARCH_KGDB=y |
| 1077 | # CONFIG_SH_STANDARD_BIOS is not set | 1085 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1163,6 +1171,7 @@ CONFIG_CRYPTO=y | |||
| 1163 | # Compression | 1171 | # Compression |
| 1164 | # | 1172 | # |
| 1165 | # CONFIG_CRYPTO_DEFLATE is not set | 1173 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1174 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1166 | # CONFIG_CRYPTO_LZO is not set | 1175 | # CONFIG_CRYPTO_LZO is not set |
| 1167 | 1176 | ||
| 1168 | # | 1177 | # |
| @@ -1184,7 +1193,7 @@ CONFIG_CRC32=y | |||
| 1184 | # CONFIG_CRC7 is not set | 1193 | # CONFIG_CRC7 is not set |
| 1185 | # CONFIG_LIBCRC32C is not set | 1194 | # CONFIG_LIBCRC32C is not set |
| 1186 | CONFIG_ZLIB_INFLATE=y | 1195 | CONFIG_ZLIB_INFLATE=y |
| 1187 | CONFIG_PLIST=y | ||
| 1188 | CONFIG_HAS_IOMEM=y | 1196 | CONFIG_HAS_IOMEM=y |
| 1189 | CONFIG_HAS_IOPORT=y | 1197 | CONFIG_HAS_IOPORT=y |
| 1190 | CONFIG_HAS_DMA=y | 1198 | CONFIG_HAS_DMA=y |
| 1199 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/hp6xx_defconfig b/arch/sh/configs/hp6xx_defconfig index 847a25106635..82b113af08d3 100644 --- a/arch/sh/configs/hp6xx_defconfig +++ b/arch/sh/configs/hp6xx_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 16:56:55 2009 | 4 | # Thu Apr 2 18:01:05 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 21 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -39,11 +40,20 @@ CONFIG_SWAP=y | |||
| 39 | # CONFIG_SYSVIPC is not set | 40 | # CONFIG_SYSVIPC is not set |
| 40 | CONFIG_BSD_PROCESS_ACCT=y | 41 | CONFIG_BSD_PROCESS_ACCT=y |
| 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 43 | |||
| 44 | # | ||
| 45 | # RCU Subsystem | ||
| 46 | # | ||
| 47 | CONFIG_CLASSIC_RCU=y | ||
| 48 | # CONFIG_TREE_RCU is not set | ||
| 49 | # CONFIG_PREEMPT_RCU is not set | ||
| 50 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 51 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 42 | CONFIG_IKCONFIG=y | 52 | CONFIG_IKCONFIG=y |
| 43 | CONFIG_IKCONFIG_PROC=y | 53 | CONFIG_IKCONFIG_PROC=y |
| 44 | CONFIG_LOG_BUF_SHIFT=14 | 54 | CONFIG_LOG_BUF_SHIFT=14 |
| 45 | # CONFIG_CGROUPS is not set | ||
| 46 | # CONFIG_GROUP_SCHED is not set | 55 | # CONFIG_GROUP_SCHED is not set |
| 56 | # CONFIG_CGROUPS is not set | ||
| 47 | CONFIG_SYSFS_DEPRECATED=y | 57 | CONFIG_SYSFS_DEPRECATED=y |
| 48 | CONFIG_SYSFS_DEPRECATED_V2=y | 58 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 49 | # CONFIG_RELAY is not set | 59 | # CONFIG_RELAY is not set |
| @@ -51,6 +61,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 51 | # CONFIG_BLK_DEV_INITRD is not set | 61 | # CONFIG_BLK_DEV_INITRD is not set |
| 52 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 62 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 53 | CONFIG_SYSCTL=y | 63 | CONFIG_SYSCTL=y |
| 64 | CONFIG_ANON_INODES=y | ||
| 54 | CONFIG_EMBEDDED=y | 65 | CONFIG_EMBEDDED=y |
| 55 | CONFIG_UID16=y | 66 | CONFIG_UID16=y |
| 56 | # CONFIG_SYSCTL_SYSCALL is not set | 67 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -60,10 +71,8 @@ CONFIG_HOTPLUG=y | |||
| 60 | CONFIG_PRINTK=y | 71 | CONFIG_PRINTK=y |
| 61 | CONFIG_BUG=y | 72 | CONFIG_BUG=y |
| 62 | CONFIG_ELF_CORE=y | 73 | CONFIG_ELF_CORE=y |
| 63 | CONFIG_COMPAT_BRK=y | ||
| 64 | CONFIG_BASE_FULL=y | 74 | CONFIG_BASE_FULL=y |
| 65 | CONFIG_FUTEX=y | 75 | CONFIG_FUTEX=y |
| 66 | CONFIG_ANON_INODES=y | ||
| 67 | CONFIG_EPOLL=y | 76 | CONFIG_EPOLL=y |
| 68 | CONFIG_SIGNALFD=y | 77 | CONFIG_SIGNALFD=y |
| 69 | CONFIG_TIMERFD=y | 78 | CONFIG_TIMERFD=y |
| @@ -71,6 +80,7 @@ CONFIG_EVENTFD=y | |||
| 71 | CONFIG_SHMEM=y | 80 | CONFIG_SHMEM=y |
| 72 | CONFIG_AIO=y | 81 | CONFIG_AIO=y |
| 73 | CONFIG_VM_EVENT_COUNTERS=y | 82 | CONFIG_VM_EVENT_COUNTERS=y |
| 83 | CONFIG_COMPAT_BRK=y | ||
| 74 | CONFIG_SLAB=y | 84 | CONFIG_SLAB=y |
| 75 | # CONFIG_SLUB is not set | 85 | # CONFIG_SLUB is not set |
| 76 | # CONFIG_SLOB is not set | 86 | # CONFIG_SLOB is not set |
| @@ -104,11 +114,6 @@ CONFIG_DEFAULT_AS=y | |||
| 104 | # CONFIG_DEFAULT_CFQ is not set | 114 | # CONFIG_DEFAULT_CFQ is not set |
| 105 | # CONFIG_DEFAULT_NOOP is not set | 115 | # CONFIG_DEFAULT_NOOP is not set |
| 106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 116 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 107 | CONFIG_CLASSIC_RCU=y | ||
| 108 | # CONFIG_TREE_RCU is not set | ||
| 109 | # CONFIG_PREEMPT_RCU is not set | ||
| 110 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 111 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 112 | CONFIG_FREEZER=y | 117 | CONFIG_FREEZER=y |
| 113 | 118 | ||
| 114 | # | 119 | # |
| @@ -143,6 +148,7 @@ CONFIG_CPU_SUBTYPE_SH7709=y | |||
| 143 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 148 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 144 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 149 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 145 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 150 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 151 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 146 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 152 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 147 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 153 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 148 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 154 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -184,11 +190,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 184 | CONFIG_ZONE_DMA_FLAG=0 | 190 | CONFIG_ZONE_DMA_FLAG=0 |
| 185 | CONFIG_NR_QUICK=2 | 191 | CONFIG_NR_QUICK=2 |
| 186 | CONFIG_UNEVICTABLE_LRU=y | 192 | CONFIG_UNEVICTABLE_LRU=y |
| 193 | CONFIG_HAVE_MLOCK=y | ||
| 194 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 187 | 195 | ||
| 188 | # | 196 | # |
| 189 | # Cache configuration | 197 | # Cache configuration |
| 190 | # | 198 | # |
| 191 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 192 | CONFIG_CACHE_WRITEBACK=y | 199 | CONFIG_CACHE_WRITEBACK=y |
| 193 | # CONFIG_CACHE_WRITETHROUGH is not set | 200 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 194 | # CONFIG_CACHE_OFF is not set | 201 | # CONFIG_CACHE_OFF is not set |
| @@ -208,6 +215,7 @@ CONFIG_CPU_HAS_SR_RB=y | |||
| 208 | # | 215 | # |
| 209 | # CONFIG_SH_SOLUTION_ENGINE is not set | 216 | # CONFIG_SH_SOLUTION_ENGINE is not set |
| 210 | CONFIG_SH_HP6XX=y | 217 | CONFIG_SH_HP6XX=y |
| 218 | # CONFIG_SH_POLARIS is not set | ||
| 211 | 219 | ||
| 212 | # | 220 | # |
| 213 | # Timer and clock configuration | 221 | # Timer and clock configuration |
| @@ -229,7 +237,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 229 | # | 237 | # |
| 230 | CONFIG_SH_DMA_API=y | 238 | CONFIG_SH_DMA_API=y |
| 231 | CONFIG_SH_DMA=y | 239 | CONFIG_SH_DMA=y |
| 232 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 240 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
| 233 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 241 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 234 | 242 | ||
| 235 | # | 243 | # |
| @@ -302,6 +310,7 @@ CONFIG_PM=y | |||
| 302 | CONFIG_PM_SLEEP=y | 310 | CONFIG_PM_SLEEP=y |
| 303 | CONFIG_SUSPEND=y | 311 | CONFIG_SUSPEND=y |
| 304 | CONFIG_SUSPEND_FREEZER=y | 312 | CONFIG_SUSPEND_FREEZER=y |
| 313 | # CONFIG_HIBERNATION is not set | ||
| 305 | CONFIG_APM_EMULATION=y | 314 | CONFIG_APM_EMULATION=y |
| 306 | # CONFIG_CPU_IDLE is not set | 315 | # CONFIG_CPU_IDLE is not set |
| 307 | # CONFIG_NET is not set | 316 | # CONFIG_NET is not set |
| @@ -329,9 +338,13 @@ CONFIG_BLK_DEV=y | |||
| 329 | # CONFIG_CDROM_PKTCDVD is not set | 338 | # CONFIG_CDROM_PKTCDVD is not set |
| 330 | # CONFIG_BLK_DEV_HD is not set | 339 | # CONFIG_BLK_DEV_HD is not set |
| 331 | CONFIG_MISC_DEVICES=y | 340 | CONFIG_MISC_DEVICES=y |
| 332 | # CONFIG_EEPROM_93CX6 is not set | ||
| 333 | # CONFIG_ENCLOSURE_SERVICES is not set | 341 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 334 | # CONFIG_C2PORT is not set | 342 | # CONFIG_C2PORT is not set |
| 343 | |||
| 344 | # | ||
| 345 | # EEPROM support | ||
| 346 | # | ||
| 347 | # CONFIG_EEPROM_93CX6 is not set | ||
| 335 | CONFIG_HAVE_IDE=y | 348 | CONFIG_HAVE_IDE=y |
| 336 | # CONFIG_IDE is not set | 349 | # CONFIG_IDE is not set |
| 337 | 350 | ||
| @@ -375,6 +388,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 375 | # CONFIG_SCSI_DEBUG is not set | 388 | # CONFIG_SCSI_DEBUG is not set |
| 376 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 389 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 377 | # CONFIG_SCSI_DH is not set | 390 | # CONFIG_SCSI_DH is not set |
| 391 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 378 | CONFIG_ATA=y | 392 | CONFIG_ATA=y |
| 379 | # CONFIG_ATA_NONSTANDARD is not set | 393 | # CONFIG_ATA_NONSTANDARD is not set |
| 380 | CONFIG_SATA_PMP=y | 394 | CONFIG_SATA_PMP=y |
| @@ -471,6 +485,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 471 | CONFIG_LEGACY_PTY_COUNT=64 | 485 | CONFIG_LEGACY_PTY_COUNT=64 |
| 472 | # CONFIG_IPMI_HANDLER is not set | 486 | # CONFIG_IPMI_HANDLER is not set |
| 473 | CONFIG_HW_RANDOM=y | 487 | CONFIG_HW_RANDOM=y |
| 488 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 474 | # CONFIG_R3964 is not set | 489 | # CONFIG_R3964 is not set |
| 475 | 490 | ||
| 476 | # | 491 | # |
| @@ -554,12 +569,13 @@ CONFIG_FB_SH_MOBILE_LCDC=y | |||
| 554 | # CONFIG_FB_VIRTUAL is not set | 569 | # CONFIG_FB_VIRTUAL is not set |
| 555 | # CONFIG_FB_METRONOME is not set | 570 | # CONFIG_FB_METRONOME is not set |
| 556 | # CONFIG_FB_MB862XX is not set | 571 | # CONFIG_FB_MB862XX is not set |
| 572 | # CONFIG_FB_BROADSHEET is not set | ||
| 557 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 573 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 558 | CONFIG_LCD_CLASS_DEVICE=y | 574 | CONFIG_LCD_CLASS_DEVICE=y |
| 559 | # CONFIG_LCD_ILI9320 is not set | 575 | # CONFIG_LCD_ILI9320 is not set |
| 560 | # CONFIG_LCD_PLATFORM is not set | 576 | # CONFIG_LCD_PLATFORM is not set |
| 561 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 577 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 562 | # CONFIG_BACKLIGHT_CORGI is not set | 578 | CONFIG_BACKLIGHT_GENERIC=y |
| 563 | CONFIG_BACKLIGHT_HP680=y | 579 | CONFIG_BACKLIGHT_HP680=y |
| 564 | 580 | ||
| 565 | # | 581 | # |
| @@ -631,6 +647,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 631 | # | 647 | # |
| 632 | CONFIG_RTC_DRV_SH=y | 648 | CONFIG_RTC_DRV_SH=y |
| 633 | # CONFIG_DMADEVICES is not set | 649 | # CONFIG_DMADEVICES is not set |
| 650 | # CONFIG_AUXDISPLAY is not set | ||
| 634 | # CONFIG_UIO is not set | 651 | # CONFIG_UIO is not set |
| 635 | # CONFIG_STAGING is not set | 652 | # CONFIG_STAGING is not set |
| 636 | 653 | ||
| @@ -647,6 +664,7 @@ CONFIG_EXT2_FS=y | |||
| 647 | # CONFIG_FS_POSIX_ACL is not set | 664 | # CONFIG_FS_POSIX_ACL is not set |
| 648 | CONFIG_FILE_LOCKING=y | 665 | CONFIG_FILE_LOCKING=y |
| 649 | # CONFIG_XFS_FS is not set | 666 | # CONFIG_XFS_FS is not set |
| 667 | # CONFIG_BTRFS_FS is not set | ||
| 650 | CONFIG_DNOTIFY=y | 668 | CONFIG_DNOTIFY=y |
| 651 | CONFIG_INOTIFY=y | 669 | CONFIG_INOTIFY=y |
| 652 | CONFIG_INOTIFY_USER=y | 670 | CONFIG_INOTIFY_USER=y |
| @@ -692,6 +710,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 692 | # CONFIG_BFS_FS is not set | 710 | # CONFIG_BFS_FS is not set |
| 693 | # CONFIG_EFS_FS is not set | 711 | # CONFIG_EFS_FS is not set |
| 694 | # CONFIG_CRAMFS is not set | 712 | # CONFIG_CRAMFS is not set |
| 713 | # CONFIG_SQUASHFS is not set | ||
| 695 | # CONFIG_VXFS_FS is not set | 714 | # CONFIG_VXFS_FS is not set |
| 696 | # CONFIG_MINIX_FS is not set | 715 | # CONFIG_MINIX_FS is not set |
| 697 | # CONFIG_OMFS_FS is not set | 716 | # CONFIG_OMFS_FS is not set |
| @@ -771,7 +790,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 771 | # | 790 | # |
| 772 | # Tracers | 791 | # Tracers |
| 773 | # | 792 | # |
| 774 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 775 | # CONFIG_SAMPLES is not set | 793 | # CONFIG_SAMPLES is not set |
| 776 | CONFIG_HAVE_ARCH_KGDB=y | 794 | CONFIG_HAVE_ARCH_KGDB=y |
| 777 | # CONFIG_SH_STANDARD_BIOS is not set | 795 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -799,10 +817,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 799 | CONFIG_CRYPTO_HASH=y | 817 | CONFIG_CRYPTO_HASH=y |
| 800 | CONFIG_CRYPTO_HASH2=y | 818 | CONFIG_CRYPTO_HASH2=y |
| 801 | CONFIG_CRYPTO_RNG2=y | 819 | CONFIG_CRYPTO_RNG2=y |
| 820 | CONFIG_CRYPTO_PCOMP=y | ||
| 802 | CONFIG_CRYPTO_MANAGER=y | 821 | CONFIG_CRYPTO_MANAGER=y |
| 803 | CONFIG_CRYPTO_MANAGER2=y | 822 | CONFIG_CRYPTO_MANAGER2=y |
| 804 | # CONFIG_CRYPTO_GF128MUL is not set | 823 | # CONFIG_CRYPTO_GF128MUL is not set |
| 805 | # CONFIG_CRYPTO_NULL is not set | 824 | # CONFIG_CRYPTO_NULL is not set |
| 825 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 806 | # CONFIG_CRYPTO_CRYPTD is not set | 826 | # CONFIG_CRYPTO_CRYPTD is not set |
| 807 | # CONFIG_CRYPTO_AUTHENC is not set | 827 | # CONFIG_CRYPTO_AUTHENC is not set |
| 808 | 828 | ||
| @@ -870,6 +890,7 @@ CONFIG_CRYPTO_MD5=y | |||
| 870 | # Compression | 890 | # Compression |
| 871 | # | 891 | # |
| 872 | # CONFIG_CRYPTO_DEFLATE is not set | 892 | # CONFIG_CRYPTO_DEFLATE is not set |
| 893 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 873 | # CONFIG_CRYPTO_LZO is not set | 894 | # CONFIG_CRYPTO_LZO is not set |
| 874 | 895 | ||
| 875 | # | 896 | # |
| @@ -890,7 +911,6 @@ CONFIG_CRC_T10DIF=y | |||
| 890 | CONFIG_CRC32=y | 911 | CONFIG_CRC32=y |
| 891 | # CONFIG_CRC7 is not set | 912 | # CONFIG_CRC7 is not set |
| 892 | # CONFIG_LIBCRC32C is not set | 913 | # CONFIG_LIBCRC32C is not set |
| 893 | CONFIG_PLIST=y | ||
| 894 | CONFIG_HAS_IOMEM=y | 914 | CONFIG_HAS_IOMEM=y |
| 895 | CONFIG_HAS_IOPORT=y | 915 | CONFIG_HAS_IOPORT=y |
| 896 | CONFIG_HAS_DMA=y | 916 | CONFIG_HAS_DMA=y |
diff --git a/arch/sh/configs/landisk_defconfig b/arch/sh/configs/landisk_defconfig index d3bbbb037716..b6fa4a7599d0 100644 --- a/arch/sh/configs/landisk_defconfig +++ b/arch/sh/configs/landisk_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 16:58:46 2009 | 4 | # Thu Apr 2 18:02:54 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -42,10 +43,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT is not set | 43 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_GROUP_SCHED is not set | 57 | # CONFIG_GROUP_SCHED is not set |
| 58 | # CONFIG_CGROUPS is not set | ||
| 49 | CONFIG_SYSFS_DEPRECATED=y | 59 | CONFIG_SYSFS_DEPRECATED=y |
| 50 | CONFIG_SYSFS_DEPRECATED_V2=y | 60 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 51 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| @@ -53,6 +63,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 53 | # CONFIG_BLK_DEV_INITRD is not set | 63 | # CONFIG_BLK_DEV_INITRD is not set |
| 54 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 64 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 55 | CONFIG_SYSCTL=y | 65 | CONFIG_SYSCTL=y |
| 66 | CONFIG_ANON_INODES=y | ||
| 56 | CONFIG_EMBEDDED=y | 67 | CONFIG_EMBEDDED=y |
| 57 | CONFIG_UID16=y | 68 | CONFIG_UID16=y |
| 58 | # CONFIG_SYSCTL_SYSCALL is not set | 69 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -62,10 +73,8 @@ CONFIG_HOTPLUG=y | |||
| 62 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
| 63 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
| 64 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
| 65 | CONFIG_COMPAT_BRK=y | ||
| 66 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
| 67 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
| 70 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
| 71 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
| @@ -74,6 +83,7 @@ CONFIG_SHMEM=y | |||
| 74 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
| 75 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
| 76 | CONFIG_PCI_QUIRKS=y | 85 | CONFIG_PCI_QUIRKS=y |
| 86 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 87 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 88 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 89 | # CONFIG_SLOB is not set |
| @@ -113,11 +123,6 @@ CONFIG_DEFAULT_AS=y | |||
| 113 | # CONFIG_DEFAULT_CFQ is not set | 123 | # CONFIG_DEFAULT_CFQ is not set |
| 114 | # CONFIG_DEFAULT_NOOP is not set | 124 | # CONFIG_DEFAULT_NOOP is not set |
| 115 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 125 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 116 | CONFIG_CLASSIC_RCU=y | ||
| 117 | # CONFIG_TREE_RCU is not set | ||
| 118 | # CONFIG_PREEMPT_RCU is not set | ||
| 119 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 120 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 121 | # CONFIG_FREEZER is not set | 126 | # CONFIG_FREEZER is not set |
| 122 | 127 | ||
| 123 | # | 128 | # |
| @@ -152,6 +157,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 152 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 154 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 155 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 161 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -193,11 +199,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 193 | CONFIG_ZONE_DMA_FLAG=0 | 199 | CONFIG_ZONE_DMA_FLAG=0 |
| 194 | CONFIG_NR_QUICK=2 | 200 | CONFIG_NR_QUICK=2 |
| 195 | CONFIG_UNEVICTABLE_LRU=y | 201 | CONFIG_UNEVICTABLE_LRU=y |
| 202 | CONFIG_HAVE_MLOCK=y | ||
| 203 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 196 | 204 | ||
| 197 | # | 205 | # |
| 198 | # Cache configuration | 206 | # Cache configuration |
| 199 | # | 207 | # |
| 200 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 201 | CONFIG_CACHE_WRITEBACK=y | 208 | CONFIG_CACHE_WRITEBACK=y |
| 202 | # CONFIG_CACHE_WRITETHROUGH is not set | 209 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 203 | # CONFIG_CACHE_OFF is not set | 210 | # CONFIG_CACHE_OFF is not set |
| @@ -290,6 +297,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 290 | # CONFIG_PCIEPORTBUS is not set | 297 | # CONFIG_PCIEPORTBUS is not set |
| 291 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 298 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 292 | CONFIG_PCI_LEGACY=y | 299 | CONFIG_PCI_LEGACY=y |
| 300 | # CONFIG_PCI_STUB is not set | ||
| 301 | # CONFIG_PCI_IOV is not set | ||
| 293 | CONFIG_PCCARD=y | 302 | CONFIG_PCCARD=y |
| 294 | # CONFIG_PCMCIA_DEBUG is not set | 303 | # CONFIG_PCMCIA_DEBUG is not set |
| 295 | CONFIG_PCMCIA=y | 304 | CONFIG_PCMCIA=y |
| @@ -329,7 +338,6 @@ CONFIG_NET=y | |||
| 329 | # | 338 | # |
| 330 | # Networking options | 339 | # Networking options |
| 331 | # | 340 | # |
| 332 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 333 | CONFIG_PACKET=y | 341 | CONFIG_PACKET=y |
| 334 | # CONFIG_PACKET_MMAP is not set | 342 | # CONFIG_PACKET_MMAP is not set |
| 335 | CONFIG_UNIX=y | 343 | CONFIG_UNIX=y |
| @@ -410,6 +418,7 @@ CONFIG_ATALK=m | |||
| 410 | # CONFIG_LAPB is not set | 418 | # CONFIG_LAPB is not set |
| 411 | # CONFIG_ECONET is not set | 419 | # CONFIG_ECONET is not set |
| 412 | # CONFIG_WAN_ROUTER is not set | 420 | # CONFIG_WAN_ROUTER is not set |
| 421 | # CONFIG_PHONET is not set | ||
| 413 | # CONFIG_NET_SCHED is not set | 422 | # CONFIG_NET_SCHED is not set |
| 414 | # CONFIG_DCB is not set | 423 | # CONFIG_DCB is not set |
| 415 | 424 | ||
| @@ -422,13 +431,13 @@ CONFIG_ATALK=m | |||
| 422 | # CONFIG_IRDA is not set | 431 | # CONFIG_IRDA is not set |
| 423 | # CONFIG_BT is not set | 432 | # CONFIG_BT is not set |
| 424 | # CONFIG_AF_RXRPC is not set | 433 | # CONFIG_AF_RXRPC is not set |
| 425 | # CONFIG_PHONET is not set | ||
| 426 | CONFIG_WIRELESS=y | 434 | CONFIG_WIRELESS=y |
| 427 | # CONFIG_CFG80211 is not set | 435 | # CONFIG_CFG80211 is not set |
| 428 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 436 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 429 | # CONFIG_WIRELESS_EXT is not set | 437 | # CONFIG_WIRELESS_EXT is not set |
| 430 | # CONFIG_LIB80211 is not set | 438 | # CONFIG_LIB80211 is not set |
| 431 | # CONFIG_MAC80211 is not set | 439 | # CONFIG_MAC80211 is not set |
| 440 | # CONFIG_WIMAX is not set | ||
| 432 | # CONFIG_RFKILL is not set | 441 | # CONFIG_RFKILL is not set |
| 433 | # CONFIG_NET_9P is not set | 442 | # CONFIG_NET_9P is not set |
| 434 | 443 | ||
| @@ -468,18 +477,23 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 468 | # CONFIG_BLK_DEV_HD is not set | 477 | # CONFIG_BLK_DEV_HD is not set |
| 469 | CONFIG_MISC_DEVICES=y | 478 | CONFIG_MISC_DEVICES=y |
| 470 | # CONFIG_PHANTOM is not set | 479 | # CONFIG_PHANTOM is not set |
| 471 | # CONFIG_EEPROM_93CX6 is not set | ||
| 472 | # CONFIG_SGI_IOC4 is not set | 480 | # CONFIG_SGI_IOC4 is not set |
| 473 | # CONFIG_TIFM_CORE is not set | 481 | # CONFIG_TIFM_CORE is not set |
| 474 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 475 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
| 476 | # CONFIG_C2PORT is not set | 484 | # CONFIG_C2PORT is not set |
| 485 | |||
| 486 | # | ||
| 487 | # EEPROM support | ||
| 488 | # | ||
| 489 | # CONFIG_EEPROM_93CX6 is not set | ||
| 477 | CONFIG_HAVE_IDE=y | 490 | CONFIG_HAVE_IDE=y |
| 478 | CONFIG_IDE=y | 491 | CONFIG_IDE=y |
| 479 | 492 | ||
| 480 | # | 493 | # |
| 481 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 494 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 482 | # | 495 | # |
| 496 | CONFIG_IDE_XFER_MODE=y | ||
| 483 | CONFIG_IDE_ATAPI=y | 497 | CONFIG_IDE_ATAPI=y |
| 484 | # CONFIG_BLK_DEV_IDE_SATA is not set | 498 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 485 | CONFIG_IDE_GD=y | 499 | CONFIG_IDE_GD=y |
| @@ -585,6 +599,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 585 | # CONFIG_MEGARAID_NEWGEN is not set | 599 | # CONFIG_MEGARAID_NEWGEN is not set |
| 586 | # CONFIG_MEGARAID_LEGACY is not set | 600 | # CONFIG_MEGARAID_LEGACY is not set |
| 587 | # CONFIG_MEGARAID_SAS is not set | 601 | # CONFIG_MEGARAID_SAS is not set |
| 602 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 588 | # CONFIG_SCSI_HPTIOP is not set | 603 | # CONFIG_SCSI_HPTIOP is not set |
| 589 | # CONFIG_LIBFC is not set | 604 | # CONFIG_LIBFC is not set |
| 590 | # CONFIG_FCOE is not set | 605 | # CONFIG_FCOE is not set |
| @@ -607,6 +622,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 607 | # CONFIG_SCSI_SRP is not set | 622 | # CONFIG_SCSI_SRP is not set |
| 608 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 623 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 609 | # CONFIG_SCSI_DH is not set | 624 | # CONFIG_SCSI_DH is not set |
| 625 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 610 | # CONFIG_ATA is not set | 626 | # CONFIG_ATA is not set |
| 611 | CONFIG_MD=y | 627 | CONFIG_MD=y |
| 612 | CONFIG_BLK_DEV_MD=m | 628 | CONFIG_BLK_DEV_MD=m |
| @@ -631,6 +647,7 @@ CONFIG_MD_RAID1=m | |||
| 631 | # CONFIG_IEEE1394 is not set | 647 | # CONFIG_IEEE1394 is not set |
| 632 | # CONFIG_I2O is not set | 648 | # CONFIG_I2O is not set |
| 633 | CONFIG_NETDEVICES=y | 649 | CONFIG_NETDEVICES=y |
| 650 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 634 | # CONFIG_DUMMY is not set | 651 | # CONFIG_DUMMY is not set |
| 635 | # CONFIG_BONDING is not set | 652 | # CONFIG_BONDING is not set |
| 636 | # CONFIG_MACVLAN is not set | 653 | # CONFIG_MACVLAN is not set |
| @@ -648,8 +665,10 @@ CONFIG_MII=y | |||
| 648 | # CONFIG_CASSINI is not set | 665 | # CONFIG_CASSINI is not set |
| 649 | # CONFIG_NET_VENDOR_3COM is not set | 666 | # CONFIG_NET_VENDOR_3COM is not set |
| 650 | # CONFIG_SMC91X is not set | 667 | # CONFIG_SMC91X is not set |
| 668 | # CONFIG_ETHOC is not set | ||
| 651 | # CONFIG_SMC911X is not set | 669 | # CONFIG_SMC911X is not set |
| 652 | # CONFIG_SMSC911X is not set | 670 | # CONFIG_SMSC911X is not set |
| 671 | # CONFIG_DNET is not set | ||
| 653 | # CONFIG_NET_TULIP is not set | 672 | # CONFIG_NET_TULIP is not set |
| 654 | # CONFIG_HP100 is not set | 673 | # CONFIG_HP100 is not set |
| 655 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 674 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -700,6 +719,7 @@ CONFIG_NETDEV_1000=y | |||
| 700 | # CONFIG_QLA3XXX is not set | 719 | # CONFIG_QLA3XXX is not set |
| 701 | # CONFIG_ATL1 is not set | 720 | # CONFIG_ATL1 is not set |
| 702 | # CONFIG_ATL1E is not set | 721 | # CONFIG_ATL1E is not set |
| 722 | # CONFIG_ATL1C is not set | ||
| 703 | # CONFIG_JME is not set | 723 | # CONFIG_JME is not set |
| 704 | CONFIG_NETDEV_10000=y | 724 | CONFIG_NETDEV_10000=y |
| 705 | # CONFIG_CHELSIO_T1 is not set | 725 | # CONFIG_CHELSIO_T1 is not set |
| @@ -718,6 +738,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 718 | # CONFIG_BNX2X is not set | 738 | # CONFIG_BNX2X is not set |
| 719 | # CONFIG_QLGE is not set | 739 | # CONFIG_QLGE is not set |
| 720 | # CONFIG_SFC is not set | 740 | # CONFIG_SFC is not set |
| 741 | # CONFIG_BE2NET is not set | ||
| 721 | # CONFIG_TR is not set | 742 | # CONFIG_TR is not set |
| 722 | 743 | ||
| 723 | # | 744 | # |
| @@ -725,7 +746,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 725 | # | 746 | # |
| 726 | # CONFIG_WLAN_PRE80211 is not set | 747 | # CONFIG_WLAN_PRE80211 is not set |
| 727 | # CONFIG_WLAN_80211 is not set | 748 | # CONFIG_WLAN_80211 is not set |
| 728 | # CONFIG_IWLWIFI_LEDS is not set | 749 | |
| 750 | # | ||
| 751 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 752 | # | ||
| 729 | 753 | ||
| 730 | # | 754 | # |
| 731 | # USB Network Adapters | 755 | # USB Network Adapters |
| @@ -814,6 +838,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 814 | CONFIG_LEGACY_PTY_COUNT=256 | 838 | CONFIG_LEGACY_PTY_COUNT=256 |
| 815 | # CONFIG_IPMI_HANDLER is not set | 839 | # CONFIG_IPMI_HANDLER is not set |
| 816 | CONFIG_HW_RANDOM=y | 840 | CONFIG_HW_RANDOM=y |
| 841 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 817 | # CONFIG_R3964 is not set | 842 | # CONFIG_R3964 is not set |
| 818 | # CONFIG_APPLICOM is not set | 843 | # CONFIG_APPLICOM is not set |
| 819 | 844 | ||
| @@ -898,6 +923,7 @@ CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | |||
| 898 | CONFIG_V4L_USB_DRIVERS=y | 923 | CONFIG_V4L_USB_DRIVERS=y |
| 899 | # CONFIG_USB_VIDEO_CLASS is not set | 924 | # CONFIG_USB_VIDEO_CLASS is not set |
| 900 | # CONFIG_USB_GSPCA is not set | 925 | # CONFIG_USB_GSPCA is not set |
| 926 | # CONFIG_VIDEO_HDPVR is not set | ||
| 901 | CONFIG_VIDEO_USBVIDEO=m | 927 | CONFIG_VIDEO_USBVIDEO=m |
| 902 | CONFIG_USB_VICAM=m | 928 | CONFIG_USB_VICAM=m |
| 903 | CONFIG_USB_IBMCAM=m | 929 | CONFIG_USB_IBMCAM=m |
| @@ -911,6 +937,7 @@ CONFIG_USB_STV680=m | |||
| 911 | # CONFIG_USB_ZC0301 is not set | 937 | # CONFIG_USB_ZC0301 is not set |
| 912 | CONFIG_USB_PWC=m | 938 | CONFIG_USB_PWC=m |
| 913 | # CONFIG_USB_PWC_DEBUG is not set | 939 | # CONFIG_USB_PWC_DEBUG is not set |
| 940 | CONFIG_USB_PWC_INPUT_EVDEV=y | ||
| 914 | # CONFIG_USB_ZR364XX is not set | 941 | # CONFIG_USB_ZR364XX is not set |
| 915 | # CONFIG_USB_STKWEBCAM is not set | 942 | # CONFIG_USB_STKWEBCAM is not set |
| 916 | # CONFIG_USB_S2255 is not set | 943 | # CONFIG_USB_S2255 is not set |
| @@ -1020,6 +1047,7 @@ CONFIG_USB_MON=y | |||
| 1020 | CONFIG_USB_EHCI_HCD=y | 1047 | CONFIG_USB_EHCI_HCD=y |
| 1021 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1048 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1022 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1049 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1050 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1023 | # CONFIG_USB_ISP116X_HCD is not set | 1051 | # CONFIG_USB_ISP116X_HCD is not set |
| 1024 | # CONFIG_USB_ISP1760_HCD is not set | 1052 | # CONFIG_USB_ISP1760_HCD is not set |
| 1025 | CONFIG_USB_OHCI_HCD=y | 1053 | CONFIG_USB_OHCI_HCD=y |
| @@ -1041,22 +1069,21 @@ CONFIG_USB_PRINTER=m | |||
| 1041 | # CONFIG_USB_TMC is not set | 1069 | # CONFIG_USB_TMC is not set |
| 1042 | 1070 | ||
| 1043 | # | 1071 | # |
| 1044 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1072 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1045 | # | 1073 | # |
| 1046 | 1074 | ||
| 1047 | # | 1075 | # |
| 1048 | # see USB_STORAGE Help for more information | 1076 | # also be needed; see USB_STORAGE Help for more info |
| 1049 | # | 1077 | # |
| 1050 | CONFIG_USB_STORAGE=m | 1078 | CONFIG_USB_STORAGE=m |
| 1051 | # CONFIG_USB_STORAGE_DEBUG is not set | 1079 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1052 | CONFIG_USB_STORAGE_DATAFAB=y | 1080 | CONFIG_USB_STORAGE_DATAFAB=m |
| 1053 | CONFIG_USB_STORAGE_FREECOM=y | 1081 | CONFIG_USB_STORAGE_FREECOM=m |
| 1054 | CONFIG_USB_STORAGE_ISD200=y | 1082 | CONFIG_USB_STORAGE_ISD200=m |
| 1055 | CONFIG_USB_STORAGE_DPCM=y | ||
| 1056 | # CONFIG_USB_STORAGE_USBAT is not set | 1083 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1057 | CONFIG_USB_STORAGE_SDDR09=y | 1084 | CONFIG_USB_STORAGE_SDDR09=m |
| 1058 | CONFIG_USB_STORAGE_SDDR55=y | 1085 | CONFIG_USB_STORAGE_SDDR55=m |
| 1059 | CONFIG_USB_STORAGE_JUMPSHOT=y | 1086 | CONFIG_USB_STORAGE_JUMPSHOT=m |
| 1060 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1087 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1061 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1088 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1062 | # CONFIG_USB_STORAGE_KARMA is not set | 1089 | # CONFIG_USB_STORAGE_KARMA is not set |
| @@ -1081,7 +1108,7 @@ CONFIG_USB_SERIAL=m | |||
| 1081 | # CONFIG_USB_SERIAL_CH341 is not set | 1108 | # CONFIG_USB_SERIAL_CH341 is not set |
| 1082 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1109 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
| 1083 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1110 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
| 1084 | # CONFIG_USB_SERIAL_CP2101 is not set | 1111 | # CONFIG_USB_SERIAL_CP210X is not set |
| 1085 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1112 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
| 1086 | # CONFIG_USB_SERIAL_EMPEG is not set | 1113 | # CONFIG_USB_SERIAL_EMPEG is not set |
| 1087 | CONFIG_USB_SERIAL_FTDI_SIO=m | 1114 | CONFIG_USB_SERIAL_FTDI_SIO=m |
| @@ -1105,15 +1132,19 @@ CONFIG_USB_SERIAL_FTDI_SIO=m | |||
| 1105 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1132 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1106 | CONFIG_USB_SERIAL_PL2303=m | 1133 | CONFIG_USB_SERIAL_PL2303=m |
| 1107 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1134 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1135 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
| 1108 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1136 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
| 1109 | # CONFIG_USB_SERIAL_HP4X is not set | 1137 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1110 | # CONFIG_USB_SERIAL_SAFE is not set | 1138 | # CONFIG_USB_SERIAL_SAFE is not set |
| 1139 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
| 1111 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1140 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| 1141 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
| 1112 | # CONFIG_USB_SERIAL_TI is not set | 1142 | # CONFIG_USB_SERIAL_TI is not set |
| 1113 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1143 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
| 1114 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1144 | # CONFIG_USB_SERIAL_XIRCOM is not set |
| 1115 | # CONFIG_USB_SERIAL_OPTION is not set | 1145 | # CONFIG_USB_SERIAL_OPTION is not set |
| 1116 | # CONFIG_USB_SERIAL_OMNINET is not set | 1146 | # CONFIG_USB_SERIAL_OMNINET is not set |
| 1147 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
| 1117 | # CONFIG_USB_SERIAL_DEBUG is not set | 1148 | # CONFIG_USB_SERIAL_DEBUG is not set |
| 1118 | 1149 | ||
| 1119 | # | 1150 | # |
| @@ -1130,7 +1161,6 @@ CONFIG_USB_EMI26=m | |||
| 1130 | # CONFIG_USB_LED is not set | 1161 | # CONFIG_USB_LED is not set |
| 1131 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1162 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1132 | # CONFIG_USB_CYTHERM is not set | 1163 | # CONFIG_USB_CYTHERM is not set |
| 1133 | # CONFIG_USB_PHIDGET is not set | ||
| 1134 | # CONFIG_USB_IDMOUSE is not set | 1164 | # CONFIG_USB_IDMOUSE is not set |
| 1135 | # CONFIG_USB_FTDI_ELAN is not set | 1165 | # CONFIG_USB_FTDI_ELAN is not set |
| 1136 | # CONFIG_USB_APPLEDISPLAY is not set | 1166 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1143,6 +1173,11 @@ CONFIG_USB_SISUSBVGA_CON=y | |||
| 1143 | # CONFIG_USB_ISIGHTFW is not set | 1173 | # CONFIG_USB_ISIGHTFW is not set |
| 1144 | # CONFIG_USB_VST is not set | 1174 | # CONFIG_USB_VST is not set |
| 1145 | # CONFIG_USB_GADGET is not set | 1175 | # CONFIG_USB_GADGET is not set |
| 1176 | |||
| 1177 | # | ||
| 1178 | # OTG and related infrastructure | ||
| 1179 | # | ||
| 1180 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1146 | # CONFIG_UWB is not set | 1181 | # CONFIG_UWB is not set |
| 1147 | # CONFIG_MMC is not set | 1182 | # CONFIG_MMC is not set |
| 1148 | # CONFIG_MEMSTICK is not set | 1183 | # CONFIG_MEMSTICK is not set |
| @@ -1151,6 +1186,7 @@ CONFIG_USB_SISUSBVGA_CON=y | |||
| 1151 | # CONFIG_INFINIBAND is not set | 1186 | # CONFIG_INFINIBAND is not set |
| 1152 | # CONFIG_RTC_CLASS is not set | 1187 | # CONFIG_RTC_CLASS is not set |
| 1153 | # CONFIG_DMADEVICES is not set | 1188 | # CONFIG_DMADEVICES is not set |
| 1189 | # CONFIG_AUXDISPLAY is not set | ||
| 1154 | # CONFIG_UIO is not set | 1190 | # CONFIG_UIO is not set |
| 1155 | # CONFIG_STAGING is not set | 1191 | # CONFIG_STAGING is not set |
| 1156 | 1192 | ||
| @@ -1176,6 +1212,7 @@ CONFIG_REISERFS_FS=y | |||
| 1176 | CONFIG_FILE_LOCKING=y | 1212 | CONFIG_FILE_LOCKING=y |
| 1177 | # CONFIG_XFS_FS is not set | 1213 | # CONFIG_XFS_FS is not set |
| 1178 | # CONFIG_OCFS2_FS is not set | 1214 | # CONFIG_OCFS2_FS is not set |
| 1215 | # CONFIG_BTRFS_FS is not set | ||
| 1179 | CONFIG_DNOTIFY=y | 1216 | CONFIG_DNOTIFY=y |
| 1180 | CONFIG_INOTIFY=y | 1217 | CONFIG_INOTIFY=y |
| 1181 | CONFIG_INOTIFY_USER=y | 1218 | CONFIG_INOTIFY_USER=y |
| @@ -1226,6 +1263,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1226 | # CONFIG_BFS_FS is not set | 1263 | # CONFIG_BFS_FS is not set |
| 1227 | # CONFIG_EFS_FS is not set | 1264 | # CONFIG_EFS_FS is not set |
| 1228 | # CONFIG_CRAMFS is not set | 1265 | # CONFIG_CRAMFS is not set |
| 1266 | # CONFIG_SQUASHFS is not set | ||
| 1229 | # CONFIG_VXFS_FS is not set | 1267 | # CONFIG_VXFS_FS is not set |
| 1230 | # CONFIG_MINIX_FS is not set | 1268 | # CONFIG_MINIX_FS is not set |
| 1231 | # CONFIG_OMFS_FS is not set | 1269 | # CONFIG_OMFS_FS is not set |
| @@ -1250,7 +1288,6 @@ CONFIG_LOCKD_V4=y | |||
| 1250 | CONFIG_EXPORTFS=m | 1288 | CONFIG_EXPORTFS=m |
| 1251 | CONFIG_NFS_COMMON=y | 1289 | CONFIG_NFS_COMMON=y |
| 1252 | CONFIG_SUNRPC=m | 1290 | CONFIG_SUNRPC=m |
| 1253 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1254 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1291 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1255 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1292 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1256 | CONFIG_SMB_FS=m | 1293 | CONFIG_SMB_FS=m |
| @@ -1331,7 +1368,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1331 | # | 1368 | # |
| 1332 | # Tracers | 1369 | # Tracers |
| 1333 | # | 1370 | # |
| 1334 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1335 | # CONFIG_SAMPLES is not set | 1371 | # CONFIG_SAMPLES is not set |
| 1336 | CONFIG_HAVE_ARCH_KGDB=y | 1372 | CONFIG_HAVE_ARCH_KGDB=y |
| 1337 | CONFIG_SH_STANDARD_BIOS=y | 1373 | CONFIG_SH_STANDARD_BIOS=y |
| @@ -1424,6 +1460,7 @@ CONFIG_CRYPTO=y | |||
| 1424 | # Compression | 1460 | # Compression |
| 1425 | # | 1461 | # |
| 1426 | # CONFIG_CRYPTO_DEFLATE is not set | 1462 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1463 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1427 | # CONFIG_CRYPTO_LZO is not set | 1464 | # CONFIG_CRYPTO_LZO is not set |
| 1428 | 1465 | ||
| 1429 | # | 1466 | # |
| @@ -1445,7 +1482,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1445 | CONFIG_CRC32=y | 1482 | CONFIG_CRC32=y |
| 1446 | # CONFIG_CRC7 is not set | 1483 | # CONFIG_CRC7 is not set |
| 1447 | # CONFIG_LIBCRC32C is not set | 1484 | # CONFIG_LIBCRC32C is not set |
| 1448 | CONFIG_PLIST=y | ||
| 1449 | CONFIG_HAS_IOMEM=y | 1485 | CONFIG_HAS_IOMEM=y |
| 1450 | CONFIG_HAS_IOPORT=y | 1486 | CONFIG_HAS_IOPORT=y |
| 1451 | CONFIG_HAS_DMA=y | 1487 | CONFIG_HAS_DMA=y |
| 1488 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/lboxre2_defconfig b/arch/sh/configs/lboxre2_defconfig index d5c5a1dbaa62..92c515c4199f 100644 --- a/arch/sh/configs/lboxre2_defconfig +++ b/arch/sh/configs/lboxre2_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:02:46 2009 | 4 | # Thu Apr 2 18:06:51 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -42,10 +43,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT is not set | 43 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_GROUP_SCHED is not set | 57 | # CONFIG_GROUP_SCHED is not set |
| 58 | # CONFIG_CGROUPS is not set | ||
| 49 | CONFIG_SYSFS_DEPRECATED=y | 59 | CONFIG_SYSFS_DEPRECATED=y |
| 50 | CONFIG_SYSFS_DEPRECATED_V2=y | 60 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 51 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| @@ -53,6 +63,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 53 | # CONFIG_BLK_DEV_INITRD is not set | 63 | # CONFIG_BLK_DEV_INITRD is not set |
| 54 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 64 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 55 | CONFIG_SYSCTL=y | 65 | CONFIG_SYSCTL=y |
| 66 | CONFIG_ANON_INODES=y | ||
| 56 | CONFIG_EMBEDDED=y | 67 | CONFIG_EMBEDDED=y |
| 57 | CONFIG_UID16=y | 68 | CONFIG_UID16=y |
| 58 | # CONFIG_SYSCTL_SYSCALL is not set | 69 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -62,10 +73,8 @@ CONFIG_HOTPLUG=y | |||
| 62 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
| 63 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
| 64 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
| 65 | CONFIG_COMPAT_BRK=y | ||
| 66 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
| 67 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
| 70 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
| 71 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
| @@ -74,6 +83,7 @@ CONFIG_SHMEM=y | |||
| 74 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
| 75 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
| 76 | CONFIG_PCI_QUIRKS=y | 85 | CONFIG_PCI_QUIRKS=y |
| 86 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 87 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 88 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 89 | # CONFIG_SLOB is not set |
| @@ -113,11 +123,6 @@ CONFIG_DEFAULT_AS=y | |||
| 113 | # CONFIG_DEFAULT_CFQ is not set | 123 | # CONFIG_DEFAULT_CFQ is not set |
| 114 | # CONFIG_DEFAULT_NOOP is not set | 124 | # CONFIG_DEFAULT_NOOP is not set |
| 115 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 125 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 116 | CONFIG_CLASSIC_RCU=y | ||
| 117 | # CONFIG_TREE_RCU is not set | ||
| 118 | # CONFIG_PREEMPT_RCU is not set | ||
| 119 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 120 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 121 | # CONFIG_FREEZER is not set | 126 | # CONFIG_FREEZER is not set |
| 122 | 127 | ||
| 123 | # | 128 | # |
| @@ -152,6 +157,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 152 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 154 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 155 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 161 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -193,11 +199,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 193 | CONFIG_ZONE_DMA_FLAG=0 | 199 | CONFIG_ZONE_DMA_FLAG=0 |
| 194 | CONFIG_NR_QUICK=2 | 200 | CONFIG_NR_QUICK=2 |
| 195 | CONFIG_UNEVICTABLE_LRU=y | 201 | CONFIG_UNEVICTABLE_LRU=y |
| 202 | CONFIG_HAVE_MLOCK=y | ||
| 203 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 196 | 204 | ||
| 197 | # | 205 | # |
| 198 | # Cache configuration | 206 | # Cache configuration |
| 199 | # | 207 | # |
| 200 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 201 | CONFIG_CACHE_WRITEBACK=y | 208 | CONFIG_CACHE_WRITEBACK=y |
| 202 | # CONFIG_CACHE_WRITETHROUGH is not set | 209 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 203 | # CONFIG_CACHE_OFF is not set | 210 | # CONFIG_CACHE_OFF is not set |
| @@ -291,6 +298,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 291 | # CONFIG_PCIEPORTBUS is not set | 298 | # CONFIG_PCIEPORTBUS is not set |
| 292 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 299 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 293 | CONFIG_PCI_LEGACY=y | 300 | CONFIG_PCI_LEGACY=y |
| 301 | # CONFIG_PCI_STUB is not set | ||
| 302 | # CONFIG_PCI_IOV is not set | ||
| 294 | CONFIG_PCCARD=y | 303 | CONFIG_PCCARD=y |
| 295 | CONFIG_PCMCIA_DEBUG=y | 304 | CONFIG_PCMCIA_DEBUG=y |
| 296 | CONFIG_PCMCIA=y | 305 | CONFIG_PCMCIA=y |
| @@ -329,7 +338,6 @@ CONFIG_NET=y | |||
| 329 | # | 338 | # |
| 330 | # Networking options | 339 | # Networking options |
| 331 | # | 340 | # |
| 332 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 333 | CONFIG_PACKET=y | 341 | CONFIG_PACKET=y |
| 334 | # CONFIG_PACKET_MMAP is not set | 342 | # CONFIG_PACKET_MMAP is not set |
| 335 | CONFIG_UNIX=y | 343 | CONFIG_UNIX=y |
| @@ -408,6 +416,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 408 | # CONFIG_LAPB is not set | 416 | # CONFIG_LAPB is not set |
| 409 | # CONFIG_ECONET is not set | 417 | # CONFIG_ECONET is not set |
| 410 | # CONFIG_WAN_ROUTER is not set | 418 | # CONFIG_WAN_ROUTER is not set |
| 419 | # CONFIG_PHONET is not set | ||
| 411 | # CONFIG_NET_SCHED is not set | 420 | # CONFIG_NET_SCHED is not set |
| 412 | # CONFIG_DCB is not set | 421 | # CONFIG_DCB is not set |
| 413 | 422 | ||
| @@ -420,13 +429,13 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 420 | # CONFIG_IRDA is not set | 429 | # CONFIG_IRDA is not set |
| 421 | # CONFIG_BT is not set | 430 | # CONFIG_BT is not set |
| 422 | # CONFIG_AF_RXRPC is not set | 431 | # CONFIG_AF_RXRPC is not set |
| 423 | # CONFIG_PHONET is not set | ||
| 424 | CONFIG_WIRELESS=y | 432 | CONFIG_WIRELESS=y |
| 425 | # CONFIG_CFG80211 is not set | 433 | # CONFIG_CFG80211 is not set |
| 426 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 434 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 427 | # CONFIG_WIRELESS_EXT is not set | 435 | # CONFIG_WIRELESS_EXT is not set |
| 428 | # CONFIG_LIB80211 is not set | 436 | # CONFIG_LIB80211 is not set |
| 429 | # CONFIG_MAC80211 is not set | 437 | # CONFIG_MAC80211 is not set |
| 438 | # CONFIG_WIMAX is not set | ||
| 430 | # CONFIG_RFKILL is not set | 439 | # CONFIG_RFKILL is not set |
| 431 | # CONFIG_NET_9P is not set | 440 | # CONFIG_NET_9P is not set |
| 432 | 441 | ||
| @@ -465,12 +474,16 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 465 | # CONFIG_BLK_DEV_HD is not set | 474 | # CONFIG_BLK_DEV_HD is not set |
| 466 | CONFIG_MISC_DEVICES=y | 475 | CONFIG_MISC_DEVICES=y |
| 467 | # CONFIG_PHANTOM is not set | 476 | # CONFIG_PHANTOM is not set |
| 468 | # CONFIG_EEPROM_93CX6 is not set | ||
| 469 | # CONFIG_SGI_IOC4 is not set | 477 | # CONFIG_SGI_IOC4 is not set |
| 470 | # CONFIG_TIFM_CORE is not set | 478 | # CONFIG_TIFM_CORE is not set |
| 471 | # CONFIG_ENCLOSURE_SERVICES is not set | 479 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 472 | # CONFIG_HP_ILO is not set | 480 | # CONFIG_HP_ILO is not set |
| 473 | # CONFIG_C2PORT is not set | 481 | # CONFIG_C2PORT is not set |
| 482 | |||
| 483 | # | ||
| 484 | # EEPROM support | ||
| 485 | # | ||
| 486 | # CONFIG_EEPROM_93CX6 is not set | ||
| 474 | CONFIG_HAVE_IDE=y | 487 | CONFIG_HAVE_IDE=y |
| 475 | # CONFIG_IDE is not set | 488 | # CONFIG_IDE is not set |
| 476 | 489 | ||
| @@ -526,6 +539,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 526 | # CONFIG_MEGARAID_NEWGEN is not set | 539 | # CONFIG_MEGARAID_NEWGEN is not set |
| 527 | # CONFIG_MEGARAID_LEGACY is not set | 540 | # CONFIG_MEGARAID_LEGACY is not set |
| 528 | # CONFIG_MEGARAID_SAS is not set | 541 | # CONFIG_MEGARAID_SAS is not set |
| 542 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 529 | # CONFIG_SCSI_HPTIOP is not set | 543 | # CONFIG_SCSI_HPTIOP is not set |
| 530 | # CONFIG_LIBFC is not set | 544 | # CONFIG_LIBFC is not set |
| 531 | # CONFIG_FCOE is not set | 545 | # CONFIG_FCOE is not set |
| @@ -549,6 +563,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 549 | # CONFIG_SCSI_SRP is not set | 563 | # CONFIG_SCSI_SRP is not set |
| 550 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 564 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 551 | # CONFIG_SCSI_DH is not set | 565 | # CONFIG_SCSI_DH is not set |
| 566 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 552 | CONFIG_ATA=y | 567 | CONFIG_ATA=y |
| 553 | # CONFIG_ATA_NONSTANDARD is not set | 568 | # CONFIG_ATA_NONSTANDARD is not set |
| 554 | CONFIG_SATA_PMP=y | 569 | CONFIG_SATA_PMP=y |
| @@ -624,6 +639,7 @@ CONFIG_PATA_PLATFORM=y | |||
| 624 | # CONFIG_IEEE1394 is not set | 639 | # CONFIG_IEEE1394 is not set |
| 625 | # CONFIG_I2O is not set | 640 | # CONFIG_I2O is not set |
| 626 | CONFIG_NETDEVICES=y | 641 | CONFIG_NETDEVICES=y |
| 642 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 627 | # CONFIG_DUMMY is not set | 643 | # CONFIG_DUMMY is not set |
| 628 | # CONFIG_BONDING is not set | 644 | # CONFIG_BONDING is not set |
| 629 | # CONFIG_MACVLAN is not set | 645 | # CONFIG_MACVLAN is not set |
| @@ -641,8 +657,10 @@ CONFIG_MII=y | |||
| 641 | # CONFIG_CASSINI is not set | 657 | # CONFIG_CASSINI is not set |
| 642 | # CONFIG_NET_VENDOR_3COM is not set | 658 | # CONFIG_NET_VENDOR_3COM is not set |
| 643 | # CONFIG_SMC91X is not set | 659 | # CONFIG_SMC91X is not set |
| 660 | # CONFIG_ETHOC is not set | ||
| 644 | # CONFIG_SMC911X is not set | 661 | # CONFIG_SMC911X is not set |
| 645 | # CONFIG_SMSC911X is not set | 662 | # CONFIG_SMSC911X is not set |
| 663 | # CONFIG_DNET is not set | ||
| 646 | # CONFIG_NET_TULIP is not set | 664 | # CONFIG_NET_TULIP is not set |
| 647 | # CONFIG_HP100 is not set | 665 | # CONFIG_HP100 is not set |
| 648 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 666 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -697,6 +715,7 @@ CONFIG_NETDEV_1000=y | |||
| 697 | # CONFIG_QLA3XXX is not set | 715 | # CONFIG_QLA3XXX is not set |
| 698 | # CONFIG_ATL1 is not set | 716 | # CONFIG_ATL1 is not set |
| 699 | # CONFIG_ATL1E is not set | 717 | # CONFIG_ATL1E is not set |
| 718 | # CONFIG_ATL1C is not set | ||
| 700 | # CONFIG_JME is not set | 719 | # CONFIG_JME is not set |
| 701 | CONFIG_NETDEV_10000=y | 720 | CONFIG_NETDEV_10000=y |
| 702 | # CONFIG_CHELSIO_T1 is not set | 721 | # CONFIG_CHELSIO_T1 is not set |
| @@ -715,6 +734,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 715 | # CONFIG_BNX2X is not set | 734 | # CONFIG_BNX2X is not set |
| 716 | # CONFIG_QLGE is not set | 735 | # CONFIG_QLGE is not set |
| 717 | # CONFIG_SFC is not set | 736 | # CONFIG_SFC is not set |
| 737 | # CONFIG_BE2NET is not set | ||
| 718 | # CONFIG_TR is not set | 738 | # CONFIG_TR is not set |
| 719 | 739 | ||
| 720 | # | 740 | # |
| @@ -722,7 +742,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 722 | # | 742 | # |
| 723 | # CONFIG_WLAN_PRE80211 is not set | 743 | # CONFIG_WLAN_PRE80211 is not set |
| 724 | # CONFIG_WLAN_80211 is not set | 744 | # CONFIG_WLAN_80211 is not set |
| 725 | # CONFIG_IWLWIFI_LEDS is not set | 745 | |
| 746 | # | ||
| 747 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 748 | # | ||
| 726 | CONFIG_NET_PCMCIA=y | 749 | CONFIG_NET_PCMCIA=y |
| 727 | # CONFIG_PCMCIA_3C589 is not set | 750 | # CONFIG_PCMCIA_3C589 is not set |
| 728 | # CONFIG_PCMCIA_3C574 is not set | 751 | # CONFIG_PCMCIA_3C574 is not set |
| @@ -810,6 +833,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 810 | CONFIG_LEGACY_PTY_COUNT=256 | 833 | CONFIG_LEGACY_PTY_COUNT=256 |
| 811 | # CONFIG_IPMI_HANDLER is not set | 834 | # CONFIG_IPMI_HANDLER is not set |
| 812 | CONFIG_HW_RANDOM=y | 835 | CONFIG_HW_RANDOM=y |
| 836 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 813 | # CONFIG_R3964 is not set | 837 | # CONFIG_R3964 is not set |
| 814 | # CONFIG_APPLICOM is not set | 838 | # CONFIG_APPLICOM is not set |
| 815 | 839 | ||
| @@ -921,9 +945,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 921 | # | 945 | # |
| 922 | 946 | ||
| 923 | # | 947 | # |
| 924 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 948 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 925 | # | 949 | # |
| 926 | # CONFIG_USB_GADGET is not set | 950 | # CONFIG_USB_GADGET is not set |
| 951 | |||
| 952 | # | ||
| 953 | # OTG and related infrastructure | ||
| 954 | # | ||
| 927 | # CONFIG_UWB is not set | 955 | # CONFIG_UWB is not set |
| 928 | # CONFIG_MMC is not set | 956 | # CONFIG_MMC is not set |
| 929 | # CONFIG_MEMSTICK is not set | 957 | # CONFIG_MEMSTICK is not set |
| @@ -968,6 +996,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 968 | # | 996 | # |
| 969 | # CONFIG_RTC_DRV_SH is not set | 997 | # CONFIG_RTC_DRV_SH is not set |
| 970 | # CONFIG_DMADEVICES is not set | 998 | # CONFIG_DMADEVICES is not set |
| 999 | # CONFIG_AUXDISPLAY is not set | ||
| 971 | # CONFIG_UIO is not set | 1000 | # CONFIG_UIO is not set |
| 972 | # CONFIG_STAGING is not set | 1001 | # CONFIG_STAGING is not set |
| 973 | 1002 | ||
| @@ -990,6 +1019,7 @@ CONFIG_FS_MBCACHE=y | |||
| 990 | CONFIG_FILE_LOCKING=y | 1019 | CONFIG_FILE_LOCKING=y |
| 991 | # CONFIG_XFS_FS is not set | 1020 | # CONFIG_XFS_FS is not set |
| 992 | # CONFIG_OCFS2_FS is not set | 1021 | # CONFIG_OCFS2_FS is not set |
| 1022 | # CONFIG_BTRFS_FS is not set | ||
| 993 | CONFIG_DNOTIFY=y | 1023 | CONFIG_DNOTIFY=y |
| 994 | CONFIG_INOTIFY=y | 1024 | CONFIG_INOTIFY=y |
| 995 | CONFIG_INOTIFY_USER=y | 1025 | CONFIG_INOTIFY_USER=y |
| @@ -1036,6 +1066,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1036 | # CONFIG_BFS_FS is not set | 1066 | # CONFIG_BFS_FS is not set |
| 1037 | # CONFIG_EFS_FS is not set | 1067 | # CONFIG_EFS_FS is not set |
| 1038 | # CONFIG_CRAMFS is not set | 1068 | # CONFIG_CRAMFS is not set |
| 1069 | # CONFIG_SQUASHFS is not set | ||
| 1039 | # CONFIG_VXFS_FS is not set | 1070 | # CONFIG_VXFS_FS is not set |
| 1040 | # CONFIG_MINIX_FS is not set | 1071 | # CONFIG_MINIX_FS is not set |
| 1041 | # CONFIG_OMFS_FS is not set | 1072 | # CONFIG_OMFS_FS is not set |
| @@ -1124,7 +1155,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1124 | # | 1155 | # |
| 1125 | # Tracers | 1156 | # Tracers |
| 1126 | # | 1157 | # |
| 1127 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1128 | # CONFIG_SAMPLES is not set | 1158 | # CONFIG_SAMPLES is not set |
| 1129 | CONFIG_HAVE_ARCH_KGDB=y | 1159 | CONFIG_HAVE_ARCH_KGDB=y |
| 1130 | CONFIG_SH_STANDARD_BIOS=y | 1160 | CONFIG_SH_STANDARD_BIOS=y |
| @@ -1217,6 +1247,7 @@ CONFIG_CRYPTO=y | |||
| 1217 | # Compression | 1247 | # Compression |
| 1218 | # | 1248 | # |
| 1219 | # CONFIG_CRYPTO_DEFLATE is not set | 1249 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1250 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1220 | # CONFIG_CRYPTO_LZO is not set | 1251 | # CONFIG_CRYPTO_LZO is not set |
| 1221 | 1252 | ||
| 1222 | # | 1253 | # |
| @@ -1238,7 +1269,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1238 | CONFIG_CRC32=y | 1269 | CONFIG_CRC32=y |
| 1239 | # CONFIG_CRC7 is not set | 1270 | # CONFIG_CRC7 is not set |
| 1240 | # CONFIG_LIBCRC32C is not set | 1271 | # CONFIG_LIBCRC32C is not set |
| 1241 | CONFIG_PLIST=y | ||
| 1242 | CONFIG_HAS_IOMEM=y | 1272 | CONFIG_HAS_IOMEM=y |
| 1243 | CONFIG_HAS_IOPORT=y | 1273 | CONFIG_HAS_IOPORT=y |
| 1244 | CONFIG_HAS_DMA=y | 1274 | CONFIG_HAS_DMA=y |
| 1275 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/magicpanelr2_defconfig b/arch/sh/configs/magicpanelr2_defconfig index 125d8019dc2f..26586c2d64ca 100644 --- a/arch/sh/configs/magicpanelr2_defconfig +++ b/arch/sh/configs/magicpanelr2_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:03:37 2009 | 4 | # Thu Apr 2 18:07:39 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_GPIO=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -43,33 +44,44 @@ CONFIG_BSD_PROCESS_ACCT_V3=y | |||
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | CONFIG_AUDIT=y | 45 | CONFIG_AUDIT=y |
| 45 | # CONFIG_AUDITSYSCALL is not set | 46 | # CONFIG_AUDITSYSCALL is not set |
| 47 | |||
| 48 | # | ||
| 49 | # RCU Subsystem | ||
| 50 | # | ||
| 51 | CONFIG_CLASSIC_RCU=y | ||
| 52 | # CONFIG_TREE_RCU is not set | ||
| 53 | # CONFIG_PREEMPT_RCU is not set | ||
| 54 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 55 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | 56 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=17 | 57 | CONFIG_LOG_BUF_SHIFT=17 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 60 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 61 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | CONFIG_RELAY=y | 62 | CONFIG_RELAY=y |
| 53 | # CONFIG_NAMESPACES is not set | 63 | # CONFIG_NAMESPACES is not set |
| 54 | CONFIG_BLK_DEV_INITRD=y | 64 | CONFIG_BLK_DEV_INITRD=y |
| 55 | CONFIG_INITRAMFS_SOURCE="" | 65 | CONFIG_INITRAMFS_SOURCE="" |
| 66 | CONFIG_RD_GZIP=y | ||
| 67 | # CONFIG_RD_BZIP2 is not set | ||
| 68 | # CONFIG_RD_LZMA is not set | ||
| 69 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 56 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 70 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 57 | CONFIG_SYSCTL=y | 71 | CONFIG_SYSCTL=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 58 | CONFIG_EMBEDDED=y | 73 | CONFIG_EMBEDDED=y |
| 59 | CONFIG_UID16=y | 74 | CONFIG_UID16=y |
| 60 | CONFIG_SYSCTL_SYSCALL=y | 75 | CONFIG_SYSCTL_SYSCALL=y |
| 61 | CONFIG_KALLSYMS=y | 76 | CONFIG_KALLSYMS=y |
| 62 | CONFIG_KALLSYMS_ALL=y | 77 | CONFIG_KALLSYMS_ALL=y |
| 63 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 64 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 78 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 65 | CONFIG_HOTPLUG=y | 79 | CONFIG_HOTPLUG=y |
| 66 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 67 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 68 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 69 | CONFIG_COMPAT_BRK=y | ||
| 70 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 71 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 73 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 74 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 75 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -77,6 +89,7 @@ CONFIG_EVENTFD=y | |||
| 77 | CONFIG_SHMEM=y | 89 | CONFIG_SHMEM=y |
| 78 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 79 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 92 | CONFIG_COMPAT_BRK=y | ||
| 80 | CONFIG_SLAB=y | 93 | CONFIG_SLAB=y |
| 81 | # CONFIG_SLUB is not set | 94 | # CONFIG_SLUB is not set |
| 82 | # CONFIG_SLOB is not set | 95 | # CONFIG_SLOB is not set |
| @@ -116,11 +129,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 129 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | CONFIG_DEFAULT_NOOP=y | 130 | CONFIG_DEFAULT_NOOP=y |
| 118 | CONFIG_DEFAULT_IOSCHED="noop" | 131 | CONFIG_DEFAULT_IOSCHED="noop" |
| 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 | 132 | # CONFIG_FREEZER is not set |
| 125 | 133 | ||
| 126 | # | 134 | # |
| @@ -155,6 +163,7 @@ CONFIG_CPU_SUBTYPE_SH7720=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 167 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +205,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 205 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 206 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 207 | CONFIG_UNEVICTABLE_LRU=y |
| 208 | CONFIG_HAVE_MLOCK=y | ||
| 209 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 210 | ||
| 200 | # | 211 | # |
| 201 | # Cache configuration | 212 | # Cache configuration |
| 202 | # | 213 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 214 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 215 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 216 | # CONFIG_CACHE_OFF is not set |
| @@ -309,7 +319,6 @@ CONFIG_NET=y | |||
| 309 | # | 319 | # |
| 310 | # Networking options | 320 | # Networking options |
| 311 | # | 321 | # |
| 312 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 313 | CONFIG_PACKET=y | 322 | CONFIG_PACKET=y |
| 314 | CONFIG_PACKET_MMAP=y | 323 | CONFIG_PACKET_MMAP=y |
| 315 | CONFIG_UNIX=y | 324 | CONFIG_UNIX=y |
| @@ -359,6 +368,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 359 | # CONFIG_LAPB is not set | 368 | # CONFIG_LAPB is not set |
| 360 | # CONFIG_ECONET is not set | 369 | # CONFIG_ECONET is not set |
| 361 | # CONFIG_WAN_ROUTER is not set | 370 | # CONFIG_WAN_ROUTER is not set |
| 371 | # CONFIG_PHONET is not set | ||
| 362 | # CONFIG_NET_SCHED is not set | 372 | # CONFIG_NET_SCHED is not set |
| 363 | # CONFIG_DCB is not set | 373 | # CONFIG_DCB is not set |
| 364 | 374 | ||
| @@ -371,13 +381,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 371 | # CONFIG_IRDA is not set | 381 | # CONFIG_IRDA is not set |
| 372 | # CONFIG_BT is not set | 382 | # CONFIG_BT is not set |
| 373 | # CONFIG_AF_RXRPC is not set | 383 | # CONFIG_AF_RXRPC is not set |
| 374 | # CONFIG_PHONET is not set | ||
| 375 | CONFIG_WIRELESS=y | 384 | CONFIG_WIRELESS=y |
| 376 | # CONFIG_CFG80211 is not set | 385 | # CONFIG_CFG80211 is not set |
| 377 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 386 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 378 | # CONFIG_WIRELESS_EXT is not set | 387 | # CONFIG_WIRELESS_EXT is not set |
| 379 | # CONFIG_LIB80211 is not set | 388 | # CONFIG_LIB80211 is not set |
| 380 | # CONFIG_MAC80211 is not set | 389 | # CONFIG_MAC80211 is not set |
| 390 | # CONFIG_WIMAX is not set | ||
| 381 | # CONFIG_RFKILL is not set | 391 | # CONFIG_RFKILL is not set |
| 382 | # CONFIG_NET_9P is not set | 392 | # CONFIG_NET_9P is not set |
| 383 | 393 | ||
| @@ -402,6 +412,7 @@ CONFIG_MTD=y | |||
| 402 | # CONFIG_MTD_DEBUG is not set | 412 | # CONFIG_MTD_DEBUG is not set |
| 403 | # CONFIG_MTD_CONCAT is not set | 413 | # CONFIG_MTD_CONCAT is not set |
| 404 | CONFIG_MTD_PARTITIONS=y | 414 | CONFIG_MTD_PARTITIONS=y |
| 415 | # CONFIG_MTD_TESTS is not set | ||
| 405 | CONFIG_MTD_REDBOOT_PARTS=y | 416 | CONFIG_MTD_REDBOOT_PARTS=y |
| 406 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 417 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
| 407 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | 418 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set |
| @@ -452,9 +463,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 452 | # | 463 | # |
| 453 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 464 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 454 | CONFIG_MTD_PHYSMAP=y | 465 | CONFIG_MTD_PHYSMAP=y |
| 455 | CONFIG_MTD_PHYSMAP_START=0x0000000 | 466 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 456 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
| 457 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
| 458 | # CONFIG_MTD_PLATRAM is not set | 467 | # CONFIG_MTD_PLATRAM is not set |
| 459 | 468 | ||
| 460 | # | 469 | # |
| @@ -475,6 +484,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | |||
| 475 | # CONFIG_MTD_ONENAND is not set | 484 | # CONFIG_MTD_ONENAND is not set |
| 476 | 485 | ||
| 477 | # | 486 | # |
| 487 | # LPDDR flash memory drivers | ||
| 488 | # | ||
| 489 | # CONFIG_MTD_LPDDR is not set | ||
| 490 | |||
| 491 | # | ||
| 478 | # UBI - Unsorted block images | 492 | # UBI - Unsorted block images |
| 479 | # | 493 | # |
| 480 | # CONFIG_MTD_UBI is not set | 494 | # CONFIG_MTD_UBI is not set |
| @@ -491,9 +505,13 @@ CONFIG_BLK_DEV_RAM_SIZE=65536 | |||
| 491 | # CONFIG_ATA_OVER_ETH is not set | 505 | # CONFIG_ATA_OVER_ETH is not set |
| 492 | # CONFIG_BLK_DEV_HD is not set | 506 | # CONFIG_BLK_DEV_HD is not set |
| 493 | CONFIG_MISC_DEVICES=y | 507 | CONFIG_MISC_DEVICES=y |
| 494 | # CONFIG_EEPROM_93CX6 is not set | ||
| 495 | # CONFIG_ENCLOSURE_SERVICES is not set | 508 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 496 | # CONFIG_C2PORT is not set | 509 | # CONFIG_C2PORT is not set |
| 510 | |||
| 511 | # | ||
| 512 | # EEPROM support | ||
| 513 | # | ||
| 514 | # CONFIG_EEPROM_93CX6 is not set | ||
| 497 | CONFIG_HAVE_IDE=y | 515 | CONFIG_HAVE_IDE=y |
| 498 | # CONFIG_IDE is not set | 516 | # CONFIG_IDE is not set |
| 499 | 517 | ||
| @@ -507,6 +525,7 @@ CONFIG_HAVE_IDE=y | |||
| 507 | # CONFIG_ATA is not set | 525 | # CONFIG_ATA is not set |
| 508 | # CONFIG_MD is not set | 526 | # CONFIG_MD is not set |
| 509 | CONFIG_NETDEVICES=y | 527 | CONFIG_NETDEVICES=y |
| 528 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 510 | # CONFIG_DUMMY is not set | 529 | # CONFIG_DUMMY is not set |
| 511 | # CONFIG_BONDING is not set | 530 | # CONFIG_BONDING is not set |
| 512 | # CONFIG_MACVLAN is not set | 531 | # CONFIG_MACVLAN is not set |
| @@ -538,8 +557,10 @@ CONFIG_MII=y | |||
| 538 | # CONFIG_AX88796 is not set | 557 | # CONFIG_AX88796 is not set |
| 539 | # CONFIG_STNIC is not set | 558 | # CONFIG_STNIC is not set |
| 540 | # CONFIG_SMC91X is not set | 559 | # CONFIG_SMC91X is not set |
| 560 | # CONFIG_ETHOC is not set | ||
| 541 | # CONFIG_SMC911X is not set | 561 | # CONFIG_SMC911X is not set |
| 542 | CONFIG_SMSC911X=y | 562 | CONFIG_SMSC911X=y |
| 563 | # CONFIG_DNET is not set | ||
| 543 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 564 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 544 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 565 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 545 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 566 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -556,7 +577,10 @@ CONFIG_SMSC911X=y | |||
| 556 | # | 577 | # |
| 557 | # CONFIG_WLAN_PRE80211 is not set | 578 | # CONFIG_WLAN_PRE80211 is not set |
| 558 | # CONFIG_WLAN_80211 is not set | 579 | # CONFIG_WLAN_80211 is not set |
| 559 | # CONFIG_IWLWIFI_LEDS is not set | 580 | |
| 581 | # | ||
| 582 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 583 | # | ||
| 560 | # CONFIG_WAN is not set | 584 | # CONFIG_WAN is not set |
| 561 | # CONFIG_PPP is not set | 585 | # CONFIG_PPP is not set |
| 562 | # CONFIG_SLIP is not set | 586 | # CONFIG_SLIP is not set |
| @@ -778,6 +802,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 778 | # | 802 | # |
| 779 | CONFIG_RTC_DRV_SH=y | 803 | CONFIG_RTC_DRV_SH=y |
| 780 | # CONFIG_DMADEVICES is not set | 804 | # CONFIG_DMADEVICES is not set |
| 805 | # CONFIG_AUXDISPLAY is not set | ||
| 781 | # CONFIG_UIO is not set | 806 | # CONFIG_UIO is not set |
| 782 | # CONFIG_STAGING is not set | 807 | # CONFIG_STAGING is not set |
| 783 | 808 | ||
| @@ -797,6 +822,7 @@ CONFIG_JBD=y | |||
| 797 | CONFIG_FILE_LOCKING=y | 822 | CONFIG_FILE_LOCKING=y |
| 798 | # CONFIG_XFS_FS is not set | 823 | # CONFIG_XFS_FS is not set |
| 799 | # CONFIG_OCFS2_FS is not set | 824 | # CONFIG_OCFS2_FS is not set |
| 825 | # CONFIG_BTRFS_FS is not set | ||
| 800 | # CONFIG_DNOTIFY is not set | 826 | # CONFIG_DNOTIFY is not set |
| 801 | # CONFIG_INOTIFY is not set | 827 | # CONFIG_INOTIFY is not set |
| 802 | # CONFIG_QUOTA is not set | 828 | # CONFIG_QUOTA is not set |
| @@ -849,6 +875,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 849 | CONFIG_JFFS2_RTIME=y | 875 | CONFIG_JFFS2_RTIME=y |
| 850 | # CONFIG_JFFS2_RUBIN is not set | 876 | # CONFIG_JFFS2_RUBIN is not set |
| 851 | # CONFIG_CRAMFS is not set | 877 | # CONFIG_CRAMFS is not set |
| 878 | # CONFIG_SQUASHFS is not set | ||
| 852 | # CONFIG_VXFS_FS is not set | 879 | # CONFIG_VXFS_FS is not set |
| 853 | # CONFIG_MINIX_FS is not set | 880 | # CONFIG_MINIX_FS is not set |
| 854 | # CONFIG_OMFS_FS is not set | 881 | # CONFIG_OMFS_FS is not set |
| @@ -868,7 +895,6 @@ CONFIG_LOCKD=y | |||
| 868 | CONFIG_LOCKD_V4=y | 895 | CONFIG_LOCKD_V4=y |
| 869 | CONFIG_NFS_COMMON=y | 896 | CONFIG_NFS_COMMON=y |
| 870 | CONFIG_SUNRPC=y | 897 | CONFIG_SUNRPC=y |
| 871 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 872 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 898 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 899 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 874 | # CONFIG_SMB_FS is not set | 900 | # CONFIG_SMB_FS is not set |
| @@ -970,6 +996,7 @@ CONFIG_FRAME_POINTER=y | |||
| 970 | # CONFIG_FAULT_INJECTION is not set | 996 | # CONFIG_FAULT_INJECTION is not set |
| 971 | # CONFIG_LATENCYTOP is not set | 997 | # CONFIG_LATENCYTOP is not set |
| 972 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 998 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 999 | # CONFIG_PAGE_POISONING is not set | ||
| 973 | CONFIG_HAVE_FUNCTION_TRACER=y | 1000 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 974 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1001 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 975 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1002 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -984,7 +1011,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 984 | # CONFIG_BOOT_TRACER is not set | 1011 | # CONFIG_BOOT_TRACER is not set |
| 985 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1012 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 986 | # CONFIG_STACK_TRACER is not set | 1013 | # CONFIG_STACK_TRACER is not set |
| 987 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 988 | # CONFIG_SAMPLES is not set | 1014 | # CONFIG_SAMPLES is not set |
| 989 | CONFIG_HAVE_ARCH_KGDB=y | 1015 | CONFIG_HAVE_ARCH_KGDB=y |
| 990 | # CONFIG_KGDB is not set | 1016 | # CONFIG_KGDB is not set |
| @@ -1025,7 +1051,8 @@ CONFIG_CRC32=y | |||
| 1025 | CONFIG_AUDIT_GENERIC=y | 1051 | CONFIG_AUDIT_GENERIC=y |
| 1026 | CONFIG_ZLIB_INFLATE=y | 1052 | CONFIG_ZLIB_INFLATE=y |
| 1027 | CONFIG_ZLIB_DEFLATE=y | 1053 | CONFIG_ZLIB_DEFLATE=y |
| 1028 | CONFIG_PLIST=y | 1054 | CONFIG_DECOMPRESS_GZIP=y |
| 1029 | CONFIG_HAS_IOMEM=y | 1055 | CONFIG_HAS_IOMEM=y |
| 1030 | CONFIG_HAS_IOPORT=y | 1056 | CONFIG_HAS_IOPORT=y |
| 1031 | CONFIG_HAS_DMA=y | 1057 | CONFIG_HAS_DMA=y |
| 1058 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/microdev_defconfig b/arch/sh/configs/microdev_defconfig index 5a1c0485a354..75178355d69a 100644 --- a/arch/sh/configs/microdev_defconfig +++ b/arch/sh/configs/microdev_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:06:47 2009 | 4 | # Thu Apr 2 18:11:13 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -42,18 +43,32 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_GROUP_SCHED is not set | 57 | # CONFIG_GROUP_SCHED is not set |
| 58 | # CONFIG_CGROUPS is not set | ||
| 49 | CONFIG_SYSFS_DEPRECATED=y | 59 | CONFIG_SYSFS_DEPRECATED=y |
| 50 | CONFIG_SYSFS_DEPRECATED_V2=y | 60 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 51 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| 52 | # CONFIG_NAMESPACES is not set | 62 | # CONFIG_NAMESPACES is not set |
| 53 | CONFIG_BLK_DEV_INITRD=y | 63 | CONFIG_BLK_DEV_INITRD=y |
| 54 | CONFIG_INITRAMFS_SOURCE="" | 64 | CONFIG_INITRAMFS_SOURCE="" |
| 65 | CONFIG_RD_GZIP=y | ||
| 66 | # CONFIG_RD_BZIP2 is not set | ||
| 67 | # CONFIG_RD_LZMA is not set | ||
| 68 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 69 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 56 | CONFIG_SYSCTL=y | 70 | CONFIG_SYSCTL=y |
| 71 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 72 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 73 | CONFIG_UID16=y |
| 59 | # CONFIG_SYSCTL_SYSCALL is not set | 74 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -63,10 +78,8 @@ CONFIG_HOTPLUG=y | |||
| 63 | CONFIG_PRINTK=y | 78 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 80 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 82 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 83 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 84 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 85 | CONFIG_TIMERFD=y |
| @@ -74,6 +87,7 @@ CONFIG_EVENTFD=y | |||
| 74 | CONFIG_SHMEM=y | 87 | CONFIG_SHMEM=y |
| 75 | CONFIG_AIO=y | 88 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 89 | CONFIG_VM_EVENT_COUNTERS=y |
| 90 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 91 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 92 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 93 | # CONFIG_SLOB is not set |
| @@ -107,11 +121,6 @@ CONFIG_DEFAULT_AS=y | |||
| 107 | # CONFIG_DEFAULT_CFQ is not set | 121 | # CONFIG_DEFAULT_CFQ is not set |
| 108 | # CONFIG_DEFAULT_NOOP is not set | 122 | # CONFIG_DEFAULT_NOOP is not set |
| 109 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 123 | 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 is not set | 124 | # CONFIG_FREEZER is not set |
| 116 | 125 | ||
| 117 | # | 126 | # |
| @@ -146,6 +155,7 @@ CONFIG_CPU_SUBTYPE_SH4_202=y | |||
| 146 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 147 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 148 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 149 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 159 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 150 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 151 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -193,11 +203,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 193 | CONFIG_ZONE_DMA_FLAG=0 | 203 | CONFIG_ZONE_DMA_FLAG=0 |
| 194 | CONFIG_NR_QUICK=2 | 204 | CONFIG_NR_QUICK=2 |
| 195 | CONFIG_UNEVICTABLE_LRU=y | 205 | CONFIG_UNEVICTABLE_LRU=y |
| 206 | CONFIG_HAVE_MLOCK=y | ||
| 207 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 196 | 208 | ||
| 197 | # | 209 | # |
| 198 | # Cache configuration | 210 | # Cache configuration |
| 199 | # | 211 | # |
| 200 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 201 | CONFIG_CACHE_WRITEBACK=y | 212 | CONFIG_CACHE_WRITEBACK=y |
| 202 | # CONFIG_CACHE_WRITETHROUGH is not set | 213 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 203 | # CONFIG_CACHE_OFF is not set | 214 | # CONFIG_CACHE_OFF is not set |
| @@ -239,7 +250,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 239 | # | 250 | # |
| 240 | CONFIG_SH_DMA_API=y | 251 | CONFIG_SH_DMA_API=y |
| 241 | CONFIG_SH_DMA=y | 252 | CONFIG_SH_DMA=y |
| 242 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 253 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
| 243 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 254 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 244 | 255 | ||
| 245 | # | 256 | # |
| @@ -304,7 +315,6 @@ CONFIG_NET=y | |||
| 304 | # | 315 | # |
| 305 | # Networking options | 316 | # Networking options |
| 306 | # | 317 | # |
| 307 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 308 | # CONFIG_PACKET is not set | 318 | # CONFIG_PACKET is not set |
| 309 | # CONFIG_UNIX is not set | 319 | # CONFIG_UNIX is not set |
| 310 | CONFIG_XFRM=y | 320 | CONFIG_XFRM=y |
| @@ -358,6 +368,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 358 | # CONFIG_LAPB is not set | 368 | # CONFIG_LAPB is not set |
| 359 | # CONFIG_ECONET is not set | 369 | # CONFIG_ECONET is not set |
| 360 | # CONFIG_WAN_ROUTER is not set | 370 | # CONFIG_WAN_ROUTER is not set |
| 371 | # CONFIG_PHONET is not set | ||
| 361 | # CONFIG_NET_SCHED is not set | 372 | # CONFIG_NET_SCHED is not set |
| 362 | # CONFIG_DCB is not set | 373 | # CONFIG_DCB is not set |
| 363 | 374 | ||
| @@ -370,13 +381,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 370 | # CONFIG_IRDA is not set | 381 | # CONFIG_IRDA is not set |
| 371 | # CONFIG_BT is not set | 382 | # CONFIG_BT is not set |
| 372 | # CONFIG_AF_RXRPC is not set | 383 | # CONFIG_AF_RXRPC is not set |
| 373 | # CONFIG_PHONET is not set | ||
| 374 | CONFIG_WIRELESS=y | 384 | CONFIG_WIRELESS=y |
| 375 | # CONFIG_CFG80211 is not set | 385 | # CONFIG_CFG80211 is not set |
| 376 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 386 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 377 | # CONFIG_WIRELESS_EXT is not set | 387 | # CONFIG_WIRELESS_EXT is not set |
| 378 | # CONFIG_LIB80211 is not set | 388 | # CONFIG_LIB80211 is not set |
| 379 | # CONFIG_MAC80211 is not set | 389 | # CONFIG_MAC80211 is not set |
| 390 | # CONFIG_WIMAX is not set | ||
| 380 | # CONFIG_RFKILL is not set | 391 | # CONFIG_RFKILL is not set |
| 381 | # CONFIG_NET_9P is not set | 392 | # CONFIG_NET_9P is not set |
| 382 | 393 | ||
| @@ -407,9 +418,13 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 407 | # CONFIG_ATA_OVER_ETH is not set | 418 | # CONFIG_ATA_OVER_ETH is not set |
| 408 | # CONFIG_BLK_DEV_HD is not set | 419 | # CONFIG_BLK_DEV_HD is not set |
| 409 | CONFIG_MISC_DEVICES=y | 420 | CONFIG_MISC_DEVICES=y |
| 410 | # CONFIG_EEPROM_93CX6 is not set | ||
| 411 | # CONFIG_ENCLOSURE_SERVICES is not set | 421 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 412 | # CONFIG_C2PORT is not set | 422 | # CONFIG_C2PORT is not set |
| 423 | |||
| 424 | # | ||
| 425 | # EEPROM support | ||
| 426 | # | ||
| 427 | # CONFIG_EEPROM_93CX6 is not set | ||
| 413 | CONFIG_HAVE_IDE=y | 428 | CONFIG_HAVE_IDE=y |
| 414 | CONFIG_IDE=y | 429 | CONFIG_IDE=y |
| 415 | 430 | ||
| @@ -443,6 +458,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 443 | # CONFIG_ATA is not set | 458 | # CONFIG_ATA is not set |
| 444 | # CONFIG_MD is not set | 459 | # CONFIG_MD is not set |
| 445 | CONFIG_NETDEVICES=y | 460 | CONFIG_NETDEVICES=y |
| 461 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 446 | # CONFIG_DUMMY is not set | 462 | # CONFIG_DUMMY is not set |
| 447 | # CONFIG_BONDING is not set | 463 | # CONFIG_BONDING is not set |
| 448 | # CONFIG_MACVLAN is not set | 464 | # CONFIG_MACVLAN is not set |
| @@ -455,8 +471,10 @@ CONFIG_MII=y | |||
| 455 | # CONFIG_AX88796 is not set | 471 | # CONFIG_AX88796 is not set |
| 456 | # CONFIG_STNIC is not set | 472 | # CONFIG_STNIC is not set |
| 457 | CONFIG_SMC91X=y | 473 | CONFIG_SMC91X=y |
| 474 | # CONFIG_ETHOC is not set | ||
| 458 | # CONFIG_SMC911X is not set | 475 | # CONFIG_SMC911X is not set |
| 459 | # CONFIG_SMSC911X is not set | 476 | # CONFIG_SMSC911X is not set |
| 477 | # CONFIG_DNET is not set | ||
| 460 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 478 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 461 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 479 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 462 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 480 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -473,7 +491,10 @@ CONFIG_NETDEV_10000=y | |||
| 473 | # | 491 | # |
| 474 | # CONFIG_WLAN_PRE80211 is not set | 492 | # CONFIG_WLAN_PRE80211 is not set |
| 475 | # CONFIG_WLAN_80211 is not set | 493 | # CONFIG_WLAN_80211 is not set |
| 476 | # CONFIG_IWLWIFI_LEDS is not set | 494 | |
| 495 | # | ||
| 496 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 497 | # | ||
| 477 | # CONFIG_WAN is not set | 498 | # CONFIG_WAN is not set |
| 478 | # CONFIG_PPP is not set | 499 | # CONFIG_PPP is not set |
| 479 | # CONFIG_SLIP is not set | 500 | # CONFIG_SLIP is not set |
| @@ -520,6 +541,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 520 | CONFIG_LEGACY_PTY_COUNT=256 | 541 | CONFIG_LEGACY_PTY_COUNT=256 |
| 521 | # CONFIG_IPMI_HANDLER is not set | 542 | # CONFIG_IPMI_HANDLER is not set |
| 522 | CONFIG_HW_RANDOM=y | 543 | CONFIG_HW_RANDOM=y |
| 544 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 523 | # CONFIG_R3964 is not set | 545 | # CONFIG_R3964 is not set |
| 524 | # CONFIG_RAW_DRIVER is not set | 546 | # CONFIG_RAW_DRIVER is not set |
| 525 | # CONFIG_TCG_TPM is not set | 547 | # CONFIG_TCG_TPM is not set |
| @@ -601,15 +623,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 601 | # | 623 | # |
| 602 | 624 | ||
| 603 | # | 625 | # |
| 604 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 626 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 605 | # | 627 | # |
| 606 | # CONFIG_USB_GADGET is not set | 628 | # CONFIG_USB_GADGET is not set |
| 629 | |||
| 630 | # | ||
| 631 | # OTG and related infrastructure | ||
| 632 | # | ||
| 607 | # CONFIG_MMC is not set | 633 | # CONFIG_MMC is not set |
| 608 | # CONFIG_MEMSTICK is not set | 634 | # CONFIG_MEMSTICK is not set |
| 609 | # CONFIG_NEW_LEDS is not set | 635 | # CONFIG_NEW_LEDS is not set |
| 610 | # CONFIG_ACCESSIBILITY is not set | 636 | # CONFIG_ACCESSIBILITY is not set |
| 611 | # CONFIG_RTC_CLASS is not set | 637 | # CONFIG_RTC_CLASS is not set |
| 612 | # CONFIG_DMADEVICES is not set | 638 | # CONFIG_DMADEVICES is not set |
| 639 | # CONFIG_AUXDISPLAY is not set | ||
| 613 | # CONFIG_UIO is not set | 640 | # CONFIG_UIO is not set |
| 614 | # CONFIG_STAGING is not set | 641 | # CONFIG_STAGING is not set |
| 615 | 642 | ||
| @@ -632,6 +659,7 @@ CONFIG_FS_MBCACHE=y | |||
| 632 | CONFIG_FILE_LOCKING=y | 659 | CONFIG_FILE_LOCKING=y |
| 633 | # CONFIG_XFS_FS is not set | 660 | # CONFIG_XFS_FS is not set |
| 634 | # CONFIG_OCFS2_FS is not set | 661 | # CONFIG_OCFS2_FS is not set |
| 662 | # CONFIG_BTRFS_FS is not set | ||
| 635 | CONFIG_DNOTIFY=y | 663 | CONFIG_DNOTIFY=y |
| 636 | CONFIG_INOTIFY=y | 664 | CONFIG_INOTIFY=y |
| 637 | CONFIG_INOTIFY_USER=y | 665 | CONFIG_INOTIFY_USER=y |
| @@ -678,6 +706,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 678 | # CONFIG_BFS_FS is not set | 706 | # CONFIG_BFS_FS is not set |
| 679 | # CONFIG_EFS_FS is not set | 707 | # CONFIG_EFS_FS is not set |
| 680 | # CONFIG_CRAMFS is not set | 708 | # CONFIG_CRAMFS is not set |
| 709 | # CONFIG_SQUASHFS is not set | ||
| 681 | # CONFIG_VXFS_FS is not set | 710 | # CONFIG_VXFS_FS is not set |
| 682 | # CONFIG_MINIX_FS is not set | 711 | # CONFIG_MINIX_FS is not set |
| 683 | # CONFIG_OMFS_FS is not set | 712 | # CONFIG_OMFS_FS is not set |
| @@ -698,7 +727,6 @@ CONFIG_LOCKD_V4=y | |||
| 698 | CONFIG_NFS_COMMON=y | 727 | CONFIG_NFS_COMMON=y |
| 699 | CONFIG_SUNRPC=y | 728 | CONFIG_SUNRPC=y |
| 700 | CONFIG_SUNRPC_GSS=y | 729 | CONFIG_SUNRPC_GSS=y |
| 701 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 702 | CONFIG_RPCSEC_GSS_KRB5=y | 730 | CONFIG_RPCSEC_GSS_KRB5=y |
| 703 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 731 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 704 | # CONFIG_SMB_FS is not set | 732 | # CONFIG_SMB_FS is not set |
| @@ -778,7 +806,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 778 | # | 806 | # |
| 779 | # Tracers | 807 | # Tracers |
| 780 | # | 808 | # |
| 781 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 782 | # CONFIG_SAMPLES is not set | 809 | # CONFIG_SAMPLES is not set |
| 783 | CONFIG_HAVE_ARCH_KGDB=y | 810 | CONFIG_HAVE_ARCH_KGDB=y |
| 784 | # CONFIG_SH_STANDARD_BIOS is not set | 811 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -806,10 +833,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 806 | CONFIG_CRYPTO_HASH=y | 833 | CONFIG_CRYPTO_HASH=y |
| 807 | CONFIG_CRYPTO_HASH2=y | 834 | CONFIG_CRYPTO_HASH2=y |
| 808 | CONFIG_CRYPTO_RNG2=y | 835 | CONFIG_CRYPTO_RNG2=y |
| 836 | CONFIG_CRYPTO_PCOMP=y | ||
| 809 | CONFIG_CRYPTO_MANAGER=y | 837 | CONFIG_CRYPTO_MANAGER=y |
| 810 | CONFIG_CRYPTO_MANAGER2=y | 838 | CONFIG_CRYPTO_MANAGER2=y |
| 811 | # CONFIG_CRYPTO_GF128MUL is not set | 839 | # CONFIG_CRYPTO_GF128MUL is not set |
| 812 | # CONFIG_CRYPTO_NULL is not set | 840 | # CONFIG_CRYPTO_NULL is not set |
| 841 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 813 | # CONFIG_CRYPTO_CRYPTD is not set | 842 | # CONFIG_CRYPTO_CRYPTD is not set |
| 814 | # CONFIG_CRYPTO_AUTHENC is not set | 843 | # CONFIG_CRYPTO_AUTHENC is not set |
| 815 | 844 | ||
| @@ -877,6 +906,7 @@ CONFIG_CRYPTO_DES=y | |||
| 877 | # Compression | 906 | # Compression |
| 878 | # | 907 | # |
| 879 | # CONFIG_CRYPTO_DEFLATE is not set | 908 | # CONFIG_CRYPTO_DEFLATE is not set |
| 909 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 880 | # CONFIG_CRYPTO_LZO is not set | 910 | # CONFIG_CRYPTO_LZO is not set |
| 881 | 911 | ||
| 882 | # | 912 | # |
| @@ -897,7 +927,9 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 897 | CONFIG_CRC32=y | 927 | CONFIG_CRC32=y |
| 898 | # CONFIG_CRC7 is not set | 928 | # CONFIG_CRC7 is not set |
| 899 | # CONFIG_LIBCRC32C is not set | 929 | # CONFIG_LIBCRC32C is not set |
| 900 | CONFIG_PLIST=y | 930 | CONFIG_ZLIB_INFLATE=y |
| 931 | CONFIG_DECOMPRESS_GZIP=y | ||
| 901 | CONFIG_HAS_IOMEM=y | 932 | CONFIG_HAS_IOMEM=y |
| 902 | CONFIG_HAS_IOPORT=y | 933 | CONFIG_HAS_IOPORT=y |
| 903 | CONFIG_HAS_DMA=y | 934 | CONFIG_HAS_DMA=y |
| 935 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/migor_defconfig b/arch/sh/configs/migor_defconfig index 678576796bdf..a8720f9c6047 100644 --- a/arch/sh/configs/migor_defconfig +++ b/arch/sh/configs/migor_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc1 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Thu Jan 22 09:16:16 2009 | 4 | # Thu Apr 2 18:14:03 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,15 +16,17 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_GPIO=y | 16 | CONFIG_GENERIC_GPIO=y |
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 24 | CONFIG_LOCKDEP_SUPPORT=y |
| 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 25 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 31 | ||
| 30 | # | 32 | # |
| @@ -42,14 +44,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT is not set | 44 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 43 | # CONFIG_TASKSTATS is not set | 45 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 46 | # CONFIG_AUDIT is not set |
| 47 | |||
| 48 | # | ||
| 49 | # RCU Subsystem | ||
| 50 | # | ||
| 51 | CONFIG_CLASSIC_RCU=y | ||
| 52 | # CONFIG_TREE_RCU is not set | ||
| 53 | # CONFIG_PREEMPT_RCU is not set | ||
| 54 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 55 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | CONFIG_IKCONFIG=y | 56 | CONFIG_IKCONFIG=y |
| 46 | CONFIG_IKCONFIG_PROC=y | 57 | CONFIG_IKCONFIG_PROC=y |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 58 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_GROUP_SCHED is not set | 59 | # CONFIG_GROUP_SCHED is not set |
| 49 | |||
| 50 | # | ||
| 51 | # Control Group support | ||
| 52 | # | ||
| 53 | # CONFIG_CGROUPS is not set | 60 | # CONFIG_CGROUPS is not set |
| 54 | CONFIG_SYSFS_DEPRECATED=y | 61 | CONFIG_SYSFS_DEPRECATED=y |
| 55 | CONFIG_SYSFS_DEPRECATED_V2=y | 62 | CONFIG_SYSFS_DEPRECATED_V2=y |
| @@ -57,8 +64,13 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 57 | # CONFIG_NAMESPACES is not set | 64 | # CONFIG_NAMESPACES is not set |
| 58 | CONFIG_BLK_DEV_INITRD=y | 65 | CONFIG_BLK_DEV_INITRD=y |
| 59 | CONFIG_INITRAMFS_SOURCE="" | 66 | CONFIG_INITRAMFS_SOURCE="" |
| 67 | CONFIG_RD_GZIP=y | ||
| 68 | # CONFIG_RD_BZIP2 is not set | ||
| 69 | # CONFIG_RD_LZMA is not set | ||
| 70 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 60 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 71 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 61 | CONFIG_SYSCTL=y | 72 | CONFIG_SYSCTL=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 62 | CONFIG_EMBEDDED=y | 74 | CONFIG_EMBEDDED=y |
| 63 | CONFIG_UID16=y | 75 | CONFIG_UID16=y |
| 64 | # CONFIG_SYSCTL_SYSCALL is not set | 76 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -68,10 +80,8 @@ CONFIG_HOTPLUG=y | |||
| 68 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 69 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 70 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 71 | CONFIG_COMPAT_BRK=y | ||
| 72 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 73 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 74 | CONFIG_ANON_INODES=y | ||
| 75 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 76 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 77 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -79,6 +89,7 @@ CONFIG_EVENTFD=y | |||
| 79 | CONFIG_SHMEM=y | 89 | CONFIG_SHMEM=y |
| 80 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 81 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 92 | CONFIG_COMPAT_BRK=y | ||
| 82 | CONFIG_SLAB=y | 93 | CONFIG_SLAB=y |
| 83 | # CONFIG_SLUB is not set | 94 | # CONFIG_SLUB is not set |
| 84 | # CONFIG_SLOB is not set | 95 | # CONFIG_SLOB is not set |
| @@ -120,11 +131,6 @@ CONFIG_DEFAULT_AS=y | |||
| 120 | # CONFIG_DEFAULT_CFQ is not set | 131 | # CONFIG_DEFAULT_CFQ is not set |
| 121 | # CONFIG_DEFAULT_NOOP is not set | 132 | # CONFIG_DEFAULT_NOOP is not set |
| 122 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 133 | 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 | 134 | # CONFIG_FREEZER is not set |
| 129 | 135 | ||
| 130 | # | 136 | # |
| @@ -134,6 +140,7 @@ CONFIG_CPU_SH4=y | |||
| 134 | CONFIG_CPU_SH4A=y | 140 | CONFIG_CPU_SH4A=y |
| 135 | CONFIG_CPU_SH4AL_DSP=y | 141 | CONFIG_CPU_SH4AL_DSP=y |
| 136 | CONFIG_CPU_SHX2=y | 142 | CONFIG_CPU_SHX2=y |
| 143 | CONFIG_ARCH_SHMOBILE=y | ||
| 137 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 144 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 138 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | 145 | # CONFIG_CPU_SUBTYPE_SH7201 is not set |
| 139 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 146 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| @@ -162,6 +169,7 @@ CONFIG_CPU_SHX2=y | |||
| 162 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 172 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 165 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 173 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 174 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 167 | CONFIG_CPU_SUBTYPE_SH7722=y | 175 | CONFIG_CPU_SUBTYPE_SH7722=y |
| @@ -209,11 +217,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 209 | CONFIG_ZONE_DMA_FLAG=0 | 217 | CONFIG_ZONE_DMA_FLAG=0 |
| 210 | CONFIG_NR_QUICK=2 | 218 | CONFIG_NR_QUICK=2 |
| 211 | CONFIG_UNEVICTABLE_LRU=y | 219 | CONFIG_UNEVICTABLE_LRU=y |
| 220 | CONFIG_HAVE_MLOCK=y | ||
| 221 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 212 | 222 | ||
| 213 | # | 223 | # |
| 214 | # Cache configuration | 224 | # Cache configuration |
| 215 | # | 225 | # |
| 216 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 217 | CONFIG_CACHE_WRITEBACK=y | 226 | CONFIG_CACHE_WRITEBACK=y |
| 218 | # CONFIG_CACHE_WRITETHROUGH is not set | 227 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 219 | # CONFIG_CACHE_OFF is not set | 228 | # CONFIG_CACHE_OFF is not set |
| @@ -243,6 +252,7 @@ CONFIG_SH_MIGOR_QVGA=y | |||
| 243 | # Timer and clock configuration | 252 | # Timer and clock configuration |
| 244 | # | 253 | # |
| 245 | CONFIG_SH_TMU=y | 254 | CONFIG_SH_TMU=y |
| 255 | # CONFIG_SH_TIMER_CMT is not set | ||
| 246 | CONFIG_SH_TIMER_IRQ=16 | 256 | CONFIG_SH_TIMER_IRQ=16 |
| 247 | CONFIG_SH_PCLK_FREQ=33333333 | 257 | CONFIG_SH_PCLK_FREQ=33333333 |
| 248 | # CONFIG_NO_HZ is not set | 258 | # CONFIG_NO_HZ is not set |
| @@ -318,7 +328,6 @@ CONFIG_NET=y | |||
| 318 | # | 328 | # |
| 319 | # Networking options | 329 | # Networking options |
| 320 | # | 330 | # |
| 321 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 322 | CONFIG_PACKET=y | 331 | CONFIG_PACKET=y |
| 323 | # CONFIG_PACKET_MMAP is not set | 332 | # CONFIG_PACKET_MMAP is not set |
| 324 | CONFIG_UNIX=y | 333 | CONFIG_UNIX=y |
| @@ -373,6 +382,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 373 | # CONFIG_LAPB is not set | 382 | # CONFIG_LAPB is not set |
| 374 | # CONFIG_ECONET is not set | 383 | # CONFIG_ECONET is not set |
| 375 | # CONFIG_WAN_ROUTER is not set | 384 | # CONFIG_WAN_ROUTER is not set |
| 385 | # CONFIG_PHONET is not set | ||
| 376 | # CONFIG_NET_SCHED is not set | 386 | # CONFIG_NET_SCHED is not set |
| 377 | # CONFIG_DCB is not set | 387 | # CONFIG_DCB is not set |
| 378 | 388 | ||
| @@ -380,12 +390,12 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 380 | # Network testing | 390 | # Network testing |
| 381 | # | 391 | # |
| 382 | # CONFIG_NET_PKTGEN is not set | 392 | # CONFIG_NET_PKTGEN is not set |
| 393 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 383 | # CONFIG_HAMRADIO is not set | 394 | # CONFIG_HAMRADIO is not set |
| 384 | # CONFIG_CAN is not set | 395 | # CONFIG_CAN is not set |
| 385 | # CONFIG_IRDA is not set | 396 | # CONFIG_IRDA is not set |
| 386 | # CONFIG_BT is not set | 397 | # CONFIG_BT is not set |
| 387 | # CONFIG_AF_RXRPC is not set | 398 | # CONFIG_AF_RXRPC is not set |
| 388 | # CONFIG_PHONET is not set | ||
| 389 | CONFIG_WIRELESS=y | 399 | CONFIG_WIRELESS=y |
| 390 | # CONFIG_CFG80211 is not set | 400 | # CONFIG_CFG80211 is not set |
| 391 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 401 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -495,7 +505,6 @@ CONFIG_MTD_NAND_PLATFORM=y | |||
| 495 | # LPDDR flash memory drivers | 505 | # LPDDR flash memory drivers |
| 496 | # | 506 | # |
| 497 | # CONFIG_MTD_LPDDR is not set | 507 | # CONFIG_MTD_LPDDR is not set |
| 498 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 499 | 508 | ||
| 500 | # | 509 | # |
| 501 | # UBI - Unsorted block images | 510 | # UBI - Unsorted block images |
| @@ -514,10 +523,17 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 514 | # CONFIG_ATA_OVER_ETH is not set | 523 | # CONFIG_ATA_OVER_ETH is not set |
| 515 | # CONFIG_BLK_DEV_HD is not set | 524 | # CONFIG_BLK_DEV_HD is not set |
| 516 | CONFIG_MISC_DEVICES=y | 525 | CONFIG_MISC_DEVICES=y |
| 517 | # CONFIG_EEPROM_93CX6 is not set | ||
| 518 | # CONFIG_ICS932S401 is not set | 526 | # CONFIG_ICS932S401 is not set |
| 519 | # CONFIG_ENCLOSURE_SERVICES is not set | 527 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 528 | # CONFIG_ISL29003 is not set | ||
| 520 | # CONFIG_C2PORT is not set | 529 | # CONFIG_C2PORT is not set |
| 530 | |||
| 531 | # | ||
| 532 | # EEPROM support | ||
| 533 | # | ||
| 534 | # CONFIG_EEPROM_AT24 is not set | ||
| 535 | # CONFIG_EEPROM_LEGACY is not set | ||
| 536 | # CONFIG_EEPROM_93CX6 is not set | ||
| 521 | CONFIG_HAVE_IDE=y | 537 | CONFIG_HAVE_IDE=y |
| 522 | # CONFIG_IDE is not set | 538 | # CONFIG_IDE is not set |
| 523 | 539 | ||
| @@ -563,9 +579,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 563 | # CONFIG_LIBFC is not set | 579 | # CONFIG_LIBFC is not set |
| 564 | # CONFIG_SCSI_DEBUG is not set | 580 | # CONFIG_SCSI_DEBUG is not set |
| 565 | # CONFIG_SCSI_DH is not set | 581 | # CONFIG_SCSI_DH is not set |
| 582 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 566 | # CONFIG_ATA is not set | 583 | # CONFIG_ATA is not set |
| 567 | # CONFIG_MD is not set | 584 | # CONFIG_MD is not set |
| 568 | CONFIG_NETDEVICES=y | 585 | CONFIG_NETDEVICES=y |
| 586 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 569 | # CONFIG_DUMMY is not set | 587 | # CONFIG_DUMMY is not set |
| 570 | # CONFIG_BONDING is not set | 588 | # CONFIG_BONDING is not set |
| 571 | # CONFIG_MACVLAN is not set | 589 | # CONFIG_MACVLAN is not set |
| @@ -578,8 +596,10 @@ CONFIG_MII=y | |||
| 578 | # CONFIG_AX88796 is not set | 596 | # CONFIG_AX88796 is not set |
| 579 | # CONFIG_STNIC is not set | 597 | # CONFIG_STNIC is not set |
| 580 | CONFIG_SMC91X=y | 598 | CONFIG_SMC91X=y |
| 599 | # CONFIG_ETHOC is not set | ||
| 581 | # CONFIG_SMC911X is not set | 600 | # CONFIG_SMC911X is not set |
| 582 | # CONFIG_SMSC911X is not set | 601 | # CONFIG_SMSC911X is not set |
| 602 | # CONFIG_DNET is not set | ||
| 583 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 603 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 584 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 604 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 585 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 605 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -596,7 +616,6 @@ CONFIG_SMC91X=y | |||
| 596 | # | 616 | # |
| 597 | # CONFIG_WLAN_PRE80211 is not set | 617 | # CONFIG_WLAN_PRE80211 is not set |
| 598 | # CONFIG_WLAN_80211 is not set | 618 | # CONFIG_WLAN_80211 is not set |
| 599 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 600 | 619 | ||
| 601 | # | 620 | # |
| 602 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 621 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -679,6 +698,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 679 | CONFIG_LEGACY_PTY_COUNT=256 | 698 | CONFIG_LEGACY_PTY_COUNT=256 |
| 680 | # CONFIG_IPMI_HANDLER is not set | 699 | # CONFIG_IPMI_HANDLER is not set |
| 681 | CONFIG_HW_RANDOM=y | 700 | CONFIG_HW_RANDOM=y |
| 701 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 682 | # CONFIG_R3964 is not set | 702 | # CONFIG_R3964 is not set |
| 683 | # CONFIG_RAW_DRIVER is not set | 703 | # CONFIG_RAW_DRIVER is not set |
| 684 | # CONFIG_TCG_TPM is not set | 704 | # CONFIG_TCG_TPM is not set |
| @@ -715,12 +735,9 @@ CONFIG_I2C_SH_MOBILE=y | |||
| 715 | # Miscellaneous I2C Chip support | 735 | # Miscellaneous I2C Chip support |
| 716 | # | 736 | # |
| 717 | # CONFIG_DS1682 is not set | 737 | # CONFIG_DS1682 is not set |
| 718 | # CONFIG_EEPROM_AT24 is not set | ||
| 719 | # CONFIG_EEPROM_LEGACY is not set | ||
| 720 | # CONFIG_SENSORS_PCF8574 is not set | 738 | # CONFIG_SENSORS_PCF8574 is not set |
| 721 | # CONFIG_PCF8575 is not set | 739 | # CONFIG_PCF8575 is not set |
| 722 | # CONFIG_SENSORS_PCA9539 is not set | 740 | # CONFIG_SENSORS_PCA9539 is not set |
| 723 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 724 | # CONFIG_SENSORS_MAX6875 is not set | 741 | # CONFIG_SENSORS_MAX6875 is not set |
| 725 | # CONFIG_SENSORS_TSL2550 is not set | 742 | # CONFIG_SENSORS_TSL2550 is not set |
| 726 | # CONFIG_I2C_DEBUG_CORE is not set | 743 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -797,7 +814,7 @@ CONFIG_VIDEO_MEDIA=y | |||
| 797 | # | 814 | # |
| 798 | # CONFIG_MEDIA_ATTACH is not set | 815 | # CONFIG_MEDIA_ATTACH is not set |
| 799 | CONFIG_MEDIA_TUNER=y | 816 | CONFIG_MEDIA_TUNER=y |
| 800 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 817 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 801 | CONFIG_MEDIA_TUNER_SIMPLE=y | 818 | CONFIG_MEDIA_TUNER_SIMPLE=y |
| 802 | CONFIG_MEDIA_TUNER_TDA8290=y | 819 | CONFIG_MEDIA_TUNER_TDA8290=y |
| 803 | CONFIG_MEDIA_TUNER_TDA9887=y | 820 | CONFIG_MEDIA_TUNER_TDA9887=y |
| @@ -806,6 +823,7 @@ CONFIG_MEDIA_TUNER_TEA5767=y | |||
| 806 | CONFIG_MEDIA_TUNER_MT20XX=y | 823 | CONFIG_MEDIA_TUNER_MT20XX=y |
| 807 | CONFIG_MEDIA_TUNER_XC2028=y | 824 | CONFIG_MEDIA_TUNER_XC2028=y |
| 808 | CONFIG_MEDIA_TUNER_XC5000=y | 825 | CONFIG_MEDIA_TUNER_XC5000=y |
| 826 | CONFIG_MEDIA_TUNER_MC44S803=y | ||
| 809 | CONFIG_VIDEO_V4L2=y | 827 | CONFIG_VIDEO_V4L2=y |
| 810 | CONFIG_VIDEOBUF_GEN=y | 828 | CONFIG_VIDEOBUF_GEN=y |
| 811 | CONFIG_VIDEOBUF_DMA_CONTIG=y | 829 | CONFIG_VIDEOBUF_DMA_CONTIG=y |
| @@ -866,7 +884,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 866 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | 884 | # CONFIG_USB_GADGET_MUSB_HDRC is not set |
| 867 | 885 | ||
| 868 | # | 886 | # |
| 869 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 887 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 870 | # | 888 | # |
| 871 | CONFIG_USB_GADGET=y | 889 | CONFIG_USB_GADGET=y |
| 872 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 890 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
| @@ -905,6 +923,7 @@ CONFIG_USB_G_SERIAL=y | |||
| 905 | # OTG and related infrastructure | 923 | # OTG and related infrastructure |
| 906 | # | 924 | # |
| 907 | # CONFIG_USB_GPIO_VBUS is not set | 925 | # CONFIG_USB_GPIO_VBUS is not set |
| 926 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 908 | # CONFIG_MMC is not set | 927 | # CONFIG_MMC is not set |
| 909 | # CONFIG_MEMSTICK is not set | 928 | # CONFIG_MEMSTICK is not set |
| 910 | # CONFIG_NEW_LEDS is not set | 929 | # CONFIG_NEW_LEDS is not set |
| @@ -964,6 +983,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 964 | # | 983 | # |
| 965 | CONFIG_RTC_DRV_SH=y | 984 | CONFIG_RTC_DRV_SH=y |
| 966 | # CONFIG_DMADEVICES is not set | 985 | # CONFIG_DMADEVICES is not set |
| 986 | # CONFIG_AUXDISPLAY is not set | ||
| 967 | CONFIG_UIO=y | 987 | CONFIG_UIO=y |
| 968 | # CONFIG_UIO_PDRV is not set | 988 | # CONFIG_UIO_PDRV is not set |
| 969 | CONFIG_UIO_PDRV_GENIRQ=y | 989 | CONFIG_UIO_PDRV_GENIRQ=y |
| @@ -1045,7 +1065,6 @@ CONFIG_ROOT_NFS=y | |||
| 1045 | CONFIG_LOCKD=y | 1065 | CONFIG_LOCKD=y |
| 1046 | CONFIG_NFS_COMMON=y | 1066 | CONFIG_NFS_COMMON=y |
| 1047 | CONFIG_SUNRPC=y | 1067 | CONFIG_SUNRPC=y |
| 1048 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1049 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1068 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1050 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1069 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1051 | # CONFIG_SMB_FS is not set | 1070 | # CONFIG_SMB_FS is not set |
| @@ -1090,7 +1109,7 @@ CONFIG_TRACING=y | |||
| 1090 | # | 1109 | # |
| 1091 | # Tracers | 1110 | # Tracers |
| 1092 | # | 1111 | # |
| 1093 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1112 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1094 | # CONFIG_SAMPLES is not set | 1113 | # CONFIG_SAMPLES is not set |
| 1095 | CONFIG_HAVE_ARCH_KGDB=y | 1114 | CONFIG_HAVE_ARCH_KGDB=y |
| 1096 | # CONFIG_SH_STANDARD_BIOS is not set | 1115 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1117,10 +1136,12 @@ CONFIG_CRYPTO_AEAD2=y | |||
| 1117 | CONFIG_CRYPTO_BLKCIPHER2=y | 1136 | CONFIG_CRYPTO_BLKCIPHER2=y |
| 1118 | CONFIG_CRYPTO_HASH2=y | 1137 | CONFIG_CRYPTO_HASH2=y |
| 1119 | CONFIG_CRYPTO_RNG2=y | 1138 | CONFIG_CRYPTO_RNG2=y |
| 1139 | CONFIG_CRYPTO_PCOMP=y | ||
| 1120 | CONFIG_CRYPTO_MANAGER=y | 1140 | CONFIG_CRYPTO_MANAGER=y |
| 1121 | CONFIG_CRYPTO_MANAGER2=y | 1141 | CONFIG_CRYPTO_MANAGER2=y |
| 1122 | # CONFIG_CRYPTO_GF128MUL is not set | 1142 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1123 | # CONFIG_CRYPTO_NULL is not set | 1143 | # CONFIG_CRYPTO_NULL is not set |
| 1144 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1124 | # CONFIG_CRYPTO_CRYPTD is not set | 1145 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1125 | # CONFIG_CRYPTO_AUTHENC is not set | 1146 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1126 | # CONFIG_CRYPTO_TEST is not set | 1147 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1189,6 +1210,7 @@ CONFIG_CRYPTO_MANAGER2=y | |||
| 1189 | # Compression | 1210 | # Compression |
| 1190 | # | 1211 | # |
| 1191 | # CONFIG_CRYPTO_DEFLATE is not set | 1212 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1213 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1192 | # CONFIG_CRYPTO_LZO is not set | 1214 | # CONFIG_CRYPTO_LZO is not set |
| 1193 | 1215 | ||
| 1194 | # | 1216 | # |
| @@ -1209,7 +1231,9 @@ CONFIG_CRC_T10DIF=y | |||
| 1209 | CONFIG_CRC32=y | 1231 | CONFIG_CRC32=y |
| 1210 | # CONFIG_CRC7 is not set | 1232 | # CONFIG_CRC7 is not set |
| 1211 | # CONFIG_LIBCRC32C is not set | 1233 | # CONFIG_LIBCRC32C is not set |
| 1212 | CONFIG_PLIST=y | 1234 | CONFIG_ZLIB_INFLATE=y |
| 1235 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1213 | CONFIG_HAS_IOMEM=y | 1236 | CONFIG_HAS_IOMEM=y |
| 1214 | CONFIG_HAS_IOPORT=y | 1237 | CONFIG_HAS_IOPORT=y |
| 1215 | CONFIG_HAS_DMA=y | 1238 | CONFIG_HAS_DMA=y |
| 1239 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/polaris_defconfig b/arch/sh/configs/polaris_defconfig index 320def233b2f..df2d177d5346 100644 --- a/arch/sh/configs/polaris_defconfig +++ b/arch/sh/configs/polaris_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc4 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Wed Feb 11 18:41:59 2009 | 4 | # Thu Apr 2 18:16:48 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -68,6 +69,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 68 | # CONFIG_BLK_DEV_INITRD is not set | 69 | # CONFIG_BLK_DEV_INITRD is not set |
| 69 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 70 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 70 | CONFIG_SYSCTL=y | 71 | CONFIG_SYSCTL=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 71 | CONFIG_EMBEDDED=y | 73 | CONFIG_EMBEDDED=y |
| 72 | CONFIG_UID16=y | 74 | CONFIG_UID16=y |
| 73 | CONFIG_SYSCTL_SYSCALL=y | 75 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -78,10 +80,8 @@ CONFIG_HOTPLUG=y | |||
| 78 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 79 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 80 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 81 | CONFIG_COMPAT_BRK=y | ||
| 82 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 83 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 84 | CONFIG_ANON_INODES=y | ||
| 85 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 86 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 87 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -89,6 +89,7 @@ CONFIG_EVENTFD=y | |||
| 89 | CONFIG_SHMEM=y | 89 | CONFIG_SHMEM=y |
| 90 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 91 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 92 | CONFIG_COMPAT_BRK=y | ||
| 92 | CONFIG_SLAB=y | 93 | CONFIG_SLAB=y |
| 93 | # CONFIG_SLUB is not set | 94 | # CONFIG_SLUB is not set |
| 94 | # CONFIG_SLOB is not set | 95 | # CONFIG_SLOB is not set |
| @@ -162,6 +163,7 @@ CONFIG_CPU_SUBTYPE_SH7709=y | |||
| 162 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 165 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 167 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 167 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -203,11 +205,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 203 | CONFIG_ZONE_DMA_FLAG=0 | 205 | CONFIG_ZONE_DMA_FLAG=0 |
| 204 | CONFIG_NR_QUICK=2 | 206 | CONFIG_NR_QUICK=2 |
| 205 | CONFIG_UNEVICTABLE_LRU=y | 207 | CONFIG_UNEVICTABLE_LRU=y |
| 208 | CONFIG_HAVE_MLOCK=y | ||
| 209 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 206 | 210 | ||
| 207 | # | 211 | # |
| 208 | # Cache configuration | 212 | # Cache configuration |
| 209 | # | 213 | # |
| 210 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 211 | CONFIG_CACHE_WRITEBACK=y | 214 | CONFIG_CACHE_WRITEBACK=y |
| 212 | # CONFIG_CACHE_WRITETHROUGH is not set | 215 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 213 | # CONFIG_CACHE_OFF is not set | 216 | # CONFIG_CACHE_OFF is not set |
| @@ -251,7 +254,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 251 | # | 254 | # |
| 252 | CONFIG_SH_DMA_API=y | 255 | CONFIG_SH_DMA_API=y |
| 253 | CONFIG_SH_DMA=y | 256 | CONFIG_SH_DMA=y |
| 254 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 257 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
| 255 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 258 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 256 | 259 | ||
| 257 | # | 260 | # |
| @@ -314,7 +317,6 @@ CONFIG_NET=y | |||
| 314 | # | 317 | # |
| 315 | # Networking options | 318 | # Networking options |
| 316 | # | 319 | # |
| 317 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 318 | CONFIG_PACKET=y | 320 | CONFIG_PACKET=y |
| 319 | CONFIG_PACKET_MMAP=y | 321 | CONFIG_PACKET_MMAP=y |
| 320 | CONFIG_UNIX=y | 322 | CONFIG_UNIX=y |
| @@ -362,6 +364,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 362 | # CONFIG_LAPB is not set | 364 | # CONFIG_LAPB is not set |
| 363 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
| 364 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 365 | # CONFIG_NET_SCHED is not set | 368 | # CONFIG_NET_SCHED is not set |
| 366 | # CONFIG_DCB is not set | 369 | # CONFIG_DCB is not set |
| 367 | 370 | ||
| @@ -374,7 +377,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 374 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 375 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 376 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 377 | # CONFIG_PHONET is not set | ||
| 378 | # CONFIG_WIRELESS is not set | 380 | # CONFIG_WIRELESS is not set |
| 379 | # CONFIG_WIMAX is not set | 381 | # CONFIG_WIMAX is not set |
| 380 | # CONFIG_RFKILL is not set | 382 | # CONFIG_RFKILL is not set |
| @@ -481,7 +483,6 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 481 | # LPDDR flash memory drivers | 483 | # LPDDR flash memory drivers |
| 482 | # | 484 | # |
| 483 | # CONFIG_MTD_LPDDR is not set | 485 | # CONFIG_MTD_LPDDR is not set |
| 484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 485 | 486 | ||
| 486 | # | 487 | # |
| 487 | # UBI - Unsorted block images | 488 | # UBI - Unsorted block images |
| @@ -517,6 +518,7 @@ CONFIG_HAVE_IDE=y | |||
| 517 | # CONFIG_ATA is not set | 518 | # CONFIG_ATA is not set |
| 518 | # CONFIG_MD is not set | 519 | # CONFIG_MD is not set |
| 519 | CONFIG_NETDEVICES=y | 520 | CONFIG_NETDEVICES=y |
| 521 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 520 | # CONFIG_DUMMY is not set | 522 | # CONFIG_DUMMY is not set |
| 521 | # CONFIG_BONDING is not set | 523 | # CONFIG_BONDING is not set |
| 522 | # CONFIG_MACVLAN is not set | 524 | # CONFIG_MACVLAN is not set |
| @@ -548,8 +550,10 @@ CONFIG_MII=y | |||
| 548 | # CONFIG_AX88796 is not set | 550 | # CONFIG_AX88796 is not set |
| 549 | # CONFIG_STNIC is not set | 551 | # CONFIG_STNIC is not set |
| 550 | # CONFIG_SMC91X is not set | 552 | # CONFIG_SMC91X is not set |
| 553 | # CONFIG_ETHOC is not set | ||
| 551 | # CONFIG_SMC911X is not set | 554 | # CONFIG_SMC911X is not set |
| 552 | CONFIG_SMSC911X=y | 555 | CONFIG_SMSC911X=y |
| 556 | # CONFIG_DNET is not set | ||
| 553 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 557 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 554 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 558 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 555 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 559 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -566,7 +570,6 @@ CONFIG_SMSC911X=y | |||
| 566 | # | 570 | # |
| 567 | # CONFIG_WLAN_PRE80211 is not set | 571 | # CONFIG_WLAN_PRE80211 is not set |
| 568 | # CONFIG_WLAN_80211 is not set | 572 | # CONFIG_WLAN_80211 is not set |
| 569 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 570 | 573 | ||
| 571 | # | 574 | # |
| 572 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 575 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -750,6 +753,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 750 | # | 753 | # |
| 751 | CONFIG_RTC_DRV_SH=y | 754 | CONFIG_RTC_DRV_SH=y |
| 752 | # CONFIG_DMADEVICES is not set | 755 | # CONFIG_DMADEVICES is not set |
| 756 | # CONFIG_AUXDISPLAY is not set | ||
| 753 | # CONFIG_UIO is not set | 757 | # CONFIG_UIO is not set |
| 754 | # CONFIG_STAGING is not set | 758 | # CONFIG_STAGING is not set |
| 755 | 759 | ||
| @@ -837,7 +841,6 @@ CONFIG_LOCKD=y | |||
| 837 | CONFIG_LOCKD_V4=y | 841 | CONFIG_LOCKD_V4=y |
| 838 | CONFIG_NFS_COMMON=y | 842 | CONFIG_NFS_COMMON=y |
| 839 | CONFIG_SUNRPC=y | 843 | CONFIG_SUNRPC=y |
| 840 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 841 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 844 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 842 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 845 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 843 | # CONFIG_SMB_FS is not set | 846 | # CONFIG_SMB_FS is not set |
| @@ -907,6 +910,7 @@ CONFIG_FRAME_POINTER=y | |||
| 907 | # CONFIG_FAULT_INJECTION is not set | 910 | # CONFIG_FAULT_INJECTION is not set |
| 908 | # CONFIG_LATENCYTOP is not set | 911 | # CONFIG_LATENCYTOP is not set |
| 909 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 912 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 913 | # CONFIG_PAGE_POISONING is not set | ||
| 910 | CONFIG_HAVE_FUNCTION_TRACER=y | 914 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 911 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 915 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 912 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 916 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -922,7 +926,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 922 | # CONFIG_BOOT_TRACER is not set | 926 | # CONFIG_BOOT_TRACER is not set |
| 923 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 927 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 924 | # CONFIG_STACK_TRACER is not set | 928 | # CONFIG_STACK_TRACER is not set |
| 925 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 926 | # CONFIG_SAMPLES is not set | 929 | # CONFIG_SAMPLES is not set |
| 927 | CONFIG_HAVE_ARCH_KGDB=y | 930 | CONFIG_HAVE_ARCH_KGDB=y |
| 928 | # CONFIG_KGDB is not set | 931 | # CONFIG_KGDB is not set |
| @@ -963,7 +966,7 @@ CONFIG_CRC32=y | |||
| 963 | CONFIG_AUDIT_GENERIC=y | 966 | CONFIG_AUDIT_GENERIC=y |
| 964 | CONFIG_ZLIB_INFLATE=y | 967 | CONFIG_ZLIB_INFLATE=y |
| 965 | CONFIG_ZLIB_DEFLATE=y | 968 | CONFIG_ZLIB_DEFLATE=y |
| 966 | CONFIG_PLIST=y | ||
| 967 | CONFIG_HAS_IOMEM=y | 969 | CONFIG_HAS_IOMEM=y |
| 968 | CONFIG_HAS_IOPORT=y | 970 | CONFIG_HAS_IOPORT=y |
| 969 | CONFIG_HAS_DMA=y | 971 | CONFIG_HAS_DMA=y |
| 972 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/r7780mp_defconfig b/arch/sh/configs/r7780mp_defconfig index 65b01a9e5934..7def4df46ddb 100644 --- a/arch/sh/configs/r7780mp_defconfig +++ b/arch/sh/configs/r7780mp_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:10:19 2009 | 4 | # Thu Apr 2 18:20:17 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_IO_TRAPPED=y | 29 | CONFIG_IO_TRAPPED=y |
| 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 30 | 31 | ||
| @@ -45,15 +46,24 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 46 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 46 | # CONFIG_TASKSTATS is not set | 47 | # CONFIG_TASKSTATS is not set |
| 47 | # CONFIG_AUDIT is not set | 48 | # CONFIG_AUDIT is not set |
| 49 | |||
| 50 | # | ||
| 51 | # RCU Subsystem | ||
| 52 | # | ||
| 53 | CONFIG_CLASSIC_RCU=y | ||
| 54 | # CONFIG_TREE_RCU is not set | ||
| 55 | # CONFIG_PREEMPT_RCU is not set | ||
| 56 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 57 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 48 | CONFIG_IKCONFIG=y | 58 | CONFIG_IKCONFIG=y |
| 49 | CONFIG_IKCONFIG_PROC=y | 59 | CONFIG_IKCONFIG_PROC=y |
| 50 | CONFIG_LOG_BUF_SHIFT=14 | 60 | CONFIG_LOG_BUF_SHIFT=14 |
| 51 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_GROUP_SCHED=y | 61 | CONFIG_GROUP_SCHED=y |
| 53 | CONFIG_FAIR_GROUP_SCHED=y | 62 | CONFIG_FAIR_GROUP_SCHED=y |
| 54 | # CONFIG_RT_GROUP_SCHED is not set | 63 | # CONFIG_RT_GROUP_SCHED is not set |
| 55 | CONFIG_USER_SCHED=y | 64 | CONFIG_USER_SCHED=y |
| 56 | # CONFIG_CGROUP_SCHED is not set | 65 | # CONFIG_CGROUP_SCHED is not set |
| 66 | # CONFIG_CGROUPS is not set | ||
| 57 | CONFIG_SYSFS_DEPRECATED=y | 67 | CONFIG_SYSFS_DEPRECATED=y |
| 58 | CONFIG_SYSFS_DEPRECATED_V2=y | 68 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 59 | # CONFIG_RELAY is not set | 69 | # CONFIG_RELAY is not set |
| @@ -61,6 +71,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 61 | # CONFIG_BLK_DEV_INITRD is not set | 71 | # CONFIG_BLK_DEV_INITRD is not set |
| 62 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 72 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 63 | CONFIG_SYSCTL=y | 73 | CONFIG_SYSCTL=y |
| 74 | CONFIG_ANON_INODES=y | ||
| 64 | CONFIG_EMBEDDED=y | 75 | CONFIG_EMBEDDED=y |
| 65 | CONFIG_UID16=y | 76 | CONFIG_UID16=y |
| 66 | # CONFIG_SYSCTL_SYSCALL is not set | 77 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -71,10 +82,8 @@ CONFIG_HOTPLUG=y | |||
| 71 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 72 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 73 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 74 | CONFIG_COMPAT_BRK=y | ||
| 75 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 76 | # CONFIG_FUTEX is not set | 86 | # CONFIG_FUTEX is not set |
| 77 | CONFIG_ANON_INODES=y | ||
| 78 | # CONFIG_EPOLL is not set | 87 | # CONFIG_EPOLL is not set |
| 79 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 80 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -83,6 +92,7 @@ CONFIG_SHMEM=y | |||
| 83 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 84 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 85 | CONFIG_PCI_QUIRKS=y | 94 | CONFIG_PCI_QUIRKS=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 86 | CONFIG_SLAB=y | 96 | CONFIG_SLAB=y |
| 87 | # CONFIG_SLUB is not set | 97 | # CONFIG_SLUB is not set |
| 88 | # CONFIG_SLOB is not set | 98 | # CONFIG_SLOB is not set |
| @@ -124,11 +134,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 124 | # CONFIG_DEFAULT_CFQ is not set | 134 | # CONFIG_DEFAULT_CFQ is not set |
| 125 | CONFIG_DEFAULT_NOOP=y | 135 | CONFIG_DEFAULT_NOOP=y |
| 126 | CONFIG_DEFAULT_IOSCHED="noop" | 136 | 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 | 137 | # CONFIG_FREEZER is not set |
| 133 | 138 | ||
| 134 | # | 139 | # |
| @@ -164,6 +169,7 @@ CONFIG_CPU_SH4A=y | |||
| 164 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 165 | CONFIG_CPU_SUBTYPE_SH7780=y | 170 | CONFIG_CPU_SUBTYPE_SH7780=y |
| 166 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 172 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 167 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 173 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 174 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 169 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 175 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -179,8 +185,11 @@ CONFIG_MMU=y | |||
| 179 | CONFIG_PAGE_OFFSET=0x80000000 | 185 | CONFIG_PAGE_OFFSET=0x80000000 |
| 180 | CONFIG_MEMORY_START=0x08000000 | 186 | CONFIG_MEMORY_START=0x08000000 |
| 181 | CONFIG_MEMORY_SIZE=0x08000000 | 187 | CONFIG_MEMORY_SIZE=0x08000000 |
| 182 | CONFIG_29BIT=y | 188 | # CONFIG_29BIT is not set |
| 189 | CONFIG_32BIT=y | ||
| 190 | CONFIG_PMB_ENABLE=y | ||
| 183 | # CONFIG_PMB is not set | 191 | # CONFIG_PMB is not set |
| 192 | CONFIG_PMB_FIXED=y | ||
| 184 | CONFIG_VSYSCALL=y | 193 | CONFIG_VSYSCALL=y |
| 185 | CONFIG_ARCH_FLATMEM_ENABLE=y | 194 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 186 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 195 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
| @@ -212,11 +221,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 212 | CONFIG_ZONE_DMA_FLAG=0 | 221 | CONFIG_ZONE_DMA_FLAG=0 |
| 213 | CONFIG_NR_QUICK=2 | 222 | CONFIG_NR_QUICK=2 |
| 214 | CONFIG_UNEVICTABLE_LRU=y | 223 | CONFIG_UNEVICTABLE_LRU=y |
| 224 | CONFIG_HAVE_MLOCK=y | ||
| 225 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 215 | 226 | ||
| 216 | # | 227 | # |
| 217 | # Cache configuration | 228 | # Cache configuration |
| 218 | # | 229 | # |
| 219 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 220 | CONFIG_CACHE_WRITEBACK=y | 230 | CONFIG_CACHE_WRITEBACK=y |
| 221 | # CONFIG_CACHE_WRITETHROUGH is not set | 231 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 222 | # CONFIG_CACHE_OFF is not set | 232 | # CONFIG_CACHE_OFF is not set |
| @@ -309,6 +319,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 309 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 319 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 310 | CONFIG_PCI_LEGACY=y | 320 | CONFIG_PCI_LEGACY=y |
| 311 | # CONFIG_PCI_DEBUG is not set | 321 | # CONFIG_PCI_DEBUG is not set |
| 322 | # CONFIG_PCI_STUB is not set | ||
| 323 | # CONFIG_PCI_IOV is not set | ||
| 312 | # CONFIG_PCCARD is not set | 324 | # CONFIG_PCCARD is not set |
| 313 | # CONFIG_HOTPLUG_PCI is not set | 325 | # CONFIG_HOTPLUG_PCI is not set |
| 314 | 326 | ||
| @@ -330,7 +342,6 @@ CONFIG_NET=y | |||
| 330 | # | 342 | # |
| 331 | # Networking options | 343 | # Networking options |
| 332 | # | 344 | # |
| 333 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 334 | CONFIG_PACKET=y | 345 | CONFIG_PACKET=y |
| 335 | # CONFIG_PACKET_MMAP is not set | 346 | # CONFIG_PACKET_MMAP is not set |
| 336 | CONFIG_UNIX=y | 347 | CONFIG_UNIX=y |
| @@ -392,6 +403,7 @@ CONFIG_LLC=m | |||
| 392 | # CONFIG_LAPB is not set | 403 | # CONFIG_LAPB is not set |
| 393 | # CONFIG_ECONET is not set | 404 | # CONFIG_ECONET is not set |
| 394 | # CONFIG_WAN_ROUTER is not set | 405 | # CONFIG_WAN_ROUTER is not set |
| 406 | # CONFIG_PHONET is not set | ||
| 395 | # CONFIG_NET_SCHED is not set | 407 | # CONFIG_NET_SCHED is not set |
| 396 | # CONFIG_DCB is not set | 408 | # CONFIG_DCB is not set |
| 397 | 409 | ||
| @@ -399,12 +411,12 @@ CONFIG_LLC=m | |||
| 399 | # Network testing | 411 | # Network testing |
| 400 | # | 412 | # |
| 401 | # CONFIG_NET_PKTGEN is not set | 413 | # CONFIG_NET_PKTGEN is not set |
| 414 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 402 | # CONFIG_HAMRADIO is not set | 415 | # CONFIG_HAMRADIO is not set |
| 403 | # CONFIG_CAN is not set | 416 | # CONFIG_CAN is not set |
| 404 | # CONFIG_IRDA is not set | 417 | # CONFIG_IRDA is not set |
| 405 | # CONFIG_BT is not set | 418 | # CONFIG_BT is not set |
| 406 | # CONFIG_AF_RXRPC is not set | 419 | # CONFIG_AF_RXRPC is not set |
| 407 | # CONFIG_PHONET is not set | ||
| 408 | CONFIG_WIRELESS=y | 420 | CONFIG_WIRELESS=y |
| 409 | # CONFIG_CFG80211 is not set | 421 | # CONFIG_CFG80211 is not set |
| 410 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 422 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -412,6 +424,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 412 | CONFIG_WIRELESS_EXT_SYSFS=y | 424 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 413 | # CONFIG_LIB80211 is not set | 425 | # CONFIG_LIB80211 is not set |
| 414 | # CONFIG_MAC80211 is not set | 426 | # CONFIG_MAC80211 is not set |
| 427 | # CONFIG_WIMAX is not set | ||
| 415 | # CONFIG_RFKILL is not set | 428 | # CONFIG_RFKILL is not set |
| 416 | # CONFIG_NET_9P is not set | 429 | # CONFIG_NET_9P is not set |
| 417 | 430 | ||
| @@ -451,13 +464,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 451 | # CONFIG_BLK_DEV_HD is not set | 464 | # CONFIG_BLK_DEV_HD is not set |
| 452 | CONFIG_MISC_DEVICES=y | 465 | CONFIG_MISC_DEVICES=y |
| 453 | # CONFIG_PHANTOM is not set | 466 | # CONFIG_PHANTOM is not set |
| 454 | CONFIG_EEPROM_93CX6=y | ||
| 455 | # CONFIG_SGI_IOC4 is not set | 467 | # CONFIG_SGI_IOC4 is not set |
| 456 | # CONFIG_TIFM_CORE is not set | 468 | # CONFIG_TIFM_CORE is not set |
| 457 | # CONFIG_ICS932S401 is not set | 469 | # CONFIG_ICS932S401 is not set |
| 458 | # CONFIG_ENCLOSURE_SERVICES is not set | 470 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 459 | # CONFIG_HP_ILO is not set | 471 | # CONFIG_HP_ILO is not set |
| 472 | # CONFIG_ISL29003 is not set | ||
| 460 | # CONFIG_C2PORT is not set | 473 | # CONFIG_C2PORT is not set |
| 474 | |||
| 475 | # | ||
| 476 | # EEPROM support | ||
| 477 | # | ||
| 478 | # CONFIG_EEPROM_AT24 is not set | ||
| 479 | # CONFIG_EEPROM_LEGACY is not set | ||
| 480 | CONFIG_EEPROM_93CX6=y | ||
| 461 | CONFIG_HAVE_IDE=y | 481 | CONFIG_HAVE_IDE=y |
| 462 | # CONFIG_IDE is not set | 482 | # CONFIG_IDE is not set |
| 463 | 483 | ||
| @@ -513,6 +533,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 513 | # CONFIG_MEGARAID_NEWGEN is not set | 533 | # CONFIG_MEGARAID_NEWGEN is not set |
| 514 | # CONFIG_MEGARAID_LEGACY is not set | 534 | # CONFIG_MEGARAID_LEGACY is not set |
| 515 | # CONFIG_MEGARAID_SAS is not set | 535 | # CONFIG_MEGARAID_SAS is not set |
| 536 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 516 | # CONFIG_SCSI_HPTIOP is not set | 537 | # CONFIG_SCSI_HPTIOP is not set |
| 517 | # CONFIG_LIBFC is not set | 538 | # CONFIG_LIBFC is not set |
| 518 | # CONFIG_FCOE is not set | 539 | # CONFIG_FCOE is not set |
| @@ -535,6 +556,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 535 | # CONFIG_SCSI_DEBUG is not set | 556 | # CONFIG_SCSI_DEBUG is not set |
| 536 | # CONFIG_SCSI_SRP is not set | 557 | # CONFIG_SCSI_SRP is not set |
| 537 | # CONFIG_SCSI_DH is not set | 558 | # CONFIG_SCSI_DH is not set |
| 559 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 538 | CONFIG_ATA=y | 560 | CONFIG_ATA=y |
| 539 | # CONFIG_ATA_NONSTANDARD is not set | 561 | # CONFIG_ATA_NONSTANDARD is not set |
| 540 | CONFIG_SATA_PMP=y | 562 | CONFIG_SATA_PMP=y |
| @@ -609,6 +631,7 @@ CONFIG_PATA_PLATFORM=y | |||
| 609 | # CONFIG_IEEE1394 is not set | 631 | # CONFIG_IEEE1394 is not set |
| 610 | # CONFIG_I2O is not set | 632 | # CONFIG_I2O is not set |
| 611 | CONFIG_NETDEVICES=y | 633 | CONFIG_NETDEVICES=y |
| 634 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 612 | # CONFIG_DUMMY is not set | 635 | # CONFIG_DUMMY is not set |
| 613 | # CONFIG_BONDING is not set | 636 | # CONFIG_BONDING is not set |
| 614 | # CONFIG_MACVLAN is not set | 637 | # CONFIG_MACVLAN is not set |
| @@ -627,8 +650,10 @@ CONFIG_AX88796_93CX6=y | |||
| 627 | # CONFIG_CASSINI is not set | 650 | # CONFIG_CASSINI is not set |
| 628 | # CONFIG_NET_VENDOR_3COM is not set | 651 | # CONFIG_NET_VENDOR_3COM is not set |
| 629 | # CONFIG_SMC91X is not set | 652 | # CONFIG_SMC91X is not set |
| 653 | # CONFIG_ETHOC is not set | ||
| 630 | # CONFIG_SMC911X is not set | 654 | # CONFIG_SMC911X is not set |
| 631 | # CONFIG_SMSC911X is not set | 655 | # CONFIG_SMSC911X is not set |
| 656 | # CONFIG_DNET is not set | ||
| 632 | # CONFIG_NET_TULIP is not set | 657 | # CONFIG_NET_TULIP is not set |
| 633 | # CONFIG_HP100 is not set | 658 | # CONFIG_HP100 is not set |
| 634 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 659 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -684,6 +709,7 @@ CONFIG_R8169=y | |||
| 684 | # CONFIG_QLA3XXX is not set | 709 | # CONFIG_QLA3XXX is not set |
| 685 | # CONFIG_ATL1 is not set | 710 | # CONFIG_ATL1 is not set |
| 686 | # CONFIG_ATL1E is not set | 711 | # CONFIG_ATL1E is not set |
| 712 | # CONFIG_ATL1C is not set | ||
| 687 | # CONFIG_JME is not set | 713 | # CONFIG_JME is not set |
| 688 | CONFIG_NETDEV_10000=y | 714 | CONFIG_NETDEV_10000=y |
| 689 | # CONFIG_CHELSIO_T1 is not set | 715 | # CONFIG_CHELSIO_T1 is not set |
| @@ -702,6 +728,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 702 | # CONFIG_BNX2X is not set | 728 | # CONFIG_BNX2X is not set |
| 703 | # CONFIG_QLGE is not set | 729 | # CONFIG_QLGE is not set |
| 704 | # CONFIG_SFC is not set | 730 | # CONFIG_SFC is not set |
| 731 | # CONFIG_BE2NET is not set | ||
| 705 | # CONFIG_TR is not set | 732 | # CONFIG_TR is not set |
| 706 | 733 | ||
| 707 | # | 734 | # |
| @@ -709,7 +736,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 709 | # | 736 | # |
| 710 | # CONFIG_WLAN_PRE80211 is not set | 737 | # CONFIG_WLAN_PRE80211 is not set |
| 711 | # CONFIG_WLAN_80211 is not set | 738 | # CONFIG_WLAN_80211 is not set |
| 712 | # CONFIG_IWLWIFI_LEDS is not set | 739 | |
| 740 | # | ||
| 741 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 742 | # | ||
| 713 | # CONFIG_WAN is not set | 743 | # CONFIG_WAN is not set |
| 714 | # CONFIG_FDDI is not set | 744 | # CONFIG_FDDI is not set |
| 715 | # CONFIG_HIPPI is not set | 745 | # CONFIG_HIPPI is not set |
| @@ -796,6 +826,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 796 | CONFIG_LEGACY_PTY_COUNT=256 | 826 | CONFIG_LEGACY_PTY_COUNT=256 |
| 797 | # CONFIG_IPMI_HANDLER is not set | 827 | # CONFIG_IPMI_HANDLER is not set |
| 798 | CONFIG_HW_RANDOM=y | 828 | CONFIG_HW_RANDOM=y |
| 829 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 799 | # CONFIG_R3964 is not set | 830 | # CONFIG_R3964 is not set |
| 800 | # CONFIG_APPLICOM is not set | 831 | # CONFIG_APPLICOM is not set |
| 801 | # CONFIG_RAW_DRIVER is not set | 832 | # CONFIG_RAW_DRIVER is not set |
| @@ -857,12 +888,9 @@ CONFIG_I2C_HIGHLANDER=y | |||
| 857 | # Miscellaneous I2C Chip support | 888 | # Miscellaneous I2C Chip support |
| 858 | # | 889 | # |
| 859 | # CONFIG_DS1682 is not set | 890 | # CONFIG_DS1682 is not set |
| 860 | # CONFIG_EEPROM_AT24 is not set | ||
| 861 | # CONFIG_EEPROM_LEGACY is not set | ||
| 862 | # CONFIG_SENSORS_PCF8574 is not set | 891 | # CONFIG_SENSORS_PCF8574 is not set |
| 863 | # CONFIG_PCF8575 is not set | 892 | # CONFIG_PCF8575 is not set |
| 864 | # CONFIG_SENSORS_PCA9539 is not set | 893 | # CONFIG_SENSORS_PCA9539 is not set |
| 865 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 866 | # CONFIG_SENSORS_MAX6875 is not set | 894 | # CONFIG_SENSORS_MAX6875 is not set |
| 867 | # CONFIG_SENSORS_TSL2550 is not set | 895 | # CONFIG_SENSORS_TSL2550 is not set |
| 868 | # CONFIG_I2C_DEBUG_CORE is not set | 896 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -885,6 +913,7 @@ CONFIG_HWMON=y | |||
| 885 | # CONFIG_SENSORS_ADT7462 is not set | 913 | # CONFIG_SENSORS_ADT7462 is not set |
| 886 | # CONFIG_SENSORS_ADT7470 is not set | 914 | # CONFIG_SENSORS_ADT7470 is not set |
| 887 | # CONFIG_SENSORS_ADT7473 is not set | 915 | # CONFIG_SENSORS_ADT7473 is not set |
| 916 | # CONFIG_SENSORS_ADT7475 is not set | ||
| 888 | # CONFIG_SENSORS_ATXP1 is not set | 917 | # CONFIG_SENSORS_ATXP1 is not set |
| 889 | # CONFIG_SENSORS_DS1621 is not set | 918 | # CONFIG_SENSORS_DS1621 is not set |
| 890 | # CONFIG_SENSORS_I5K_AMB is not set | 919 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -905,10 +934,14 @@ CONFIG_HWMON=y | |||
| 905 | # CONFIG_SENSORS_LM90 is not set | 934 | # CONFIG_SENSORS_LM90 is not set |
| 906 | # CONFIG_SENSORS_LM92 is not set | 935 | # CONFIG_SENSORS_LM92 is not set |
| 907 | # CONFIG_SENSORS_LM93 is not set | 936 | # CONFIG_SENSORS_LM93 is not set |
| 937 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 938 | # CONFIG_SENSORS_LTC4245 is not set | ||
| 939 | # CONFIG_SENSORS_LM95241 is not set | ||
| 908 | # CONFIG_SENSORS_MAX1619 is not set | 940 | # CONFIG_SENSORS_MAX1619 is not set |
| 909 | # CONFIG_SENSORS_MAX6650 is not set | 941 | # CONFIG_SENSORS_MAX6650 is not set |
| 910 | # CONFIG_SENSORS_PC87360 is not set | 942 | # CONFIG_SENSORS_PC87360 is not set |
| 911 | # CONFIG_SENSORS_PC87427 is not set | 943 | # CONFIG_SENSORS_PC87427 is not set |
| 944 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 912 | # CONFIG_SENSORS_SIS5595 is not set | 945 | # CONFIG_SENSORS_SIS5595 is not set |
| 913 | # CONFIG_SENSORS_DME1737 is not set | 946 | # CONFIG_SENSORS_DME1737 is not set |
| 914 | # CONFIG_SENSORS_SMSC47M1 is not set | 947 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -949,6 +982,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 949 | # CONFIG_PMIC_DA903X is not set | 982 | # CONFIG_PMIC_DA903X is not set |
| 950 | # CONFIG_MFD_WM8400 is not set | 983 | # CONFIG_MFD_WM8400 is not set |
| 951 | # CONFIG_MFD_WM8350_I2C is not set | 984 | # CONFIG_MFD_WM8350_I2C is not set |
| 985 | # CONFIG_MFD_PCF50633 is not set | ||
| 952 | # CONFIG_REGULATOR is not set | 986 | # CONFIG_REGULATOR is not set |
| 953 | 987 | ||
| 954 | # | 988 | # |
| @@ -1007,9 +1041,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1007 | # | 1041 | # |
| 1008 | 1042 | ||
| 1009 | # | 1043 | # |
| 1010 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1044 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1011 | # | 1045 | # |
| 1012 | # CONFIG_USB_GADGET is not set | 1046 | # CONFIG_USB_GADGET is not set |
| 1047 | |||
| 1048 | # | ||
| 1049 | # OTG and related infrastructure | ||
| 1050 | # | ||
| 1013 | # CONFIG_UWB is not set | 1051 | # CONFIG_UWB is not set |
| 1014 | # CONFIG_MMC is not set | 1052 | # CONFIG_MMC is not set |
| 1015 | # CONFIG_MEMSTICK is not set | 1053 | # CONFIG_MEMSTICK is not set |
| @@ -1071,6 +1109,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1071 | # | 1109 | # |
| 1072 | CONFIG_RTC_DRV_SH=y | 1110 | CONFIG_RTC_DRV_SH=y |
| 1073 | # CONFIG_DMADEVICES is not set | 1111 | # CONFIG_DMADEVICES is not set |
| 1112 | # CONFIG_AUXDISPLAY is not set | ||
| 1074 | # CONFIG_UIO is not set | 1113 | # CONFIG_UIO is not set |
| 1075 | # CONFIG_STAGING is not set | 1114 | # CONFIG_STAGING is not set |
| 1076 | 1115 | ||
| @@ -1094,6 +1133,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1094 | CONFIG_FILE_LOCKING=y | 1133 | CONFIG_FILE_LOCKING=y |
| 1095 | # CONFIG_XFS_FS is not set | 1134 | # CONFIG_XFS_FS is not set |
| 1096 | # CONFIG_OCFS2_FS is not set | 1135 | # CONFIG_OCFS2_FS is not set |
| 1136 | # CONFIG_BTRFS_FS is not set | ||
| 1097 | CONFIG_DNOTIFY=y | 1137 | CONFIG_DNOTIFY=y |
| 1098 | CONFIG_INOTIFY=y | 1138 | CONFIG_INOTIFY=y |
| 1099 | CONFIG_INOTIFY_USER=y | 1139 | CONFIG_INOTIFY_USER=y |
| @@ -1142,6 +1182,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1142 | # CONFIG_BFS_FS is not set | 1182 | # CONFIG_BFS_FS is not set |
| 1143 | # CONFIG_EFS_FS is not set | 1183 | # CONFIG_EFS_FS is not set |
| 1144 | # CONFIG_CRAMFS is not set | 1184 | # CONFIG_CRAMFS is not set |
| 1185 | # CONFIG_SQUASHFS is not set | ||
| 1145 | # CONFIG_VXFS_FS is not set | 1186 | # CONFIG_VXFS_FS is not set |
| 1146 | CONFIG_MINIX_FS=y | 1187 | CONFIG_MINIX_FS=y |
| 1147 | # CONFIG_OMFS_FS is not set | 1188 | # CONFIG_OMFS_FS is not set |
| @@ -1166,7 +1207,6 @@ CONFIG_EXPORTFS=y | |||
| 1166 | CONFIG_NFS_COMMON=y | 1207 | CONFIG_NFS_COMMON=y |
| 1167 | CONFIG_SUNRPC=y | 1208 | CONFIG_SUNRPC=y |
| 1168 | CONFIG_SUNRPC_GSS=y | 1209 | CONFIG_SUNRPC_GSS=y |
| 1169 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1170 | CONFIG_RPCSEC_GSS_KRB5=y | 1210 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1171 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1211 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1172 | # CONFIG_SMB_FS is not set | 1212 | # CONFIG_SMB_FS is not set |
| @@ -1269,6 +1309,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1269 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1309 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 1270 | # CONFIG_FAULT_INJECTION is not set | 1310 | # CONFIG_FAULT_INJECTION is not set |
| 1271 | # CONFIG_LATENCYTOP is not set | 1311 | # CONFIG_LATENCYTOP is not set |
| 1312 | # CONFIG_PAGE_POISONING is not set | ||
| 1272 | CONFIG_NOP_TRACER=y | 1313 | CONFIG_NOP_TRACER=y |
| 1273 | CONFIG_HAVE_FUNCTION_TRACER=y | 1314 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1274 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1315 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| @@ -1288,7 +1329,7 @@ CONFIG_TRACING=y | |||
| 1288 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1329 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1289 | # CONFIG_STACK_TRACER is not set | 1330 | # CONFIG_STACK_TRACER is not set |
| 1290 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1331 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1291 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1332 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1292 | # CONFIG_SAMPLES is not set | 1333 | # CONFIG_SAMPLES is not set |
| 1293 | CONFIG_HAVE_ARCH_KGDB=y | 1334 | CONFIG_HAVE_ARCH_KGDB=y |
| 1294 | # CONFIG_KGDB is not set | 1335 | # CONFIG_KGDB is not set |
| @@ -1325,10 +1366,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1325 | CONFIG_CRYPTO_HASH=y | 1366 | CONFIG_CRYPTO_HASH=y |
| 1326 | CONFIG_CRYPTO_HASH2=y | 1367 | CONFIG_CRYPTO_HASH2=y |
| 1327 | CONFIG_CRYPTO_RNG2=y | 1368 | CONFIG_CRYPTO_RNG2=y |
| 1369 | CONFIG_CRYPTO_PCOMP=y | ||
| 1328 | CONFIG_CRYPTO_MANAGER=y | 1370 | CONFIG_CRYPTO_MANAGER=y |
| 1329 | CONFIG_CRYPTO_MANAGER2=y | 1371 | CONFIG_CRYPTO_MANAGER2=y |
| 1330 | # CONFIG_CRYPTO_GF128MUL is not set | 1372 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1331 | # CONFIG_CRYPTO_NULL is not set | 1373 | # CONFIG_CRYPTO_NULL is not set |
| 1374 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1332 | # CONFIG_CRYPTO_CRYPTD is not set | 1375 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1333 | # CONFIG_CRYPTO_AUTHENC is not set | 1376 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1334 | # CONFIG_CRYPTO_TEST is not set | 1377 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1397,6 +1440,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1397 | # Compression | 1440 | # Compression |
| 1398 | # | 1441 | # |
| 1399 | # CONFIG_CRYPTO_DEFLATE is not set | 1442 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1443 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1400 | # CONFIG_CRYPTO_LZO is not set | 1444 | # CONFIG_CRYPTO_LZO is not set |
| 1401 | 1445 | ||
| 1402 | # | 1446 | # |
| @@ -1421,3 +1465,4 @@ CONFIG_CRC32=y | |||
| 1421 | CONFIG_HAS_IOMEM=y | 1465 | CONFIG_HAS_IOMEM=y |
| 1422 | CONFIG_HAS_IOPORT=y | 1466 | CONFIG_HAS_IOPORT=y |
| 1423 | CONFIG_HAS_DMA=y | 1467 | CONFIG_HAS_DMA=y |
| 1468 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/r7785rp_defconfig b/arch/sh/configs/r7785rp_defconfig index 8defaa5f13b9..cb134ffc2118 100644 --- a/arch/sh/configs/r7785rp_defconfig +++ b/arch/sh/configs/r7785rp_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:14:41 2009 | 4 | # Thu Apr 2 18:24:35 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_GPIO=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_PCI=y | 22 | CONFIG_SYS_SUPPORTS_PCI=y |
| 23 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| @@ -26,6 +26,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 29 | CONFIG_IO_TRAPPED=y | 30 | CONFIG_IO_TRAPPED=y |
| 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 31 | 32 | ||
| @@ -48,11 +49,21 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 48 | CONFIG_AUDIT=y | 49 | CONFIG_AUDIT=y |
| 49 | CONFIG_AUDITSYSCALL=y | 50 | CONFIG_AUDITSYSCALL=y |
| 50 | CONFIG_AUDIT_TREE=y | 51 | CONFIG_AUDIT_TREE=y |
| 52 | |||
| 53 | # | ||
| 54 | # RCU Subsystem | ||
| 55 | # | ||
| 56 | # CONFIG_CLASSIC_RCU is not set | ||
| 57 | # CONFIG_TREE_RCU is not set | ||
| 58 | CONFIG_PREEMPT_RCU=y | ||
| 59 | CONFIG_RCU_TRACE=y | ||
| 60 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 61 | CONFIG_PREEMPT_RCU_TRACE=y | ||
| 51 | CONFIG_IKCONFIG=y | 62 | CONFIG_IKCONFIG=y |
| 52 | CONFIG_IKCONFIG_PROC=y | 63 | CONFIG_IKCONFIG_PROC=y |
| 53 | CONFIG_LOG_BUF_SHIFT=14 | 64 | CONFIG_LOG_BUF_SHIFT=14 |
| 54 | # CONFIG_CGROUPS is not set | ||
| 55 | # CONFIG_GROUP_SCHED is not set | 65 | # CONFIG_GROUP_SCHED is not set |
| 66 | # CONFIG_CGROUPS is not set | ||
| 56 | CONFIG_SYSFS_DEPRECATED=y | 67 | CONFIG_SYSFS_DEPRECATED=y |
| 57 | CONFIG_SYSFS_DEPRECATED_V2=y | 68 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 58 | # CONFIG_RELAY is not set | 69 | # CONFIG_RELAY is not set |
| @@ -60,21 +71,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 60 | # CONFIG_BLK_DEV_INITRD is not set | 71 | # CONFIG_BLK_DEV_INITRD is not set |
| 61 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 72 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 62 | CONFIG_SYSCTL=y | 73 | CONFIG_SYSCTL=y |
| 74 | CONFIG_ANON_INODES=y | ||
| 63 | CONFIG_EMBEDDED=y | 75 | CONFIG_EMBEDDED=y |
| 64 | CONFIG_UID16=y | 76 | CONFIG_UID16=y |
| 65 | # CONFIG_SYSCTL_SYSCALL is not set | 77 | # CONFIG_SYSCTL_SYSCALL is not set |
| 66 | CONFIG_KALLSYMS=y | 78 | CONFIG_KALLSYMS=y |
| 67 | CONFIG_KALLSYMS_ALL=y | 79 | CONFIG_KALLSYMS_ALL=y |
| 68 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 69 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 80 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 70 | CONFIG_HOTPLUG=y | 81 | CONFIG_HOTPLUG=y |
| 71 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 72 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 73 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 74 | CONFIG_COMPAT_BRK=y | ||
| 75 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 76 | CONFIG_FUTEX=y | 86 | CONFIG_FUTEX=y |
| 77 | CONFIG_ANON_INODES=y | ||
| 78 | CONFIG_EPOLL=y | 87 | CONFIG_EPOLL=y |
| 79 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 80 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -83,6 +92,7 @@ CONFIG_SHMEM=y | |||
| 83 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 84 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 85 | CONFIG_PCI_QUIRKS=y | 94 | CONFIG_PCI_QUIRKS=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 86 | CONFIG_SLAB=y | 96 | CONFIG_SLAB=y |
| 87 | # CONFIG_SLUB is not set | 97 | # CONFIG_SLUB is not set |
| 88 | # CONFIG_SLOB is not set | 98 | # CONFIG_SLOB is not set |
| @@ -126,12 +136,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 126 | # CONFIG_DEFAULT_CFQ is not set | 136 | # CONFIG_DEFAULT_CFQ is not set |
| 127 | CONFIG_DEFAULT_NOOP=y | 137 | CONFIG_DEFAULT_NOOP=y |
| 128 | CONFIG_DEFAULT_IOSCHED="noop" | 138 | CONFIG_DEFAULT_IOSCHED="noop" |
| 129 | # CONFIG_CLASSIC_RCU is not set | ||
| 130 | # CONFIG_TREE_RCU is not set | ||
| 131 | CONFIG_PREEMPT_RCU=y | ||
| 132 | CONFIG_RCU_TRACE=y | ||
| 133 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 134 | CONFIG_PREEMPT_RCU_TRACE=y | ||
| 135 | # CONFIG_FREEZER is not set | 139 | # CONFIG_FREEZER is not set |
| 136 | 140 | ||
| 137 | # | 141 | # |
| @@ -168,6 +172,7 @@ CONFIG_CPU_SHX2=y | |||
| 168 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 169 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 170 | CONFIG_CPU_SUBTYPE_SH7785=y | 174 | CONFIG_CPU_SUBTYPE_SH7785=y |
| 175 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 171 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 176 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 172 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 177 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 173 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 178 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -183,8 +188,11 @@ CONFIG_MMU=y | |||
| 183 | CONFIG_PAGE_OFFSET=0x80000000 | 188 | CONFIG_PAGE_OFFSET=0x80000000 |
| 184 | CONFIG_MEMORY_START=0x08000000 | 189 | CONFIG_MEMORY_START=0x08000000 |
| 185 | CONFIG_MEMORY_SIZE=0x08000000 | 190 | CONFIG_MEMORY_SIZE=0x08000000 |
| 186 | CONFIG_29BIT=y | 191 | # CONFIG_29BIT is not set |
| 192 | CONFIG_32BIT=y | ||
| 193 | CONFIG_PMB_ENABLE=y | ||
| 187 | # CONFIG_PMB is not set | 194 | # CONFIG_PMB is not set |
| 195 | CONFIG_PMB_FIXED=y | ||
| 188 | # CONFIG_X2TLB is not set | 196 | # CONFIG_X2TLB is not set |
| 189 | CONFIG_VSYSCALL=y | 197 | CONFIG_VSYSCALL=y |
| 190 | # CONFIG_NUMA is not set | 198 | # CONFIG_NUMA is not set |
| @@ -222,11 +230,12 @@ CONFIG_MIGRATION=y | |||
| 222 | CONFIG_ZONE_DMA_FLAG=0 | 230 | CONFIG_ZONE_DMA_FLAG=0 |
| 223 | CONFIG_NR_QUICK=2 | 231 | CONFIG_NR_QUICK=2 |
| 224 | CONFIG_UNEVICTABLE_LRU=y | 232 | CONFIG_UNEVICTABLE_LRU=y |
| 233 | CONFIG_HAVE_MLOCK=y | ||
| 234 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 225 | 235 | ||
| 226 | # | 236 | # |
| 227 | # Cache configuration | 237 | # Cache configuration |
| 228 | # | 238 | # |
| 229 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 230 | CONFIG_CACHE_WRITEBACK=y | 239 | CONFIG_CACHE_WRITEBACK=y |
| 231 | # CONFIG_CACHE_WRITETHROUGH is not set | 240 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 232 | # CONFIG_CACHE_OFF is not set | 241 | # CONFIG_CACHE_OFF is not set |
| @@ -334,6 +343,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 334 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 343 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 335 | # CONFIG_PCI_LEGACY is not set | 344 | # CONFIG_PCI_LEGACY is not set |
| 336 | # CONFIG_PCI_DEBUG is not set | 345 | # CONFIG_PCI_DEBUG is not set |
| 346 | # CONFIG_PCI_STUB is not set | ||
| 347 | # CONFIG_PCI_IOV is not set | ||
| 337 | # CONFIG_PCCARD is not set | 348 | # CONFIG_PCCARD is not set |
| 338 | # CONFIG_HOTPLUG_PCI is not set | 349 | # CONFIG_HOTPLUG_PCI is not set |
| 339 | 350 | ||
| @@ -355,7 +366,6 @@ CONFIG_NET=y | |||
| 355 | # | 366 | # |
| 356 | # Networking options | 367 | # Networking options |
| 357 | # | 368 | # |
| 358 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 359 | CONFIG_PACKET=y | 369 | CONFIG_PACKET=y |
| 360 | # CONFIG_PACKET_MMAP is not set | 370 | # CONFIG_PACKET_MMAP is not set |
| 361 | CONFIG_UNIX=y | 371 | CONFIG_UNIX=y |
| @@ -417,6 +427,7 @@ CONFIG_LLC=m | |||
| 417 | # CONFIG_LAPB is not set | 427 | # CONFIG_LAPB is not set |
| 418 | # CONFIG_ECONET is not set | 428 | # CONFIG_ECONET is not set |
| 419 | # CONFIG_WAN_ROUTER is not set | 429 | # CONFIG_WAN_ROUTER is not set |
| 430 | # CONFIG_PHONET is not set | ||
| 420 | # CONFIG_NET_SCHED is not set | 431 | # CONFIG_NET_SCHED is not set |
| 421 | # CONFIG_DCB is not set | 432 | # CONFIG_DCB is not set |
| 422 | 433 | ||
| @@ -425,12 +436,12 @@ CONFIG_LLC=m | |||
| 425 | # | 436 | # |
| 426 | # CONFIG_NET_PKTGEN is not set | 437 | # CONFIG_NET_PKTGEN is not set |
| 427 | # CONFIG_NET_TCPPROBE is not set | 438 | # CONFIG_NET_TCPPROBE is not set |
| 439 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 428 | # CONFIG_HAMRADIO is not set | 440 | # CONFIG_HAMRADIO is not set |
| 429 | # CONFIG_CAN is not set | 441 | # CONFIG_CAN is not set |
| 430 | # CONFIG_IRDA is not set | 442 | # CONFIG_IRDA is not set |
| 431 | # CONFIG_BT is not set | 443 | # CONFIG_BT is not set |
| 432 | # CONFIG_AF_RXRPC is not set | 444 | # CONFIG_AF_RXRPC is not set |
| 433 | # CONFIG_PHONET is not set | ||
| 434 | CONFIG_WIRELESS=y | 445 | CONFIG_WIRELESS=y |
| 435 | # CONFIG_CFG80211 is not set | 446 | # CONFIG_CFG80211 is not set |
| 436 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 447 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -438,6 +449,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 438 | CONFIG_WIRELESS_EXT_SYSFS=y | 449 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 439 | # CONFIG_LIB80211 is not set | 450 | # CONFIG_LIB80211 is not set |
| 440 | # CONFIG_MAC80211 is not set | 451 | # CONFIG_MAC80211 is not set |
| 452 | # CONFIG_WIMAX is not set | ||
| 441 | # CONFIG_RFKILL is not set | 453 | # CONFIG_RFKILL is not set |
| 442 | # CONFIG_NET_9P is not set | 454 | # CONFIG_NET_9P is not set |
| 443 | 455 | ||
| @@ -477,13 +489,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 477 | # CONFIG_BLK_DEV_HD is not set | 489 | # CONFIG_BLK_DEV_HD is not set |
| 478 | CONFIG_MISC_DEVICES=y | 490 | CONFIG_MISC_DEVICES=y |
| 479 | # CONFIG_PHANTOM is not set | 491 | # CONFIG_PHANTOM is not set |
| 480 | CONFIG_EEPROM_93CX6=y | ||
| 481 | # CONFIG_SGI_IOC4 is not set | 492 | # CONFIG_SGI_IOC4 is not set |
| 482 | # CONFIG_TIFM_CORE is not set | 493 | # CONFIG_TIFM_CORE is not set |
| 483 | # CONFIG_ICS932S401 is not set | 494 | # CONFIG_ICS932S401 is not set |
| 484 | # CONFIG_ENCLOSURE_SERVICES is not set | 495 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 485 | # CONFIG_HP_ILO is not set | 496 | # CONFIG_HP_ILO is not set |
| 497 | # CONFIG_ISL29003 is not set | ||
| 486 | # CONFIG_C2PORT is not set | 498 | # CONFIG_C2PORT is not set |
| 499 | |||
| 500 | # | ||
| 501 | # EEPROM support | ||
| 502 | # | ||
| 503 | # CONFIG_EEPROM_AT24 is not set | ||
| 504 | # CONFIG_EEPROM_LEGACY is not set | ||
| 505 | CONFIG_EEPROM_93CX6=y | ||
| 487 | CONFIG_HAVE_IDE=y | 506 | CONFIG_HAVE_IDE=y |
| 488 | # CONFIG_IDE is not set | 507 | # CONFIG_IDE is not set |
| 489 | 508 | ||
| @@ -539,6 +558,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 539 | # CONFIG_MEGARAID_NEWGEN is not set | 558 | # CONFIG_MEGARAID_NEWGEN is not set |
| 540 | # CONFIG_MEGARAID_LEGACY is not set | 559 | # CONFIG_MEGARAID_LEGACY is not set |
| 541 | # CONFIG_MEGARAID_SAS is not set | 560 | # CONFIG_MEGARAID_SAS is not set |
| 561 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 542 | # CONFIG_SCSI_HPTIOP is not set | 562 | # CONFIG_SCSI_HPTIOP is not set |
| 543 | # CONFIG_LIBFC is not set | 563 | # CONFIG_LIBFC is not set |
| 544 | # CONFIG_FCOE is not set | 564 | # CONFIG_FCOE is not set |
| @@ -561,6 +581,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 561 | # CONFIG_SCSI_DEBUG is not set | 581 | # CONFIG_SCSI_DEBUG is not set |
| 562 | # CONFIG_SCSI_SRP is not set | 582 | # CONFIG_SCSI_SRP is not set |
| 563 | # CONFIG_SCSI_DH is not set | 583 | # CONFIG_SCSI_DH is not set |
| 584 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 564 | CONFIG_ATA=y | 585 | CONFIG_ATA=y |
| 565 | # CONFIG_ATA_NONSTANDARD is not set | 586 | # CONFIG_ATA_NONSTANDARD is not set |
| 566 | CONFIG_SATA_PMP=y | 587 | CONFIG_SATA_PMP=y |
| @@ -635,6 +656,7 @@ CONFIG_PATA_PLATFORM=y | |||
| 635 | # CONFIG_IEEE1394 is not set | 656 | # CONFIG_IEEE1394 is not set |
| 636 | # CONFIG_I2O is not set | 657 | # CONFIG_I2O is not set |
| 637 | CONFIG_NETDEVICES=y | 658 | CONFIG_NETDEVICES=y |
| 659 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 638 | # CONFIG_DUMMY is not set | 660 | # CONFIG_DUMMY is not set |
| 639 | # CONFIG_BONDING is not set | 661 | # CONFIG_BONDING is not set |
| 640 | # CONFIG_MACVLAN is not set | 662 | # CONFIG_MACVLAN is not set |
| @@ -653,8 +675,10 @@ CONFIG_AX88796_93CX6=y | |||
| 653 | # CONFIG_CASSINI is not set | 675 | # CONFIG_CASSINI is not set |
| 654 | # CONFIG_NET_VENDOR_3COM is not set | 676 | # CONFIG_NET_VENDOR_3COM is not set |
| 655 | # CONFIG_SMC91X is not set | 677 | # CONFIG_SMC91X is not set |
| 678 | # CONFIG_ETHOC is not set | ||
| 656 | # CONFIG_SMC911X is not set | 679 | # CONFIG_SMC911X is not set |
| 657 | # CONFIG_SMSC911X is not set | 680 | # CONFIG_SMSC911X is not set |
| 681 | # CONFIG_DNET is not set | ||
| 658 | # CONFIG_NET_TULIP is not set | 682 | # CONFIG_NET_TULIP is not set |
| 659 | # CONFIG_HP100 is not set | 683 | # CONFIG_HP100 is not set |
| 660 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 684 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -687,6 +711,7 @@ CONFIG_R8169=y | |||
| 687 | # CONFIG_QLA3XXX is not set | 711 | # CONFIG_QLA3XXX is not set |
| 688 | # CONFIG_ATL1 is not set | 712 | # CONFIG_ATL1 is not set |
| 689 | # CONFIG_ATL1E is not set | 713 | # CONFIG_ATL1E is not set |
| 714 | # CONFIG_ATL1C is not set | ||
| 690 | # CONFIG_JME is not set | 715 | # CONFIG_JME is not set |
| 691 | CONFIG_NETDEV_10000=y | 716 | CONFIG_NETDEV_10000=y |
| 692 | # CONFIG_CHELSIO_T1 is not set | 717 | # CONFIG_CHELSIO_T1 is not set |
| @@ -705,6 +730,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 705 | # CONFIG_BNX2X is not set | 730 | # CONFIG_BNX2X is not set |
| 706 | # CONFIG_QLGE is not set | 731 | # CONFIG_QLGE is not set |
| 707 | # CONFIG_SFC is not set | 732 | # CONFIG_SFC is not set |
| 733 | # CONFIG_BE2NET is not set | ||
| 708 | # CONFIG_TR is not set | 734 | # CONFIG_TR is not set |
| 709 | 735 | ||
| 710 | # | 736 | # |
| @@ -712,7 +738,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 712 | # | 738 | # |
| 713 | # CONFIG_WLAN_PRE80211 is not set | 739 | # CONFIG_WLAN_PRE80211 is not set |
| 714 | # CONFIG_WLAN_80211 is not set | 740 | # CONFIG_WLAN_80211 is not set |
| 715 | # CONFIG_IWLWIFI_LEDS is not set | 741 | |
| 742 | # | ||
| 743 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 744 | # | ||
| 716 | # CONFIG_WAN is not set | 745 | # CONFIG_WAN is not set |
| 717 | # CONFIG_FDDI is not set | 746 | # CONFIG_FDDI is not set |
| 718 | # CONFIG_HIPPI is not set | 747 | # CONFIG_HIPPI is not set |
| @@ -800,6 +829,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 800 | CONFIG_LEGACY_PTY_COUNT=256 | 829 | CONFIG_LEGACY_PTY_COUNT=256 |
| 801 | # CONFIG_IPMI_HANDLER is not set | 830 | # CONFIG_IPMI_HANDLER is not set |
| 802 | CONFIG_HW_RANDOM=y | 831 | CONFIG_HW_RANDOM=y |
| 832 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 803 | # CONFIG_R3964 is not set | 833 | # CONFIG_R3964 is not set |
| 804 | # CONFIG_APPLICOM is not set | 834 | # CONFIG_APPLICOM is not set |
| 805 | # CONFIG_RAW_DRIVER is not set | 835 | # CONFIG_RAW_DRIVER is not set |
| @@ -862,12 +892,9 @@ CONFIG_I2C_HIGHLANDER=y | |||
| 862 | # Miscellaneous I2C Chip support | 892 | # Miscellaneous I2C Chip support |
| 863 | # | 893 | # |
| 864 | # CONFIG_DS1682 is not set | 894 | # CONFIG_DS1682 is not set |
| 865 | # CONFIG_EEPROM_AT24 is not set | ||
| 866 | # CONFIG_EEPROM_LEGACY is not set | ||
| 867 | # CONFIG_SENSORS_PCF8574 is not set | 895 | # CONFIG_SENSORS_PCF8574 is not set |
| 868 | # CONFIG_PCF8575 is not set | 896 | # CONFIG_PCF8575 is not set |
| 869 | # CONFIG_SENSORS_PCA9539 is not set | 897 | # CONFIG_SENSORS_PCA9539 is not set |
| 870 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 871 | # CONFIG_SENSORS_MAX6875 is not set | 898 | # CONFIG_SENSORS_MAX6875 is not set |
| 872 | # CONFIG_SENSORS_TSL2550 is not set | 899 | # CONFIG_SENSORS_TSL2550 is not set |
| 873 | # CONFIG_I2C_DEBUG_CORE is not set | 900 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -914,6 +941,7 @@ CONFIG_HWMON=y | |||
| 914 | # CONFIG_SENSORS_ADT7462 is not set | 941 | # CONFIG_SENSORS_ADT7462 is not set |
| 915 | # CONFIG_SENSORS_ADT7470 is not set | 942 | # CONFIG_SENSORS_ADT7470 is not set |
| 916 | # CONFIG_SENSORS_ADT7473 is not set | 943 | # CONFIG_SENSORS_ADT7473 is not set |
| 944 | # CONFIG_SENSORS_ADT7475 is not set | ||
| 917 | # CONFIG_SENSORS_ATXP1 is not set | 945 | # CONFIG_SENSORS_ATXP1 is not set |
| 918 | # CONFIG_SENSORS_DS1621 is not set | 946 | # CONFIG_SENSORS_DS1621 is not set |
| 919 | # CONFIG_SENSORS_I5K_AMB is not set | 947 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -934,10 +962,14 @@ CONFIG_HWMON=y | |||
| 934 | # CONFIG_SENSORS_LM90 is not set | 962 | # CONFIG_SENSORS_LM90 is not set |
| 935 | # CONFIG_SENSORS_LM92 is not set | 963 | # CONFIG_SENSORS_LM92 is not set |
| 936 | # CONFIG_SENSORS_LM93 is not set | 964 | # CONFIG_SENSORS_LM93 is not set |
| 965 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 966 | # CONFIG_SENSORS_LTC4245 is not set | ||
| 967 | # CONFIG_SENSORS_LM95241 is not set | ||
| 937 | # CONFIG_SENSORS_MAX1619 is not set | 968 | # CONFIG_SENSORS_MAX1619 is not set |
| 938 | # CONFIG_SENSORS_MAX6650 is not set | 969 | # CONFIG_SENSORS_MAX6650 is not set |
| 939 | # CONFIG_SENSORS_PC87360 is not set | 970 | # CONFIG_SENSORS_PC87360 is not set |
| 940 | # CONFIG_SENSORS_PC87427 is not set | 971 | # CONFIG_SENSORS_PC87427 is not set |
| 972 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 941 | # CONFIG_SENSORS_SIS5595 is not set | 973 | # CONFIG_SENSORS_SIS5595 is not set |
| 942 | # CONFIG_SENSORS_DME1737 is not set | 974 | # CONFIG_SENSORS_DME1737 is not set |
| 943 | # CONFIG_SENSORS_SMSC47M1 is not set | 975 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -979,6 +1011,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 979 | # CONFIG_PMIC_DA903X is not set | 1011 | # CONFIG_PMIC_DA903X is not set |
| 980 | # CONFIG_MFD_WM8400 is not set | 1012 | # CONFIG_MFD_WM8400 is not set |
| 981 | # CONFIG_MFD_WM8350_I2C is not set | 1013 | # CONFIG_MFD_WM8350_I2C is not set |
| 1014 | # CONFIG_MFD_PCF50633 is not set | ||
| 982 | # CONFIG_REGULATOR is not set | 1015 | # CONFIG_REGULATOR is not set |
| 983 | 1016 | ||
| 984 | # | 1017 | # |
| @@ -1055,6 +1088,7 @@ CONFIG_FB_SH_MOBILE_LCDC=m | |||
| 1055 | # CONFIG_FB_VIRTUAL is not set | 1088 | # CONFIG_FB_VIRTUAL is not set |
| 1056 | # CONFIG_FB_METRONOME is not set | 1089 | # CONFIG_FB_METRONOME is not set |
| 1057 | # CONFIG_FB_MB862XX is not set | 1090 | # CONFIG_FB_MB862XX is not set |
| 1091 | # CONFIG_FB_BROADSHEET is not set | ||
| 1058 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1092 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 1059 | 1093 | ||
| 1060 | # | 1094 | # |
| @@ -1089,9 +1123,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1089 | # | 1123 | # |
| 1090 | 1124 | ||
| 1091 | # | 1125 | # |
| 1092 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1126 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1093 | # | 1127 | # |
| 1094 | # CONFIG_USB_GADGET is not set | 1128 | # CONFIG_USB_GADGET is not set |
| 1129 | |||
| 1130 | # | ||
| 1131 | # OTG and related infrastructure | ||
| 1132 | # | ||
| 1095 | # CONFIG_UWB is not set | 1133 | # CONFIG_UWB is not set |
| 1096 | # CONFIG_MMC is not set | 1134 | # CONFIG_MMC is not set |
| 1097 | # CONFIG_MEMSTICK is not set | 1135 | # CONFIG_MEMSTICK is not set |
| @@ -1153,6 +1191,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1153 | # | 1191 | # |
| 1154 | CONFIG_RTC_DRV_SH=y | 1192 | CONFIG_RTC_DRV_SH=y |
| 1155 | # CONFIG_DMADEVICES is not set | 1193 | # CONFIG_DMADEVICES is not set |
| 1194 | # CONFIG_AUXDISPLAY is not set | ||
| 1156 | # CONFIG_UIO is not set | 1195 | # CONFIG_UIO is not set |
| 1157 | # CONFIG_STAGING is not set | 1196 | # CONFIG_STAGING is not set |
| 1158 | 1197 | ||
| @@ -1176,6 +1215,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1176 | CONFIG_FILE_LOCKING=y | 1215 | CONFIG_FILE_LOCKING=y |
| 1177 | # CONFIG_XFS_FS is not set | 1216 | # CONFIG_XFS_FS is not set |
| 1178 | # CONFIG_OCFS2_FS is not set | 1217 | # CONFIG_OCFS2_FS is not set |
| 1218 | # CONFIG_BTRFS_FS is not set | ||
| 1179 | CONFIG_DNOTIFY=y | 1219 | CONFIG_DNOTIFY=y |
| 1180 | CONFIG_INOTIFY=y | 1220 | CONFIG_INOTIFY=y |
| 1181 | CONFIG_INOTIFY_USER=y | 1221 | CONFIG_INOTIFY_USER=y |
| @@ -1224,6 +1264,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1224 | # CONFIG_BFS_FS is not set | 1264 | # CONFIG_BFS_FS is not set |
| 1225 | # CONFIG_EFS_FS is not set | 1265 | # CONFIG_EFS_FS is not set |
| 1226 | # CONFIG_CRAMFS is not set | 1266 | # CONFIG_CRAMFS is not set |
| 1267 | # CONFIG_SQUASHFS is not set | ||
| 1227 | # CONFIG_VXFS_FS is not set | 1268 | # CONFIG_VXFS_FS is not set |
| 1228 | CONFIG_MINIX_FS=y | 1269 | CONFIG_MINIX_FS=y |
| 1229 | # CONFIG_OMFS_FS is not set | 1270 | # CONFIG_OMFS_FS is not set |
| @@ -1248,7 +1289,6 @@ CONFIG_EXPORTFS=y | |||
| 1248 | CONFIG_NFS_COMMON=y | 1289 | CONFIG_NFS_COMMON=y |
| 1249 | CONFIG_SUNRPC=y | 1290 | CONFIG_SUNRPC=y |
| 1250 | CONFIG_SUNRPC_GSS=y | 1291 | CONFIG_SUNRPC_GSS=y |
| 1251 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1252 | CONFIG_RPCSEC_GSS_KRB5=y | 1292 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1253 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1293 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1254 | # CONFIG_SMB_FS is not set | 1294 | # CONFIG_SMB_FS is not set |
| @@ -1354,6 +1394,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1354 | # CONFIG_LKDTM is not set | 1394 | # CONFIG_LKDTM is not set |
| 1355 | # CONFIG_FAULT_INJECTION is not set | 1395 | # CONFIG_FAULT_INJECTION is not set |
| 1356 | # CONFIG_LATENCYTOP is not set | 1396 | # CONFIG_LATENCYTOP is not set |
| 1397 | # CONFIG_PAGE_POISONING is not set | ||
| 1357 | CONFIG_NOP_TRACER=y | 1398 | CONFIG_NOP_TRACER=y |
| 1358 | CONFIG_HAVE_FUNCTION_TRACER=y | 1399 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1359 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1400 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| @@ -1373,7 +1414,7 @@ CONFIG_TRACING=y | |||
| 1373 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1414 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1374 | # CONFIG_STACK_TRACER is not set | 1415 | # CONFIG_STACK_TRACER is not set |
| 1375 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1416 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1376 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1417 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1377 | # CONFIG_SAMPLES is not set | 1418 | # CONFIG_SAMPLES is not set |
| 1378 | CONFIG_HAVE_ARCH_KGDB=y | 1419 | CONFIG_HAVE_ARCH_KGDB=y |
| 1379 | # CONFIG_KGDB is not set | 1420 | # CONFIG_KGDB is not set |
| @@ -1410,10 +1451,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1410 | CONFIG_CRYPTO_HASH=y | 1451 | CONFIG_CRYPTO_HASH=y |
| 1411 | CONFIG_CRYPTO_HASH2=y | 1452 | CONFIG_CRYPTO_HASH2=y |
| 1412 | CONFIG_CRYPTO_RNG2=y | 1453 | CONFIG_CRYPTO_RNG2=y |
| 1454 | CONFIG_CRYPTO_PCOMP=y | ||
| 1413 | CONFIG_CRYPTO_MANAGER=y | 1455 | CONFIG_CRYPTO_MANAGER=y |
| 1414 | CONFIG_CRYPTO_MANAGER2=y | 1456 | CONFIG_CRYPTO_MANAGER2=y |
| 1415 | # CONFIG_CRYPTO_GF128MUL is not set | 1457 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1416 | # CONFIG_CRYPTO_NULL is not set | 1458 | # CONFIG_CRYPTO_NULL is not set |
| 1459 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1417 | # CONFIG_CRYPTO_CRYPTD is not set | 1460 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1418 | # CONFIG_CRYPTO_AUTHENC is not set | 1461 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1419 | # CONFIG_CRYPTO_TEST is not set | 1462 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1482,6 +1525,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1482 | # Compression | 1525 | # Compression |
| 1483 | # | 1526 | # |
| 1484 | # CONFIG_CRYPTO_DEFLATE is not set | 1527 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1528 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1485 | # CONFIG_CRYPTO_LZO is not set | 1529 | # CONFIG_CRYPTO_LZO is not set |
| 1486 | 1530 | ||
| 1487 | # | 1531 | # |
| @@ -1504,7 +1548,7 @@ CONFIG_CRC32=y | |||
| 1504 | # CONFIG_CRC7 is not set | 1548 | # CONFIG_CRC7 is not set |
| 1505 | # CONFIG_LIBCRC32C is not set | 1549 | # CONFIG_LIBCRC32C is not set |
| 1506 | CONFIG_AUDIT_GENERIC=y | 1550 | CONFIG_AUDIT_GENERIC=y |
| 1507 | CONFIG_PLIST=y | ||
| 1508 | CONFIG_HAS_IOMEM=y | 1551 | CONFIG_HAS_IOMEM=y |
| 1509 | CONFIG_HAS_IOPORT=y | 1552 | CONFIG_HAS_IOPORT=y |
| 1510 | CONFIG_HAS_DMA=y | 1553 | CONFIG_HAS_DMA=y |
| 1554 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/rsk7201_defconfig b/arch/sh/configs/rsk7201_defconfig index 64ee69eef47c..a037c744b798 100644 --- a/arch/sh/configs/rsk7201_defconfig +++ b/arch/sh/configs/rsk7201_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:19:04 2009 | 4 | # Thu Apr 2 18:29:08 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -24,6 +24,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -38,11 +39,20 @@ CONFIG_SYSVIPC=y | |||
| 38 | CONFIG_SYSVIPC_SYSCTL=y | 39 | CONFIG_SYSVIPC_SYSCTL=y |
| 39 | CONFIG_BSD_PROCESS_ACCT=y | 40 | CONFIG_BSD_PROCESS_ACCT=y |
| 40 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 42 | |||
| 43 | # | ||
| 44 | # RCU Subsystem | ||
| 45 | # | ||
| 46 | CONFIG_CLASSIC_RCU=y | ||
| 47 | # CONFIG_TREE_RCU is not set | ||
| 48 | # CONFIG_PREEMPT_RCU is not set | ||
| 49 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 50 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 41 | CONFIG_IKCONFIG=y | 51 | CONFIG_IKCONFIG=y |
| 42 | # CONFIG_IKCONFIG_PROC is not set | 52 | # CONFIG_IKCONFIG_PROC is not set |
| 43 | CONFIG_LOG_BUF_SHIFT=14 | 53 | CONFIG_LOG_BUF_SHIFT=14 |
| 44 | # CONFIG_CGROUPS is not set | ||
| 45 | # CONFIG_GROUP_SCHED is not set | 54 | # CONFIG_GROUP_SCHED is not set |
| 55 | # CONFIG_CGROUPS is not set | ||
| 46 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 56 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
| 47 | # CONFIG_RELAY is not set | 57 | # CONFIG_RELAY is not set |
| 48 | CONFIG_NAMESPACES=y | 58 | CONFIG_NAMESPACES=y |
| @@ -52,8 +62,13 @@ CONFIG_USER_NS=y | |||
| 52 | CONFIG_PID_NS=y | 62 | CONFIG_PID_NS=y |
| 53 | CONFIG_BLK_DEV_INITRD=y | 63 | CONFIG_BLK_DEV_INITRD=y |
| 54 | CONFIG_INITRAMFS_SOURCE="" | 64 | CONFIG_INITRAMFS_SOURCE="" |
| 65 | CONFIG_RD_GZIP=y | ||
| 66 | # CONFIG_RD_BZIP2 is not set | ||
| 67 | # CONFIG_RD_LZMA is not set | ||
| 68 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 55 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 69 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 56 | CONFIG_SYSCTL=y | 70 | CONFIG_SYSCTL=y |
| 71 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 72 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 73 | CONFIG_UID16=y |
| 59 | CONFIG_SYSCTL_SYSCALL=y | 74 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -63,16 +78,15 @@ CONFIG_HOTPLUG=y | |||
| 63 | CONFIG_PRINTK=y | 78 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 80 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 82 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 83 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 84 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 85 | CONFIG_TIMERFD=y |
| 73 | CONFIG_EVENTFD=y | 86 | CONFIG_EVENTFD=y |
| 74 | # CONFIG_AIO is not set | 87 | # CONFIG_AIO is not set |
| 75 | CONFIG_VM_EVENT_COUNTERS=y | 88 | CONFIG_VM_EVENT_COUNTERS=y |
| 89 | CONFIG_COMPAT_BRK=y | ||
| 76 | # CONFIG_SLAB is not set | 90 | # CONFIG_SLAB is not set |
| 77 | # CONFIG_SLUB is not set | 91 | # CONFIG_SLUB is not set |
| 78 | CONFIG_SLOB=y | 92 | CONFIG_SLOB=y |
| @@ -112,11 +126,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 112 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
| 113 | CONFIG_DEFAULT_NOOP=y | 127 | CONFIG_DEFAULT_NOOP=y |
| 114 | CONFIG_DEFAULT_IOSCHED="noop" | 128 | CONFIG_DEFAULT_IOSCHED="noop" |
| 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 | 129 | # CONFIG_FREEZER is not set |
| 121 | 130 | ||
| 122 | # | 131 | # |
| @@ -152,6 +161,7 @@ CONFIG_CPU_SUBTYPE_SH7201=y | |||
| 152 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 154 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 155 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 165 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 167 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -190,11 +200,11 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 190 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 200 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 191 | CONFIG_ZONE_DMA_FLAG=0 | 201 | CONFIG_ZONE_DMA_FLAG=0 |
| 192 | CONFIG_NR_QUICK=2 | 202 | CONFIG_NR_QUICK=2 |
| 203 | CONFIG_UNEVICTABLE_LRU=y | ||
| 193 | 204 | ||
| 194 | # | 205 | # |
| 195 | # Cache configuration | 206 | # Cache configuration |
| 196 | # | 207 | # |
| 197 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 198 | CONFIG_CACHE_WRITEBACK=y | 208 | CONFIG_CACHE_WRITEBACK=y |
| 199 | # CONFIG_CACHE_WRITETHROUGH is not set | 209 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 200 | # CONFIG_CACHE_OFF is not set | 210 | # CONFIG_CACHE_OFF is not set |
| @@ -217,7 +227,6 @@ CONFIG_SH_RSK7201=y | |||
| 217 | # | 227 | # |
| 218 | # Timer and clock configuration | 228 | # Timer and clock configuration |
| 219 | # | 229 | # |
| 220 | # CONFIG_SH_CMT is not set | ||
| 221 | CONFIG_SH_MTU2=y | 230 | CONFIG_SH_MTU2=y |
| 222 | CONFIG_SH_TIMER_IRQ=16 | 231 | CONFIG_SH_TIMER_IRQ=16 |
| 223 | CONFIG_SH_PCLK_FREQ=40000000 | 232 | CONFIG_SH_PCLK_FREQ=40000000 |
| @@ -251,7 +260,6 @@ CONFIG_SH_CLK_MD=0 | |||
| 251 | CONFIG_HZ_1000=y | 260 | CONFIG_HZ_1000=y |
| 252 | CONFIG_HZ=1000 | 261 | CONFIG_HZ=1000 |
| 253 | # CONFIG_SCHED_HRTICK is not set | 262 | # CONFIG_SCHED_HRTICK is not set |
| 254 | # CONFIG_KEXEC is not set | ||
| 255 | # CONFIG_CRASH_DUMP is not set | 263 | # CONFIG_CRASH_DUMP is not set |
| 256 | # CONFIG_SECCOMP is not set | 264 | # CONFIG_SECCOMP is not set |
| 257 | CONFIG_PREEMPT_NONE=y | 265 | CONFIG_PREEMPT_NONE=y |
| @@ -308,6 +316,7 @@ CONFIG_MTD=y | |||
| 308 | # CONFIG_MTD_DEBUG is not set | 316 | # CONFIG_MTD_DEBUG is not set |
| 309 | CONFIG_MTD_CONCAT=y | 317 | CONFIG_MTD_CONCAT=y |
| 310 | CONFIG_MTD_PARTITIONS=y | 318 | CONFIG_MTD_PARTITIONS=y |
| 319 | # CONFIG_MTD_TESTS is not set | ||
| 311 | CONFIG_MTD_REDBOOT_PARTS=y | 320 | CONFIG_MTD_REDBOOT_PARTS=y |
| 312 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 321 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
| 313 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | 322 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set |
| @@ -358,9 +367,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 358 | # | 367 | # |
| 359 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 368 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 360 | CONFIG_MTD_PHYSMAP=y | 369 | CONFIG_MTD_PHYSMAP=y |
| 361 | CONFIG_MTD_PHYSMAP_START=0x0 | 370 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 362 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
| 363 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
| 364 | # CONFIG_MTD_PLATRAM is not set | 371 | # CONFIG_MTD_PLATRAM is not set |
| 365 | 372 | ||
| 366 | # | 373 | # |
| @@ -381,6 +388,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | |||
| 381 | # CONFIG_MTD_ONENAND is not set | 388 | # CONFIG_MTD_ONENAND is not set |
| 382 | 389 | ||
| 383 | # | 390 | # |
| 391 | # LPDDR flash memory drivers | ||
| 392 | # | ||
| 393 | # CONFIG_MTD_LPDDR is not set | ||
| 394 | |||
| 395 | # | ||
| 384 | # UBI - Unsorted block images | 396 | # UBI - Unsorted block images |
| 385 | # | 397 | # |
| 386 | # CONFIG_MTD_UBI is not set | 398 | # CONFIG_MTD_UBI is not set |
| @@ -392,9 +404,13 @@ CONFIG_BLK_DEV=y | |||
| 392 | # CONFIG_CDROM_PKTCDVD is not set | 404 | # CONFIG_CDROM_PKTCDVD is not set |
| 393 | # CONFIG_BLK_DEV_HD is not set | 405 | # CONFIG_BLK_DEV_HD is not set |
| 394 | CONFIG_MISC_DEVICES=y | 406 | CONFIG_MISC_DEVICES=y |
| 395 | # CONFIG_EEPROM_93CX6 is not set | ||
| 396 | # CONFIG_ENCLOSURE_SERVICES is not set | 407 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 397 | # CONFIG_C2PORT is not set | 408 | # CONFIG_C2PORT is not set |
| 409 | |||
| 410 | # | ||
| 411 | # EEPROM support | ||
| 412 | # | ||
| 413 | # CONFIG_EEPROM_93CX6 is not set | ||
| 398 | CONFIG_HAVE_IDE=y | 414 | CONFIG_HAVE_IDE=y |
| 399 | # CONFIG_IDE is not set | 415 | # CONFIG_IDE is not set |
| 400 | 416 | ||
| @@ -562,6 +578,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 562 | # | 578 | # |
| 563 | CONFIG_RTC_DRV_SH=y | 579 | CONFIG_RTC_DRV_SH=y |
| 564 | # CONFIG_DMADEVICES is not set | 580 | # CONFIG_DMADEVICES is not set |
| 581 | # CONFIG_AUXDISPLAY is not set | ||
| 565 | # CONFIG_UIO is not set | 582 | # CONFIG_UIO is not set |
| 566 | # CONFIG_STAGING is not set | 583 | # CONFIG_STAGING is not set |
| 567 | 584 | ||
| @@ -577,6 +594,7 @@ CONFIG_EXT2_FS=y | |||
| 577 | # CONFIG_FS_POSIX_ACL is not set | 594 | # CONFIG_FS_POSIX_ACL is not set |
| 578 | # CONFIG_FILE_LOCKING is not set | 595 | # CONFIG_FILE_LOCKING is not set |
| 579 | # CONFIG_XFS_FS is not set | 596 | # CONFIG_XFS_FS is not set |
| 597 | # CONFIG_BTRFS_FS is not set | ||
| 580 | # CONFIG_DNOTIFY is not set | 598 | # CONFIG_DNOTIFY is not set |
| 581 | # CONFIG_INOTIFY is not set | 599 | # CONFIG_INOTIFY is not set |
| 582 | # CONFIG_QUOTA is not set | 600 | # CONFIG_QUOTA is not set |
| @@ -626,6 +644,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 626 | CONFIG_JFFS2_RTIME=y | 644 | CONFIG_JFFS2_RTIME=y |
| 627 | # CONFIG_JFFS2_RUBIN is not set | 645 | # CONFIG_JFFS2_RUBIN is not set |
| 628 | # CONFIG_CRAMFS is not set | 646 | # CONFIG_CRAMFS is not set |
| 647 | # CONFIG_SQUASHFS is not set | ||
| 629 | # CONFIG_VXFS_FS is not set | 648 | # CONFIG_VXFS_FS is not set |
| 630 | # CONFIG_MINIX_FS is not set | 649 | # CONFIG_MINIX_FS is not set |
| 631 | # CONFIG_OMFS_FS is not set | 650 | # CONFIG_OMFS_FS is not set |
| @@ -671,7 +690,7 @@ CONFIG_TRACING=y | |||
| 671 | # | 690 | # |
| 672 | # Tracers | 691 | # Tracers |
| 673 | # | 692 | # |
| 674 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 693 | # CONFIG_DYNAMIC_DEBUG is not set |
| 675 | # CONFIG_SAMPLES is not set | 694 | # CONFIG_SAMPLES is not set |
| 676 | CONFIG_HAVE_ARCH_KGDB=y | 695 | CONFIG_HAVE_ARCH_KGDB=y |
| 677 | # CONFIG_SH_STANDARD_BIOS is not set | 696 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -701,7 +720,7 @@ CONFIG_CRC32=y | |||
| 701 | # CONFIG_LIBCRC32C is not set | 720 | # CONFIG_LIBCRC32C is not set |
| 702 | CONFIG_ZLIB_INFLATE=y | 721 | CONFIG_ZLIB_INFLATE=y |
| 703 | CONFIG_ZLIB_DEFLATE=y | 722 | CONFIG_ZLIB_DEFLATE=y |
| 704 | CONFIG_PLIST=y | 723 | CONFIG_DECOMPRESS_GZIP=y |
| 705 | CONFIG_HAS_IOMEM=y | 724 | CONFIG_HAS_IOMEM=y |
| 706 | CONFIG_HAS_IOPORT=y | 725 | CONFIG_HAS_IOPORT=y |
| 707 | CONFIG_HAS_DMA=y | 726 | CONFIG_HAS_DMA=y |
diff --git a/arch/sh/configs/rsk7203_defconfig b/arch/sh/configs/rsk7203_defconfig index 8d7a5972a86a..9ae28e88426c 100644 --- a/arch/sh/configs/rsk7203_defconfig +++ b/arch/sh/configs/rsk7203_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:20:31 2009 | 4 | # Thu Apr 2 18:30:34 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -18,12 +18,14 @@ CONFIG_GENERIC_GPIO=y | |||
| 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set | 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set |
| 21 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| 29 | # | 31 | # |
| @@ -41,11 +43,20 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 42 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | CONFIG_IKCONFIG=y | 55 | CONFIG_IKCONFIG=y |
| 45 | # CONFIG_IKCONFIG_PROC is not set | 56 | # CONFIG_IKCONFIG_PROC is not set |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 57 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 60 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
| 50 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| 51 | CONFIG_NAMESPACES=y | 62 | CONFIG_NAMESPACES=y |
| @@ -53,31 +64,35 @@ CONFIG_UTS_NS=y | |||
| 53 | CONFIG_IPC_NS=y | 64 | CONFIG_IPC_NS=y |
| 54 | CONFIG_USER_NS=y | 65 | CONFIG_USER_NS=y |
| 55 | CONFIG_PID_NS=y | 66 | CONFIG_PID_NS=y |
| 67 | # CONFIG_NET_NS is not set | ||
| 56 | CONFIG_BLK_DEV_INITRD=y | 68 | CONFIG_BLK_DEV_INITRD=y |
| 57 | CONFIG_INITRAMFS_SOURCE="" | 69 | CONFIG_INITRAMFS_SOURCE="" |
| 70 | CONFIG_RD_GZIP=y | ||
| 71 | # CONFIG_RD_BZIP2 is not set | ||
| 72 | # CONFIG_RD_LZMA is not set | ||
| 73 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 58 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 74 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 59 | CONFIG_SYSCTL=y | 75 | CONFIG_SYSCTL=y |
| 76 | CONFIG_ANON_INODES=y | ||
| 60 | CONFIG_EMBEDDED=y | 77 | CONFIG_EMBEDDED=y |
| 61 | CONFIG_UID16=y | 78 | CONFIG_UID16=y |
| 62 | CONFIG_SYSCTL_SYSCALL=y | 79 | CONFIG_SYSCTL_SYSCALL=y |
| 63 | CONFIG_KALLSYMS=y | 80 | CONFIG_KALLSYMS=y |
| 64 | CONFIG_KALLSYMS_ALL=y | 81 | CONFIG_KALLSYMS_ALL=y |
| 65 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 66 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 82 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 67 | CONFIG_HOTPLUG=y | 83 | CONFIG_HOTPLUG=y |
| 68 | CONFIG_PRINTK=y | 84 | CONFIG_PRINTK=y |
| 69 | CONFIG_BUG=y | 85 | CONFIG_BUG=y |
| 70 | CONFIG_ELF_CORE=y | 86 | CONFIG_ELF_CORE=y |
| 71 | CONFIG_COMPAT_BRK=y | ||
| 72 | CONFIG_BASE_FULL=y | 87 | CONFIG_BASE_FULL=y |
| 73 | CONFIG_FUTEX=y | 88 | CONFIG_FUTEX=y |
| 74 | CONFIG_ANON_INODES=y | ||
| 75 | CONFIG_EPOLL=y | 89 | CONFIG_EPOLL=y |
| 76 | CONFIG_SIGNALFD=y | 90 | CONFIG_SIGNALFD=y |
| 77 | CONFIG_TIMERFD=y | 91 | CONFIG_TIMERFD=y |
| 78 | CONFIG_EVENTFD=y | 92 | CONFIG_EVENTFD=y |
| 79 | CONFIG_AIO=y | 93 | CONFIG_AIO=y |
| 80 | CONFIG_VM_EVENT_COUNTERS=y | 94 | CONFIG_VM_EVENT_COUNTERS=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 81 | # CONFIG_SLAB is not set | 96 | # CONFIG_SLAB is not set |
| 82 | # CONFIG_SLUB is not set | 97 | # CONFIG_SLUB is not set |
| 83 | CONFIG_SLOB=y | 98 | CONFIG_SLOB=y |
| @@ -117,11 +132,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 117 | # CONFIG_DEFAULT_CFQ is not set | 132 | # CONFIG_DEFAULT_CFQ is not set |
| 118 | CONFIG_DEFAULT_NOOP=y | 133 | CONFIG_DEFAULT_NOOP=y |
| 119 | CONFIG_DEFAULT_IOSCHED="noop" | 134 | CONFIG_DEFAULT_IOSCHED="noop" |
| 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 | 135 | # CONFIG_FREEZER is not set |
| 126 | 136 | ||
| 127 | # | 137 | # |
| @@ -157,6 +167,7 @@ CONFIG_CPU_SUBTYPE_SH7203=y | |||
| 157 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 167 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 170 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 160 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 171 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -195,11 +206,11 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 195 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 206 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 207 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 208 | CONFIG_NR_QUICK=2 |
| 209 | CONFIG_UNEVICTABLE_LRU=y | ||
| 198 | 210 | ||
| 199 | # | 211 | # |
| 200 | # Cache configuration | 212 | # Cache configuration |
| 201 | # | 213 | # |
| 202 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 203 | CONFIG_CACHE_WRITEBACK=y | 214 | CONFIG_CACHE_WRITEBACK=y |
| 204 | # CONFIG_CACHE_WRITETHROUGH is not set | 215 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 205 | # CONFIG_CACHE_OFF is not set | 216 | # CONFIG_CACHE_OFF is not set |
| @@ -271,7 +282,6 @@ CONFIG_HEARTBEAT=y | |||
| 271 | CONFIG_HZ_1000=y | 282 | CONFIG_HZ_1000=y |
| 272 | CONFIG_HZ=1000 | 283 | CONFIG_HZ=1000 |
| 273 | # CONFIG_SCHED_HRTICK is not set | 284 | # CONFIG_SCHED_HRTICK is not set |
| 274 | # CONFIG_KEXEC is not set | ||
| 275 | # CONFIG_CRASH_DUMP is not set | 285 | # CONFIG_CRASH_DUMP is not set |
| 276 | # CONFIG_SECCOMP is not set | 286 | # CONFIG_SECCOMP is not set |
| 277 | CONFIG_PREEMPT_NONE=y | 287 | CONFIG_PREEMPT_NONE=y |
| @@ -315,8 +325,6 @@ CONFIG_NET=y | |||
| 315 | # | 325 | # |
| 316 | # Networking options | 326 | # Networking options |
| 317 | # | 327 | # |
| 318 | # CONFIG_NET_NS is not set | ||
| 319 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 320 | # CONFIG_PACKET is not set | 328 | # CONFIG_PACKET is not set |
| 321 | # CONFIG_UNIX is not set | 329 | # CONFIG_UNIX is not set |
| 322 | # CONFIG_NET_KEY is not set | 330 | # CONFIG_NET_KEY is not set |
| @@ -364,6 +372,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 364 | # CONFIG_LAPB is not set | 372 | # CONFIG_LAPB is not set |
| 365 | # CONFIG_ECONET is not set | 373 | # CONFIG_ECONET is not set |
| 366 | # CONFIG_WAN_ROUTER is not set | 374 | # CONFIG_WAN_ROUTER is not set |
| 375 | # CONFIG_PHONET is not set | ||
| 367 | # CONFIG_NET_SCHED is not set | 376 | # CONFIG_NET_SCHED is not set |
| 368 | # CONFIG_DCB is not set | 377 | # CONFIG_DCB is not set |
| 369 | 378 | ||
| @@ -371,18 +380,19 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 371 | # Network testing | 380 | # Network testing |
| 372 | # | 381 | # |
| 373 | # CONFIG_NET_PKTGEN is not set | 382 | # CONFIG_NET_PKTGEN is not set |
| 383 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 374 | # CONFIG_HAMRADIO is not set | 384 | # CONFIG_HAMRADIO is not set |
| 375 | # CONFIG_CAN is not set | 385 | # CONFIG_CAN is not set |
| 376 | # CONFIG_IRDA is not set | 386 | # CONFIG_IRDA is not set |
| 377 | # CONFIG_BT is not set | 387 | # CONFIG_BT is not set |
| 378 | # CONFIG_AF_RXRPC is not set | 388 | # CONFIG_AF_RXRPC is not set |
| 379 | # CONFIG_PHONET is not set | ||
| 380 | CONFIG_WIRELESS=y | 389 | CONFIG_WIRELESS=y |
| 381 | # CONFIG_CFG80211 is not set | 390 | # CONFIG_CFG80211 is not set |
| 382 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 391 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 383 | # CONFIG_WIRELESS_EXT is not set | 392 | # CONFIG_WIRELESS_EXT is not set |
| 384 | # CONFIG_LIB80211 is not set | 393 | # CONFIG_LIB80211 is not set |
| 385 | # CONFIG_MAC80211 is not set | 394 | # CONFIG_MAC80211 is not set |
| 395 | # CONFIG_WIMAX is not set | ||
| 386 | # CONFIG_RFKILL is not set | 396 | # CONFIG_RFKILL is not set |
| 387 | # CONFIG_NET_9P is not set | 397 | # CONFIG_NET_9P is not set |
| 388 | 398 | ||
| @@ -405,6 +415,7 @@ CONFIG_MTD=y | |||
| 405 | # CONFIG_MTD_DEBUG is not set | 415 | # CONFIG_MTD_DEBUG is not set |
| 406 | CONFIG_MTD_CONCAT=y | 416 | CONFIG_MTD_CONCAT=y |
| 407 | CONFIG_MTD_PARTITIONS=y | 417 | CONFIG_MTD_PARTITIONS=y |
| 418 | # CONFIG_MTD_TESTS is not set | ||
| 408 | CONFIG_MTD_REDBOOT_PARTS=y | 419 | CONFIG_MTD_REDBOOT_PARTS=y |
| 409 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 420 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
| 410 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | 421 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set |
| @@ -455,9 +466,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 455 | # | 466 | # |
| 456 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 467 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 457 | CONFIG_MTD_PHYSMAP=y | 468 | CONFIG_MTD_PHYSMAP=y |
| 458 | CONFIG_MTD_PHYSMAP_START=0x0 | 469 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 459 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
| 460 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
| 461 | # CONFIG_MTD_PLATRAM is not set | 470 | # CONFIG_MTD_PLATRAM is not set |
| 462 | 471 | ||
| 463 | # | 472 | # |
| @@ -478,6 +487,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | |||
| 478 | # CONFIG_MTD_ONENAND is not set | 487 | # CONFIG_MTD_ONENAND is not set |
| 479 | 488 | ||
| 480 | # | 489 | # |
| 490 | # LPDDR flash memory drivers | ||
| 491 | # | ||
| 492 | # CONFIG_MTD_LPDDR is not set | ||
| 493 | |||
| 494 | # | ||
| 481 | # UBI - Unsorted block images | 495 | # UBI - Unsorted block images |
| 482 | # | 496 | # |
| 483 | # CONFIG_MTD_UBI is not set | 497 | # CONFIG_MTD_UBI is not set |
| @@ -492,9 +506,13 @@ CONFIG_BLK_DEV=y | |||
| 492 | # CONFIG_ATA_OVER_ETH is not set | 506 | # CONFIG_ATA_OVER_ETH is not set |
| 493 | # CONFIG_BLK_DEV_HD is not set | 507 | # CONFIG_BLK_DEV_HD is not set |
| 494 | CONFIG_MISC_DEVICES=y | 508 | CONFIG_MISC_DEVICES=y |
| 495 | # CONFIG_EEPROM_93CX6 is not set | ||
| 496 | # CONFIG_ENCLOSURE_SERVICES is not set | 509 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 497 | # CONFIG_C2PORT is not set | 510 | # CONFIG_C2PORT is not set |
| 511 | |||
| 512 | # | ||
| 513 | # EEPROM support | ||
| 514 | # | ||
| 515 | # CONFIG_EEPROM_93CX6 is not set | ||
| 498 | CONFIG_HAVE_IDE=y | 516 | CONFIG_HAVE_IDE=y |
| 499 | # CONFIG_IDE is not set | 517 | # CONFIG_IDE is not set |
| 500 | 518 | ||
| @@ -508,6 +526,7 @@ CONFIG_HAVE_IDE=y | |||
| 508 | # CONFIG_ATA is not set | 526 | # CONFIG_ATA is not set |
| 509 | # CONFIG_MD is not set | 527 | # CONFIG_MD is not set |
| 510 | CONFIG_NETDEVICES=y | 528 | CONFIG_NETDEVICES=y |
| 529 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 511 | # CONFIG_DUMMY is not set | 530 | # CONFIG_DUMMY is not set |
| 512 | # CONFIG_BONDING is not set | 531 | # CONFIG_BONDING is not set |
| 513 | # CONFIG_MACVLAN is not set | 532 | # CONFIG_MACVLAN is not set |
| @@ -539,8 +558,10 @@ CONFIG_MII=y | |||
| 539 | # CONFIG_AX88796 is not set | 558 | # CONFIG_AX88796 is not set |
| 540 | # CONFIG_STNIC is not set | 559 | # CONFIG_STNIC is not set |
| 541 | # CONFIG_SMC91X is not set | 560 | # CONFIG_SMC91X is not set |
| 561 | # CONFIG_ETHOC is not set | ||
| 542 | # CONFIG_SMC911X is not set | 562 | # CONFIG_SMC911X is not set |
| 543 | CONFIG_SMSC911X=y | 563 | CONFIG_SMSC911X=y |
| 564 | # CONFIG_DNET is not set | ||
| 544 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 565 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 545 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 566 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 546 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 567 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -557,7 +578,10 @@ CONFIG_SMSC911X=y | |||
| 557 | # | 578 | # |
| 558 | # CONFIG_WLAN_PRE80211 is not set | 579 | # CONFIG_WLAN_PRE80211 is not set |
| 559 | # CONFIG_WLAN_80211 is not set | 580 | # CONFIG_WLAN_80211 is not set |
| 560 | # CONFIG_IWLWIFI_LEDS is not set | 581 | |
| 582 | # | ||
| 583 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 584 | # | ||
| 561 | 585 | ||
| 562 | # | 586 | # |
| 563 | # USB Network Adapters | 587 | # USB Network Adapters |
| @@ -777,7 +801,9 @@ CONFIG_USB_MON=y | |||
| 777 | # USB Host Controller Drivers | 801 | # USB Host Controller Drivers |
| 778 | # | 802 | # |
| 779 | # CONFIG_USB_C67X00_HCD is not set | 803 | # CONFIG_USB_C67X00_HCD is not set |
| 804 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 780 | # CONFIG_USB_ISP116X_HCD is not set | 805 | # CONFIG_USB_ISP116X_HCD is not set |
| 806 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 781 | # CONFIG_USB_SL811_HCD is not set | 807 | # CONFIG_USB_SL811_HCD is not set |
| 782 | CONFIG_USB_R8A66597_HCD=y | 808 | CONFIG_USB_R8A66597_HCD=y |
| 783 | # CONFIG_USB_HWA_HCD is not set | 809 | # CONFIG_USB_HWA_HCD is not set |
| @@ -791,11 +817,11 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 791 | # CONFIG_USB_TMC is not set | 817 | # CONFIG_USB_TMC is not set |
| 792 | 818 | ||
| 793 | # | 819 | # |
| 794 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 820 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 795 | # | 821 | # |
| 796 | 822 | ||
| 797 | # | 823 | # |
| 798 | # see USB_STORAGE Help for more information | 824 | # also be needed; see USB_STORAGE Help for more info |
| 799 | # | 825 | # |
| 800 | # CONFIG_USB_LIBUSUAL is not set | 826 | # CONFIG_USB_LIBUSUAL is not set |
| 801 | 827 | ||
| @@ -823,7 +849,6 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 823 | # CONFIG_USB_LED is not set | 849 | # CONFIG_USB_LED is not set |
| 824 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 850 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 825 | # CONFIG_USB_CYTHERM is not set | 851 | # CONFIG_USB_CYTHERM is not set |
| 826 | # CONFIG_USB_PHIDGET is not set | ||
| 827 | # CONFIG_USB_IDMOUSE is not set | 852 | # CONFIG_USB_IDMOUSE is not set |
| 828 | # CONFIG_USB_FTDI_ELAN is not set | 853 | # CONFIG_USB_FTDI_ELAN is not set |
| 829 | # CONFIG_USB_APPLEDISPLAY is not set | 854 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -834,6 +859,12 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 834 | # CONFIG_USB_ISIGHTFW is not set | 859 | # CONFIG_USB_ISIGHTFW is not set |
| 835 | # CONFIG_USB_VST is not set | 860 | # CONFIG_USB_VST is not set |
| 836 | # CONFIG_USB_GADGET is not set | 861 | # CONFIG_USB_GADGET is not set |
| 862 | |||
| 863 | # | ||
| 864 | # OTG and related infrastructure | ||
| 865 | # | ||
| 866 | # CONFIG_USB_GPIO_VBUS is not set | ||
| 867 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 837 | # CONFIG_MMC is not set | 868 | # CONFIG_MMC is not set |
| 838 | # CONFIG_MEMSTICK is not set | 869 | # CONFIG_MEMSTICK is not set |
| 839 | CONFIG_NEW_LEDS=y | 870 | CONFIG_NEW_LEDS=y |
| @@ -852,6 +883,10 @@ CONFIG_LEDS_TRIGGER_TIMER=y | |||
| 852 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | 883 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y |
| 853 | CONFIG_LEDS_TRIGGER_BACKLIGHT=y | 884 | CONFIG_LEDS_TRIGGER_BACKLIGHT=y |
| 854 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y | 885 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y |
| 886 | |||
| 887 | # | ||
| 888 | # iptables trigger is under Netfilter config (LED target) | ||
| 889 | # | ||
| 855 | # CONFIG_ACCESSIBILITY is not set | 890 | # CONFIG_ACCESSIBILITY is not set |
| 856 | CONFIG_RTC_LIB=y | 891 | CONFIG_RTC_LIB=y |
| 857 | CONFIG_RTC_CLASS=y | 892 | CONFIG_RTC_CLASS=y |
| @@ -891,6 +926,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 891 | # | 926 | # |
| 892 | CONFIG_RTC_DRV_SH=y | 927 | CONFIG_RTC_DRV_SH=y |
| 893 | # CONFIG_DMADEVICES is not set | 928 | # CONFIG_DMADEVICES is not set |
| 929 | # CONFIG_AUXDISPLAY is not set | ||
| 894 | # CONFIG_UIO is not set | 930 | # CONFIG_UIO is not set |
| 895 | # CONFIG_STAGING is not set | 931 | # CONFIG_STAGING is not set |
| 896 | 932 | ||
| @@ -906,6 +942,7 @@ CONFIG_RTC_DRV_SH=y | |||
| 906 | CONFIG_FILE_LOCKING=y | 942 | CONFIG_FILE_LOCKING=y |
| 907 | # CONFIG_XFS_FS is not set | 943 | # CONFIG_XFS_FS is not set |
| 908 | # CONFIG_OCFS2_FS is not set | 944 | # CONFIG_OCFS2_FS is not set |
| 945 | # CONFIG_BTRFS_FS is not set | ||
| 909 | # CONFIG_DNOTIFY is not set | 946 | # CONFIG_DNOTIFY is not set |
| 910 | # CONFIG_INOTIFY is not set | 947 | # CONFIG_INOTIFY is not set |
| 911 | # CONFIG_QUOTA is not set | 948 | # CONFIG_QUOTA is not set |
| @@ -945,6 +982,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 945 | # CONFIG_EFS_FS is not set | 982 | # CONFIG_EFS_FS is not set |
| 946 | # CONFIG_JFFS2_FS is not set | 983 | # CONFIG_JFFS2_FS is not set |
| 947 | # CONFIG_CRAMFS is not set | 984 | # CONFIG_CRAMFS is not set |
| 985 | # CONFIG_SQUASHFS is not set | ||
| 948 | # CONFIG_VXFS_FS is not set | 986 | # CONFIG_VXFS_FS is not set |
| 949 | # CONFIG_MINIX_FS is not set | 987 | # CONFIG_MINIX_FS is not set |
| 950 | # CONFIG_OMFS_FS is not set | 988 | # CONFIG_OMFS_FS is not set |
| @@ -962,7 +1000,6 @@ CONFIG_ROOT_NFS=y | |||
| 962 | CONFIG_LOCKD=y | 1000 | CONFIG_LOCKD=y |
| 963 | CONFIG_NFS_COMMON=y | 1001 | CONFIG_NFS_COMMON=y |
| 964 | CONFIG_SUNRPC=y | 1002 | CONFIG_SUNRPC=y |
| 965 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 966 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1003 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 967 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1004 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 968 | # CONFIG_SMB_FS is not set | 1005 | # CONFIG_SMB_FS is not set |
| @@ -1018,6 +1055,7 @@ CONFIG_STACKTRACE=y | |||
| 1018 | CONFIG_DEBUG_BUGVERBOSE=y | 1055 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1019 | CONFIG_DEBUG_INFO=y | 1056 | CONFIG_DEBUG_INFO=y |
| 1020 | CONFIG_DEBUG_VM=y | 1057 | CONFIG_DEBUG_VM=y |
| 1058 | # CONFIG_DEBUG_NOMMU_REGIONS is not set | ||
| 1021 | CONFIG_DEBUG_WRITECOUNT=y | 1059 | CONFIG_DEBUG_WRITECOUNT=y |
| 1022 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1060 | # CONFIG_DEBUG_MEMORY_INIT is not set |
| 1023 | CONFIG_DEBUG_LIST=y | 1061 | CONFIG_DEBUG_LIST=y |
| @@ -1031,6 +1069,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1031 | # CONFIG_FAULT_INJECTION is not set | 1069 | # CONFIG_FAULT_INJECTION is not set |
| 1032 | # CONFIG_LATENCYTOP is not set | 1070 | # CONFIG_LATENCYTOP is not set |
| 1033 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1071 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1072 | # CONFIG_PAGE_POISONING is not set | ||
| 1034 | CONFIG_NOP_TRACER=y | 1073 | CONFIG_NOP_TRACER=y |
| 1035 | CONFIG_HAVE_FUNCTION_TRACER=y | 1074 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1036 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1075 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| @@ -1048,7 +1087,7 @@ CONFIG_TRACING=y | |||
| 1048 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1087 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1049 | # CONFIG_STACK_TRACER is not set | 1088 | # CONFIG_STACK_TRACER is not set |
| 1050 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1089 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1051 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1090 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1052 | # CONFIG_SAMPLES is not set | 1091 | # CONFIG_SAMPLES is not set |
| 1053 | CONFIG_HAVE_ARCH_KGDB=y | 1092 | CONFIG_HAVE_ARCH_KGDB=y |
| 1054 | # CONFIG_KGDB is not set | 1093 | # CONFIG_KGDB is not set |
| @@ -1086,7 +1125,8 @@ CONFIG_CRC32=y | |||
| 1086 | # CONFIG_CRC7 is not set | 1125 | # CONFIG_CRC7 is not set |
| 1087 | # CONFIG_LIBCRC32C is not set | 1126 | # CONFIG_LIBCRC32C is not set |
| 1088 | CONFIG_ZLIB_INFLATE=y | 1127 | CONFIG_ZLIB_INFLATE=y |
| 1089 | CONFIG_PLIST=y | 1128 | CONFIG_DECOMPRESS_GZIP=y |
| 1090 | CONFIG_HAS_IOMEM=y | 1129 | CONFIG_HAS_IOMEM=y |
| 1091 | CONFIG_HAS_IOPORT=y | 1130 | CONFIG_HAS_IOPORT=y |
| 1092 | CONFIG_HAS_DMA=y | 1131 | CONFIG_HAS_DMA=y |
| 1132 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/rts7751r2d1_defconfig b/arch/sh/configs/rts7751r2d1_defconfig index d6680f4382c2..c0f741af6da8 100644 --- a/arch/sh/configs/rts7751r2d1_defconfig +++ b/arch/sh/configs/rts7751r2d1_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:23:15 2009 | 4 | # Thu Apr 2 18:33:25 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_IO_TRAPPED=y | 29 | CONFIG_IO_TRAPPED=y |
| 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 30 | 31 | ||
| @@ -43,10 +44,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 43 | # CONFIG_BSD_PROCESS_ACCT is not set | 44 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 44 | # CONFIG_TASKSTATS is not set | 45 | # CONFIG_TASKSTATS is not set |
| 45 | # CONFIG_AUDIT is not set | 46 | # CONFIG_AUDIT is not set |
| 47 | |||
| 48 | # | ||
| 49 | # RCU Subsystem | ||
| 50 | # | ||
| 51 | CONFIG_CLASSIC_RCU=y | ||
| 52 | # CONFIG_TREE_RCU is not set | ||
| 53 | # CONFIG_PREEMPT_RCU is not set | ||
| 54 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 55 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | 56 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 57 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 60 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 61 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | # CONFIG_RELAY is not set | 62 | # CONFIG_RELAY is not set |
| @@ -54,6 +64,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 54 | # CONFIG_BLK_DEV_INITRD is not set | 64 | # CONFIG_BLK_DEV_INITRD is not set |
| 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 65 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 56 | CONFIG_SYSCTL=y | 66 | CONFIG_SYSCTL=y |
| 67 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 68 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 69 | CONFIG_UID16=y |
| 59 | # CONFIG_SYSCTL_SYSCALL is not set | 70 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -63,10 +74,8 @@ CONFIG_HOTPLUG=y | |||
| 63 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -75,6 +84,7 @@ CONFIG_SHMEM=y | |||
| 75 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 77 | CONFIG_PCI_QUIRKS=y | 86 | CONFIG_PCI_QUIRKS=y |
| 87 | CONFIG_COMPAT_BRK=y | ||
| 78 | CONFIG_SLAB=y | 88 | CONFIG_SLAB=y |
| 79 | # CONFIG_SLUB is not set | 89 | # CONFIG_SLUB is not set |
| 80 | # CONFIG_SLOB is not set | 90 | # CONFIG_SLOB is not set |
| @@ -116,11 +126,6 @@ CONFIG_DEFAULT_AS=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
| 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 128 | 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 | 129 | # CONFIG_FREEZER is not set |
| 125 | 130 | ||
| 126 | # | 131 | # |
| @@ -155,6 +160,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 164 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +202,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 202 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 203 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 204 | CONFIG_UNEVICTABLE_LRU=y |
| 205 | CONFIG_HAVE_MLOCK=y | ||
| 206 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 207 | ||
| 200 | # | 208 | # |
| 201 | # Cache configuration | 209 | # Cache configuration |
| 202 | # | 210 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 211 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 212 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 213 | # CONFIG_CACHE_OFF is not set |
| @@ -300,6 +307,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 300 | # CONFIG_PCIEPORTBUS is not set | 307 | # CONFIG_PCIEPORTBUS is not set |
| 301 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 308 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 302 | CONFIG_PCI_LEGACY=y | 309 | CONFIG_PCI_LEGACY=y |
| 310 | # CONFIG_PCI_STUB is not set | ||
| 311 | # CONFIG_PCI_IOV is not set | ||
| 303 | # CONFIG_PCCARD is not set | 312 | # CONFIG_PCCARD is not set |
| 304 | CONFIG_HOTPLUG_PCI=y | 313 | CONFIG_HOTPLUG_PCI=y |
| 305 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 314 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
| @@ -324,7 +333,6 @@ CONFIG_NET=y | |||
| 324 | # | 333 | # |
| 325 | # Networking options | 334 | # Networking options |
| 326 | # | 335 | # |
| 327 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 328 | CONFIG_PACKET=y | 336 | CONFIG_PACKET=y |
| 329 | # CONFIG_PACKET_MMAP is not set | 337 | # CONFIG_PACKET_MMAP is not set |
| 330 | CONFIG_UNIX=y | 338 | CONFIG_UNIX=y |
| @@ -376,6 +384,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 376 | # CONFIG_LAPB is not set | 384 | # CONFIG_LAPB is not set |
| 377 | # CONFIG_ECONET is not set | 385 | # CONFIG_ECONET is not set |
| 378 | # CONFIG_WAN_ROUTER is not set | 386 | # CONFIG_WAN_ROUTER is not set |
| 387 | # CONFIG_PHONET is not set | ||
| 379 | # CONFIG_NET_SCHED is not set | 388 | # CONFIG_NET_SCHED is not set |
| 380 | # CONFIG_DCB is not set | 389 | # CONFIG_DCB is not set |
| 381 | 390 | ||
| @@ -383,12 +392,12 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 383 | # Network testing | 392 | # Network testing |
| 384 | # | 393 | # |
| 385 | # CONFIG_NET_PKTGEN is not set | 394 | # CONFIG_NET_PKTGEN is not set |
| 395 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 386 | # CONFIG_HAMRADIO is not set | 396 | # CONFIG_HAMRADIO is not set |
| 387 | # CONFIG_CAN is not set | 397 | # CONFIG_CAN is not set |
| 388 | # CONFIG_IRDA is not set | 398 | # CONFIG_IRDA is not set |
| 389 | # CONFIG_BT is not set | 399 | # CONFIG_BT is not set |
| 390 | # CONFIG_AF_RXRPC is not set | 400 | # CONFIG_AF_RXRPC is not set |
| 391 | # CONFIG_PHONET is not set | ||
| 392 | CONFIG_WIRELESS=y | 401 | CONFIG_WIRELESS=y |
| 393 | # CONFIG_CFG80211 is not set | 402 | # CONFIG_CFG80211 is not set |
| 394 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 403 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -396,6 +405,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 396 | CONFIG_WIRELESS_EXT_SYSFS=y | 405 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 397 | # CONFIG_LIB80211 is not set | 406 | # CONFIG_LIB80211 is not set |
| 398 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
| 408 | # CONFIG_WIMAX is not set | ||
| 399 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
| 400 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
| 401 | 411 | ||
| @@ -434,12 +444,17 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 434 | # CONFIG_BLK_DEV_HD is not set | 444 | # CONFIG_BLK_DEV_HD is not set |
| 435 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
| 436 | # CONFIG_PHANTOM is not set | 446 | # CONFIG_PHANTOM is not set |
| 437 | # CONFIG_EEPROM_93CX6 is not set | ||
| 438 | # CONFIG_SGI_IOC4 is not set | 447 | # CONFIG_SGI_IOC4 is not set |
| 439 | # CONFIG_TIFM_CORE is not set | 448 | # CONFIG_TIFM_CORE is not set |
| 440 | # CONFIG_ENCLOSURE_SERVICES is not set | 449 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 441 | # CONFIG_HP_ILO is not set | 450 | # CONFIG_HP_ILO is not set |
| 442 | # CONFIG_C2PORT is not set | 451 | # CONFIG_C2PORT is not set |
| 452 | |||
| 453 | # | ||
| 454 | # EEPROM support | ||
| 455 | # | ||
| 456 | # CONFIG_EEPROM_AT25 is not set | ||
| 457 | # CONFIG_EEPROM_93CX6 is not set | ||
| 443 | CONFIG_HAVE_IDE=y | 458 | CONFIG_HAVE_IDE=y |
| 444 | # CONFIG_IDE is not set | 459 | # CONFIG_IDE is not set |
| 445 | 460 | ||
| @@ -495,6 +510,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 495 | # CONFIG_MEGARAID_NEWGEN is not set | 510 | # CONFIG_MEGARAID_NEWGEN is not set |
| 496 | # CONFIG_MEGARAID_LEGACY is not set | 511 | # CONFIG_MEGARAID_LEGACY is not set |
| 497 | # CONFIG_MEGARAID_SAS is not set | 512 | # CONFIG_MEGARAID_SAS is not set |
| 513 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 498 | # CONFIG_SCSI_HPTIOP is not set | 514 | # CONFIG_SCSI_HPTIOP is not set |
| 499 | # CONFIG_LIBFC is not set | 515 | # CONFIG_LIBFC is not set |
| 500 | # CONFIG_FCOE is not set | 516 | # CONFIG_FCOE is not set |
| @@ -517,6 +533,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 517 | # CONFIG_SCSI_DEBUG is not set | 533 | # CONFIG_SCSI_DEBUG is not set |
| 518 | # CONFIG_SCSI_SRP is not set | 534 | # CONFIG_SCSI_SRP is not set |
| 519 | # CONFIG_SCSI_DH is not set | 535 | # CONFIG_SCSI_DH is not set |
| 536 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 520 | CONFIG_ATA=y | 537 | CONFIG_ATA=y |
| 521 | # CONFIG_ATA_NONSTANDARD is not set | 538 | # CONFIG_ATA_NONSTANDARD is not set |
| 522 | CONFIG_SATA_PMP=y | 539 | CONFIG_SATA_PMP=y |
| @@ -591,6 +608,7 @@ CONFIG_PATA_PLATFORM=y | |||
| 591 | # CONFIG_IEEE1394 is not set | 608 | # CONFIG_IEEE1394 is not set |
| 592 | # CONFIG_I2O is not set | 609 | # CONFIG_I2O is not set |
| 593 | CONFIG_NETDEVICES=y | 610 | CONFIG_NETDEVICES=y |
| 611 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 594 | # CONFIG_DUMMY is not set | 612 | # CONFIG_DUMMY is not set |
| 595 | # CONFIG_BONDING is not set | 613 | # CONFIG_BONDING is not set |
| 596 | # CONFIG_MACVLAN is not set | 614 | # CONFIG_MACVLAN is not set |
| @@ -609,8 +627,10 @@ CONFIG_MII=y | |||
| 609 | # CONFIG_NET_VENDOR_3COM is not set | 627 | # CONFIG_NET_VENDOR_3COM is not set |
| 610 | # CONFIG_SMC91X is not set | 628 | # CONFIG_SMC91X is not set |
| 611 | # CONFIG_ENC28J60 is not set | 629 | # CONFIG_ENC28J60 is not set |
| 630 | # CONFIG_ETHOC is not set | ||
| 612 | # CONFIG_SMC911X is not set | 631 | # CONFIG_SMC911X is not set |
| 613 | # CONFIG_SMSC911X is not set | 632 | # CONFIG_SMSC911X is not set |
| 633 | # CONFIG_DNET is not set | ||
| 614 | # CONFIG_NET_TULIP is not set | 634 | # CONFIG_NET_TULIP is not set |
| 615 | # CONFIG_HP100 is not set | 635 | # CONFIG_HP100 is not set |
| 616 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 636 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -665,6 +685,7 @@ CONFIG_NETDEV_1000=y | |||
| 665 | # CONFIG_QLA3XXX is not set | 685 | # CONFIG_QLA3XXX is not set |
| 666 | # CONFIG_ATL1 is not set | 686 | # CONFIG_ATL1 is not set |
| 667 | # CONFIG_ATL1E is not set | 687 | # CONFIG_ATL1E is not set |
| 688 | # CONFIG_ATL1C is not set | ||
| 668 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
| 669 | CONFIG_NETDEV_10000=y | 690 | CONFIG_NETDEV_10000=y |
| 670 | # CONFIG_CHELSIO_T1 is not set | 691 | # CONFIG_CHELSIO_T1 is not set |
| @@ -683,6 +704,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 683 | # CONFIG_BNX2X is not set | 704 | # CONFIG_BNX2X is not set |
| 684 | # CONFIG_QLGE is not set | 705 | # CONFIG_QLGE is not set |
| 685 | # CONFIG_SFC is not set | 706 | # CONFIG_SFC is not set |
| 707 | # CONFIG_BE2NET is not set | ||
| 686 | # CONFIG_TR is not set | 708 | # CONFIG_TR is not set |
| 687 | 709 | ||
| 688 | # | 710 | # |
| @@ -690,7 +712,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 690 | # | 712 | # |
| 691 | # CONFIG_WLAN_PRE80211 is not set | 713 | # CONFIG_WLAN_PRE80211 is not set |
| 692 | # CONFIG_WLAN_80211 is not set | 714 | # CONFIG_WLAN_80211 is not set |
| 693 | # CONFIG_IWLWIFI_LEDS is not set | 715 | |
| 716 | # | ||
| 717 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 718 | # | ||
| 694 | 719 | ||
| 695 | # | 720 | # |
| 696 | # USB Network Adapters | 721 | # USB Network Adapters |
| @@ -780,6 +805,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 780 | CONFIG_LEGACY_PTY_COUNT=256 | 805 | CONFIG_LEGACY_PTY_COUNT=256 |
| 781 | # CONFIG_IPMI_HANDLER is not set | 806 | # CONFIG_IPMI_HANDLER is not set |
| 782 | CONFIG_HW_RANDOM=y | 807 | CONFIG_HW_RANDOM=y |
| 808 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 783 | # CONFIG_R3964 is not set | 809 | # CONFIG_R3964 is not set |
| 784 | # CONFIG_APPLICOM is not set | 810 | # CONFIG_APPLICOM is not set |
| 785 | # CONFIG_RAW_DRIVER is not set | 811 | # CONFIG_RAW_DRIVER is not set |
| @@ -798,7 +824,6 @@ CONFIG_SPI_SH_SCI=y | |||
| 798 | # | 824 | # |
| 799 | # SPI Protocol Masters | 825 | # SPI Protocol Masters |
| 800 | # | 826 | # |
| 801 | # CONFIG_EEPROM_AT25 is not set | ||
| 802 | # CONFIG_SPI_SPIDEV is not set | 827 | # CONFIG_SPI_SPIDEV is not set |
| 803 | # CONFIG_SPI_TLE62X0 is not set | 828 | # CONFIG_SPI_TLE62X0 is not set |
| 804 | # CONFIG_W1 is not set | 829 | # CONFIG_W1 is not set |
| @@ -822,6 +847,7 @@ CONFIG_HWMON=y | |||
| 822 | # CONFIG_SENSORS_VT8231 is not set | 847 | # CONFIG_SENSORS_VT8231 is not set |
| 823 | # CONFIG_SENSORS_W83627HF is not set | 848 | # CONFIG_SENSORS_W83627HF is not set |
| 824 | # CONFIG_SENSORS_W83627EHF is not set | 849 | # CONFIG_SENSORS_W83627EHF is not set |
| 850 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 825 | # CONFIG_HWMON_DEBUG_CHIP is not set | 851 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 826 | # CONFIG_THERMAL is not set | 852 | # CONFIG_THERMAL is not set |
| 827 | # CONFIG_THERMAL_HWMON is not set | 853 | # CONFIG_THERMAL_HWMON is not set |
| @@ -918,6 +944,7 @@ CONFIG_FB_SM501=y | |||
| 918 | # CONFIG_FB_VIRTUAL is not set | 944 | # CONFIG_FB_VIRTUAL is not set |
| 919 | # CONFIG_FB_METRONOME is not set | 945 | # CONFIG_FB_METRONOME is not set |
| 920 | # CONFIG_FB_MB862XX is not set | 946 | # CONFIG_FB_MB862XX is not set |
| 947 | # CONFIG_FB_BROADSHEET is not set | ||
| 921 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 948 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 922 | 949 | ||
| 923 | # | 950 | # |
| @@ -996,6 +1023,8 @@ CONFIG_SND_PCI=y | |||
| 996 | # CONFIG_SND_INDIGO is not set | 1023 | # CONFIG_SND_INDIGO is not set |
| 997 | # CONFIG_SND_INDIGOIO is not set | 1024 | # CONFIG_SND_INDIGOIO is not set |
| 998 | # CONFIG_SND_INDIGODJ is not set | 1025 | # CONFIG_SND_INDIGODJ is not set |
| 1026 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1027 | # CONFIG_SND_INDIGODJX is not set | ||
| 999 | # CONFIG_SND_EMU10K1 is not set | 1028 | # CONFIG_SND_EMU10K1 is not set |
| 1000 | # CONFIG_SND_EMU10K1X is not set | 1029 | # CONFIG_SND_EMU10K1X is not set |
| 1001 | # CONFIG_SND_ENS1370 is not set | 1030 | # CONFIG_SND_ENS1370 is not set |
| @@ -1101,6 +1130,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1101 | # | 1130 | # |
| 1102 | # CONFIG_USB_C67X00_HCD is not set | 1131 | # CONFIG_USB_C67X00_HCD is not set |
| 1103 | # CONFIG_USB_EHCI_HCD is not set | 1132 | # CONFIG_USB_EHCI_HCD is not set |
| 1133 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1104 | # CONFIG_USB_ISP116X_HCD is not set | 1134 | # CONFIG_USB_ISP116X_HCD is not set |
| 1105 | # CONFIG_USB_ISP1760_HCD is not set | 1135 | # CONFIG_USB_ISP1760_HCD is not set |
| 1106 | CONFIG_USB_OHCI_HCD=y | 1136 | CONFIG_USB_OHCI_HCD=y |
| @@ -1122,18 +1152,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1122 | # CONFIG_USB_TMC is not set | 1152 | # CONFIG_USB_TMC is not set |
| 1123 | 1153 | ||
| 1124 | # | 1154 | # |
| 1125 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1155 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1126 | # | 1156 | # |
| 1127 | 1157 | ||
| 1128 | # | 1158 | # |
| 1129 | # see USB_STORAGE Help for more information | 1159 | # also be needed; see USB_STORAGE Help for more info |
| 1130 | # | 1160 | # |
| 1131 | CONFIG_USB_STORAGE=y | 1161 | CONFIG_USB_STORAGE=y |
| 1132 | # CONFIG_USB_STORAGE_DEBUG is not set | 1162 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1133 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1163 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1134 | # CONFIG_USB_STORAGE_FREECOM is not set | 1164 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1135 | # CONFIG_USB_STORAGE_ISD200 is not set | 1165 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1136 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1137 | # CONFIG_USB_STORAGE_USBAT is not set | 1166 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1138 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1167 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1139 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1168 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1169,7 +1198,6 @@ CONFIG_USB_LIBUSUAL=y | |||
| 1169 | # CONFIG_USB_LED is not set | 1198 | # CONFIG_USB_LED is not set |
| 1170 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1199 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1171 | # CONFIG_USB_CYTHERM is not set | 1200 | # CONFIG_USB_CYTHERM is not set |
| 1172 | # CONFIG_USB_PHIDGET is not set | ||
| 1173 | # CONFIG_USB_IDMOUSE is not set | 1201 | # CONFIG_USB_IDMOUSE is not set |
| 1174 | # CONFIG_USB_FTDI_ELAN is not set | 1202 | # CONFIG_USB_FTDI_ELAN is not set |
| 1175 | # CONFIG_USB_APPLEDISPLAY is not set | 1203 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1179,6 +1207,11 @@ CONFIG_USB_LIBUSUAL=y | |||
| 1179 | # CONFIG_USB_ISIGHTFW is not set | 1207 | # CONFIG_USB_ISIGHTFW is not set |
| 1180 | # CONFIG_USB_VST is not set | 1208 | # CONFIG_USB_VST is not set |
| 1181 | # CONFIG_USB_GADGET is not set | 1209 | # CONFIG_USB_GADGET is not set |
| 1210 | |||
| 1211 | # | ||
| 1212 | # OTG and related infrastructure | ||
| 1213 | # | ||
| 1214 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1182 | # CONFIG_UWB is not set | 1215 | # CONFIG_UWB is not set |
| 1183 | # CONFIG_MMC is not set | 1216 | # CONFIG_MMC is not set |
| 1184 | # CONFIG_MEMSTICK is not set | 1217 | # CONFIG_MEMSTICK is not set |
| @@ -1230,6 +1263,7 @@ CONFIG_RTC_DRV_R9701=y | |||
| 1230 | # | 1263 | # |
| 1231 | # CONFIG_RTC_DRV_SH is not set | 1264 | # CONFIG_RTC_DRV_SH is not set |
| 1232 | # CONFIG_DMADEVICES is not set | 1265 | # CONFIG_DMADEVICES is not set |
| 1266 | # CONFIG_AUXDISPLAY is not set | ||
| 1233 | # CONFIG_UIO is not set | 1267 | # CONFIG_UIO is not set |
| 1234 | # CONFIG_STAGING is not set | 1268 | # CONFIG_STAGING is not set |
| 1235 | 1269 | ||
| @@ -1247,6 +1281,7 @@ CONFIG_EXT2_FS=y | |||
| 1247 | CONFIG_FILE_LOCKING=y | 1281 | CONFIG_FILE_LOCKING=y |
| 1248 | # CONFIG_XFS_FS is not set | 1282 | # CONFIG_XFS_FS is not set |
| 1249 | # CONFIG_OCFS2_FS is not set | 1283 | # CONFIG_OCFS2_FS is not set |
| 1284 | # CONFIG_BTRFS_FS is not set | ||
| 1250 | CONFIG_DNOTIFY=y | 1285 | CONFIG_DNOTIFY=y |
| 1251 | CONFIG_INOTIFY=y | 1286 | CONFIG_INOTIFY=y |
| 1252 | CONFIG_INOTIFY_USER=y | 1287 | CONFIG_INOTIFY_USER=y |
| @@ -1293,6 +1328,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1293 | # CONFIG_BFS_FS is not set | 1328 | # CONFIG_BFS_FS is not set |
| 1294 | # CONFIG_EFS_FS is not set | 1329 | # CONFIG_EFS_FS is not set |
| 1295 | # CONFIG_CRAMFS is not set | 1330 | # CONFIG_CRAMFS is not set |
| 1331 | # CONFIG_SQUASHFS is not set | ||
| 1296 | # CONFIG_VXFS_FS is not set | 1332 | # CONFIG_VXFS_FS is not set |
| 1297 | CONFIG_MINIX_FS=y | 1333 | CONFIG_MINIX_FS=y |
| 1298 | # CONFIG_OMFS_FS is not set | 1334 | # CONFIG_OMFS_FS is not set |
| @@ -1385,7 +1421,7 @@ CONFIG_TRACING=y | |||
| 1385 | # | 1421 | # |
| 1386 | # Tracers | 1422 | # Tracers |
| 1387 | # | 1423 | # |
| 1388 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1424 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1389 | # CONFIG_SAMPLES is not set | 1425 | # CONFIG_SAMPLES is not set |
| 1390 | CONFIG_HAVE_ARCH_KGDB=y | 1426 | CONFIG_HAVE_ARCH_KGDB=y |
| 1391 | # CONFIG_SH_STANDARD_BIOS is not set | 1427 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1479,6 +1515,7 @@ CONFIG_CRYPTO=y | |||
| 1479 | # Compression | 1515 | # Compression |
| 1480 | # | 1516 | # |
| 1481 | # CONFIG_CRYPTO_DEFLATE is not set | 1517 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1518 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1482 | # CONFIG_CRYPTO_LZO is not set | 1519 | # CONFIG_CRYPTO_LZO is not set |
| 1483 | 1520 | ||
| 1484 | # | 1521 | # |
| @@ -1500,7 +1537,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1500 | CONFIG_CRC32=y | 1537 | CONFIG_CRC32=y |
| 1501 | # CONFIG_CRC7 is not set | 1538 | # CONFIG_CRC7 is not set |
| 1502 | # CONFIG_LIBCRC32C is not set | 1539 | # CONFIG_LIBCRC32C is not set |
| 1503 | CONFIG_PLIST=y | ||
| 1504 | CONFIG_HAS_IOMEM=y | 1540 | CONFIG_HAS_IOMEM=y |
| 1505 | CONFIG_HAS_IOPORT=y | 1541 | CONFIG_HAS_IOPORT=y |
| 1506 | CONFIG_HAS_DMA=y | 1542 | CONFIG_HAS_DMA=y |
| 1543 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/rts7751r2dplus_defconfig b/arch/sh/configs/rts7751r2dplus_defconfig index 3fca10e24833..8feef629e49c 100644 --- a/arch/sh/configs/rts7751r2dplus_defconfig +++ b/arch/sh/configs/rts7751r2dplus_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:26:10 2009 | 4 | # Thu Apr 2 18:34:12 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_IO_TRAPPED=y | 29 | CONFIG_IO_TRAPPED=y |
| 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 30 | 31 | ||
| @@ -43,10 +44,19 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 43 | # CONFIG_BSD_PROCESS_ACCT is not set | 44 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 44 | # CONFIG_TASKSTATS is not set | 45 | # CONFIG_TASKSTATS is not set |
| 45 | # CONFIG_AUDIT is not set | 46 | # CONFIG_AUDIT is not set |
| 47 | |||
| 48 | # | ||
| 49 | # RCU Subsystem | ||
| 50 | # | ||
| 51 | CONFIG_CLASSIC_RCU=y | ||
| 52 | # CONFIG_TREE_RCU is not set | ||
| 53 | # CONFIG_PREEMPT_RCU is not set | ||
| 54 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 55 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 46 | # CONFIG_IKCONFIG is not set | 56 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 57 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 60 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 61 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | # CONFIG_RELAY is not set | 62 | # CONFIG_RELAY is not set |
| @@ -54,6 +64,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 54 | # CONFIG_BLK_DEV_INITRD is not set | 64 | # CONFIG_BLK_DEV_INITRD is not set |
| 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 65 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 56 | CONFIG_SYSCTL=y | 66 | CONFIG_SYSCTL=y |
| 67 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 68 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 69 | CONFIG_UID16=y |
| 59 | # CONFIG_SYSCTL_SYSCALL is not set | 70 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -63,10 +74,8 @@ CONFIG_HOTPLUG=y | |||
| 63 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -75,6 +84,7 @@ CONFIG_SHMEM=y | |||
| 75 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 77 | CONFIG_PCI_QUIRKS=y | 86 | CONFIG_PCI_QUIRKS=y |
| 87 | CONFIG_COMPAT_BRK=y | ||
| 78 | CONFIG_SLAB=y | 88 | CONFIG_SLAB=y |
| 79 | # CONFIG_SLUB is not set | 89 | # CONFIG_SLUB is not set |
| 80 | # CONFIG_SLOB is not set | 90 | # CONFIG_SLOB is not set |
| @@ -116,11 +126,6 @@ CONFIG_DEFAULT_AS=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
| 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 128 | 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 | 129 | # CONFIG_FREEZER is not set |
| 125 | 130 | ||
| 126 | # | 131 | # |
| @@ -155,6 +160,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 164 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +202,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 202 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 203 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 204 | CONFIG_UNEVICTABLE_LRU=y |
| 205 | CONFIG_HAVE_MLOCK=y | ||
| 206 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 207 | ||
| 200 | # | 208 | # |
| 201 | # Cache configuration | 209 | # Cache configuration |
| 202 | # | 210 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 211 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 212 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 213 | # CONFIG_CACHE_OFF is not set |
| @@ -300,6 +307,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 300 | # CONFIG_PCIEPORTBUS is not set | 307 | # CONFIG_PCIEPORTBUS is not set |
| 301 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 308 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 302 | CONFIG_PCI_LEGACY=y | 309 | CONFIG_PCI_LEGACY=y |
| 310 | # CONFIG_PCI_STUB is not set | ||
| 311 | # CONFIG_PCI_IOV is not set | ||
| 303 | # CONFIG_PCCARD is not set | 312 | # CONFIG_PCCARD is not set |
| 304 | CONFIG_HOTPLUG_PCI=y | 313 | CONFIG_HOTPLUG_PCI=y |
| 305 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 314 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
| @@ -324,7 +333,6 @@ CONFIG_NET=y | |||
| 324 | # | 333 | # |
| 325 | # Networking options | 334 | # Networking options |
| 326 | # | 335 | # |
| 327 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 328 | CONFIG_PACKET=y | 336 | CONFIG_PACKET=y |
| 329 | # CONFIG_PACKET_MMAP is not set | 337 | # CONFIG_PACKET_MMAP is not set |
| 330 | CONFIG_UNIX=y | 338 | CONFIG_UNIX=y |
| @@ -376,6 +384,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 376 | # CONFIG_LAPB is not set | 384 | # CONFIG_LAPB is not set |
| 377 | # CONFIG_ECONET is not set | 385 | # CONFIG_ECONET is not set |
| 378 | # CONFIG_WAN_ROUTER is not set | 386 | # CONFIG_WAN_ROUTER is not set |
| 387 | # CONFIG_PHONET is not set | ||
| 379 | # CONFIG_NET_SCHED is not set | 388 | # CONFIG_NET_SCHED is not set |
| 380 | # CONFIG_DCB is not set | 389 | # CONFIG_DCB is not set |
| 381 | 390 | ||
| @@ -383,12 +392,12 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 383 | # Network testing | 392 | # Network testing |
| 384 | # | 393 | # |
| 385 | # CONFIG_NET_PKTGEN is not set | 394 | # CONFIG_NET_PKTGEN is not set |
| 395 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 386 | # CONFIG_HAMRADIO is not set | 396 | # CONFIG_HAMRADIO is not set |
| 387 | # CONFIG_CAN is not set | 397 | # CONFIG_CAN is not set |
| 388 | # CONFIG_IRDA is not set | 398 | # CONFIG_IRDA is not set |
| 389 | # CONFIG_BT is not set | 399 | # CONFIG_BT is not set |
| 390 | # CONFIG_AF_RXRPC is not set | 400 | # CONFIG_AF_RXRPC is not set |
| 391 | # CONFIG_PHONET is not set | ||
| 392 | CONFIG_WIRELESS=y | 401 | CONFIG_WIRELESS=y |
| 393 | # CONFIG_CFG80211 is not set | 402 | # CONFIG_CFG80211 is not set |
| 394 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 403 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -396,6 +405,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 396 | CONFIG_WIRELESS_EXT_SYSFS=y | 405 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 397 | # CONFIG_LIB80211 is not set | 406 | # CONFIG_LIB80211 is not set |
| 398 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
| 408 | # CONFIG_WIMAX is not set | ||
| 399 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
| 400 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
| 401 | 411 | ||
| @@ -434,12 +444,17 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 434 | # CONFIG_BLK_DEV_HD is not set | 444 | # CONFIG_BLK_DEV_HD is not set |
| 435 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
| 436 | # CONFIG_PHANTOM is not set | 446 | # CONFIG_PHANTOM is not set |
| 437 | # CONFIG_EEPROM_93CX6 is not set | ||
| 438 | # CONFIG_SGI_IOC4 is not set | 447 | # CONFIG_SGI_IOC4 is not set |
| 439 | # CONFIG_TIFM_CORE is not set | 448 | # CONFIG_TIFM_CORE is not set |
| 440 | # CONFIG_ENCLOSURE_SERVICES is not set | 449 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 441 | # CONFIG_HP_ILO is not set | 450 | # CONFIG_HP_ILO is not set |
| 442 | # CONFIG_C2PORT is not set | 451 | # CONFIG_C2PORT is not set |
| 452 | |||
| 453 | # | ||
| 454 | # EEPROM support | ||
| 455 | # | ||
| 456 | # CONFIG_EEPROM_AT25 is not set | ||
| 457 | # CONFIG_EEPROM_93CX6 is not set | ||
| 443 | CONFIG_HAVE_IDE=y | 458 | CONFIG_HAVE_IDE=y |
| 444 | # CONFIG_IDE is not set | 459 | # CONFIG_IDE is not set |
| 445 | 460 | ||
| @@ -495,6 +510,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 495 | # CONFIG_MEGARAID_NEWGEN is not set | 510 | # CONFIG_MEGARAID_NEWGEN is not set |
| 496 | # CONFIG_MEGARAID_LEGACY is not set | 511 | # CONFIG_MEGARAID_LEGACY is not set |
| 497 | # CONFIG_MEGARAID_SAS is not set | 512 | # CONFIG_MEGARAID_SAS is not set |
| 513 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 498 | # CONFIG_SCSI_HPTIOP is not set | 514 | # CONFIG_SCSI_HPTIOP is not set |
| 499 | # CONFIG_LIBFC is not set | 515 | # CONFIG_LIBFC is not set |
| 500 | # CONFIG_FCOE is not set | 516 | # CONFIG_FCOE is not set |
| @@ -517,6 +533,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 517 | # CONFIG_SCSI_DEBUG is not set | 533 | # CONFIG_SCSI_DEBUG is not set |
| 518 | # CONFIG_SCSI_SRP is not set | 534 | # CONFIG_SCSI_SRP is not set |
| 519 | # CONFIG_SCSI_DH is not set | 535 | # CONFIG_SCSI_DH is not set |
| 536 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 520 | CONFIG_ATA=y | 537 | CONFIG_ATA=y |
| 521 | # CONFIG_ATA_NONSTANDARD is not set | 538 | # CONFIG_ATA_NONSTANDARD is not set |
| 522 | CONFIG_SATA_PMP=y | 539 | CONFIG_SATA_PMP=y |
| @@ -591,6 +608,7 @@ CONFIG_PATA_PLATFORM=y | |||
| 591 | # CONFIG_IEEE1394 is not set | 608 | # CONFIG_IEEE1394 is not set |
| 592 | # CONFIG_I2O is not set | 609 | # CONFIG_I2O is not set |
| 593 | CONFIG_NETDEVICES=y | 610 | CONFIG_NETDEVICES=y |
| 611 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 594 | # CONFIG_DUMMY is not set | 612 | # CONFIG_DUMMY is not set |
| 595 | # CONFIG_BONDING is not set | 613 | # CONFIG_BONDING is not set |
| 596 | # CONFIG_MACVLAN is not set | 614 | # CONFIG_MACVLAN is not set |
| @@ -609,8 +627,10 @@ CONFIG_MII=y | |||
| 609 | # CONFIG_NET_VENDOR_3COM is not set | 627 | # CONFIG_NET_VENDOR_3COM is not set |
| 610 | # CONFIG_SMC91X is not set | 628 | # CONFIG_SMC91X is not set |
| 611 | # CONFIG_ENC28J60 is not set | 629 | # CONFIG_ENC28J60 is not set |
| 630 | # CONFIG_ETHOC is not set | ||
| 612 | # CONFIG_SMC911X is not set | 631 | # CONFIG_SMC911X is not set |
| 613 | # CONFIG_SMSC911X is not set | 632 | # CONFIG_SMSC911X is not set |
| 633 | # CONFIG_DNET is not set | ||
| 614 | # CONFIG_NET_TULIP is not set | 634 | # CONFIG_NET_TULIP is not set |
| 615 | # CONFIG_HP100 is not set | 635 | # CONFIG_HP100 is not set |
| 616 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 636 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -665,6 +685,7 @@ CONFIG_NETDEV_1000=y | |||
| 665 | # CONFIG_QLA3XXX is not set | 685 | # CONFIG_QLA3XXX is not set |
| 666 | # CONFIG_ATL1 is not set | 686 | # CONFIG_ATL1 is not set |
| 667 | # CONFIG_ATL1E is not set | 687 | # CONFIG_ATL1E is not set |
| 688 | # CONFIG_ATL1C is not set | ||
| 668 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
| 669 | CONFIG_NETDEV_10000=y | 690 | CONFIG_NETDEV_10000=y |
| 670 | # CONFIG_CHELSIO_T1 is not set | 691 | # CONFIG_CHELSIO_T1 is not set |
| @@ -683,6 +704,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 683 | # CONFIG_BNX2X is not set | 704 | # CONFIG_BNX2X is not set |
| 684 | # CONFIG_QLGE is not set | 705 | # CONFIG_QLGE is not set |
| 685 | # CONFIG_SFC is not set | 706 | # CONFIG_SFC is not set |
| 707 | # CONFIG_BE2NET is not set | ||
| 686 | # CONFIG_TR is not set | 708 | # CONFIG_TR is not set |
| 687 | 709 | ||
| 688 | # | 710 | # |
| @@ -690,7 +712,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 690 | # | 712 | # |
| 691 | # CONFIG_WLAN_PRE80211 is not set | 713 | # CONFIG_WLAN_PRE80211 is not set |
| 692 | # CONFIG_WLAN_80211 is not set | 714 | # CONFIG_WLAN_80211 is not set |
| 693 | # CONFIG_IWLWIFI_LEDS is not set | 715 | |
| 716 | # | ||
| 717 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 718 | # | ||
| 694 | 719 | ||
| 695 | # | 720 | # |
| 696 | # USB Network Adapters | 721 | # USB Network Adapters |
| @@ -780,6 +805,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 780 | CONFIG_LEGACY_PTY_COUNT=256 | 805 | CONFIG_LEGACY_PTY_COUNT=256 |
| 781 | # CONFIG_IPMI_HANDLER is not set | 806 | # CONFIG_IPMI_HANDLER is not set |
| 782 | CONFIG_HW_RANDOM=y | 807 | CONFIG_HW_RANDOM=y |
| 808 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 783 | # CONFIG_R3964 is not set | 809 | # CONFIG_R3964 is not set |
| 784 | # CONFIG_APPLICOM is not set | 810 | # CONFIG_APPLICOM is not set |
| 785 | # CONFIG_RAW_DRIVER is not set | 811 | # CONFIG_RAW_DRIVER is not set |
| @@ -798,7 +824,6 @@ CONFIG_SPI_SH_SCI=y | |||
| 798 | # | 824 | # |
| 799 | # SPI Protocol Masters | 825 | # SPI Protocol Masters |
| 800 | # | 826 | # |
| 801 | # CONFIG_EEPROM_AT25 is not set | ||
| 802 | # CONFIG_SPI_SPIDEV is not set | 827 | # CONFIG_SPI_SPIDEV is not set |
| 803 | # CONFIG_SPI_TLE62X0 is not set | 828 | # CONFIG_SPI_TLE62X0 is not set |
| 804 | # CONFIG_W1 is not set | 829 | # CONFIG_W1 is not set |
| @@ -822,6 +847,7 @@ CONFIG_HWMON=y | |||
| 822 | # CONFIG_SENSORS_VT8231 is not set | 847 | # CONFIG_SENSORS_VT8231 is not set |
| 823 | # CONFIG_SENSORS_W83627HF is not set | 848 | # CONFIG_SENSORS_W83627HF is not set |
| 824 | # CONFIG_SENSORS_W83627EHF is not set | 849 | # CONFIG_SENSORS_W83627EHF is not set |
| 850 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 825 | # CONFIG_HWMON_DEBUG_CHIP is not set | 851 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 826 | # CONFIG_THERMAL is not set | 852 | # CONFIG_THERMAL is not set |
| 827 | # CONFIG_THERMAL_HWMON is not set | 853 | # CONFIG_THERMAL_HWMON is not set |
| @@ -918,6 +944,7 @@ CONFIG_FB_SM501=y | |||
| 918 | # CONFIG_FB_VIRTUAL is not set | 944 | # CONFIG_FB_VIRTUAL is not set |
| 919 | # CONFIG_FB_METRONOME is not set | 945 | # CONFIG_FB_METRONOME is not set |
| 920 | # CONFIG_FB_MB862XX is not set | 946 | # CONFIG_FB_MB862XX is not set |
| 947 | # CONFIG_FB_BROADSHEET is not set | ||
| 921 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 948 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 922 | 949 | ||
| 923 | # | 950 | # |
| @@ -996,6 +1023,8 @@ CONFIG_SND_PCI=y | |||
| 996 | # CONFIG_SND_INDIGO is not set | 1023 | # CONFIG_SND_INDIGO is not set |
| 997 | # CONFIG_SND_INDIGOIO is not set | 1024 | # CONFIG_SND_INDIGOIO is not set |
| 998 | # CONFIG_SND_INDIGODJ is not set | 1025 | # CONFIG_SND_INDIGODJ is not set |
| 1026 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1027 | # CONFIG_SND_INDIGODJX is not set | ||
| 999 | # CONFIG_SND_EMU10K1 is not set | 1028 | # CONFIG_SND_EMU10K1 is not set |
| 1000 | # CONFIG_SND_EMU10K1X is not set | 1029 | # CONFIG_SND_EMU10K1X is not set |
| 1001 | # CONFIG_SND_ENS1370 is not set | 1030 | # CONFIG_SND_ENS1370 is not set |
| @@ -1101,6 +1130,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1101 | # | 1130 | # |
| 1102 | # CONFIG_USB_C67X00_HCD is not set | 1131 | # CONFIG_USB_C67X00_HCD is not set |
| 1103 | # CONFIG_USB_EHCI_HCD is not set | 1132 | # CONFIG_USB_EHCI_HCD is not set |
| 1133 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1104 | # CONFIG_USB_ISP116X_HCD is not set | 1134 | # CONFIG_USB_ISP116X_HCD is not set |
| 1105 | # CONFIG_USB_ISP1760_HCD is not set | 1135 | # CONFIG_USB_ISP1760_HCD is not set |
| 1106 | CONFIG_USB_OHCI_HCD=y | 1136 | CONFIG_USB_OHCI_HCD=y |
| @@ -1122,18 +1152,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1122 | # CONFIG_USB_TMC is not set | 1152 | # CONFIG_USB_TMC is not set |
| 1123 | 1153 | ||
| 1124 | # | 1154 | # |
| 1125 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1155 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1126 | # | 1156 | # |
| 1127 | 1157 | ||
| 1128 | # | 1158 | # |
| 1129 | # see USB_STORAGE Help for more information | 1159 | # also be needed; see USB_STORAGE Help for more info |
| 1130 | # | 1160 | # |
| 1131 | CONFIG_USB_STORAGE=y | 1161 | CONFIG_USB_STORAGE=y |
| 1132 | # CONFIG_USB_STORAGE_DEBUG is not set | 1162 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1133 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1163 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1134 | # CONFIG_USB_STORAGE_FREECOM is not set | 1164 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1135 | # CONFIG_USB_STORAGE_ISD200 is not set | 1165 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1136 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1137 | # CONFIG_USB_STORAGE_USBAT is not set | 1166 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1138 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1167 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1139 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1168 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1169,7 +1198,6 @@ CONFIG_USB_LIBUSUAL=y | |||
| 1169 | # CONFIG_USB_LED is not set | 1198 | # CONFIG_USB_LED is not set |
| 1170 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1199 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1171 | # CONFIG_USB_CYTHERM is not set | 1200 | # CONFIG_USB_CYTHERM is not set |
| 1172 | # CONFIG_USB_PHIDGET is not set | ||
| 1173 | # CONFIG_USB_IDMOUSE is not set | 1201 | # CONFIG_USB_IDMOUSE is not set |
| 1174 | # CONFIG_USB_FTDI_ELAN is not set | 1202 | # CONFIG_USB_FTDI_ELAN is not set |
| 1175 | # CONFIG_USB_APPLEDISPLAY is not set | 1203 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1179,6 +1207,11 @@ CONFIG_USB_LIBUSUAL=y | |||
| 1179 | # CONFIG_USB_ISIGHTFW is not set | 1207 | # CONFIG_USB_ISIGHTFW is not set |
| 1180 | # CONFIG_USB_VST is not set | 1208 | # CONFIG_USB_VST is not set |
| 1181 | # CONFIG_USB_GADGET is not set | 1209 | # CONFIG_USB_GADGET is not set |
| 1210 | |||
| 1211 | # | ||
| 1212 | # OTG and related infrastructure | ||
| 1213 | # | ||
| 1214 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1182 | # CONFIG_UWB is not set | 1215 | # CONFIG_UWB is not set |
| 1183 | # CONFIG_MMC is not set | 1216 | # CONFIG_MMC is not set |
| 1184 | # CONFIG_MEMSTICK is not set | 1217 | # CONFIG_MEMSTICK is not set |
| @@ -1230,6 +1263,7 @@ CONFIG_RTC_DRV_R9701=y | |||
| 1230 | # | 1263 | # |
| 1231 | # CONFIG_RTC_DRV_SH is not set | 1264 | # CONFIG_RTC_DRV_SH is not set |
| 1232 | # CONFIG_DMADEVICES is not set | 1265 | # CONFIG_DMADEVICES is not set |
| 1266 | # CONFIG_AUXDISPLAY is not set | ||
| 1233 | # CONFIG_UIO is not set | 1267 | # CONFIG_UIO is not set |
| 1234 | # CONFIG_STAGING is not set | 1268 | # CONFIG_STAGING is not set |
| 1235 | 1269 | ||
| @@ -1247,6 +1281,7 @@ CONFIG_EXT2_FS=y | |||
| 1247 | CONFIG_FILE_LOCKING=y | 1281 | CONFIG_FILE_LOCKING=y |
| 1248 | # CONFIG_XFS_FS is not set | 1282 | # CONFIG_XFS_FS is not set |
| 1249 | # CONFIG_OCFS2_FS is not set | 1283 | # CONFIG_OCFS2_FS is not set |
| 1284 | # CONFIG_BTRFS_FS is not set | ||
| 1250 | CONFIG_DNOTIFY=y | 1285 | CONFIG_DNOTIFY=y |
| 1251 | CONFIG_INOTIFY=y | 1286 | CONFIG_INOTIFY=y |
| 1252 | CONFIG_INOTIFY_USER=y | 1287 | CONFIG_INOTIFY_USER=y |
| @@ -1293,6 +1328,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1293 | # CONFIG_BFS_FS is not set | 1328 | # CONFIG_BFS_FS is not set |
| 1294 | # CONFIG_EFS_FS is not set | 1329 | # CONFIG_EFS_FS is not set |
| 1295 | # CONFIG_CRAMFS is not set | 1330 | # CONFIG_CRAMFS is not set |
| 1331 | # CONFIG_SQUASHFS is not set | ||
| 1296 | # CONFIG_VXFS_FS is not set | 1332 | # CONFIG_VXFS_FS is not set |
| 1297 | CONFIG_MINIX_FS=y | 1333 | CONFIG_MINIX_FS=y |
| 1298 | # CONFIG_OMFS_FS is not set | 1334 | # CONFIG_OMFS_FS is not set |
| @@ -1385,7 +1421,7 @@ CONFIG_TRACING=y | |||
| 1385 | # | 1421 | # |
| 1386 | # Tracers | 1422 | # Tracers |
| 1387 | # | 1423 | # |
| 1388 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1424 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1389 | # CONFIG_SAMPLES is not set | 1425 | # CONFIG_SAMPLES is not set |
| 1390 | CONFIG_HAVE_ARCH_KGDB=y | 1426 | CONFIG_HAVE_ARCH_KGDB=y |
| 1391 | # CONFIG_SH_STANDARD_BIOS is not set | 1427 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1479,6 +1515,7 @@ CONFIG_CRYPTO=y | |||
| 1479 | # Compression | 1515 | # Compression |
| 1480 | # | 1516 | # |
| 1481 | # CONFIG_CRYPTO_DEFLATE is not set | 1517 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1518 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1482 | # CONFIG_CRYPTO_LZO is not set | 1519 | # CONFIG_CRYPTO_LZO is not set |
| 1483 | 1520 | ||
| 1484 | # | 1521 | # |
| @@ -1500,7 +1537,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1500 | CONFIG_CRC32=y | 1537 | CONFIG_CRC32=y |
| 1501 | # CONFIG_CRC7 is not set | 1538 | # CONFIG_CRC7 is not set |
| 1502 | # CONFIG_LIBCRC32C is not set | 1539 | # CONFIG_LIBCRC32C is not set |
| 1503 | CONFIG_PLIST=y | ||
| 1504 | CONFIG_HAS_IOMEM=y | 1540 | CONFIG_HAS_IOMEM=y |
| 1505 | CONFIG_HAS_IOPORT=y | 1541 | CONFIG_HAS_IOPORT=y |
| 1506 | CONFIG_HAS_DMA=y | 1542 | CONFIG_HAS_DMA=y |
| 1543 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sdk7780_defconfig b/arch/sh/configs/sdk7780_defconfig index 5d6b06755ae7..739e2299ae80 100644 --- a/arch/sh/configs/sdk7780_defconfig +++ b/arch/sh/configs/sdk7780_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:26:40 2009 | 4 | # Thu Apr 2 18:34:43 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -44,11 +45,20 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 45 | # CONFIG_TASKSTATS is not set | 46 | # CONFIG_TASKSTATS is not set |
| 46 | # CONFIG_AUDIT is not set | 47 | # CONFIG_AUDIT is not set |
| 48 | |||
| 49 | # | ||
| 50 | # RCU Subsystem | ||
| 51 | # | ||
| 52 | CONFIG_CLASSIC_RCU=y | ||
| 53 | # CONFIG_TREE_RCU is not set | ||
| 54 | # CONFIG_PREEMPT_RCU is not set | ||
| 55 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 56 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 47 | CONFIG_IKCONFIG=y | 57 | CONFIG_IKCONFIG=y |
| 48 | CONFIG_IKCONFIG_PROC=y | 58 | CONFIG_IKCONFIG_PROC=y |
| 49 | CONFIG_LOG_BUF_SHIFT=18 | 59 | CONFIG_LOG_BUF_SHIFT=18 |
| 50 | # CONFIG_CGROUPS is not set | ||
| 51 | # CONFIG_GROUP_SCHED is not set | 60 | # CONFIG_GROUP_SCHED is not set |
| 61 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 62 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 63 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | CONFIG_RELAY=y | 64 | CONFIG_RELAY=y |
| @@ -56,21 +66,19 @@ CONFIG_RELAY=y | |||
| 56 | # CONFIG_BLK_DEV_INITRD is not set | 66 | # CONFIG_BLK_DEV_INITRD is not set |
| 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 67 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 58 | CONFIG_SYSCTL=y | 68 | CONFIG_SYSCTL=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 70 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 71 | CONFIG_UID16=y |
| 61 | CONFIG_SYSCTL_SYSCALL=y | 72 | CONFIG_SYSCTL_SYSCALL=y |
| 62 | CONFIG_KALLSYMS=y | 73 | CONFIG_KALLSYMS=y |
| 63 | CONFIG_KALLSYMS_ALL=y | 74 | CONFIG_KALLSYMS_ALL=y |
| 64 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 65 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 75 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 66 | CONFIG_HOTPLUG=y | 76 | CONFIG_HOTPLUG=y |
| 67 | CONFIG_PRINTK=y | 77 | CONFIG_PRINTK=y |
| 68 | CONFIG_BUG=y | 78 | CONFIG_BUG=y |
| 69 | CONFIG_ELF_CORE=y | 79 | CONFIG_ELF_CORE=y |
| 70 | CONFIG_COMPAT_BRK=y | ||
| 71 | CONFIG_BASE_FULL=y | 80 | CONFIG_BASE_FULL=y |
| 72 | CONFIG_FUTEX=y | 81 | CONFIG_FUTEX=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 74 | CONFIG_EPOLL=y | 82 | CONFIG_EPOLL=y |
| 75 | CONFIG_SIGNALFD=y | 83 | CONFIG_SIGNALFD=y |
| 76 | CONFIG_TIMERFD=y | 84 | CONFIG_TIMERFD=y |
| @@ -80,6 +88,7 @@ CONFIG_AIO=y | |||
| 80 | CONFIG_VM_EVENT_COUNTERS=y | 88 | CONFIG_VM_EVENT_COUNTERS=y |
| 81 | CONFIG_PCI_QUIRKS=y | 89 | CONFIG_PCI_QUIRKS=y |
| 82 | CONFIG_SLUB_DEBUG=y | 90 | CONFIG_SLUB_DEBUG=y |
| 91 | CONFIG_COMPAT_BRK=y | ||
| 83 | # CONFIG_SLAB is not set | 92 | # CONFIG_SLAB is not set |
| 84 | CONFIG_SLUB=y | 93 | CONFIG_SLUB=y |
| 85 | # CONFIG_SLOB is not set | 94 | # CONFIG_SLOB is not set |
| @@ -119,11 +128,6 @@ CONFIG_DEFAULT_AS=y | |||
| 119 | # CONFIG_DEFAULT_CFQ is not set | 128 | # CONFIG_DEFAULT_CFQ is not set |
| 120 | # CONFIG_DEFAULT_NOOP is not set | 129 | # CONFIG_DEFAULT_NOOP is not set |
| 121 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 130 | 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 | 131 | # CONFIG_FREEZER is not set |
| 128 | 132 | ||
| 129 | # | 133 | # |
| @@ -159,6 +163,7 @@ CONFIG_CPU_SH4A=y | |||
| 159 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 160 | CONFIG_CPU_SUBTYPE_SH7780=y | 164 | CONFIG_CPU_SUBTYPE_SH7780=y |
| 161 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 162 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 167 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -174,8 +179,11 @@ CONFIG_MMU=y | |||
| 174 | CONFIG_PAGE_OFFSET=0x80000000 | 179 | CONFIG_PAGE_OFFSET=0x80000000 |
| 175 | CONFIG_MEMORY_START=0x08000000 | 180 | CONFIG_MEMORY_START=0x08000000 |
| 176 | CONFIG_MEMORY_SIZE=0x08000000 | 181 | CONFIG_MEMORY_SIZE=0x08000000 |
| 177 | CONFIG_29BIT=y | 182 | # CONFIG_29BIT is not set |
| 183 | CONFIG_32BIT=y | ||
| 184 | CONFIG_PMB_ENABLE=y | ||
| 178 | # CONFIG_PMB is not set | 185 | # CONFIG_PMB is not set |
| 186 | CONFIG_PMB_FIXED=y | ||
| 179 | CONFIG_VSYSCALL=y | 187 | CONFIG_VSYSCALL=y |
| 180 | CONFIG_ARCH_FLATMEM_ENABLE=y | 188 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 181 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 189 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
| @@ -207,11 +215,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 207 | CONFIG_ZONE_DMA_FLAG=0 | 215 | CONFIG_ZONE_DMA_FLAG=0 |
| 208 | CONFIG_NR_QUICK=2 | 216 | CONFIG_NR_QUICK=2 |
| 209 | CONFIG_UNEVICTABLE_LRU=y | 217 | CONFIG_UNEVICTABLE_LRU=y |
| 218 | CONFIG_HAVE_MLOCK=y | ||
| 219 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 210 | 220 | ||
| 211 | # | 221 | # |
| 212 | # Cache configuration | 222 | # Cache configuration |
| 213 | # | 223 | # |
| 214 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 215 | CONFIG_CACHE_WRITEBACK=y | 224 | CONFIG_CACHE_WRITEBACK=y |
| 216 | # CONFIG_CACHE_WRITETHROUGH is not set | 225 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 217 | # CONFIG_CACHE_OFF is not set | 226 | # CONFIG_CACHE_OFF is not set |
| @@ -257,6 +266,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 257 | # | 266 | # |
| 258 | CONFIG_SH_DMA_API=y | 267 | CONFIG_SH_DMA_API=y |
| 259 | CONFIG_SH_DMA=y | 268 | CONFIG_SH_DMA=y |
| 269 | CONFIG_SH_DMA_IRQ_MULTI=y | ||
| 260 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 | 270 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 |
| 261 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 271 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 262 | 272 | ||
| @@ -306,6 +316,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 306 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 316 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 307 | # CONFIG_PCI_LEGACY is not set | 317 | # CONFIG_PCI_LEGACY is not set |
| 308 | CONFIG_PCI_DEBUG=y | 318 | CONFIG_PCI_DEBUG=y |
| 319 | # CONFIG_PCI_STUB is not set | ||
| 320 | # CONFIG_PCI_IOV is not set | ||
| 309 | CONFIG_PCCARD=y | 321 | CONFIG_PCCARD=y |
| 310 | # CONFIG_PCMCIA_DEBUG is not set | 322 | # CONFIG_PCMCIA_DEBUG is not set |
| 311 | CONFIG_PCMCIA=y | 323 | CONFIG_PCMCIA=y |
| @@ -348,7 +360,6 @@ CONFIG_NET=y | |||
| 348 | # | 360 | # |
| 349 | # Networking options | 361 | # Networking options |
| 350 | # | 362 | # |
| 351 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 352 | CONFIG_PACKET=y | 363 | CONFIG_PACKET=y |
| 353 | # CONFIG_PACKET_MMAP is not set | 364 | # CONFIG_PACKET_MMAP is not set |
| 354 | CONFIG_UNIX=y | 365 | CONFIG_UNIX=y |
| @@ -427,6 +438,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 427 | # CONFIG_LAPB is not set | 438 | # CONFIG_LAPB is not set |
| 428 | # CONFIG_ECONET is not set | 439 | # CONFIG_ECONET is not set |
| 429 | # CONFIG_WAN_ROUTER is not set | 440 | # CONFIG_WAN_ROUTER is not set |
| 441 | # CONFIG_PHONET is not set | ||
| 430 | CONFIG_NET_SCHED=y | 442 | CONFIG_NET_SCHED=y |
| 431 | 443 | ||
| 432 | # | 444 | # |
| @@ -471,13 +483,13 @@ CONFIG_NET_SCH_FIFO=y | |||
| 471 | # CONFIG_IRDA is not set | 483 | # CONFIG_IRDA is not set |
| 472 | # CONFIG_BT is not set | 484 | # CONFIG_BT is not set |
| 473 | # CONFIG_AF_RXRPC is not set | 485 | # CONFIG_AF_RXRPC is not set |
| 474 | # CONFIG_PHONET is not set | ||
| 475 | CONFIG_WIRELESS=y | 486 | CONFIG_WIRELESS=y |
| 476 | # CONFIG_CFG80211 is not set | 487 | # CONFIG_CFG80211 is not set |
| 477 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 488 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 478 | # CONFIG_WIRELESS_EXT is not set | 489 | # CONFIG_WIRELESS_EXT is not set |
| 479 | # CONFIG_LIB80211 is not set | 490 | # CONFIG_LIB80211 is not set |
| 480 | # CONFIG_MAC80211 is not set | 491 | # CONFIG_MAC80211 is not set |
| 492 | # CONFIG_WIMAX is not set | ||
| 481 | # CONFIG_RFKILL is not set | 493 | # CONFIG_RFKILL is not set |
| 482 | # CONFIG_NET_9P is not set | 494 | # CONFIG_NET_9P is not set |
| 483 | 495 | ||
| @@ -631,6 +643,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 631 | # CONFIG_MEGARAID_NEWGEN is not set | 643 | # CONFIG_MEGARAID_NEWGEN is not set |
| 632 | # CONFIG_MEGARAID_LEGACY is not set | 644 | # CONFIG_MEGARAID_LEGACY is not set |
| 633 | # CONFIG_MEGARAID_SAS is not set | 645 | # CONFIG_MEGARAID_SAS is not set |
| 646 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 634 | # CONFIG_SCSI_HPTIOP is not set | 647 | # CONFIG_SCSI_HPTIOP is not set |
| 635 | # CONFIG_LIBFC is not set | 648 | # CONFIG_LIBFC is not set |
| 636 | # CONFIG_FCOE is not set | 649 | # CONFIG_FCOE is not set |
| @@ -654,6 +667,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 654 | # CONFIG_SCSI_SRP is not set | 667 | # CONFIG_SCSI_SRP is not set |
| 655 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 668 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 656 | # CONFIG_SCSI_DH is not set | 669 | # CONFIG_SCSI_DH is not set |
| 670 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 657 | CONFIG_ATA=y | 671 | CONFIG_ATA=y |
| 658 | # CONFIG_ATA_NONSTANDARD is not set | 672 | # CONFIG_ATA_NONSTANDARD is not set |
| 659 | CONFIG_SATA_PMP=y | 673 | CONFIG_SATA_PMP=y |
| @@ -739,6 +753,7 @@ CONFIG_BLK_DEV_DM=y | |||
| 739 | # CONFIG_IEEE1394 is not set | 753 | # CONFIG_IEEE1394 is not set |
| 740 | # CONFIG_I2O is not set | 754 | # CONFIG_I2O is not set |
| 741 | CONFIG_NETDEVICES=y | 755 | CONFIG_NETDEVICES=y |
| 756 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 742 | # CONFIG_DUMMY is not set | 757 | # CONFIG_DUMMY is not set |
| 743 | # CONFIG_BONDING is not set | 758 | # CONFIG_BONDING is not set |
| 744 | # CONFIG_MACVLAN is not set | 759 | # CONFIG_MACVLAN is not set |
| @@ -756,8 +771,10 @@ CONFIG_MII=y | |||
| 756 | # CONFIG_CASSINI is not set | 771 | # CONFIG_CASSINI is not set |
| 757 | # CONFIG_NET_VENDOR_3COM is not set | 772 | # CONFIG_NET_VENDOR_3COM is not set |
| 758 | CONFIG_SMC91X=y | 773 | CONFIG_SMC91X=y |
| 774 | # CONFIG_ETHOC is not set | ||
| 759 | # CONFIG_SMC911X is not set | 775 | # CONFIG_SMC911X is not set |
| 760 | # CONFIG_SMSC911X is not set | 776 | # CONFIG_SMSC911X is not set |
| 777 | # CONFIG_DNET is not set | ||
| 761 | # CONFIG_NET_TULIP is not set | 778 | # CONFIG_NET_TULIP is not set |
| 762 | # CONFIG_HP100 is not set | 779 | # CONFIG_HP100 is not set |
| 763 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 780 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -780,7 +797,10 @@ CONFIG_SMC91X=y | |||
| 780 | # | 797 | # |
| 781 | # CONFIG_WLAN_PRE80211 is not set | 798 | # CONFIG_WLAN_PRE80211 is not set |
| 782 | # CONFIG_WLAN_80211 is not set | 799 | # CONFIG_WLAN_80211 is not set |
| 783 | # CONFIG_IWLWIFI_LEDS is not set | 800 | |
| 801 | # | ||
| 802 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 803 | # | ||
| 784 | 804 | ||
| 785 | # | 805 | # |
| 786 | # USB Network Adapters | 806 | # USB Network Adapters |
| @@ -840,7 +860,6 @@ CONFIG_MOUSE_PS2=y | |||
| 840 | CONFIG_MOUSE_PS2_ALPS=y | 860 | CONFIG_MOUSE_PS2_ALPS=y |
| 841 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 861 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 842 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 862 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 843 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 844 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 863 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 845 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 864 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 846 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 865 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -899,6 +918,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 899 | # CONFIG_PPDEV is not set | 918 | # CONFIG_PPDEV is not set |
| 900 | # CONFIG_IPMI_HANDLER is not set | 919 | # CONFIG_IPMI_HANDLER is not set |
| 901 | CONFIG_HW_RANDOM=y | 920 | CONFIG_HW_RANDOM=y |
| 921 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 902 | # CONFIG_R3964 is not set | 922 | # CONFIG_R3964 is not set |
| 903 | # CONFIG_APPLICOM is not set | 923 | # CONFIG_APPLICOM is not set |
| 904 | 924 | ||
| @@ -1023,6 +1043,7 @@ CONFIG_FB_SH_MOBILE_LCDC=m | |||
| 1023 | # CONFIG_FB_VIRTUAL is not set | 1043 | # CONFIG_FB_VIRTUAL is not set |
| 1024 | # CONFIG_FB_METRONOME is not set | 1044 | # CONFIG_FB_METRONOME is not set |
| 1025 | # CONFIG_FB_MB862XX is not set | 1045 | # CONFIG_FB_MB862XX is not set |
| 1046 | # CONFIG_FB_BROADSHEET is not set | ||
| 1026 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1047 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 1027 | 1048 | ||
| 1028 | # | 1049 | # |
| @@ -1123,6 +1144,7 @@ CONFIG_USB_MON=y | |||
| 1123 | CONFIG_USB_EHCI_HCD=y | 1144 | CONFIG_USB_EHCI_HCD=y |
| 1124 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1145 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1125 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1146 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1147 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1126 | # CONFIG_USB_ISP116X_HCD is not set | 1148 | # CONFIG_USB_ISP116X_HCD is not set |
| 1127 | # CONFIG_USB_ISP1760_HCD is not set | 1149 | # CONFIG_USB_ISP1760_HCD is not set |
| 1128 | # CONFIG_USB_OHCI_HCD is not set | 1150 | # CONFIG_USB_OHCI_HCD is not set |
| @@ -1141,18 +1163,17 @@ CONFIG_USB_PRINTER=y | |||
| 1141 | # CONFIG_USB_TMC is not set | 1163 | # CONFIG_USB_TMC is not set |
| 1142 | 1164 | ||
| 1143 | # | 1165 | # |
| 1144 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1166 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1145 | # | 1167 | # |
| 1146 | 1168 | ||
| 1147 | # | 1169 | # |
| 1148 | # see USB_STORAGE Help for more information | 1170 | # also be needed; see USB_STORAGE Help for more info |
| 1149 | # | 1171 | # |
| 1150 | CONFIG_USB_STORAGE=y | 1172 | CONFIG_USB_STORAGE=y |
| 1151 | # CONFIG_USB_STORAGE_DEBUG is not set | 1173 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1152 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1174 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1153 | # CONFIG_USB_STORAGE_FREECOM is not set | 1175 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1154 | # CONFIG_USB_STORAGE_ISD200 is not set | 1176 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1155 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1156 | # CONFIG_USB_STORAGE_USBAT is not set | 1177 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1157 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1178 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1158 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1179 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1189,7 +1210,6 @@ CONFIG_USB_STORAGE=y | |||
| 1189 | # CONFIG_USB_LED is not set | 1210 | # CONFIG_USB_LED is not set |
| 1190 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1211 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1191 | # CONFIG_USB_CYTHERM is not set | 1212 | # CONFIG_USB_CYTHERM is not set |
| 1192 | # CONFIG_USB_PHIDGET is not set | ||
| 1193 | # CONFIG_USB_IDMOUSE is not set | 1213 | # CONFIG_USB_IDMOUSE is not set |
| 1194 | # CONFIG_USB_FTDI_ELAN is not set | 1214 | # CONFIG_USB_FTDI_ELAN is not set |
| 1195 | # CONFIG_USB_APPLEDISPLAY is not set | 1215 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1201,6 +1221,11 @@ CONFIG_USB_STORAGE=y | |||
| 1201 | # CONFIG_USB_ISIGHTFW is not set | 1221 | # CONFIG_USB_ISIGHTFW is not set |
| 1202 | # CONFIG_USB_VST is not set | 1222 | # CONFIG_USB_VST is not set |
| 1203 | # CONFIG_USB_GADGET is not set | 1223 | # CONFIG_USB_GADGET is not set |
| 1224 | |||
| 1225 | # | ||
| 1226 | # OTG and related infrastructure | ||
| 1227 | # | ||
| 1228 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1204 | # CONFIG_UWB is not set | 1229 | # CONFIG_UWB is not set |
| 1205 | # CONFIG_MMC is not set | 1230 | # CONFIG_MMC is not set |
| 1206 | # CONFIG_MEMSTICK is not set | 1231 | # CONFIG_MEMSTICK is not set |
| @@ -1243,7 +1268,9 @@ CONFIG_FS_MBCACHE=y | |||
| 1243 | CONFIG_FS_POSIX_ACL=y | 1268 | CONFIG_FS_POSIX_ACL=y |
| 1244 | CONFIG_FILE_LOCKING=y | 1269 | CONFIG_FILE_LOCKING=y |
| 1245 | # CONFIG_XFS_FS is not set | 1270 | # CONFIG_XFS_FS is not set |
| 1271 | # CONFIG_GFS2_FS is not set | ||
| 1246 | # CONFIG_OCFS2_FS is not set | 1272 | # CONFIG_OCFS2_FS is not set |
| 1273 | # CONFIG_BTRFS_FS is not set | ||
| 1247 | CONFIG_DNOTIFY=y | 1274 | CONFIG_DNOTIFY=y |
| 1248 | CONFIG_INOTIFY=y | 1275 | CONFIG_INOTIFY=y |
| 1249 | CONFIG_INOTIFY_USER=y | 1276 | CONFIG_INOTIFY_USER=y |
| @@ -1295,6 +1322,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1295 | # CONFIG_BFS_FS is not set | 1322 | # CONFIG_BFS_FS is not set |
| 1296 | # CONFIG_EFS_FS is not set | 1323 | # CONFIG_EFS_FS is not set |
| 1297 | # CONFIG_CRAMFS is not set | 1324 | # CONFIG_CRAMFS is not set |
| 1325 | # CONFIG_SQUASHFS is not set | ||
| 1298 | # CONFIG_VXFS_FS is not set | 1326 | # CONFIG_VXFS_FS is not set |
| 1299 | CONFIG_MINIX_FS=y | 1327 | CONFIG_MINIX_FS=y |
| 1300 | # CONFIG_OMFS_FS is not set | 1328 | # CONFIG_OMFS_FS is not set |
| @@ -1318,7 +1346,6 @@ CONFIG_LOCKD_V4=y | |||
| 1318 | CONFIG_EXPORTFS=y | 1346 | CONFIG_EXPORTFS=y |
| 1319 | CONFIG_NFS_COMMON=y | 1347 | CONFIG_NFS_COMMON=y |
| 1320 | CONFIG_SUNRPC=y | 1348 | CONFIG_SUNRPC=y |
| 1321 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1322 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1349 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1323 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1350 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1324 | # CONFIG_SMB_FS is not set | 1351 | # CONFIG_SMB_FS is not set |
| @@ -1424,6 +1451,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1424 | # CONFIG_FAULT_INJECTION is not set | 1451 | # CONFIG_FAULT_INJECTION is not set |
| 1425 | # CONFIG_LATENCYTOP is not set | 1452 | # CONFIG_LATENCYTOP is not set |
| 1426 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1453 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1454 | # CONFIG_PAGE_POISONING is not set | ||
| 1427 | CONFIG_HAVE_FUNCTION_TRACER=y | 1455 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1428 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1456 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1429 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1457 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -1439,7 +1467,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1439 | # CONFIG_BOOT_TRACER is not set | 1467 | # CONFIG_BOOT_TRACER is not set |
| 1440 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1468 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1441 | # CONFIG_STACK_TRACER is not set | 1469 | # CONFIG_STACK_TRACER is not set |
| 1442 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1443 | # CONFIG_SAMPLES is not set | 1470 | # CONFIG_SAMPLES is not set |
| 1444 | CONFIG_HAVE_ARCH_KGDB=y | 1471 | CONFIG_HAVE_ARCH_KGDB=y |
| 1445 | # CONFIG_KGDB is not set | 1472 | # CONFIG_KGDB is not set |
| @@ -1544,6 +1571,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1544 | # Compression | 1571 | # Compression |
| 1545 | # | 1572 | # |
| 1546 | # CONFIG_CRYPTO_DEFLATE is not set | 1573 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1574 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1547 | # CONFIG_CRYPTO_LZO is not set | 1575 | # CONFIG_CRYPTO_LZO is not set |
| 1548 | 1576 | ||
| 1549 | # | 1577 | # |
| @@ -1565,7 +1593,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1565 | CONFIG_CRC32=y | 1593 | CONFIG_CRC32=y |
| 1566 | # CONFIG_CRC7 is not set | 1594 | # CONFIG_CRC7 is not set |
| 1567 | # CONFIG_LIBCRC32C is not set | 1595 | # CONFIG_LIBCRC32C is not set |
| 1568 | CONFIG_PLIST=y | ||
| 1569 | CONFIG_HAS_IOMEM=y | 1596 | CONFIG_HAS_IOMEM=y |
| 1570 | CONFIG_HAS_IOPORT=y | 1597 | CONFIG_HAS_IOPORT=y |
| 1571 | CONFIG_HAS_DMA=y | 1598 | CONFIG_HAS_DMA=y |
| 1599 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7206_defconfig b/arch/sh/configs/se7206_defconfig index e5b55b6f002d..d30e0a7ad9f1 100644 --- a/arch/sh/configs/se7206_defconfig +++ b/arch/sh/configs/se7206_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:31:27 2009 | 4 | # Thu Apr 2 18:39:37 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -18,12 +18,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set | 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set |
| 21 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| 29 | # | 31 | # |
| @@ -43,18 +45,28 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 43 | # CONFIG_TASKSTATS is not set | 45 | # CONFIG_TASKSTATS is not set |
| 44 | CONFIG_AUDIT=y | 46 | CONFIG_AUDIT=y |
| 45 | CONFIG_AUDITSYSCALL=y | 47 | CONFIG_AUDITSYSCALL=y |
| 48 | |||
| 49 | # | ||
| 50 | # RCU Subsystem | ||
| 51 | # | ||
| 52 | # CONFIG_CLASSIC_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU is not set | ||
| 54 | CONFIG_PREEMPT_RCU=y | ||
| 55 | CONFIG_RCU_TRACE=y | ||
| 56 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 57 | CONFIG_PREEMPT_RCU_TRACE=y | ||
| 46 | # CONFIG_IKCONFIG is not set | 58 | # CONFIG_IKCONFIG is not set |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 59 | CONFIG_LOG_BUF_SHIFT=14 |
| 60 | # CONFIG_GROUP_SCHED is not set | ||
| 48 | CONFIG_CGROUPS=y | 61 | CONFIG_CGROUPS=y |
| 49 | CONFIG_CGROUP_DEBUG=y | 62 | CONFIG_CGROUP_DEBUG=y |
| 50 | CONFIG_CGROUP_NS=y | 63 | CONFIG_CGROUP_NS=y |
| 51 | # CONFIG_CGROUP_FREEZER is not set | 64 | # CONFIG_CGROUP_FREEZER is not set |
| 52 | CONFIG_CGROUP_DEVICE=y | 65 | CONFIG_CGROUP_DEVICE=y |
| 53 | # CONFIG_GROUP_SCHED is not set | ||
| 54 | CONFIG_CGROUP_CPUACCT=y | 66 | CONFIG_CGROUP_CPUACCT=y |
| 55 | CONFIG_RESOURCE_COUNTERS=y | 67 | CONFIG_RESOURCE_COUNTERS=y |
| 56 | CONFIG_MM_OWNER=y | ||
| 57 | CONFIG_CGROUP_MEM_RES_CTLR=y | 68 | CONFIG_CGROUP_MEM_RES_CTLR=y |
| 69 | CONFIG_MM_OWNER=y | ||
| 58 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 70 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
| 59 | CONFIG_RELAY=y | 71 | CONFIG_RELAY=y |
| 60 | CONFIG_NAMESPACES=y | 72 | CONFIG_NAMESPACES=y |
| @@ -62,31 +74,35 @@ CONFIG_UTS_NS=y | |||
| 62 | CONFIG_IPC_NS=y | 74 | CONFIG_IPC_NS=y |
| 63 | CONFIG_USER_NS=y | 75 | CONFIG_USER_NS=y |
| 64 | CONFIG_PID_NS=y | 76 | CONFIG_PID_NS=y |
| 77 | # CONFIG_NET_NS is not set | ||
| 65 | CONFIG_BLK_DEV_INITRD=y | 78 | CONFIG_BLK_DEV_INITRD=y |
| 66 | CONFIG_INITRAMFS_SOURCE="" | 79 | CONFIG_INITRAMFS_SOURCE="" |
| 80 | CONFIG_RD_GZIP=y | ||
| 81 | # CONFIG_RD_BZIP2 is not set | ||
| 82 | # CONFIG_RD_LZMA is not set | ||
| 83 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 67 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 84 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 68 | CONFIG_SYSCTL=y | 85 | CONFIG_SYSCTL=y |
| 86 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EMBEDDED=y | 87 | CONFIG_EMBEDDED=y |
| 70 | # CONFIG_UID16 is not set | 88 | # CONFIG_UID16 is not set |
| 71 | # CONFIG_SYSCTL_SYSCALL is not set | 89 | # CONFIG_SYSCTL_SYSCALL is not set |
| 72 | CONFIG_KALLSYMS=y | 90 | CONFIG_KALLSYMS=y |
| 73 | CONFIG_KALLSYMS_ALL=y | 91 | CONFIG_KALLSYMS_ALL=y |
| 74 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 75 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 76 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 77 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| 78 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
| 79 | # CONFIG_ELF_CORE is not set | 96 | # CONFIG_ELF_CORE is not set |
| 80 | # CONFIG_COMPAT_BRK is not set | ||
| 81 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
| 82 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
| 83 | CONFIG_ANON_INODES=y | ||
| 84 | CONFIG_EPOLL=y | 99 | CONFIG_EPOLL=y |
| 85 | CONFIG_SIGNALFD=y | 100 | CONFIG_SIGNALFD=y |
| 86 | CONFIG_TIMERFD=y | 101 | CONFIG_TIMERFD=y |
| 87 | CONFIG_EVENTFD=y | 102 | CONFIG_EVENTFD=y |
| 88 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
| 89 | CONFIG_VM_EVENT_COUNTERS=y | 104 | CONFIG_VM_EVENT_COUNTERS=y |
| 105 | # CONFIG_COMPAT_BRK is not set | ||
| 90 | # CONFIG_SLAB is not set | 106 | # CONFIG_SLAB is not set |
| 91 | # CONFIG_SLUB is not set | 107 | # CONFIG_SLUB is not set |
| 92 | CONFIG_SLOB=y | 108 | CONFIG_SLOB=y |
| @@ -127,12 +143,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 127 | # CONFIG_DEFAULT_CFQ is not set | 143 | # CONFIG_DEFAULT_CFQ is not set |
| 128 | CONFIG_DEFAULT_NOOP=y | 144 | CONFIG_DEFAULT_NOOP=y |
| 129 | CONFIG_DEFAULT_IOSCHED="noop" | 145 | 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 | 146 | # CONFIG_FREEZER is not set |
| 137 | 147 | ||
| 138 | # | 148 | # |
| @@ -168,6 +178,7 @@ CONFIG_CPU_SUBTYPE_SH7206=y | |||
| 168 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 178 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 169 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 179 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 170 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 180 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 181 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 171 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 182 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 172 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 183 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 173 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 184 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -206,11 +217,11 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 206 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 217 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 207 | CONFIG_ZONE_DMA_FLAG=0 | 218 | CONFIG_ZONE_DMA_FLAG=0 |
| 208 | CONFIG_NR_QUICK=2 | 219 | CONFIG_NR_QUICK=2 |
| 220 | CONFIG_UNEVICTABLE_LRU=y | ||
| 209 | 221 | ||
| 210 | # | 222 | # |
| 211 | # Cache configuration | 223 | # Cache configuration |
| 212 | # | 224 | # |
| 213 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 214 | CONFIG_CACHE_WRITEBACK=y | 225 | CONFIG_CACHE_WRITEBACK=y |
| 215 | # CONFIG_CACHE_WRITETHROUGH is not set | 226 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 216 | # CONFIG_CACHE_OFF is not set | 227 | # CONFIG_CACHE_OFF is not set |
| @@ -280,7 +291,6 @@ CONFIG_HEARTBEAT=y | |||
| 280 | CONFIG_HZ_1000=y | 291 | CONFIG_HZ_1000=y |
| 281 | CONFIG_HZ=1000 | 292 | CONFIG_HZ=1000 |
| 282 | # CONFIG_SCHED_HRTICK is not set | 293 | # CONFIG_SCHED_HRTICK is not set |
| 283 | CONFIG_KEXEC=y | ||
| 284 | # CONFIG_CRASH_DUMP is not set | 294 | # CONFIG_CRASH_DUMP is not set |
| 285 | # CONFIG_SECCOMP is not set | 295 | # CONFIG_SECCOMP is not set |
| 286 | # CONFIG_PREEMPT_NONE is not set | 296 | # CONFIG_PREEMPT_NONE is not set |
| @@ -322,8 +332,6 @@ CONFIG_NET=y | |||
| 322 | # | 332 | # |
| 323 | # Networking options | 333 | # Networking options |
| 324 | # | 334 | # |
| 325 | # CONFIG_NET_NS is not set | ||
| 326 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 327 | CONFIG_PACKET=y | 335 | CONFIG_PACKET=y |
| 328 | # CONFIG_PACKET_MMAP is not set | 336 | # CONFIG_PACKET_MMAP is not set |
| 329 | CONFIG_UNIX=y | 337 | CONFIG_UNIX=y |
| @@ -378,6 +386,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 378 | # CONFIG_LAPB is not set | 386 | # CONFIG_LAPB is not set |
| 379 | # CONFIG_ECONET is not set | 387 | # CONFIG_ECONET is not set |
| 380 | # CONFIG_WAN_ROUTER is not set | 388 | # CONFIG_WAN_ROUTER is not set |
| 389 | # CONFIG_PHONET is not set | ||
| 381 | # CONFIG_NET_SCHED is not set | 390 | # CONFIG_NET_SCHED is not set |
| 382 | # CONFIG_DCB is not set | 391 | # CONFIG_DCB is not set |
| 383 | 392 | ||
| @@ -385,18 +394,19 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 385 | # Network testing | 394 | # Network testing |
| 386 | # | 395 | # |
| 387 | # CONFIG_NET_PKTGEN is not set | 396 | # CONFIG_NET_PKTGEN is not set |
| 397 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 388 | # CONFIG_HAMRADIO is not set | 398 | # CONFIG_HAMRADIO is not set |
| 389 | # CONFIG_CAN is not set | 399 | # CONFIG_CAN is not set |
| 390 | # CONFIG_IRDA is not set | 400 | # CONFIG_IRDA is not set |
| 391 | # CONFIG_BT is not set | 401 | # CONFIG_BT is not set |
| 392 | # CONFIG_AF_RXRPC is not set | 402 | # CONFIG_AF_RXRPC is not set |
| 393 | # CONFIG_PHONET is not set | ||
| 394 | CONFIG_WIRELESS=y | 403 | CONFIG_WIRELESS=y |
| 395 | # CONFIG_CFG80211 is not set | 404 | # CONFIG_CFG80211 is not set |
| 396 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 405 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 397 | # CONFIG_WIRELESS_EXT is not set | 406 | # CONFIG_WIRELESS_EXT is not set |
| 398 | # CONFIG_LIB80211 is not set | 407 | # CONFIG_LIB80211 is not set |
| 399 | # CONFIG_MAC80211 is not set | 408 | # CONFIG_MAC80211 is not set |
| 409 | # CONFIG_WIMAX is not set | ||
| 400 | # CONFIG_RFKILL is not set | 410 | # CONFIG_RFKILL is not set |
| 401 | # CONFIG_NET_9P is not set | 411 | # CONFIG_NET_9P is not set |
| 402 | 412 | ||
| @@ -419,6 +429,7 @@ CONFIG_MTD=y | |||
| 419 | # CONFIG_MTD_DEBUG is not set | 429 | # CONFIG_MTD_DEBUG is not set |
| 420 | CONFIG_MTD_CONCAT=y | 430 | CONFIG_MTD_CONCAT=y |
| 421 | CONFIG_MTD_PARTITIONS=y | 431 | CONFIG_MTD_PARTITIONS=y |
| 432 | # CONFIG_MTD_TESTS is not set | ||
| 422 | # CONFIG_MTD_REDBOOT_PARTS is not set | 433 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 423 | # CONFIG_MTD_CMDLINE_PARTS is not set | 434 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 424 | # CONFIG_MTD_AR7_PARTS is not set | 435 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -466,9 +477,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 466 | # | 477 | # |
| 467 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 478 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 468 | CONFIG_MTD_PHYSMAP=y | 479 | CONFIG_MTD_PHYSMAP=y |
| 469 | CONFIG_MTD_PHYSMAP_START=0x20000000 | 480 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 470 | CONFIG_MTD_PHYSMAP_LEN=0x01000000 | ||
| 471 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
| 472 | # CONFIG_MTD_PLATRAM is not set | 481 | # CONFIG_MTD_PLATRAM is not set |
| 473 | 482 | ||
| 474 | # | 483 | # |
| @@ -489,6 +498,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | |||
| 489 | # CONFIG_MTD_ONENAND is not set | 498 | # CONFIG_MTD_ONENAND is not set |
| 490 | 499 | ||
| 491 | # | 500 | # |
| 501 | # LPDDR flash memory drivers | ||
| 502 | # | ||
| 503 | # CONFIG_MTD_LPDDR is not set | ||
| 504 | |||
| 505 | # | ||
| 492 | # UBI - Unsorted block images | 506 | # UBI - Unsorted block images |
| 493 | # | 507 | # |
| 494 | # CONFIG_MTD_UBI is not set | 508 | # CONFIG_MTD_UBI is not set |
| @@ -506,9 +520,13 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 506 | # CONFIG_ATA_OVER_ETH is not set | 520 | # CONFIG_ATA_OVER_ETH is not set |
| 507 | # CONFIG_BLK_DEV_HD is not set | 521 | # CONFIG_BLK_DEV_HD is not set |
| 508 | CONFIG_MISC_DEVICES=y | 522 | CONFIG_MISC_DEVICES=y |
| 509 | CONFIG_EEPROM_93CX6=y | ||
| 510 | # CONFIG_ENCLOSURE_SERVICES is not set | 523 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 511 | # CONFIG_C2PORT is not set | 524 | # CONFIG_C2PORT is not set |
| 525 | |||
| 526 | # | ||
| 527 | # EEPROM support | ||
| 528 | # | ||
| 529 | CONFIG_EEPROM_93CX6=y | ||
| 512 | CONFIG_HAVE_IDE=y | 530 | CONFIG_HAVE_IDE=y |
| 513 | # CONFIG_IDE is not set | 531 | # CONFIG_IDE is not set |
| 514 | 532 | ||
| @@ -522,6 +540,7 @@ CONFIG_HAVE_IDE=y | |||
| 522 | # CONFIG_ATA is not set | 540 | # CONFIG_ATA is not set |
| 523 | # CONFIG_MD is not set | 541 | # CONFIG_MD is not set |
| 524 | CONFIG_NETDEVICES=y | 542 | CONFIG_NETDEVICES=y |
| 543 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 525 | # CONFIG_DUMMY is not set | 544 | # CONFIG_DUMMY is not set |
| 526 | # CONFIG_BONDING is not set | 545 | # CONFIG_BONDING is not set |
| 527 | # CONFIG_MACVLAN is not set | 546 | # CONFIG_MACVLAN is not set |
| @@ -534,8 +553,10 @@ CONFIG_MII=y | |||
| 534 | # CONFIG_AX88796 is not set | 553 | # CONFIG_AX88796 is not set |
| 535 | # CONFIG_STNIC is not set | 554 | # CONFIG_STNIC is not set |
| 536 | CONFIG_SMC91X=y | 555 | CONFIG_SMC91X=y |
| 556 | # CONFIG_ETHOC is not set | ||
| 537 | # CONFIG_SMC911X is not set | 557 | # CONFIG_SMC911X is not set |
| 538 | # CONFIG_SMSC911X is not set | 558 | # CONFIG_SMSC911X is not set |
| 559 | # CONFIG_DNET is not set | ||
| 539 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 560 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 540 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 561 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 541 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 562 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -552,7 +573,10 @@ CONFIG_SMC91X=y | |||
| 552 | # | 573 | # |
| 553 | # CONFIG_WLAN_PRE80211 is not set | 574 | # CONFIG_WLAN_PRE80211 is not set |
| 554 | # CONFIG_WLAN_80211 is not set | 575 | # CONFIG_WLAN_80211 is not set |
| 555 | # CONFIG_IWLWIFI_LEDS is not set | 576 | |
| 577 | # | ||
| 578 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 579 | # | ||
| 556 | # CONFIG_WAN is not set | 580 | # CONFIG_WAN is not set |
| 557 | # CONFIG_PPP is not set | 581 | # CONFIG_PPP is not set |
| 558 | # CONFIG_SLIP is not set | 582 | # CONFIG_SLIP is not set |
| @@ -696,6 +720,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 696 | # | 720 | # |
| 697 | CONFIG_RTC_DRV_SH=y | 721 | CONFIG_RTC_DRV_SH=y |
| 698 | # CONFIG_DMADEVICES is not set | 722 | # CONFIG_DMADEVICES is not set |
| 723 | # CONFIG_AUXDISPLAY is not set | ||
| 699 | # CONFIG_UIO is not set | 724 | # CONFIG_UIO is not set |
| 700 | # CONFIG_STAGING is not set | 725 | # CONFIG_STAGING is not set |
| 701 | 726 | ||
| @@ -712,6 +737,7 @@ CONFIG_EXT2_FS=y | |||
| 712 | CONFIG_FILE_LOCKING=y | 737 | CONFIG_FILE_LOCKING=y |
| 713 | # CONFIG_XFS_FS is not set | 738 | # CONFIG_XFS_FS is not set |
| 714 | # CONFIG_OCFS2_FS is not set | 739 | # CONFIG_OCFS2_FS is not set |
| 740 | # CONFIG_BTRFS_FS is not set | ||
| 715 | # CONFIG_DNOTIFY is not set | 741 | # CONFIG_DNOTIFY is not set |
| 716 | # CONFIG_INOTIFY is not set | 742 | # CONFIG_INOTIFY is not set |
| 717 | # CONFIG_QUOTA is not set | 743 | # CONFIG_QUOTA is not set |
| @@ -752,6 +778,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 752 | # CONFIG_EFS_FS is not set | 778 | # CONFIG_EFS_FS is not set |
| 753 | # CONFIG_JFFS2_FS is not set | 779 | # CONFIG_JFFS2_FS is not set |
| 754 | CONFIG_CRAMFS=y | 780 | CONFIG_CRAMFS=y |
| 781 | # CONFIG_SQUASHFS is not set | ||
| 755 | # CONFIG_VXFS_FS is not set | 782 | # CONFIG_VXFS_FS is not set |
| 756 | # CONFIG_MINIX_FS is not set | 783 | # CONFIG_MINIX_FS is not set |
| 757 | # CONFIG_OMFS_FS is not set | 784 | # CONFIG_OMFS_FS is not set |
| @@ -771,7 +798,6 @@ CONFIG_LOCKD=y | |||
| 771 | CONFIG_LOCKD_V4=y | 798 | CONFIG_LOCKD_V4=y |
| 772 | CONFIG_NFS_COMMON=y | 799 | CONFIG_NFS_COMMON=y |
| 773 | CONFIG_SUNRPC=y | 800 | CONFIG_SUNRPC=y |
| 774 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 775 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 801 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 776 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 802 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 777 | # CONFIG_SMB_FS is not set | 803 | # CONFIG_SMB_FS is not set |
| @@ -824,6 +850,7 @@ CONFIG_STACKTRACE=y | |||
| 824 | CONFIG_DEBUG_BUGVERBOSE=y | 850 | CONFIG_DEBUG_BUGVERBOSE=y |
| 825 | # CONFIG_DEBUG_INFO is not set | 851 | # CONFIG_DEBUG_INFO is not set |
| 826 | CONFIG_DEBUG_VM=y | 852 | CONFIG_DEBUG_VM=y |
| 853 | # CONFIG_DEBUG_NOMMU_REGIONS is not set | ||
| 827 | # CONFIG_DEBUG_WRITECOUNT is not set | 854 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 828 | # CONFIG_DEBUG_MEMORY_INIT is not set | 855 | # CONFIG_DEBUG_MEMORY_INIT is not set |
| 829 | CONFIG_DEBUG_LIST=y | 856 | CONFIG_DEBUG_LIST=y |
| @@ -835,6 +862,7 @@ CONFIG_FRAME_POINTER=y | |||
| 835 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 862 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 836 | # CONFIG_FAULT_INJECTION is not set | 863 | # CONFIG_FAULT_INJECTION is not set |
| 837 | # CONFIG_LATENCYTOP is not set | 864 | # CONFIG_LATENCYTOP is not set |
| 865 | # CONFIG_PAGE_POISONING is not set | ||
| 838 | CONFIG_NOP_TRACER=y | 866 | CONFIG_NOP_TRACER=y |
| 839 | CONFIG_HAVE_FUNCTION_TRACER=y | 867 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 840 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 868 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| @@ -852,7 +880,7 @@ CONFIG_TRACING=y | |||
| 852 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 880 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 853 | # CONFIG_STACK_TRACER is not set | 881 | # CONFIG_STACK_TRACER is not set |
| 854 | # CONFIG_FTRACE_STARTUP_TEST is not set | 882 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 855 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 883 | # CONFIG_DYNAMIC_DEBUG is not set |
| 856 | # CONFIG_SAMPLES is not set | 884 | # CONFIG_SAMPLES is not set |
| 857 | CONFIG_HAVE_ARCH_KGDB=y | 885 | CONFIG_HAVE_ARCH_KGDB=y |
| 858 | # CONFIG_KGDB is not set | 886 | # CONFIG_KGDB is not set |
| @@ -955,6 +983,7 @@ CONFIG_CRYPTO_CRC32C=y | |||
| 955 | # Compression | 983 | # Compression |
| 956 | # | 984 | # |
| 957 | CONFIG_CRYPTO_DEFLATE=y | 985 | CONFIG_CRYPTO_DEFLATE=y |
| 986 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 958 | CONFIG_CRYPTO_LZO=y | 987 | CONFIG_CRYPTO_LZO=y |
| 959 | 988 | ||
| 960 | # | 989 | # |
| @@ -980,7 +1009,8 @@ CONFIG_ZLIB_INFLATE=y | |||
| 980 | CONFIG_ZLIB_DEFLATE=y | 1009 | CONFIG_ZLIB_DEFLATE=y |
| 981 | CONFIG_LZO_COMPRESS=y | 1010 | CONFIG_LZO_COMPRESS=y |
| 982 | CONFIG_LZO_DECOMPRESS=y | 1011 | CONFIG_LZO_DECOMPRESS=y |
| 983 | CONFIG_PLIST=y | 1012 | CONFIG_DECOMPRESS_GZIP=y |
| 984 | CONFIG_HAS_IOMEM=y | 1013 | CONFIG_HAS_IOMEM=y |
| 985 | CONFIG_HAS_IOPORT=y | 1014 | CONFIG_HAS_IOPORT=y |
| 986 | CONFIG_HAS_DMA=y | 1015 | CONFIG_HAS_DMA=y |
| 1016 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7343_defconfig b/arch/sh/configs/se7343_defconfig index 390052577031..fbb72d029e68 100644 --- a/arch/sh/configs/se7343_defconfig +++ b/arch/sh/configs/se7343_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:33:53 2009 | 4 | # Thu Apr 2 18:42:00 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,14 +16,16 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | # CONFIG_GENERIC_GPIO is not set | 16 | # CONFIG_GENERIC_GPIO is not set |
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| 29 | # | 31 | # |
| @@ -41,14 +43,23 @@ CONFIG_POSIX_MQUEUE=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 43 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | CONFIG_GROUP_SCHED=y | 57 | CONFIG_GROUP_SCHED=y |
| 48 | CONFIG_FAIR_GROUP_SCHED=y | 58 | CONFIG_FAIR_GROUP_SCHED=y |
| 49 | # CONFIG_RT_GROUP_SCHED is not set | 59 | # CONFIG_RT_GROUP_SCHED is not set |
| 50 | CONFIG_USER_SCHED=y | 60 | CONFIG_USER_SCHED=y |
| 51 | # CONFIG_CGROUP_SCHED is not set | 61 | # CONFIG_CGROUP_SCHED is not set |
| 62 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 63 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 64 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | # CONFIG_RELAY is not set | 65 | # CONFIG_RELAY is not set |
| @@ -56,6 +67,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 56 | # CONFIG_BLK_DEV_INITRD is not set | 67 | # CONFIG_BLK_DEV_INITRD is not set |
| 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 68 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 58 | CONFIG_SYSCTL=y | 69 | CONFIG_SYSCTL=y |
| 70 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 71 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 72 | CONFIG_UID16=y |
| 61 | # CONFIG_SYSCTL_SYSCALL is not set | 73 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -65,10 +77,8 @@ CONFIG_HOTPLUG=y | |||
| 65 | CONFIG_PRINTK=y | 77 | CONFIG_PRINTK=y |
| 66 | CONFIG_BUG=y | 78 | CONFIG_BUG=y |
| 67 | CONFIG_ELF_CORE=y | 79 | CONFIG_ELF_CORE=y |
| 68 | CONFIG_COMPAT_BRK=y | ||
| 69 | CONFIG_BASE_FULL=y | 80 | CONFIG_BASE_FULL=y |
| 70 | # CONFIG_FUTEX is not set | 81 | # CONFIG_FUTEX is not set |
| 71 | CONFIG_ANON_INODES=y | ||
| 72 | # CONFIG_EPOLL is not set | 82 | # CONFIG_EPOLL is not set |
| 73 | CONFIG_SIGNALFD=y | 83 | CONFIG_SIGNALFD=y |
| 74 | CONFIG_TIMERFD=y | 84 | CONFIG_TIMERFD=y |
| @@ -76,6 +86,7 @@ CONFIG_EVENTFD=y | |||
| 76 | # CONFIG_SHMEM is not set | 86 | # CONFIG_SHMEM is not set |
| 77 | CONFIG_AIO=y | 87 | CONFIG_AIO=y |
| 78 | CONFIG_VM_EVENT_COUNTERS=y | 88 | CONFIG_VM_EVENT_COUNTERS=y |
| 89 | CONFIG_COMPAT_BRK=y | ||
| 79 | CONFIG_SLAB=y | 90 | CONFIG_SLAB=y |
| 80 | # CONFIG_SLUB is not set | 91 | # CONFIG_SLUB is not set |
| 81 | # CONFIG_SLOB is not set | 92 | # CONFIG_SLOB is not set |
| @@ -114,11 +125,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 114 | # CONFIG_DEFAULT_CFQ is not set | 125 | # CONFIG_DEFAULT_CFQ is not set |
| 115 | # CONFIG_DEFAULT_NOOP is not set | 126 | # CONFIG_DEFAULT_NOOP is not set |
| 116 | CONFIG_DEFAULT_IOSCHED="deadline" | 127 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 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 | 128 | # CONFIG_FREEZER is not set |
| 123 | 129 | ||
| 124 | # | 130 | # |
| @@ -127,6 +133,7 @@ CONFIG_CLASSIC_RCU=y | |||
| 127 | CONFIG_CPU_SH4=y | 133 | CONFIG_CPU_SH4=y |
| 128 | CONFIG_CPU_SH4A=y | 134 | CONFIG_CPU_SH4A=y |
| 129 | CONFIG_CPU_SH4AL_DSP=y | 135 | CONFIG_CPU_SH4AL_DSP=y |
| 136 | CONFIG_ARCH_SHMOBILE=y | ||
| 130 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 137 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 131 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | 138 | # CONFIG_CPU_SUBTYPE_SH7201 is not set |
| 132 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| @@ -155,6 +162,7 @@ CONFIG_CPU_SH4AL_DSP=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 165 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 166 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | CONFIG_CPU_SUBTYPE_SH7343=y | 167 | CONFIG_CPU_SUBTYPE_SH7343=y |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +204,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 204 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 205 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 206 | CONFIG_UNEVICTABLE_LRU=y |
| 207 | CONFIG_HAVE_MLOCK=y | ||
| 208 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 209 | ||
| 200 | # | 210 | # |
| 201 | # Cache configuration | 211 | # Cache configuration |
| 202 | # | 212 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 213 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 214 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 215 | # CONFIG_CACHE_OFF is not set |
| @@ -227,6 +236,7 @@ CONFIG_SH_7343_SOLUTION_ENGINE=y | |||
| 227 | # Timer and clock configuration | 236 | # Timer and clock configuration |
| 228 | # | 237 | # |
| 229 | CONFIG_SH_TMU=y | 238 | CONFIG_SH_TMU=y |
| 239 | # CONFIG_SH_TIMER_CMT is not set | ||
| 230 | CONFIG_SH_TIMER_IRQ=16 | 240 | CONFIG_SH_TIMER_IRQ=16 |
| 231 | CONFIG_SH_PCLK_FREQ=33333333 | 241 | CONFIG_SH_PCLK_FREQ=33333333 |
| 232 | # CONFIG_NO_HZ is not set | 242 | # CONFIG_NO_HZ is not set |
| @@ -302,7 +312,6 @@ CONFIG_NET=y | |||
| 302 | # | 312 | # |
| 303 | # Networking options | 313 | # Networking options |
| 304 | # | 314 | # |
| 305 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 306 | CONFIG_PACKET=y | 315 | CONFIG_PACKET=y |
| 307 | CONFIG_PACKET_MMAP=y | 316 | CONFIG_PACKET_MMAP=y |
| 308 | CONFIG_UNIX=y | 317 | CONFIG_UNIX=y |
| @@ -353,6 +362,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 353 | # CONFIG_LAPB is not set | 362 | # CONFIG_LAPB is not set |
| 354 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
| 355 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 356 | # CONFIG_NET_SCHED is not set | 366 | # CONFIG_NET_SCHED is not set |
| 357 | # CONFIG_DCB is not set | 367 | # CONFIG_DCB is not set |
| 358 | 368 | ||
| @@ -365,13 +375,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 365 | # CONFIG_IRDA is not set | 375 | # CONFIG_IRDA is not set |
| 366 | # CONFIG_BT is not set | 376 | # CONFIG_BT is not set |
| 367 | # CONFIG_AF_RXRPC is not set | 377 | # CONFIG_AF_RXRPC is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 369 | CONFIG_WIRELESS=y | 378 | CONFIG_WIRELESS=y |
| 370 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
| 371 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 380 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 372 | # CONFIG_WIRELESS_EXT is not set | 381 | # CONFIG_WIRELESS_EXT is not set |
| 373 | # CONFIG_LIB80211 is not set | 382 | # CONFIG_LIB80211 is not set |
| 374 | # CONFIG_MAC80211 is not set | 383 | # CONFIG_MAC80211 is not set |
| 384 | # CONFIG_WIMAX is not set | ||
| 375 | # CONFIG_RFKILL is not set | 385 | # CONFIG_RFKILL is not set |
| 376 | # CONFIG_NET_9P is not set | 386 | # CONFIG_NET_9P is not set |
| 377 | 387 | ||
| @@ -394,6 +404,7 @@ CONFIG_MTD=y | |||
| 394 | # CONFIG_MTD_DEBUG is not set | 404 | # CONFIG_MTD_DEBUG is not set |
| 395 | CONFIG_MTD_CONCAT=y | 405 | CONFIG_MTD_CONCAT=y |
| 396 | CONFIG_MTD_PARTITIONS=y | 406 | CONFIG_MTD_PARTITIONS=y |
| 407 | # CONFIG_MTD_TESTS is not set | ||
| 397 | # CONFIG_MTD_REDBOOT_PARTS is not set | 408 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 398 | # CONFIG_MTD_CMDLINE_PARTS is not set | 409 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 399 | # CONFIG_MTD_AR7_PARTS is not set | 410 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -441,9 +452,7 @@ CONFIG_MTD_RAM=y | |||
| 441 | # | 452 | # |
| 442 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 453 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 443 | CONFIG_MTD_PHYSMAP=y | 454 | CONFIG_MTD_PHYSMAP=y |
| 444 | CONFIG_MTD_PHYSMAP_START=0x0 | 455 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 445 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
| 446 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
| 447 | # CONFIG_MTD_PLATRAM is not set | 456 | # CONFIG_MTD_PLATRAM is not set |
| 448 | 457 | ||
| 449 | # | 458 | # |
| @@ -464,6 +473,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | |||
| 464 | # CONFIG_MTD_ONENAND is not set | 473 | # CONFIG_MTD_ONENAND is not set |
| 465 | 474 | ||
| 466 | # | 475 | # |
| 476 | # LPDDR flash memory drivers | ||
| 477 | # | ||
| 478 | # CONFIG_MTD_LPDDR is not set | ||
| 479 | |||
| 480 | # | ||
| 467 | # UBI - Unsorted block images | 481 | # UBI - Unsorted block images |
| 468 | # | 482 | # |
| 469 | # CONFIG_MTD_UBI is not set | 483 | # CONFIG_MTD_UBI is not set |
| @@ -520,9 +534,11 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 520 | # CONFIG_SCSI_SRP_ATTRS is not set | 534 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 521 | # CONFIG_SCSI_LOWLEVEL is not set | 535 | # CONFIG_SCSI_LOWLEVEL is not set |
| 522 | # CONFIG_SCSI_DH is not set | 536 | # CONFIG_SCSI_DH is not set |
| 537 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 523 | # CONFIG_ATA is not set | 538 | # CONFIG_ATA is not set |
| 524 | # CONFIG_MD is not set | 539 | # CONFIG_MD is not set |
| 525 | CONFIG_NETDEVICES=y | 540 | CONFIG_NETDEVICES=y |
| 541 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 526 | # CONFIG_DUMMY is not set | 542 | # CONFIG_DUMMY is not set |
| 527 | # CONFIG_BONDING is not set | 543 | # CONFIG_BONDING is not set |
| 528 | # CONFIG_MACVLAN is not set | 544 | # CONFIG_MACVLAN is not set |
| @@ -539,7 +555,10 @@ CONFIG_MII=y | |||
| 539 | # | 555 | # |
| 540 | # CONFIG_WLAN_PRE80211 is not set | 556 | # CONFIG_WLAN_PRE80211 is not set |
| 541 | # CONFIG_WLAN_80211 is not set | 557 | # CONFIG_WLAN_80211 is not set |
| 542 | # CONFIG_IWLWIFI_LEDS is not set | 558 | |
| 559 | # | ||
| 560 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 561 | # | ||
| 543 | 562 | ||
| 544 | # | 563 | # |
| 545 | # USB Network Adapters | 564 | # USB Network Adapters |
| @@ -633,6 +652,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 633 | CONFIG_LEGACY_PTY_COUNT=256 | 652 | CONFIG_LEGACY_PTY_COUNT=256 |
| 634 | # CONFIG_IPMI_HANDLER is not set | 653 | # CONFIG_IPMI_HANDLER is not set |
| 635 | CONFIG_HW_RANDOM=y | 654 | CONFIG_HW_RANDOM=y |
| 655 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 636 | # CONFIG_R3964 is not set | 656 | # CONFIG_R3964 is not set |
| 637 | # CONFIG_RAW_DRIVER is not set | 657 | # CONFIG_RAW_DRIVER is not set |
| 638 | # CONFIG_TCG_TPM is not set | 658 | # CONFIG_TCG_TPM is not set |
| @@ -669,12 +689,9 @@ CONFIG_I2C_SH_MOBILE=y | |||
| 669 | # Miscellaneous I2C Chip support | 689 | # Miscellaneous I2C Chip support |
| 670 | # | 690 | # |
| 671 | # CONFIG_DS1682 is not set | 691 | # CONFIG_DS1682 is not set |
| 672 | # CONFIG_EEPROM_AT24 is not set | ||
| 673 | # CONFIG_EEPROM_LEGACY is not set | ||
| 674 | # CONFIG_SENSORS_PCF8574 is not set | 692 | # CONFIG_SENSORS_PCF8574 is not set |
| 675 | # CONFIG_PCF8575 is not set | 693 | # CONFIG_PCF8575 is not set |
| 676 | # CONFIG_SENSORS_PCA9539 is not set | 694 | # CONFIG_SENSORS_PCA9539 is not set |
| 677 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 678 | # CONFIG_SENSORS_MAX6875 is not set | 695 | # CONFIG_SENSORS_MAX6875 is not set |
| 679 | # CONFIG_SENSORS_TSL2550 is not set | 696 | # CONFIG_SENSORS_TSL2550 is not set |
| 680 | # CONFIG_I2C_DEBUG_CORE is not set | 697 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -706,6 +723,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 706 | # CONFIG_PMIC_DA903X is not set | 723 | # CONFIG_PMIC_DA903X is not set |
| 707 | # CONFIG_MFD_WM8400 is not set | 724 | # CONFIG_MFD_WM8400 is not set |
| 708 | # CONFIG_MFD_WM8350_I2C is not set | 725 | # CONFIG_MFD_WM8350_I2C is not set |
| 726 | # CONFIG_MFD_PCF50633 is not set | ||
| 709 | # CONFIG_REGULATOR is not set | 727 | # CONFIG_REGULATOR is not set |
| 710 | 728 | ||
| 711 | # | 729 | # |
| @@ -727,7 +745,7 @@ CONFIG_VIDEO_MEDIA=y | |||
| 727 | # | 745 | # |
| 728 | # CONFIG_MEDIA_ATTACH is not set | 746 | # CONFIG_MEDIA_ATTACH is not set |
| 729 | CONFIG_MEDIA_TUNER=y | 747 | CONFIG_MEDIA_TUNER=y |
| 730 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 748 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 731 | CONFIG_MEDIA_TUNER_SIMPLE=y | 749 | CONFIG_MEDIA_TUNER_SIMPLE=y |
| 732 | CONFIG_MEDIA_TUNER_TDA8290=y | 750 | CONFIG_MEDIA_TUNER_TDA8290=y |
| 733 | CONFIG_MEDIA_TUNER_TDA9887=y | 751 | CONFIG_MEDIA_TUNER_TDA9887=y |
| @@ -736,6 +754,7 @@ CONFIG_MEDIA_TUNER_TEA5767=y | |||
| 736 | CONFIG_MEDIA_TUNER_MT20XX=y | 754 | CONFIG_MEDIA_TUNER_MT20XX=y |
| 737 | CONFIG_MEDIA_TUNER_XC2028=y | 755 | CONFIG_MEDIA_TUNER_XC2028=y |
| 738 | CONFIG_MEDIA_TUNER_XC5000=y | 756 | CONFIG_MEDIA_TUNER_XC5000=y |
| 757 | CONFIG_MEDIA_TUNER_MC44S803=y | ||
| 739 | CONFIG_VIDEO_V4L2=y | 758 | CONFIG_VIDEO_V4L2=y |
| 740 | CONFIG_VIDEO_V4L1=y | 759 | CONFIG_VIDEO_V4L1=y |
| 741 | CONFIG_VIDEO_CAPTURE_DRIVERS=y | 760 | CONFIG_VIDEO_CAPTURE_DRIVERS=y |
| @@ -757,6 +776,7 @@ CONFIG_USB_GSPCA=m | |||
| 757 | # CONFIG_USB_GSPCA_ETOMS is not set | 776 | # CONFIG_USB_GSPCA_ETOMS is not set |
| 758 | # CONFIG_USB_GSPCA_FINEPIX is not set | 777 | # CONFIG_USB_GSPCA_FINEPIX is not set |
| 759 | # CONFIG_USB_GSPCA_MARS is not set | 778 | # CONFIG_USB_GSPCA_MARS is not set |
| 779 | # CONFIG_USB_GSPCA_MR97310A is not set | ||
| 760 | # CONFIG_USB_GSPCA_OV519 is not set | 780 | # CONFIG_USB_GSPCA_OV519 is not set |
| 761 | # CONFIG_USB_GSPCA_OV534 is not set | 781 | # CONFIG_USB_GSPCA_OV534 is not set |
| 762 | # CONFIG_USB_GSPCA_PAC207 is not set | 782 | # CONFIG_USB_GSPCA_PAC207 is not set |
| @@ -769,6 +789,8 @@ CONFIG_USB_GSPCA=m | |||
| 769 | # CONFIG_USB_GSPCA_SPCA506 is not set | 789 | # CONFIG_USB_GSPCA_SPCA506 is not set |
| 770 | # CONFIG_USB_GSPCA_SPCA508 is not set | 790 | # CONFIG_USB_GSPCA_SPCA508 is not set |
| 771 | # CONFIG_USB_GSPCA_SPCA561 is not set | 791 | # CONFIG_USB_GSPCA_SPCA561 is not set |
| 792 | # CONFIG_USB_GSPCA_SQ905 is not set | ||
| 793 | # CONFIG_USB_GSPCA_SQ905C is not set | ||
| 772 | # CONFIG_USB_GSPCA_STK014 is not set | 794 | # CONFIG_USB_GSPCA_STK014 is not set |
| 773 | # CONFIG_USB_GSPCA_SUNPLUS is not set | 795 | # CONFIG_USB_GSPCA_SUNPLUS is not set |
| 774 | # CONFIG_USB_GSPCA_T613 is not set | 796 | # CONFIG_USB_GSPCA_T613 is not set |
| @@ -776,6 +798,7 @@ CONFIG_USB_GSPCA=m | |||
| 776 | # CONFIG_USB_GSPCA_VC032X is not set | 798 | # CONFIG_USB_GSPCA_VC032X is not set |
| 777 | # CONFIG_USB_GSPCA_ZC3XX is not set | 799 | # CONFIG_USB_GSPCA_ZC3XX is not set |
| 778 | # CONFIG_VIDEO_PVRUSB2 is not set | 800 | # CONFIG_VIDEO_PVRUSB2 is not set |
| 801 | # CONFIG_VIDEO_HDPVR is not set | ||
| 779 | # CONFIG_VIDEO_EM28XX is not set | 802 | # CONFIG_VIDEO_EM28XX is not set |
| 780 | # CONFIG_VIDEO_USBVISION is not set | 803 | # CONFIG_VIDEO_USBVISION is not set |
| 781 | # CONFIG_USB_VICAM is not set | 804 | # CONFIG_USB_VICAM is not set |
| @@ -833,6 +856,7 @@ CONFIG_FB_SH_MOBILE_LCDC=m | |||
| 833 | # CONFIG_FB_VIRTUAL is not set | 856 | # CONFIG_FB_VIRTUAL is not set |
| 834 | # CONFIG_FB_METRONOME is not set | 857 | # CONFIG_FB_METRONOME is not set |
| 835 | # CONFIG_FB_MB862XX is not set | 858 | # CONFIG_FB_MB862XX is not set |
| 859 | # CONFIG_FB_BROADSHEET is not set | ||
| 836 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 860 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 837 | 861 | ||
| 838 | # | 862 | # |
| @@ -940,7 +964,9 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 940 | # USB Host Controller Drivers | 964 | # USB Host Controller Drivers |
| 941 | # | 965 | # |
| 942 | # CONFIG_USB_C67X00_HCD is not set | 966 | # CONFIG_USB_C67X00_HCD is not set |
| 967 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 943 | CONFIG_USB_ISP116X_HCD=y | 968 | CONFIG_USB_ISP116X_HCD=y |
| 969 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 944 | # CONFIG_USB_SL811_HCD is not set | 970 | # CONFIG_USB_SL811_HCD is not set |
| 945 | # CONFIG_USB_R8A66597_HCD is not set | 971 | # CONFIG_USB_R8A66597_HCD is not set |
| 946 | # CONFIG_USB_HWA_HCD is not set | 972 | # CONFIG_USB_HWA_HCD is not set |
| @@ -954,11 +980,11 @@ CONFIG_USB_ISP116X_HCD=y | |||
| 954 | # CONFIG_USB_TMC is not set | 980 | # CONFIG_USB_TMC is not set |
| 955 | 981 | ||
| 956 | # | 982 | # |
| 957 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 983 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 958 | # | 984 | # |
| 959 | 985 | ||
| 960 | # | 986 | # |
| 961 | # see USB_STORAGE Help for more information | 987 | # also be needed; see USB_STORAGE Help for more info |
| 962 | # | 988 | # |
| 963 | # CONFIG_USB_STORAGE is not set | 989 | # CONFIG_USB_STORAGE is not set |
| 964 | # CONFIG_USB_LIBUSUAL is not set | 990 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -988,7 +1014,6 @@ CONFIG_USB_ISP116X_HCD=y | |||
| 988 | # CONFIG_USB_LED is not set | 1014 | # CONFIG_USB_LED is not set |
| 989 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1015 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 990 | # CONFIG_USB_CYTHERM is not set | 1016 | # CONFIG_USB_CYTHERM is not set |
| 991 | # CONFIG_USB_PHIDGET is not set | ||
| 992 | # CONFIG_USB_IDMOUSE is not set | 1017 | # CONFIG_USB_IDMOUSE is not set |
| 993 | # CONFIG_USB_FTDI_ELAN is not set | 1018 | # CONFIG_USB_FTDI_ELAN is not set |
| 994 | # CONFIG_USB_APPLEDISPLAY is not set | 1019 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -999,12 +1024,18 @@ CONFIG_USB_ISP116X_HCD=y | |||
| 999 | # CONFIG_USB_ISIGHTFW is not set | 1024 | # CONFIG_USB_ISIGHTFW is not set |
| 1000 | # CONFIG_USB_VST is not set | 1025 | # CONFIG_USB_VST is not set |
| 1001 | # CONFIG_USB_GADGET is not set | 1026 | # CONFIG_USB_GADGET is not set |
| 1027 | |||
| 1028 | # | ||
| 1029 | # OTG and related infrastructure | ||
| 1030 | # | ||
| 1031 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1002 | # CONFIG_MMC is not set | 1032 | # CONFIG_MMC is not set |
| 1003 | # CONFIG_MEMSTICK is not set | 1033 | # CONFIG_MEMSTICK is not set |
| 1004 | # CONFIG_NEW_LEDS is not set | 1034 | # CONFIG_NEW_LEDS is not set |
| 1005 | # CONFIG_ACCESSIBILITY is not set | 1035 | # CONFIG_ACCESSIBILITY is not set |
| 1006 | # CONFIG_RTC_CLASS is not set | 1036 | # CONFIG_RTC_CLASS is not set |
| 1007 | # CONFIG_DMADEVICES is not set | 1037 | # CONFIG_DMADEVICES is not set |
| 1038 | # CONFIG_AUXDISPLAY is not set | ||
| 1008 | CONFIG_UIO=y | 1039 | CONFIG_UIO=y |
| 1009 | # CONFIG_UIO_PDRV is not set | 1040 | # CONFIG_UIO_PDRV is not set |
| 1010 | # CONFIG_UIO_PDRV_GENIRQ is not set | 1041 | # CONFIG_UIO_PDRV_GENIRQ is not set |
| @@ -1031,6 +1062,7 @@ CONFIG_FS_MBCACHE=y | |||
| 1031 | CONFIG_FILE_LOCKING=y | 1062 | CONFIG_FILE_LOCKING=y |
| 1032 | # CONFIG_XFS_FS is not set | 1063 | # CONFIG_XFS_FS is not set |
| 1033 | # CONFIG_OCFS2_FS is not set | 1064 | # CONFIG_OCFS2_FS is not set |
| 1065 | # CONFIG_BTRFS_FS is not set | ||
| 1034 | # CONFIG_DNOTIFY is not set | 1066 | # CONFIG_DNOTIFY is not set |
| 1035 | # CONFIG_INOTIFY is not set | 1067 | # CONFIG_INOTIFY is not set |
| 1036 | # CONFIG_QUOTA is not set | 1068 | # CONFIG_QUOTA is not set |
| @@ -1084,6 +1116,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 1084 | CONFIG_JFFS2_RTIME=y | 1116 | CONFIG_JFFS2_RTIME=y |
| 1085 | # CONFIG_JFFS2_RUBIN is not set | 1117 | # CONFIG_JFFS2_RUBIN is not set |
| 1086 | CONFIG_CRAMFS=y | 1118 | CONFIG_CRAMFS=y |
| 1119 | # CONFIG_SQUASHFS is not set | ||
| 1087 | # CONFIG_VXFS_FS is not set | 1120 | # CONFIG_VXFS_FS is not set |
| 1088 | # CONFIG_MINIX_FS is not set | 1121 | # CONFIG_MINIX_FS is not set |
| 1089 | # CONFIG_OMFS_FS is not set | 1122 | # CONFIG_OMFS_FS is not set |
| @@ -1105,7 +1138,6 @@ CONFIG_LOCKD_V4=y | |||
| 1105 | CONFIG_EXPORTFS=y | 1138 | CONFIG_EXPORTFS=y |
| 1106 | CONFIG_NFS_COMMON=y | 1139 | CONFIG_NFS_COMMON=y |
| 1107 | CONFIG_SUNRPC=y | 1140 | CONFIG_SUNRPC=y |
| 1108 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1109 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1141 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1110 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1142 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1111 | # CONFIG_SMB_FS is not set | 1143 | # CONFIG_SMB_FS is not set |
| @@ -1146,7 +1178,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1146 | # | 1178 | # |
| 1147 | # Tracers | 1179 | # Tracers |
| 1148 | # | 1180 | # |
| 1149 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1150 | # CONFIG_SAMPLES is not set | 1181 | # CONFIG_SAMPLES is not set |
| 1151 | CONFIG_HAVE_ARCH_KGDB=y | 1182 | CONFIG_HAVE_ARCH_KGDB=y |
| 1152 | # CONFIG_SH_STANDARD_BIOS is not set | 1183 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1240,6 +1271,7 @@ CONFIG_CRYPTO=y | |||
| 1240 | # Compression | 1271 | # Compression |
| 1241 | # | 1272 | # |
| 1242 | # CONFIG_CRYPTO_DEFLATE is not set | 1273 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1274 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1243 | # CONFIG_CRYPTO_LZO is not set | 1275 | # CONFIG_CRYPTO_LZO is not set |
| 1244 | 1276 | ||
| 1245 | # | 1277 | # |
| @@ -1265,3 +1297,4 @@ CONFIG_ZLIB_DEFLATE=y | |||
| 1265 | CONFIG_HAS_IOMEM=y | 1297 | CONFIG_HAS_IOMEM=y |
| 1266 | CONFIG_HAS_IOPORT=y | 1298 | CONFIG_HAS_IOPORT=y |
| 1267 | CONFIG_HAS_DMA=y | 1299 | CONFIG_HAS_DMA=y |
| 1300 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7619_defconfig b/arch/sh/configs/se7619_defconfig index 932b0235b1de..125304e80f57 100644 --- a/arch/sh/configs/se7619_defconfig +++ b/arch/sh/configs/se7619_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:36:46 2009 | 4 | # Thu Apr 2 18:44:53 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -18,12 +18,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set | 18 | # CONFIG_GENERIC_CLOCKEVENTS is not set |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set |
| 21 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 30 | ||
| 29 | # | 31 | # |
| @@ -36,15 +38,25 @@ CONFIG_LOCALVERSION="" | |||
| 36 | # CONFIG_LOCALVERSION_AUTO is not set | 38 | # CONFIG_LOCALVERSION_AUTO is not set |
| 37 | # CONFIG_SYSVIPC is not set | 39 | # CONFIG_SYSVIPC is not set |
| 38 | # CONFIG_BSD_PROCESS_ACCT is not set | 40 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 41 | |||
| 42 | # | ||
| 43 | # RCU Subsystem | ||
| 44 | # | ||
| 45 | CONFIG_CLASSIC_RCU=y | ||
| 46 | # CONFIG_TREE_RCU is not set | ||
| 47 | # CONFIG_PREEMPT_RCU is not set | ||
| 48 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 49 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 39 | # CONFIG_IKCONFIG is not set | 50 | # CONFIG_IKCONFIG is not set |
| 40 | CONFIG_LOG_BUF_SHIFT=14 | 51 | CONFIG_LOG_BUF_SHIFT=14 |
| 41 | # CONFIG_CGROUPS is not set | ||
| 42 | # CONFIG_GROUP_SCHED is not set | 52 | # CONFIG_GROUP_SCHED is not set |
| 53 | # CONFIG_CGROUPS is not set | ||
| 43 | # CONFIG_RELAY is not set | 54 | # CONFIG_RELAY is not set |
| 44 | # CONFIG_NAMESPACES is not set | 55 | # CONFIG_NAMESPACES is not set |
| 45 | # CONFIG_BLK_DEV_INITRD is not set | 56 | # CONFIG_BLK_DEV_INITRD is not set |
| 46 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 47 | CONFIG_SYSCTL=y | 58 | CONFIG_SYSCTL=y |
| 59 | CONFIG_ANON_INODES=y | ||
| 48 | CONFIG_EMBEDDED=y | 60 | CONFIG_EMBEDDED=y |
| 49 | # CONFIG_UID16 is not set | 61 | # CONFIG_UID16 is not set |
| 50 | # CONFIG_SYSCTL_SYSCALL is not set | 62 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -53,16 +65,15 @@ CONFIG_EMBEDDED=y | |||
| 53 | CONFIG_PRINTK=y | 65 | CONFIG_PRINTK=y |
| 54 | CONFIG_BUG=y | 66 | CONFIG_BUG=y |
| 55 | # CONFIG_ELF_CORE is not set | 67 | # CONFIG_ELF_CORE is not set |
| 56 | CONFIG_COMPAT_BRK=y | ||
| 57 | # CONFIG_BASE_FULL is not set | 68 | # CONFIG_BASE_FULL is not set |
| 58 | # CONFIG_FUTEX is not set | 69 | # CONFIG_FUTEX is not set |
| 59 | CONFIG_ANON_INODES=y | ||
| 60 | # CONFIG_EPOLL is not set | 70 | # CONFIG_EPOLL is not set |
| 61 | CONFIG_SIGNALFD=y | 71 | CONFIG_SIGNALFD=y |
| 62 | CONFIG_TIMERFD=y | 72 | CONFIG_TIMERFD=y |
| 63 | CONFIG_EVENTFD=y | 73 | CONFIG_EVENTFD=y |
| 64 | CONFIG_AIO=y | 74 | CONFIG_AIO=y |
| 65 | # CONFIG_VM_EVENT_COUNTERS is not set | 75 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 76 | CONFIG_COMPAT_BRK=y | ||
| 66 | CONFIG_SLAB=y | 77 | CONFIG_SLAB=y |
| 67 | # CONFIG_SLUB is not set | 78 | # CONFIG_SLUB is not set |
| 68 | # CONFIG_SLOB is not set | 79 | # CONFIG_SLOB is not set |
| @@ -93,11 +104,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 93 | # CONFIG_DEFAULT_CFQ is not set | 104 | # CONFIG_DEFAULT_CFQ is not set |
| 94 | CONFIG_DEFAULT_NOOP=y | 105 | CONFIG_DEFAULT_NOOP=y |
| 95 | CONFIG_DEFAULT_IOSCHED="noop" | 106 | CONFIG_DEFAULT_IOSCHED="noop" |
| 96 | CONFIG_CLASSIC_RCU=y | ||
| 97 | # CONFIG_TREE_RCU is not set | ||
| 98 | # CONFIG_PREEMPT_RCU is not set | ||
| 99 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 100 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 101 | # CONFIG_FREEZER is not set | 107 | # CONFIG_FREEZER is not set |
| 102 | 108 | ||
| 103 | # | 109 | # |
| @@ -132,6 +138,7 @@ CONFIG_CPU_SUBTYPE_SH7619=y | |||
| 132 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 138 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 133 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 134 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 140 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 141 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 135 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 142 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 136 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 143 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 137 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 144 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -170,11 +177,11 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 170 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 177 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 171 | CONFIG_ZONE_DMA_FLAG=0 | 178 | CONFIG_ZONE_DMA_FLAG=0 |
| 172 | CONFIG_NR_QUICK=2 | 179 | CONFIG_NR_QUICK=2 |
| 180 | CONFIG_UNEVICTABLE_LRU=y | ||
| 173 | 181 | ||
| 174 | # | 182 | # |
| 175 | # Cache configuration | 183 | # Cache configuration |
| 176 | # | 184 | # |
| 177 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 178 | # CONFIG_CACHE_WRITEBACK is not set | 185 | # CONFIG_CACHE_WRITEBACK is not set |
| 179 | CONFIG_CACHE_WRITETHROUGH=y | 186 | CONFIG_CACHE_WRITETHROUGH=y |
| 180 | # CONFIG_CACHE_OFF is not set | 187 | # CONFIG_CACHE_OFF is not set |
| @@ -228,7 +235,6 @@ CONFIG_HZ_100=y | |||
| 228 | # CONFIG_HZ_1000 is not set | 235 | # CONFIG_HZ_1000 is not set |
| 229 | CONFIG_HZ=100 | 236 | CONFIG_HZ=100 |
| 230 | # CONFIG_SCHED_HRTICK is not set | 237 | # CONFIG_SCHED_HRTICK is not set |
| 231 | # CONFIG_KEXEC is not set | ||
| 232 | # CONFIG_CRASH_DUMP is not set | 238 | # CONFIG_CRASH_DUMP is not set |
| 233 | # CONFIG_SECCOMP is not set | 239 | # CONFIG_SECCOMP is not set |
| 234 | CONFIG_PREEMPT_NONE=y | 240 | CONFIG_PREEMPT_NONE=y |
| @@ -329,9 +335,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 329 | # | 335 | # |
| 330 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 336 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 331 | CONFIG_MTD_PHYSMAP=y | 337 | CONFIG_MTD_PHYSMAP=y |
| 332 | CONFIG_MTD_PHYSMAP_START=0xa0000000 | 338 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 333 | CONFIG_MTD_PHYSMAP_LEN=0x01000000 | ||
| 334 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
| 335 | # CONFIG_MTD_SOLUTIONENGINE is not set | 339 | # CONFIG_MTD_SOLUTIONENGINE is not set |
| 336 | # CONFIG_MTD_PLATRAM is not set | 340 | # CONFIG_MTD_PLATRAM is not set |
| 337 | 341 | ||
| @@ -353,6 +357,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 353 | # CONFIG_MTD_ONENAND is not set | 357 | # CONFIG_MTD_ONENAND is not set |
| 354 | 358 | ||
| 355 | # | 359 | # |
| 360 | # LPDDR flash memory drivers | ||
| 361 | # | ||
| 362 | # CONFIG_MTD_LPDDR is not set | ||
| 363 | |||
| 364 | # | ||
| 356 | # UBI - Unsorted block images | 365 | # UBI - Unsorted block images |
| 357 | # | 366 | # |
| 358 | # CONFIG_MTD_UBI is not set | 367 | # CONFIG_MTD_UBI is not set |
| @@ -364,9 +373,13 @@ CONFIG_BLK_DEV=y | |||
| 364 | # CONFIG_CDROM_PKTCDVD is not set | 373 | # CONFIG_CDROM_PKTCDVD is not set |
| 365 | # CONFIG_BLK_DEV_HD is not set | 374 | # CONFIG_BLK_DEV_HD is not set |
| 366 | CONFIG_MISC_DEVICES=y | 375 | CONFIG_MISC_DEVICES=y |
| 367 | # CONFIG_EEPROM_93CX6 is not set | ||
| 368 | # CONFIG_ENCLOSURE_SERVICES is not set | 376 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 369 | # CONFIG_C2PORT is not set | 377 | # CONFIG_C2PORT is not set |
| 378 | |||
| 379 | # | ||
| 380 | # EEPROM support | ||
| 381 | # | ||
| 382 | # CONFIG_EEPROM_93CX6 is not set | ||
| 370 | CONFIG_HAVE_IDE=y | 383 | CONFIG_HAVE_IDE=y |
| 371 | # CONFIG_IDE is not set | 384 | # CONFIG_IDE is not set |
| 372 | 385 | ||
| @@ -514,15 +527,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 514 | # | 527 | # |
| 515 | 528 | ||
| 516 | # | 529 | # |
| 517 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 530 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 518 | # | 531 | # |
| 519 | # CONFIG_USB_GADGET is not set | 532 | # CONFIG_USB_GADGET is not set |
| 533 | |||
| 534 | # | ||
| 535 | # OTG and related infrastructure | ||
| 536 | # | ||
| 520 | # CONFIG_MMC is not set | 537 | # CONFIG_MMC is not set |
| 521 | # CONFIG_MEMSTICK is not set | 538 | # CONFIG_MEMSTICK is not set |
| 522 | # CONFIG_NEW_LEDS is not set | 539 | # CONFIG_NEW_LEDS is not set |
| 523 | # CONFIG_ACCESSIBILITY is not set | 540 | # CONFIG_ACCESSIBILITY is not set |
| 524 | # CONFIG_RTC_CLASS is not set | 541 | # CONFIG_RTC_CLASS is not set |
| 525 | # CONFIG_DMADEVICES is not set | 542 | # CONFIG_DMADEVICES is not set |
| 543 | # CONFIG_AUXDISPLAY is not set | ||
| 526 | # CONFIG_UIO is not set | 544 | # CONFIG_UIO is not set |
| 527 | # CONFIG_STAGING is not set | 545 | # CONFIG_STAGING is not set |
| 528 | 546 | ||
| @@ -537,6 +555,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 537 | # CONFIG_FS_POSIX_ACL is not set | 555 | # CONFIG_FS_POSIX_ACL is not set |
| 538 | CONFIG_FILE_LOCKING=y | 556 | CONFIG_FILE_LOCKING=y |
| 539 | # CONFIG_XFS_FS is not set | 557 | # CONFIG_XFS_FS is not set |
| 558 | # CONFIG_BTRFS_FS is not set | ||
| 540 | # CONFIG_DNOTIFY is not set | 559 | # CONFIG_DNOTIFY is not set |
| 541 | # CONFIG_INOTIFY is not set | 560 | # CONFIG_INOTIFY is not set |
| 542 | # CONFIG_QUOTA is not set | 561 | # CONFIG_QUOTA is not set |
| @@ -575,6 +594,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 575 | # CONFIG_EFS_FS is not set | 594 | # CONFIG_EFS_FS is not set |
| 576 | # CONFIG_JFFS2_FS is not set | 595 | # CONFIG_JFFS2_FS is not set |
| 577 | # CONFIG_CRAMFS is not set | 596 | # CONFIG_CRAMFS is not set |
| 597 | # CONFIG_SQUASHFS is not set | ||
| 578 | # CONFIG_VXFS_FS is not set | 598 | # CONFIG_VXFS_FS is not set |
| 579 | # CONFIG_MINIX_FS is not set | 599 | # CONFIG_MINIX_FS is not set |
| 580 | # CONFIG_OMFS_FS is not set | 600 | # CONFIG_OMFS_FS is not set |
| @@ -614,7 +634,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 614 | # | 634 | # |
| 615 | # Tracers | 635 | # Tracers |
| 616 | # | 636 | # |
| 617 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 618 | # CONFIG_SAMPLES is not set | 637 | # CONFIG_SAMPLES is not set |
| 619 | CONFIG_HAVE_ARCH_KGDB=y | 638 | CONFIG_HAVE_ARCH_KGDB=y |
| 620 | # CONFIG_SH_STANDARD_BIOS is not set | 639 | # CONFIG_SH_STANDARD_BIOS is not set |
diff --git a/arch/sh/configs/se7705_defconfig b/arch/sh/configs/se7705_defconfig index 8574d6eb00a3..0308abf52384 100644 --- a/arch/sh/configs/se7705_defconfig +++ b/arch/sh/configs/se7705_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:37:50 2009 | 4 | # Thu Apr 2 18:45:56 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -41,16 +42,30 @@ CONFIG_LOCALVERSION_AUTO=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 55 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | # CONFIG_GROUP_SCHED is not set | 56 | # CONFIG_GROUP_SCHED is not set |
| 57 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_RELAY is not set | 58 | # CONFIG_RELAY is not set |
| 49 | # CONFIG_NAMESPACES is not set | 59 | # CONFIG_NAMESPACES is not set |
| 50 | CONFIG_BLK_DEV_INITRD=y | 60 | CONFIG_BLK_DEV_INITRD=y |
| 51 | CONFIG_INITRAMFS_SOURCE="" | 61 | CONFIG_INITRAMFS_SOURCE="" |
| 62 | CONFIG_RD_GZIP=y | ||
| 63 | # CONFIG_RD_BZIP2 is not set | ||
| 64 | # CONFIG_RD_LZMA is not set | ||
| 65 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 52 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 66 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 53 | CONFIG_SYSCTL=y | 67 | CONFIG_SYSCTL=y |
| 68 | CONFIG_ANON_INODES=y | ||
| 54 | CONFIG_EMBEDDED=y | 69 | CONFIG_EMBEDDED=y |
| 55 | CONFIG_UID16=y | 70 | CONFIG_UID16=y |
| 56 | # CONFIG_SYSCTL_SYSCALL is not set | 71 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -59,10 +74,8 @@ CONFIG_UID16=y | |||
| 59 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 60 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 61 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 62 | CONFIG_COMPAT_BRK=y | ||
| 63 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 64 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 67 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 68 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -70,6 +83,7 @@ CONFIG_EVENTFD=y | |||
| 70 | CONFIG_SHMEM=y | 83 | CONFIG_SHMEM=y |
| 71 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 72 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 86 | CONFIG_COMPAT_BRK=y | ||
| 73 | CONFIG_SLAB=y | 87 | CONFIG_SLAB=y |
| 74 | # CONFIG_SLUB is not set | 88 | # CONFIG_SLUB is not set |
| 75 | # CONFIG_SLOB is not set | 89 | # CONFIG_SLOB is not set |
| @@ -106,11 +120,6 @@ CONFIG_DEFAULT_AS=y | |||
| 106 | # CONFIG_DEFAULT_CFQ is not set | 120 | # CONFIG_DEFAULT_CFQ is not set |
| 107 | # CONFIG_DEFAULT_NOOP is not set | 121 | # CONFIG_DEFAULT_NOOP is not set |
| 108 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 122 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 109 | CONFIG_CLASSIC_RCU=y | ||
| 110 | # CONFIG_TREE_RCU is not set | ||
| 111 | # CONFIG_PREEMPT_RCU is not set | ||
| 112 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 113 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 114 | # CONFIG_FREEZER is not set | 123 | # CONFIG_FREEZER is not set |
| 115 | 124 | ||
| 116 | # | 125 | # |
| @@ -145,6 +154,7 @@ CONFIG_CPU_SUBTYPE_SH7705=y | |||
| 145 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 154 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 146 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 147 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 148 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 149 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 150 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -186,12 +196,13 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 186 | CONFIG_ZONE_DMA_FLAG=0 | 196 | CONFIG_ZONE_DMA_FLAG=0 |
| 187 | CONFIG_NR_QUICK=2 | 197 | CONFIG_NR_QUICK=2 |
| 188 | CONFIG_UNEVICTABLE_LRU=y | 198 | CONFIG_UNEVICTABLE_LRU=y |
| 199 | CONFIG_HAVE_MLOCK=y | ||
| 200 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 189 | 201 | ||
| 190 | # | 202 | # |
| 191 | # Cache configuration | 203 | # Cache configuration |
| 192 | # | 204 | # |
| 193 | CONFIG_SH7705_CACHE_32KB=y | 205 | CONFIG_SH7705_CACHE_32KB=y |
| 194 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 195 | CONFIG_CACHE_WRITEBACK=y | 206 | CONFIG_CACHE_WRITEBACK=y |
| 196 | # CONFIG_CACHE_WRITETHROUGH is not set | 207 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 197 | # CONFIG_CACHE_OFF is not set | 208 | # CONFIG_CACHE_OFF is not set |
| @@ -292,7 +303,6 @@ CONFIG_NET=y | |||
| 292 | # | 303 | # |
| 293 | # Networking options | 304 | # Networking options |
| 294 | # | 305 | # |
| 295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 296 | CONFIG_PACKET=y | 306 | CONFIG_PACKET=y |
| 297 | # CONFIG_PACKET_MMAP is not set | 307 | # CONFIG_PACKET_MMAP is not set |
| 298 | CONFIG_UNIX=y | 308 | CONFIG_UNIX=y |
| @@ -347,6 +357,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 347 | # CONFIG_LAPB is not set | 357 | # CONFIG_LAPB is not set |
| 348 | # CONFIG_ECONET is not set | 358 | # CONFIG_ECONET is not set |
| 349 | # CONFIG_WAN_ROUTER is not set | 359 | # CONFIG_WAN_ROUTER is not set |
| 360 | # CONFIG_PHONET is not set | ||
| 350 | # CONFIG_NET_SCHED is not set | 361 | # CONFIG_NET_SCHED is not set |
| 351 | # CONFIG_DCB is not set | 362 | # CONFIG_DCB is not set |
| 352 | 363 | ||
| @@ -359,13 +370,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 359 | # CONFIG_IRDA is not set | 370 | # CONFIG_IRDA is not set |
| 360 | # CONFIG_BT is not set | 371 | # CONFIG_BT is not set |
| 361 | # CONFIG_AF_RXRPC is not set | 372 | # CONFIG_AF_RXRPC is not set |
| 362 | # CONFIG_PHONET is not set | ||
| 363 | CONFIG_WIRELESS=y | 373 | CONFIG_WIRELESS=y |
| 364 | # CONFIG_CFG80211 is not set | 374 | # CONFIG_CFG80211 is not set |
| 365 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 375 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 366 | # CONFIG_WIRELESS_EXT is not set | 376 | # CONFIG_WIRELESS_EXT is not set |
| 367 | # CONFIG_LIB80211 is not set | 377 | # CONFIG_LIB80211 is not set |
| 368 | # CONFIG_MAC80211 is not set | 378 | # CONFIG_MAC80211 is not set |
| 379 | # CONFIG_WIMAX is not set | ||
| 369 | # CONFIG_RFKILL is not set | 380 | # CONFIG_RFKILL is not set |
| 370 | # CONFIG_NET_9P is not set | 381 | # CONFIG_NET_9P is not set |
| 371 | 382 | ||
| @@ -384,6 +395,7 @@ CONFIG_MTD=y | |||
| 384 | # CONFIG_MTD_DEBUG is not set | 395 | # CONFIG_MTD_DEBUG is not set |
| 385 | # CONFIG_MTD_CONCAT is not set | 396 | # CONFIG_MTD_CONCAT is not set |
| 386 | CONFIG_MTD_PARTITIONS=y | 397 | CONFIG_MTD_PARTITIONS=y |
| 398 | # CONFIG_MTD_TESTS is not set | ||
| 387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 399 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 400 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 389 | # CONFIG_MTD_AR7_PARTS is not set | 401 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -451,6 +463,11 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 451 | # CONFIG_MTD_ONENAND is not set | 463 | # CONFIG_MTD_ONENAND is not set |
| 452 | 464 | ||
| 453 | # | 465 | # |
| 466 | # LPDDR flash memory drivers | ||
| 467 | # | ||
| 468 | # CONFIG_MTD_LPDDR is not set | ||
| 469 | |||
| 470 | # | ||
| 454 | # UBI - Unsorted block images | 471 | # UBI - Unsorted block images |
| 455 | # | 472 | # |
| 456 | # CONFIG_MTD_UBI is not set | 473 | # CONFIG_MTD_UBI is not set |
| @@ -467,9 +484,13 @@ CONFIG_BLK_DEV_RAM_SIZE=8192 | |||
| 467 | # CONFIG_ATA_OVER_ETH is not set | 484 | # CONFIG_ATA_OVER_ETH is not set |
| 468 | # CONFIG_BLK_DEV_HD is not set | 485 | # CONFIG_BLK_DEV_HD is not set |
| 469 | CONFIG_MISC_DEVICES=y | 486 | CONFIG_MISC_DEVICES=y |
| 470 | # CONFIG_EEPROM_93CX6 is not set | ||
| 471 | # CONFIG_ENCLOSURE_SERVICES is not set | 487 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 472 | # CONFIG_C2PORT is not set | 488 | # CONFIG_C2PORT is not set |
| 489 | |||
| 490 | # | ||
| 491 | # EEPROM support | ||
| 492 | # | ||
| 493 | # CONFIG_EEPROM_93CX6 is not set | ||
| 473 | CONFIG_HAVE_IDE=y | 494 | CONFIG_HAVE_IDE=y |
| 474 | # CONFIG_IDE is not set | 495 | # CONFIG_IDE is not set |
| 475 | 496 | ||
| @@ -483,6 +504,7 @@ CONFIG_HAVE_IDE=y | |||
| 483 | # CONFIG_ATA is not set | 504 | # CONFIG_ATA is not set |
| 484 | # CONFIG_MD is not set | 505 | # CONFIG_MD is not set |
| 485 | CONFIG_NETDEVICES=y | 506 | CONFIG_NETDEVICES=y |
| 507 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 486 | # CONFIG_DUMMY is not set | 508 | # CONFIG_DUMMY is not set |
| 487 | # CONFIG_BONDING is not set | 509 | # CONFIG_BONDING is not set |
| 488 | # CONFIG_MACVLAN is not set | 510 | # CONFIG_MACVLAN is not set |
| @@ -495,8 +517,10 @@ CONFIG_NET_ETHERNET=y | |||
| 495 | # CONFIG_AX88796 is not set | 517 | # CONFIG_AX88796 is not set |
| 496 | CONFIG_STNIC=y | 518 | CONFIG_STNIC=y |
| 497 | # CONFIG_SMC91X is not set | 519 | # CONFIG_SMC91X is not set |
| 520 | # CONFIG_ETHOC is not set | ||
| 498 | # CONFIG_SMC911X is not set | 521 | # CONFIG_SMC911X is not set |
| 499 | # CONFIG_SMSC911X is not set | 522 | # CONFIG_SMSC911X is not set |
| 523 | # CONFIG_DNET is not set | ||
| 500 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 524 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 501 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 525 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 502 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 526 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -513,7 +537,10 @@ CONFIG_NETDEV_10000=y | |||
| 513 | # | 537 | # |
| 514 | # CONFIG_WLAN_PRE80211 is not set | 538 | # CONFIG_WLAN_PRE80211 is not set |
| 515 | # CONFIG_WLAN_80211 is not set | 539 | # CONFIG_WLAN_80211 is not set |
| 516 | # CONFIG_IWLWIFI_LEDS is not set | 540 | |
| 541 | # | ||
| 542 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 543 | # | ||
| 517 | # CONFIG_WAN is not set | 544 | # CONFIG_WAN is not set |
| 518 | CONFIG_PPP=y | 545 | CONFIG_PPP=y |
| 519 | # CONFIG_PPP_MULTILINK is not set | 546 | # CONFIG_PPP_MULTILINK is not set |
| @@ -593,6 +620,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 593 | # CONFIG_LEGACY_PTYS is not set | 620 | # CONFIG_LEGACY_PTYS is not set |
| 594 | # CONFIG_IPMI_HANDLER is not set | 621 | # CONFIG_IPMI_HANDLER is not set |
| 595 | CONFIG_HW_RANDOM=y | 622 | CONFIG_HW_RANDOM=y |
| 623 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 596 | # CONFIG_R3964 is not set | 624 | # CONFIG_R3964 is not set |
| 597 | # CONFIG_RAW_DRIVER is not set | 625 | # CONFIG_RAW_DRIVER is not set |
| 598 | # CONFIG_TCG_TPM is not set | 626 | # CONFIG_TCG_TPM is not set |
| @@ -684,15 +712,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 684 | # | 712 | # |
| 685 | 713 | ||
| 686 | # | 714 | # |
| 687 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 715 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 688 | # | 716 | # |
| 689 | # CONFIG_USB_GADGET is not set | 717 | # CONFIG_USB_GADGET is not set |
| 718 | |||
| 719 | # | ||
| 720 | # OTG and related infrastructure | ||
| 721 | # | ||
| 690 | # CONFIG_MMC is not set | 722 | # CONFIG_MMC is not set |
| 691 | # CONFIG_MEMSTICK is not set | 723 | # CONFIG_MEMSTICK is not set |
| 692 | # CONFIG_NEW_LEDS is not set | 724 | # CONFIG_NEW_LEDS is not set |
| 693 | # CONFIG_ACCESSIBILITY is not set | 725 | # CONFIG_ACCESSIBILITY is not set |
| 694 | # CONFIG_RTC_CLASS is not set | 726 | # CONFIG_RTC_CLASS is not set |
| 695 | # CONFIG_DMADEVICES is not set | 727 | # CONFIG_DMADEVICES is not set |
| 728 | # CONFIG_AUXDISPLAY is not set | ||
| 696 | # CONFIG_UIO is not set | 729 | # CONFIG_UIO is not set |
| 697 | # CONFIG_STAGING is not set | 730 | # CONFIG_STAGING is not set |
| 698 | 731 | ||
| @@ -709,6 +742,7 @@ CONFIG_EXT2_FS=y | |||
| 709 | # CONFIG_FS_POSIX_ACL is not set | 742 | # CONFIG_FS_POSIX_ACL is not set |
| 710 | CONFIG_FILE_LOCKING=y | 743 | CONFIG_FILE_LOCKING=y |
| 711 | # CONFIG_XFS_FS is not set | 744 | # CONFIG_XFS_FS is not set |
| 745 | # CONFIG_BTRFS_FS is not set | ||
| 712 | CONFIG_DNOTIFY=y | 746 | CONFIG_DNOTIFY=y |
| 713 | CONFIG_INOTIFY=y | 747 | CONFIG_INOTIFY=y |
| 714 | CONFIG_INOTIFY_USER=y | 748 | CONFIG_INOTIFY_USER=y |
| @@ -761,6 +795,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 761 | CONFIG_JFFS2_RTIME=y | 795 | CONFIG_JFFS2_RTIME=y |
| 762 | # CONFIG_JFFS2_RUBIN is not set | 796 | # CONFIG_JFFS2_RUBIN is not set |
| 763 | # CONFIG_CRAMFS is not set | 797 | # CONFIG_CRAMFS is not set |
| 798 | # CONFIG_SQUASHFS is not set | ||
| 764 | # CONFIG_VXFS_FS is not set | 799 | # CONFIG_VXFS_FS is not set |
| 765 | # CONFIG_MINIX_FS is not set | 800 | # CONFIG_MINIX_FS is not set |
| 766 | # CONFIG_OMFS_FS is not set | 801 | # CONFIG_OMFS_FS is not set |
| @@ -778,7 +813,6 @@ CONFIG_ROOT_NFS=y | |||
| 778 | CONFIG_LOCKD=y | 813 | CONFIG_LOCKD=y |
| 779 | CONFIG_NFS_COMMON=y | 814 | CONFIG_NFS_COMMON=y |
| 780 | CONFIG_SUNRPC=y | 815 | CONFIG_SUNRPC=y |
| 781 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 782 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 816 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 783 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 817 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 784 | # CONFIG_SMB_FS is not set | 818 | # CONFIG_SMB_FS is not set |
| @@ -817,7 +851,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 817 | # | 851 | # |
| 818 | # Tracers | 852 | # Tracers |
| 819 | # | 853 | # |
| 820 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 821 | # CONFIG_SAMPLES is not set | 854 | # CONFIG_SAMPLES is not set |
| 822 | CONFIG_HAVE_ARCH_KGDB=y | 855 | CONFIG_HAVE_ARCH_KGDB=y |
| 823 | # CONFIG_SH_STANDARD_BIOS is not set | 856 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -908,6 +941,7 @@ CONFIG_CRYPTO=y | |||
| 908 | # Compression | 941 | # Compression |
| 909 | # | 942 | # |
| 910 | # CONFIG_CRYPTO_DEFLATE is not set | 943 | # CONFIG_CRYPTO_DEFLATE is not set |
| 944 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 911 | # CONFIG_CRYPTO_LZO is not set | 945 | # CONFIG_CRYPTO_LZO is not set |
| 912 | 946 | ||
| 913 | # | 947 | # |
| @@ -930,7 +964,8 @@ CONFIG_CRC32=y | |||
| 930 | # CONFIG_LIBCRC32C is not set | 964 | # CONFIG_LIBCRC32C is not set |
| 931 | CONFIG_ZLIB_INFLATE=y | 965 | CONFIG_ZLIB_INFLATE=y |
| 932 | CONFIG_ZLIB_DEFLATE=y | 966 | CONFIG_ZLIB_DEFLATE=y |
| 933 | CONFIG_PLIST=y | 967 | CONFIG_DECOMPRESS_GZIP=y |
| 934 | CONFIG_HAS_IOMEM=y | 968 | CONFIG_HAS_IOMEM=y |
| 935 | CONFIG_HAS_IOPORT=y | 969 | CONFIG_HAS_IOPORT=y |
| 936 | CONFIG_HAS_DMA=y | 970 | CONFIG_HAS_DMA=y |
| 971 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7712_defconfig b/arch/sh/configs/se7712_defconfig index e31ea84f116d..a8c24b703489 100644 --- a/arch/sh/configs/se7712_defconfig +++ b/arch/sh/configs/se7712_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:40:12 2009 | 4 | # Thu Apr 2 18:48:18 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,13 +16,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_TIME=y | 16 | CONFIG_GENERIC_TIME=y |
| 17 | CONFIG_GENERIC_CLOCKEVENTS=y | 17 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 19 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 19 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 20 | CONFIG_STACKTRACE_SUPPORT=y | 20 | CONFIG_STACKTRACE_SUPPORT=y |
| 21 | CONFIG_LOCKDEP_SUPPORT=y | 21 | CONFIG_LOCKDEP_SUPPORT=y |
| 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 26 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 27 | 28 | ||
| 28 | # | 29 | # |
| @@ -41,10 +42,19 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 55 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | # CONFIG_GROUP_SCHED is not set | 56 | # CONFIG_GROUP_SCHED is not set |
| 57 | # CONFIG_CGROUPS is not set | ||
| 48 | CONFIG_SYSFS_DEPRECATED=y | 58 | CONFIG_SYSFS_DEPRECATED=y |
| 49 | CONFIG_SYSFS_DEPRECATED_V2=y | 59 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 50 | # CONFIG_RELAY is not set | 60 | # CONFIG_RELAY is not set |
| @@ -52,21 +62,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 52 | # CONFIG_BLK_DEV_INITRD is not set | 62 | # CONFIG_BLK_DEV_INITRD is not set |
| 53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 54 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
| 65 | CONFIG_ANON_INODES=y | ||
| 55 | CONFIG_EMBEDDED=y | 66 | CONFIG_EMBEDDED=y |
| 56 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
| 57 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
| 58 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
| 59 | CONFIG_KALLSYMS_ALL=y | 70 | CONFIG_KALLSYMS_ALL=y |
| 60 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 61 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 71 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 62 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
| 63 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
| 64 | # CONFIG_BUG is not set | 74 | # CONFIG_BUG is not set |
| 65 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | # CONFIG_BASE_FULL is not set | 76 | # CONFIG_BASE_FULL is not set |
| 68 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
| @@ -74,6 +82,7 @@ CONFIG_EVENTFD=y | |||
| 74 | # CONFIG_SHMEM is not set | 82 | # CONFIG_SHMEM is not set |
| 75 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
| 85 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
| @@ -112,11 +121,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 112 | # CONFIG_DEFAULT_CFQ is not set | 121 | # CONFIG_DEFAULT_CFQ is not set |
| 113 | CONFIG_DEFAULT_NOOP=y | 122 | CONFIG_DEFAULT_NOOP=y |
| 114 | CONFIG_DEFAULT_IOSCHED="noop" | 123 | CONFIG_DEFAULT_IOSCHED="noop" |
| 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 | 124 | # CONFIG_FREEZER is not set |
| 121 | 125 | ||
| 122 | # | 126 | # |
| @@ -151,6 +155,7 @@ CONFIG_CPU_SUBTYPE_SH7712=y | |||
| 151 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 152 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 154 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 159 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 155 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -192,11 +197,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 192 | CONFIG_ZONE_DMA_FLAG=0 | 197 | CONFIG_ZONE_DMA_FLAG=0 |
| 193 | CONFIG_NR_QUICK=2 | 198 | CONFIG_NR_QUICK=2 |
| 194 | CONFIG_UNEVICTABLE_LRU=y | 199 | CONFIG_UNEVICTABLE_LRU=y |
| 200 | CONFIG_HAVE_MLOCK=y | ||
| 201 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 195 | 202 | ||
| 196 | # | 203 | # |
| 197 | # Cache configuration | 204 | # Cache configuration |
| 198 | # | 205 | # |
| 199 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 200 | CONFIG_CACHE_WRITEBACK=y | 206 | CONFIG_CACHE_WRITEBACK=y |
| 201 | # CONFIG_CACHE_WRITETHROUGH is not set | 207 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 202 | # CONFIG_CACHE_OFF is not set | 208 | # CONFIG_CACHE_OFF is not set |
| @@ -300,7 +306,6 @@ CONFIG_NET=y | |||
| 300 | # | 306 | # |
| 301 | # Networking options | 307 | # Networking options |
| 302 | # | 308 | # |
| 303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 304 | CONFIG_PACKET=y | 309 | CONFIG_PACKET=y |
| 305 | CONFIG_PACKET_MMAP=y | 310 | CONFIG_PACKET_MMAP=y |
| 306 | CONFIG_UNIX=y | 311 | CONFIG_UNIX=y |
| @@ -364,6 +369,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 364 | # CONFIG_LAPB is not set | 369 | # CONFIG_LAPB is not set |
| 365 | # CONFIG_ECONET is not set | 370 | # CONFIG_ECONET is not set |
| 366 | # CONFIG_WAN_ROUTER is not set | 371 | # CONFIG_WAN_ROUTER is not set |
| 372 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_NET_SCHED=y | 373 | CONFIG_NET_SCHED=y |
| 368 | 374 | ||
| 369 | # | 375 | # |
| @@ -411,7 +417,6 @@ CONFIG_NET_SCH_FIFO=y | |||
| 411 | # CONFIG_IRDA is not set | 417 | # CONFIG_IRDA is not set |
| 412 | # CONFIG_BT is not set | 418 | # CONFIG_BT is not set |
| 413 | # CONFIG_AF_RXRPC is not set | 419 | # CONFIG_AF_RXRPC is not set |
| 414 | # CONFIG_PHONET is not set | ||
| 415 | CONFIG_FIB_RULES=y | 420 | CONFIG_FIB_RULES=y |
| 416 | CONFIG_WIRELESS=y | 421 | CONFIG_WIRELESS=y |
| 417 | # CONFIG_CFG80211 is not set | 422 | # CONFIG_CFG80211 is not set |
| @@ -419,6 +424,7 @@ CONFIG_WIRELESS=y | |||
| 419 | # CONFIG_WIRELESS_EXT is not set | 424 | # CONFIG_WIRELESS_EXT is not set |
| 420 | # CONFIG_LIB80211 is not set | 425 | # CONFIG_LIB80211 is not set |
| 421 | # CONFIG_MAC80211 is not set | 426 | # CONFIG_MAC80211 is not set |
| 427 | # CONFIG_WIMAX is not set | ||
| 422 | # CONFIG_RFKILL is not set | 428 | # CONFIG_RFKILL is not set |
| 423 | # CONFIG_NET_9P is not set | 429 | # CONFIG_NET_9P is not set |
| 424 | 430 | ||
| @@ -443,6 +449,7 @@ CONFIG_MTD=y | |||
| 443 | # CONFIG_MTD_DEBUG is not set | 449 | # CONFIG_MTD_DEBUG is not set |
| 444 | CONFIG_MTD_CONCAT=y | 450 | CONFIG_MTD_CONCAT=y |
| 445 | CONFIG_MTD_PARTITIONS=y | 451 | CONFIG_MTD_PARTITIONS=y |
| 452 | # CONFIG_MTD_TESTS is not set | ||
| 446 | # CONFIG_MTD_REDBOOT_PARTS is not set | 453 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 447 | # CONFIG_MTD_CMDLINE_PARTS is not set | 454 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 448 | # CONFIG_MTD_AR7_PARTS is not set | 455 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -510,6 +517,11 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 510 | # CONFIG_MTD_ONENAND is not set | 517 | # CONFIG_MTD_ONENAND is not set |
| 511 | 518 | ||
| 512 | # | 519 | # |
| 520 | # LPDDR flash memory drivers | ||
| 521 | # | ||
| 522 | # CONFIG_MTD_LPDDR is not set | ||
| 523 | |||
| 524 | # | ||
| 513 | # UBI - Unsorted block images | 525 | # UBI - Unsorted block images |
| 514 | # | 526 | # |
| 515 | # CONFIG_MTD_UBI is not set | 527 | # CONFIG_MTD_UBI is not set |
| @@ -523,9 +535,13 @@ CONFIG_BLK_DEV=y | |||
| 523 | # CONFIG_ATA_OVER_ETH is not set | 535 | # CONFIG_ATA_OVER_ETH is not set |
| 524 | # CONFIG_BLK_DEV_HD is not set | 536 | # CONFIG_BLK_DEV_HD is not set |
| 525 | CONFIG_MISC_DEVICES=y | 537 | CONFIG_MISC_DEVICES=y |
| 526 | # CONFIG_EEPROM_93CX6 is not set | ||
| 527 | # CONFIG_ENCLOSURE_SERVICES is not set | 538 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 528 | # CONFIG_C2PORT is not set | 539 | # CONFIG_C2PORT is not set |
| 540 | |||
| 541 | # | ||
| 542 | # EEPROM support | ||
| 543 | # | ||
| 544 | # CONFIG_EEPROM_93CX6 is not set | ||
| 529 | CONFIG_HAVE_IDE=y | 545 | CONFIG_HAVE_IDE=y |
| 530 | # CONFIG_IDE is not set | 546 | # CONFIG_IDE is not set |
| 531 | 547 | ||
| @@ -571,6 +587,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 571 | # CONFIG_LIBFC is not set | 587 | # CONFIG_LIBFC is not set |
| 572 | # CONFIG_SCSI_DEBUG is not set | 588 | # CONFIG_SCSI_DEBUG is not set |
| 573 | # CONFIG_SCSI_DH is not set | 589 | # CONFIG_SCSI_DH is not set |
| 590 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 574 | CONFIG_ATA=y | 591 | CONFIG_ATA=y |
| 575 | # CONFIG_ATA_NONSTANDARD is not set | 592 | # CONFIG_ATA_NONSTANDARD is not set |
| 576 | CONFIG_SATA_PMP=y | 593 | CONFIG_SATA_PMP=y |
| @@ -579,6 +596,7 @@ CONFIG_ATA_SFF=y | |||
| 579 | CONFIG_PATA_PLATFORM=y | 596 | CONFIG_PATA_PLATFORM=y |
| 580 | # CONFIG_MD is not set | 597 | # CONFIG_MD is not set |
| 581 | CONFIG_NETDEVICES=y | 598 | CONFIG_NETDEVICES=y |
| 599 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 582 | # CONFIG_DUMMY is not set | 600 | # CONFIG_DUMMY is not set |
| 583 | # CONFIG_BONDING is not set | 601 | # CONFIG_BONDING is not set |
| 584 | # CONFIG_MACVLAN is not set | 602 | # CONFIG_MACVLAN is not set |
| @@ -611,8 +629,10 @@ CONFIG_MII=y | |||
| 611 | # CONFIG_STNIC is not set | 629 | # CONFIG_STNIC is not set |
| 612 | CONFIG_SH_ETH=y | 630 | CONFIG_SH_ETH=y |
| 613 | # CONFIG_SMC91X is not set | 631 | # CONFIG_SMC91X is not set |
| 632 | # CONFIG_ETHOC is not set | ||
| 614 | # CONFIG_SMC911X is not set | 633 | # CONFIG_SMC911X is not set |
| 615 | # CONFIG_SMSC911X is not set | 634 | # CONFIG_SMSC911X is not set |
| 635 | # CONFIG_DNET is not set | ||
| 616 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 636 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 617 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 637 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 618 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 638 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -629,7 +649,10 @@ CONFIG_NETDEV_10000=y | |||
| 629 | # | 649 | # |
| 630 | # CONFIG_WLAN_PRE80211 is not set | 650 | # CONFIG_WLAN_PRE80211 is not set |
| 631 | # CONFIG_WLAN_80211 is not set | 651 | # CONFIG_WLAN_80211 is not set |
| 632 | # CONFIG_IWLWIFI_LEDS is not set | 652 | |
| 653 | # | ||
| 654 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 655 | # | ||
| 633 | # CONFIG_WAN is not set | 656 | # CONFIG_WAN is not set |
| 634 | # CONFIG_PPP is not set | 657 | # CONFIG_PPP is not set |
| 635 | # CONFIG_SLIP is not set | 658 | # CONFIG_SLIP is not set |
| @@ -675,6 +698,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 675 | # CONFIG_LEGACY_PTYS is not set | 698 | # CONFIG_LEGACY_PTYS is not set |
| 676 | # CONFIG_IPMI_HANDLER is not set | 699 | # CONFIG_IPMI_HANDLER is not set |
| 677 | CONFIG_HW_RANDOM=m | 700 | CONFIG_HW_RANDOM=m |
| 701 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 678 | # CONFIG_R3964 is not set | 702 | # CONFIG_R3964 is not set |
| 679 | # CONFIG_RAW_DRIVER is not set | 703 | # CONFIG_RAW_DRIVER is not set |
| 680 | # CONFIG_TCG_TPM is not set | 704 | # CONFIG_TCG_TPM is not set |
| @@ -744,9 +768,13 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 744 | # | 768 | # |
| 745 | 769 | ||
| 746 | # | 770 | # |
| 747 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 771 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 748 | # | 772 | # |
| 749 | # CONFIG_USB_GADGET is not set | 773 | # CONFIG_USB_GADGET is not set |
| 774 | |||
| 775 | # | ||
| 776 | # OTG and related infrastructure | ||
| 777 | # | ||
| 750 | # CONFIG_MMC is not set | 778 | # CONFIG_MMC is not set |
| 751 | # CONFIG_MEMSTICK is not set | 779 | # CONFIG_MEMSTICK is not set |
| 752 | CONFIG_NEW_LEDS=y | 780 | CONFIG_NEW_LEDS=y |
| @@ -764,9 +792,14 @@ CONFIG_LEDS_TRIGGERS=y | |||
| 764 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 792 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
| 765 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | 793 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set |
| 766 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set | 794 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set |
| 795 | |||
| 796 | # | ||
| 797 | # iptables trigger is under Netfilter config (LED target) | ||
| 798 | # | ||
| 767 | # CONFIG_ACCESSIBILITY is not set | 799 | # CONFIG_ACCESSIBILITY is not set |
| 768 | # CONFIG_RTC_CLASS is not set | 800 | # CONFIG_RTC_CLASS is not set |
| 769 | # CONFIG_DMADEVICES is not set | 801 | # CONFIG_DMADEVICES is not set |
| 802 | # CONFIG_AUXDISPLAY is not set | ||
| 770 | # CONFIG_UIO is not set | 803 | # CONFIG_UIO is not set |
| 771 | # CONFIG_STAGING is not set | 804 | # CONFIG_STAGING is not set |
| 772 | 805 | ||
| @@ -791,6 +824,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 791 | CONFIG_FILE_LOCKING=y | 824 | CONFIG_FILE_LOCKING=y |
| 792 | # CONFIG_XFS_FS is not set | 825 | # CONFIG_XFS_FS is not set |
| 793 | # CONFIG_OCFS2_FS is not set | 826 | # CONFIG_OCFS2_FS is not set |
| 827 | # CONFIG_BTRFS_FS is not set | ||
| 794 | # CONFIG_DNOTIFY is not set | 828 | # CONFIG_DNOTIFY is not set |
| 795 | # CONFIG_INOTIFY is not set | 829 | # CONFIG_INOTIFY is not set |
| 796 | # CONFIG_QUOTA is not set | 830 | # CONFIG_QUOTA is not set |
| @@ -844,6 +878,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 844 | CONFIG_JFFS2_RTIME=y | 878 | CONFIG_JFFS2_RTIME=y |
| 845 | # CONFIG_JFFS2_RUBIN is not set | 879 | # CONFIG_JFFS2_RUBIN is not set |
| 846 | CONFIG_CRAMFS=y | 880 | CONFIG_CRAMFS=y |
| 881 | # CONFIG_SQUASHFS is not set | ||
| 847 | # CONFIG_VXFS_FS is not set | 882 | # CONFIG_VXFS_FS is not set |
| 848 | # CONFIG_MINIX_FS is not set | 883 | # CONFIG_MINIX_FS is not set |
| 849 | # CONFIG_OMFS_FS is not set | 884 | # CONFIG_OMFS_FS is not set |
| @@ -861,7 +896,6 @@ CONFIG_ROOT_NFS=y | |||
| 861 | CONFIG_LOCKD=y | 896 | CONFIG_LOCKD=y |
| 862 | CONFIG_NFS_COMMON=y | 897 | CONFIG_NFS_COMMON=y |
| 863 | CONFIG_SUNRPC=y | 898 | CONFIG_SUNRPC=y |
| 864 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 865 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 899 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 866 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 900 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 867 | # CONFIG_SMB_FS is not set | 901 | # CONFIG_SMB_FS is not set |
| @@ -923,6 +957,7 @@ CONFIG_FRAME_POINTER=y | |||
| 923 | # CONFIG_FAULT_INJECTION is not set | 957 | # CONFIG_FAULT_INJECTION is not set |
| 924 | # CONFIG_LATENCYTOP is not set | 958 | # CONFIG_LATENCYTOP is not set |
| 925 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 959 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 960 | # CONFIG_PAGE_POISONING is not set | ||
| 926 | CONFIG_HAVE_FUNCTION_TRACER=y | 961 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 927 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 962 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 928 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 963 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -937,7 +972,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 937 | # CONFIG_BOOT_TRACER is not set | 972 | # CONFIG_BOOT_TRACER is not set |
| 938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 973 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 939 | # CONFIG_STACK_TRACER is not set | 974 | # CONFIG_STACK_TRACER is not set |
| 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 941 | # CONFIG_SAMPLES is not set | 975 | # CONFIG_SAMPLES is not set |
| 942 | CONFIG_HAVE_ARCH_KGDB=y | 976 | CONFIG_HAVE_ARCH_KGDB=y |
| 943 | # CONFIG_KGDB is not set | 977 | # CONFIG_KGDB is not set |
| @@ -974,10 +1008,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 974 | CONFIG_CRYPTO_HASH=y | 1008 | CONFIG_CRYPTO_HASH=y |
| 975 | CONFIG_CRYPTO_HASH2=y | 1009 | CONFIG_CRYPTO_HASH2=y |
| 976 | CONFIG_CRYPTO_RNG2=y | 1010 | CONFIG_CRYPTO_RNG2=y |
| 1011 | CONFIG_CRYPTO_PCOMP=y | ||
| 977 | CONFIG_CRYPTO_MANAGER=y | 1012 | CONFIG_CRYPTO_MANAGER=y |
| 978 | CONFIG_CRYPTO_MANAGER2=y | 1013 | CONFIG_CRYPTO_MANAGER2=y |
| 979 | # CONFIG_CRYPTO_GF128MUL is not set | 1014 | # CONFIG_CRYPTO_GF128MUL is not set |
| 980 | # CONFIG_CRYPTO_NULL is not set | 1015 | # CONFIG_CRYPTO_NULL is not set |
| 1016 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 981 | # CONFIG_CRYPTO_CRYPTD is not set | 1017 | # CONFIG_CRYPTO_CRYPTD is not set |
| 982 | CONFIG_CRYPTO_AUTHENC=y | 1018 | CONFIG_CRYPTO_AUTHENC=y |
| 983 | # CONFIG_CRYPTO_TEST is not set | 1019 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1046,6 +1082,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1046 | # Compression | 1082 | # Compression |
| 1047 | # | 1083 | # |
| 1048 | CONFIG_CRYPTO_DEFLATE=y | 1084 | CONFIG_CRYPTO_DEFLATE=y |
| 1085 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1049 | # CONFIG_CRYPTO_LZO is not set | 1086 | # CONFIG_CRYPTO_LZO is not set |
| 1050 | 1087 | ||
| 1051 | # | 1088 | # |
| @@ -1068,7 +1105,7 @@ CONFIG_CRC32=y | |||
| 1068 | # CONFIG_LIBCRC32C is not set | 1105 | # CONFIG_LIBCRC32C is not set |
| 1069 | CONFIG_ZLIB_INFLATE=y | 1106 | CONFIG_ZLIB_INFLATE=y |
| 1070 | CONFIG_ZLIB_DEFLATE=y | 1107 | CONFIG_ZLIB_DEFLATE=y |
| 1071 | CONFIG_PLIST=y | ||
| 1072 | CONFIG_HAS_IOMEM=y | 1108 | CONFIG_HAS_IOMEM=y |
| 1073 | CONFIG_HAS_IOPORT=y | 1109 | CONFIG_HAS_IOPORT=y |
| 1074 | CONFIG_HAS_DMA=y | 1110 | CONFIG_HAS_DMA=y |
| 1111 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7721_defconfig b/arch/sh/configs/se7721_defconfig index ad1bace3ad46..4b79c2567dc8 100644 --- a/arch/sh/configs/se7721_defconfig +++ b/arch/sh/configs/se7721_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:43:33 2009 | 4 | # Thu Apr 2 18:51:44 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,13 +16,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_TIME=y | 16 | CONFIG_GENERIC_TIME=y |
| 17 | CONFIG_GENERIC_CLOCKEVENTS=y | 17 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 19 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 19 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 20 | CONFIG_STACKTRACE_SUPPORT=y | 20 | CONFIG_STACKTRACE_SUPPORT=y |
| 21 | CONFIG_LOCKDEP_SUPPORT=y | 21 | CONFIG_LOCKDEP_SUPPORT=y |
| 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 26 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 27 | 28 | ||
| 28 | # | 29 | # |
| @@ -41,14 +42,23 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 55 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | CONFIG_GROUP_SCHED=y | 56 | CONFIG_GROUP_SCHED=y |
| 48 | CONFIG_FAIR_GROUP_SCHED=y | 57 | CONFIG_FAIR_GROUP_SCHED=y |
| 49 | # CONFIG_RT_GROUP_SCHED is not set | 58 | # CONFIG_RT_GROUP_SCHED is not set |
| 50 | CONFIG_USER_SCHED=y | 59 | CONFIG_USER_SCHED=y |
| 51 | # CONFIG_CGROUP_SCHED is not set | 60 | # CONFIG_CGROUP_SCHED is not set |
| 61 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 62 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 63 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | # CONFIG_RELAY is not set | 64 | # CONFIG_RELAY is not set |
| @@ -56,21 +66,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 56 | # CONFIG_BLK_DEV_INITRD is not set | 66 | # CONFIG_BLK_DEV_INITRD is not set |
| 57 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 67 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 58 | CONFIG_SYSCTL=y | 68 | CONFIG_SYSCTL=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 70 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 71 | CONFIG_UID16=y |
| 61 | CONFIG_SYSCTL_SYSCALL=y | 72 | CONFIG_SYSCTL_SYSCALL=y |
| 62 | CONFIG_KALLSYMS=y | 73 | CONFIG_KALLSYMS=y |
| 63 | CONFIG_KALLSYMS_ALL=y | 74 | CONFIG_KALLSYMS_ALL=y |
| 64 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 65 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 75 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 66 | CONFIG_HOTPLUG=y | 76 | CONFIG_HOTPLUG=y |
| 67 | CONFIG_PRINTK=y | 77 | CONFIG_PRINTK=y |
| 68 | # CONFIG_BUG is not set | 78 | # CONFIG_BUG is not set |
| 69 | CONFIG_ELF_CORE=y | 79 | CONFIG_ELF_CORE=y |
| 70 | CONFIG_COMPAT_BRK=y | ||
| 71 | # CONFIG_BASE_FULL is not set | 80 | # CONFIG_BASE_FULL is not set |
| 72 | CONFIG_FUTEX=y | 81 | CONFIG_FUTEX=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 74 | CONFIG_EPOLL=y | 82 | CONFIG_EPOLL=y |
| 75 | CONFIG_SIGNALFD=y | 83 | CONFIG_SIGNALFD=y |
| 76 | CONFIG_TIMERFD=y | 84 | CONFIG_TIMERFD=y |
| @@ -78,6 +86,7 @@ CONFIG_EVENTFD=y | |||
| 78 | # CONFIG_SHMEM is not set | 86 | # CONFIG_SHMEM is not set |
| 79 | CONFIG_AIO=y | 87 | CONFIG_AIO=y |
| 80 | CONFIG_VM_EVENT_COUNTERS=y | 88 | CONFIG_VM_EVENT_COUNTERS=y |
| 89 | CONFIG_COMPAT_BRK=y | ||
| 81 | CONFIG_SLAB=y | 90 | CONFIG_SLAB=y |
| 82 | # CONFIG_SLUB is not set | 91 | # CONFIG_SLUB is not set |
| 83 | # CONFIG_SLOB is not set | 92 | # CONFIG_SLOB is not set |
| @@ -116,11 +125,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 125 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | CONFIG_DEFAULT_NOOP=y | 126 | CONFIG_DEFAULT_NOOP=y |
| 118 | CONFIG_DEFAULT_IOSCHED="noop" | 127 | CONFIG_DEFAULT_IOSCHED="noop" |
| 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 | 128 | # CONFIG_FREEZER is not set |
| 125 | 129 | ||
| 126 | # | 130 | # |
| @@ -155,6 +159,7 @@ CONFIG_CPU_SUBTYPE_SH7721=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 163 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +201,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 201 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 202 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 203 | CONFIG_UNEVICTABLE_LRU=y |
| 204 | CONFIG_HAVE_MLOCK=y | ||
| 205 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 206 | ||
| 200 | # | 207 | # |
| 201 | # Cache configuration | 208 | # Cache configuration |
| 202 | # | 209 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 210 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 211 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 212 | # CONFIG_CACHE_OFF is not set |
| @@ -303,7 +309,6 @@ CONFIG_NET=y | |||
| 303 | # | 309 | # |
| 304 | # Networking options | 310 | # Networking options |
| 305 | # | 311 | # |
| 306 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 307 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 308 | CONFIG_PACKET_MMAP=y | 313 | CONFIG_PACKET_MMAP=y |
| 309 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -367,6 +372,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 367 | # CONFIG_LAPB is not set | 372 | # CONFIG_LAPB is not set |
| 368 | # CONFIG_ECONET is not set | 373 | # CONFIG_ECONET is not set |
| 369 | # CONFIG_WAN_ROUTER is not set | 374 | # CONFIG_WAN_ROUTER is not set |
| 375 | # CONFIG_PHONET is not set | ||
| 370 | CONFIG_NET_SCHED=y | 376 | CONFIG_NET_SCHED=y |
| 371 | 377 | ||
| 372 | # | 378 | # |
| @@ -414,7 +420,6 @@ CONFIG_NET_SCH_FIFO=y | |||
| 414 | # CONFIG_IRDA is not set | 420 | # CONFIG_IRDA is not set |
| 415 | # CONFIG_BT is not set | 421 | # CONFIG_BT is not set |
| 416 | # CONFIG_AF_RXRPC is not set | 422 | # CONFIG_AF_RXRPC is not set |
| 417 | # CONFIG_PHONET is not set | ||
| 418 | CONFIG_FIB_RULES=y | 423 | CONFIG_FIB_RULES=y |
| 419 | CONFIG_WIRELESS=y | 424 | CONFIG_WIRELESS=y |
| 420 | # CONFIG_CFG80211 is not set | 425 | # CONFIG_CFG80211 is not set |
| @@ -422,6 +427,7 @@ CONFIG_WIRELESS=y | |||
| 422 | # CONFIG_WIRELESS_EXT is not set | 427 | # CONFIG_WIRELESS_EXT is not set |
| 423 | # CONFIG_LIB80211 is not set | 428 | # CONFIG_LIB80211 is not set |
| 424 | # CONFIG_MAC80211 is not set | 429 | # CONFIG_MAC80211 is not set |
| 430 | # CONFIG_WIMAX is not set | ||
| 425 | # CONFIG_RFKILL is not set | 431 | # CONFIG_RFKILL is not set |
| 426 | # CONFIG_NET_9P is not set | 432 | # CONFIG_NET_9P is not set |
| 427 | 433 | ||
| @@ -446,6 +452,7 @@ CONFIG_MTD=y | |||
| 446 | # CONFIG_MTD_DEBUG is not set | 452 | # CONFIG_MTD_DEBUG is not set |
| 447 | CONFIG_MTD_CONCAT=y | 453 | CONFIG_MTD_CONCAT=y |
| 448 | CONFIG_MTD_PARTITIONS=y | 454 | CONFIG_MTD_PARTITIONS=y |
| 455 | # CONFIG_MTD_TESTS is not set | ||
| 449 | # CONFIG_MTD_REDBOOT_PARTS is not set | 456 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 450 | # CONFIG_MTD_CMDLINE_PARTS is not set | 457 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 451 | # CONFIG_MTD_AR7_PARTS is not set | 458 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -513,6 +520,11 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 513 | # CONFIG_MTD_ONENAND is not set | 520 | # CONFIG_MTD_ONENAND is not set |
| 514 | 521 | ||
| 515 | # | 522 | # |
| 523 | # LPDDR flash memory drivers | ||
| 524 | # | ||
| 525 | # CONFIG_MTD_LPDDR is not set | ||
| 526 | |||
| 527 | # | ||
| 516 | # UBI - Unsorted block images | 528 | # UBI - Unsorted block images |
| 517 | # | 529 | # |
| 518 | # CONFIG_MTD_UBI is not set | 530 | # CONFIG_MTD_UBI is not set |
| @@ -527,9 +539,13 @@ CONFIG_BLK_DEV=y | |||
| 527 | # CONFIG_ATA_OVER_ETH is not set | 539 | # CONFIG_ATA_OVER_ETH is not set |
| 528 | # CONFIG_BLK_DEV_HD is not set | 540 | # CONFIG_BLK_DEV_HD is not set |
| 529 | CONFIG_MISC_DEVICES=y | 541 | CONFIG_MISC_DEVICES=y |
| 530 | # CONFIG_EEPROM_93CX6 is not set | ||
| 531 | # CONFIG_ENCLOSURE_SERVICES is not set | 542 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 532 | # CONFIG_C2PORT is not set | 543 | # CONFIG_C2PORT is not set |
| 544 | |||
| 545 | # | ||
| 546 | # EEPROM support | ||
| 547 | # | ||
| 548 | # CONFIG_EEPROM_93CX6 is not set | ||
| 533 | CONFIG_HAVE_IDE=y | 549 | CONFIG_HAVE_IDE=y |
| 534 | # CONFIG_IDE is not set | 550 | # CONFIG_IDE is not set |
| 535 | 551 | ||
| @@ -572,6 +588,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 572 | # CONFIG_SCSI_SRP_ATTRS is not set | 588 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 573 | # CONFIG_SCSI_LOWLEVEL is not set | 589 | # CONFIG_SCSI_LOWLEVEL is not set |
| 574 | # CONFIG_SCSI_DH is not set | 590 | # CONFIG_SCSI_DH is not set |
| 591 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 575 | CONFIG_ATA=y | 592 | CONFIG_ATA=y |
| 576 | # CONFIG_ATA_NONSTANDARD is not set | 593 | # CONFIG_ATA_NONSTANDARD is not set |
| 577 | CONFIG_SATA_PMP=y | 594 | CONFIG_SATA_PMP=y |
| @@ -580,6 +597,7 @@ CONFIG_ATA_SFF=y | |||
| 580 | CONFIG_PATA_PLATFORM=y | 597 | CONFIG_PATA_PLATFORM=y |
| 581 | # CONFIG_MD is not set | 598 | # CONFIG_MD is not set |
| 582 | CONFIG_NETDEVICES=y | 599 | CONFIG_NETDEVICES=y |
| 600 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 583 | # CONFIG_DUMMY is not set | 601 | # CONFIG_DUMMY is not set |
| 584 | # CONFIG_BONDING is not set | 602 | # CONFIG_BONDING is not set |
| 585 | # CONFIG_MACVLAN is not set | 603 | # CONFIG_MACVLAN is not set |
| @@ -595,7 +613,10 @@ CONFIG_NETDEV_10000=y | |||
| 595 | # | 613 | # |
| 596 | # CONFIG_WLAN_PRE80211 is not set | 614 | # CONFIG_WLAN_PRE80211 is not set |
| 597 | # CONFIG_WLAN_80211 is not set | 615 | # CONFIG_WLAN_80211 is not set |
| 598 | # CONFIG_IWLWIFI_LEDS is not set | 616 | |
| 617 | # | ||
| 618 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 619 | # | ||
| 599 | 620 | ||
| 600 | # | 621 | # |
| 601 | # USB Network Adapters | 622 | # USB Network Adapters |
| @@ -805,7 +826,9 @@ CONFIG_USB_MON=y | |||
| 805 | # USB Host Controller Drivers | 826 | # USB Host Controller Drivers |
| 806 | # | 827 | # |
| 807 | # CONFIG_USB_C67X00_HCD is not set | 828 | # CONFIG_USB_C67X00_HCD is not set |
| 829 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 808 | # CONFIG_USB_ISP116X_HCD is not set | 830 | # CONFIG_USB_ISP116X_HCD is not set |
| 831 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 809 | CONFIG_USB_OHCI_HCD=y | 832 | CONFIG_USB_OHCI_HCD=y |
| 810 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 833 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 811 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 834 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -823,18 +846,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 823 | # CONFIG_USB_TMC is not set | 846 | # CONFIG_USB_TMC is not set |
| 824 | 847 | ||
| 825 | # | 848 | # |
| 826 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 849 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 827 | # | 850 | # |
| 828 | 851 | ||
| 829 | # | 852 | # |
| 830 | # see USB_STORAGE Help for more information | 853 | # also be needed; see USB_STORAGE Help for more info |
| 831 | # | 854 | # |
| 832 | CONFIG_USB_STORAGE=y | 855 | CONFIG_USB_STORAGE=y |
| 833 | # CONFIG_USB_STORAGE_DEBUG is not set | 856 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 834 | # CONFIG_USB_STORAGE_DATAFAB is not set | 857 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 835 | # CONFIG_USB_STORAGE_FREECOM is not set | 858 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 836 | # CONFIG_USB_STORAGE_ISD200 is not set | 859 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 837 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 838 | # CONFIG_USB_STORAGE_USBAT is not set | 860 | # CONFIG_USB_STORAGE_USBAT is not set |
| 839 | # CONFIG_USB_STORAGE_SDDR09 is not set | 861 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 840 | # CONFIG_USB_STORAGE_SDDR55 is not set | 862 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -870,7 +892,6 @@ CONFIG_USB_STORAGE=y | |||
| 870 | # CONFIG_USB_LED is not set | 892 | # CONFIG_USB_LED is not set |
| 871 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 893 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 872 | # CONFIG_USB_CYTHERM is not set | 894 | # CONFIG_USB_CYTHERM is not set |
| 873 | # CONFIG_USB_PHIDGET is not set | ||
| 874 | # CONFIG_USB_IDMOUSE is not set | 895 | # CONFIG_USB_IDMOUSE is not set |
| 875 | # CONFIG_USB_FTDI_ELAN is not set | 896 | # CONFIG_USB_FTDI_ELAN is not set |
| 876 | # CONFIG_USB_APPLEDISPLAY is not set | 897 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -880,6 +901,11 @@ CONFIG_USB_STORAGE=y | |||
| 880 | # CONFIG_USB_ISIGHTFW is not set | 901 | # CONFIG_USB_ISIGHTFW is not set |
| 881 | # CONFIG_USB_VST is not set | 902 | # CONFIG_USB_VST is not set |
| 882 | # CONFIG_USB_GADGET is not set | 903 | # CONFIG_USB_GADGET is not set |
| 904 | |||
| 905 | # | ||
| 906 | # OTG and related infrastructure | ||
| 907 | # | ||
| 908 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 883 | # CONFIG_MMC is not set | 909 | # CONFIG_MMC is not set |
| 884 | # CONFIG_MEMSTICK is not set | 910 | # CONFIG_MEMSTICK is not set |
| 885 | CONFIG_NEW_LEDS=y | 911 | CONFIG_NEW_LEDS=y |
| @@ -897,9 +923,14 @@ CONFIG_LEDS_TRIGGERS=y | |||
| 897 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 923 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
| 898 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | 924 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set |
| 899 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set | 925 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set |
| 926 | |||
| 927 | # | ||
| 928 | # iptables trigger is under Netfilter config (LED target) | ||
| 929 | # | ||
| 900 | # CONFIG_ACCESSIBILITY is not set | 930 | # CONFIG_ACCESSIBILITY is not set |
| 901 | # CONFIG_RTC_CLASS is not set | 931 | # CONFIG_RTC_CLASS is not set |
| 902 | # CONFIG_DMADEVICES is not set | 932 | # CONFIG_DMADEVICES is not set |
| 933 | # CONFIG_AUXDISPLAY is not set | ||
| 903 | # CONFIG_UIO is not set | 934 | # CONFIG_UIO is not set |
| 904 | # CONFIG_STAGING is not set | 935 | # CONFIG_STAGING is not set |
| 905 | 936 | ||
| @@ -924,6 +955,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 924 | CONFIG_FILE_LOCKING=y | 955 | CONFIG_FILE_LOCKING=y |
| 925 | # CONFIG_XFS_FS is not set | 956 | # CONFIG_XFS_FS is not set |
| 926 | # CONFIG_OCFS2_FS is not set | 957 | # CONFIG_OCFS2_FS is not set |
| 958 | # CONFIG_BTRFS_FS is not set | ||
| 927 | # CONFIG_DNOTIFY is not set | 959 | # CONFIG_DNOTIFY is not set |
| 928 | # CONFIG_INOTIFY is not set | 960 | # CONFIG_INOTIFY is not set |
| 929 | # CONFIG_QUOTA is not set | 961 | # CONFIG_QUOTA is not set |
| @@ -980,6 +1012,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 980 | CONFIG_JFFS2_RTIME=y | 1012 | CONFIG_JFFS2_RTIME=y |
| 981 | # CONFIG_JFFS2_RUBIN is not set | 1013 | # CONFIG_JFFS2_RUBIN is not set |
| 982 | CONFIG_CRAMFS=y | 1014 | CONFIG_CRAMFS=y |
| 1015 | # CONFIG_SQUASHFS is not set | ||
| 983 | # CONFIG_VXFS_FS is not set | 1016 | # CONFIG_VXFS_FS is not set |
| 984 | # CONFIG_MINIX_FS is not set | 1017 | # CONFIG_MINIX_FS is not set |
| 985 | # CONFIG_OMFS_FS is not set | 1018 | # CONFIG_OMFS_FS is not set |
| @@ -1082,6 +1115,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1082 | # CONFIG_FAULT_INJECTION is not set | 1115 | # CONFIG_FAULT_INJECTION is not set |
| 1083 | # CONFIG_LATENCYTOP is not set | 1116 | # CONFIG_LATENCYTOP is not set |
| 1084 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1117 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
| 1118 | # CONFIG_PAGE_POISONING is not set | ||
| 1085 | CONFIG_HAVE_FUNCTION_TRACER=y | 1119 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1086 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1120 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1087 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1121 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -1096,7 +1130,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1096 | # CONFIG_BOOT_TRACER is not set | 1130 | # CONFIG_BOOT_TRACER is not set |
| 1097 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1131 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1098 | # CONFIG_STACK_TRACER is not set | 1132 | # CONFIG_STACK_TRACER is not set |
| 1099 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1100 | # CONFIG_SAMPLES is not set | 1133 | # CONFIG_SAMPLES is not set |
| 1101 | CONFIG_HAVE_ARCH_KGDB=y | 1134 | CONFIG_HAVE_ARCH_KGDB=y |
| 1102 | # CONFIG_KGDB is not set | 1135 | # CONFIG_KGDB is not set |
| @@ -1133,10 +1166,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1133 | CONFIG_CRYPTO_HASH=y | 1166 | CONFIG_CRYPTO_HASH=y |
| 1134 | CONFIG_CRYPTO_HASH2=y | 1167 | CONFIG_CRYPTO_HASH2=y |
| 1135 | CONFIG_CRYPTO_RNG2=y | 1168 | CONFIG_CRYPTO_RNG2=y |
| 1169 | CONFIG_CRYPTO_PCOMP=y | ||
| 1136 | CONFIG_CRYPTO_MANAGER=y | 1170 | CONFIG_CRYPTO_MANAGER=y |
| 1137 | CONFIG_CRYPTO_MANAGER2=y | 1171 | CONFIG_CRYPTO_MANAGER2=y |
| 1138 | # CONFIG_CRYPTO_GF128MUL is not set | 1172 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1139 | # CONFIG_CRYPTO_NULL is not set | 1173 | # CONFIG_CRYPTO_NULL is not set |
| 1174 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1140 | # CONFIG_CRYPTO_CRYPTD is not set | 1175 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1141 | CONFIG_CRYPTO_AUTHENC=y | 1176 | CONFIG_CRYPTO_AUTHENC=y |
| 1142 | # CONFIG_CRYPTO_TEST is not set | 1177 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1205,6 +1240,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1205 | # Compression | 1240 | # Compression |
| 1206 | # | 1241 | # |
| 1207 | CONFIG_CRYPTO_DEFLATE=y | 1242 | CONFIG_CRYPTO_DEFLATE=y |
| 1243 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1208 | # CONFIG_CRYPTO_LZO is not set | 1244 | # CONFIG_CRYPTO_LZO is not set |
| 1209 | 1245 | ||
| 1210 | # | 1246 | # |
| @@ -1227,7 +1263,7 @@ CONFIG_CRC32=y | |||
| 1227 | # CONFIG_LIBCRC32C is not set | 1263 | # CONFIG_LIBCRC32C is not set |
| 1228 | CONFIG_ZLIB_INFLATE=y | 1264 | CONFIG_ZLIB_INFLATE=y |
| 1229 | CONFIG_ZLIB_DEFLATE=y | 1265 | CONFIG_ZLIB_DEFLATE=y |
| 1230 | CONFIG_PLIST=y | ||
| 1231 | CONFIG_HAS_IOMEM=y | 1266 | CONFIG_HAS_IOMEM=y |
| 1232 | CONFIG_HAS_IOPORT=y | 1267 | CONFIG_HAS_IOPORT=y |
| 1233 | CONFIG_HAS_DMA=y | 1268 | CONFIG_HAS_DMA=y |
| 1269 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7722_defconfig b/arch/sh/configs/se7722_defconfig index abb189a1d314..82bdaac45fb5 100644 --- a/arch/sh/configs/se7722_defconfig +++ b/arch/sh/configs/se7722_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:46:59 2009 | 4 | # Thu Apr 2 18:55:10 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,15 +16,17 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | # CONFIG_GENERIC_GPIO is not set | 16 | # CONFIG_GENERIC_GPIO is not set |
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 24 | CONFIG_LOCKDEP_SUPPORT=y |
| 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 25 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 31 | ||
| 30 | # | 32 | # |
| @@ -44,19 +46,33 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 46 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 45 | # CONFIG_TASKSTATS is not set | 47 | # CONFIG_TASKSTATS is not set |
| 46 | # CONFIG_AUDIT is not set | 48 | # CONFIG_AUDIT is not set |
| 49 | |||
| 50 | # | ||
| 51 | # RCU Subsystem | ||
| 52 | # | ||
| 53 | CONFIG_CLASSIC_RCU=y | ||
| 54 | # CONFIG_TREE_RCU is not set | ||
| 55 | # CONFIG_PREEMPT_RCU is not set | ||
| 56 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 57 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 47 | CONFIG_IKCONFIG=y | 58 | CONFIG_IKCONFIG=y |
| 48 | CONFIG_IKCONFIG_PROC=y | 59 | CONFIG_IKCONFIG_PROC=y |
| 49 | CONFIG_LOG_BUF_SHIFT=14 | 60 | CONFIG_LOG_BUF_SHIFT=14 |
| 50 | # CONFIG_CGROUPS is not set | ||
| 51 | # CONFIG_GROUP_SCHED is not set | 61 | # CONFIG_GROUP_SCHED is not set |
| 62 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 63 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 64 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | # CONFIG_RELAY is not set | 65 | # CONFIG_RELAY is not set |
| 55 | # CONFIG_NAMESPACES is not set | 66 | # CONFIG_NAMESPACES is not set |
| 56 | CONFIG_BLK_DEV_INITRD=y | 67 | CONFIG_BLK_DEV_INITRD=y |
| 57 | CONFIG_INITRAMFS_SOURCE="" | 68 | CONFIG_INITRAMFS_SOURCE="" |
| 69 | CONFIG_RD_GZIP=y | ||
| 70 | # CONFIG_RD_BZIP2 is not set | ||
| 71 | # CONFIG_RD_LZMA is not set | ||
| 72 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 58 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 59 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 60 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 61 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 62 | CONFIG_SYSCTL_SYSCALL=y | 78 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -66,10 +82,8 @@ CONFIG_HOTPLUG=y | |||
| 66 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 67 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 68 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 69 | CONFIG_COMPAT_BRK=y | ||
| 70 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 71 | CONFIG_FUTEX=y | 86 | CONFIG_FUTEX=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 73 | CONFIG_EPOLL=y | 87 | CONFIG_EPOLL=y |
| 74 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 75 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -78,6 +92,7 @@ CONFIG_SHMEM=y | |||
| 78 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 79 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 80 | CONFIG_SLUB_DEBUG=y | 94 | CONFIG_SLUB_DEBUG=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 81 | # CONFIG_SLAB is not set | 96 | # CONFIG_SLAB is not set |
| 82 | CONFIG_SLUB=y | 97 | CONFIG_SLUB=y |
| 83 | # CONFIG_SLOB is not set | 98 | # CONFIG_SLOB is not set |
| @@ -118,11 +133,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 118 | # CONFIG_DEFAULT_CFQ is not set | 133 | # CONFIG_DEFAULT_CFQ is not set |
| 119 | CONFIG_DEFAULT_NOOP=y | 134 | CONFIG_DEFAULT_NOOP=y |
| 120 | CONFIG_DEFAULT_IOSCHED="noop" | 135 | 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 | 136 | # CONFIG_FREEZER is not set |
| 127 | 137 | ||
| 128 | # | 138 | # |
| @@ -132,6 +142,7 @@ CONFIG_CPU_SH4=y | |||
| 132 | CONFIG_CPU_SH4A=y | 142 | CONFIG_CPU_SH4A=y |
| 133 | CONFIG_CPU_SH4AL_DSP=y | 143 | CONFIG_CPU_SH4AL_DSP=y |
| 134 | CONFIG_CPU_SHX2=y | 144 | CONFIG_CPU_SHX2=y |
| 145 | CONFIG_ARCH_SHMOBILE=y | ||
| 135 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 146 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 136 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | 147 | # CONFIG_CPU_SUBTYPE_SH7201 is not set |
| 137 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 148 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| @@ -160,6 +171,7 @@ CONFIG_CPU_SHX2=y | |||
| 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 174 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 163 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 175 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 176 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 165 | CONFIG_CPU_SUBTYPE_SH7722=y | 177 | CONFIG_CPU_SUBTYPE_SH7722=y |
| @@ -213,11 +225,12 @@ CONFIG_MIGRATION=y | |||
| 213 | CONFIG_ZONE_DMA_FLAG=0 | 225 | CONFIG_ZONE_DMA_FLAG=0 |
| 214 | CONFIG_NR_QUICK=2 | 226 | CONFIG_NR_QUICK=2 |
| 215 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
| 228 | CONFIG_HAVE_MLOCK=y | ||
| 229 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 216 | 230 | ||
| 217 | # | 231 | # |
| 218 | # Cache configuration | 232 | # Cache configuration |
| 219 | # | 233 | # |
| 220 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 221 | CONFIG_CACHE_WRITEBACK=y | 234 | CONFIG_CACHE_WRITEBACK=y |
| 222 | # CONFIG_CACHE_WRITETHROUGH is not set | 235 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 223 | # CONFIG_CACHE_OFF is not set | 236 | # CONFIG_CACHE_OFF is not set |
| @@ -246,6 +259,7 @@ CONFIG_SH_7722_SOLUTION_ENGINE=y | |||
| 246 | # Timer and clock configuration | 259 | # Timer and clock configuration |
| 247 | # | 260 | # |
| 248 | CONFIG_SH_TMU=y | 261 | CONFIG_SH_TMU=y |
| 262 | # CONFIG_SH_TIMER_CMT is not set | ||
| 249 | CONFIG_SH_TIMER_IRQ=16 | 263 | CONFIG_SH_TIMER_IRQ=16 |
| 250 | CONFIG_SH_PCLK_FREQ=33333333 | 264 | CONFIG_SH_PCLK_FREQ=33333333 |
| 251 | CONFIG_TICK_ONESHOT=y | 265 | CONFIG_TICK_ONESHOT=y |
| @@ -321,7 +335,6 @@ CONFIG_NET=y | |||
| 321 | # | 335 | # |
| 322 | # Networking options | 336 | # Networking options |
| 323 | # | 337 | # |
| 324 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 325 | CONFIG_PACKET=y | 338 | CONFIG_PACKET=y |
| 326 | CONFIG_PACKET_MMAP=y | 339 | CONFIG_PACKET_MMAP=y |
| 327 | CONFIG_UNIX=y | 340 | CONFIG_UNIX=y |
| @@ -373,6 +386,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 373 | # CONFIG_LAPB is not set | 386 | # CONFIG_LAPB is not set |
| 374 | # CONFIG_ECONET is not set | 387 | # CONFIG_ECONET is not set |
| 375 | # CONFIG_WAN_ROUTER is not set | 388 | # CONFIG_WAN_ROUTER is not set |
| 389 | # CONFIG_PHONET is not set | ||
| 376 | # CONFIG_NET_SCHED is not set | 390 | # CONFIG_NET_SCHED is not set |
| 377 | # CONFIG_DCB is not set | 391 | # CONFIG_DCB is not set |
| 378 | 392 | ||
| @@ -385,13 +399,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 385 | # CONFIG_IRDA is not set | 399 | # CONFIG_IRDA is not set |
| 386 | # CONFIG_BT is not set | 400 | # CONFIG_BT is not set |
| 387 | # CONFIG_AF_RXRPC is not set | 401 | # CONFIG_AF_RXRPC is not set |
| 388 | # CONFIG_PHONET is not set | ||
| 389 | CONFIG_WIRELESS=y | 402 | CONFIG_WIRELESS=y |
| 390 | # CONFIG_CFG80211 is not set | 403 | # CONFIG_CFG80211 is not set |
| 391 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 404 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 392 | # CONFIG_WIRELESS_EXT is not set | 405 | # CONFIG_WIRELESS_EXT is not set |
| 393 | # CONFIG_LIB80211 is not set | 406 | # CONFIG_LIB80211 is not set |
| 394 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
| 408 | # CONFIG_WIMAX is not set | ||
| 395 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
| 396 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
| 397 | 411 | ||
| @@ -422,9 +436,13 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 422 | # CONFIG_ATA_OVER_ETH is not set | 436 | # CONFIG_ATA_OVER_ETH is not set |
| 423 | # CONFIG_BLK_DEV_HD is not set | 437 | # CONFIG_BLK_DEV_HD is not set |
| 424 | CONFIG_MISC_DEVICES=y | 438 | CONFIG_MISC_DEVICES=y |
| 425 | # CONFIG_EEPROM_93CX6 is not set | ||
| 426 | # CONFIG_ENCLOSURE_SERVICES is not set | 439 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 427 | # CONFIG_C2PORT is not set | 440 | # CONFIG_C2PORT is not set |
| 441 | |||
| 442 | # | ||
| 443 | # EEPROM support | ||
| 444 | # | ||
| 445 | # CONFIG_EEPROM_93CX6 is not set | ||
| 428 | CONFIG_HAVE_IDE=y | 446 | CONFIG_HAVE_IDE=y |
| 429 | # CONFIG_IDE is not set | 447 | # CONFIG_IDE is not set |
| 430 | 448 | ||
| @@ -470,6 +488,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 470 | # CONFIG_LIBFC is not set | 488 | # CONFIG_LIBFC is not set |
| 471 | # CONFIG_SCSI_DEBUG is not set | 489 | # CONFIG_SCSI_DEBUG is not set |
| 472 | # CONFIG_SCSI_DH is not set | 490 | # CONFIG_SCSI_DH is not set |
| 491 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 473 | CONFIG_ATA=y | 492 | CONFIG_ATA=y |
| 474 | # CONFIG_ATA_NONSTANDARD is not set | 493 | # CONFIG_ATA_NONSTANDARD is not set |
| 475 | CONFIG_SATA_PMP=y | 494 | CONFIG_SATA_PMP=y |
| @@ -478,6 +497,7 @@ CONFIG_ATA_SFF=y | |||
| 478 | CONFIG_PATA_PLATFORM=y | 497 | CONFIG_PATA_PLATFORM=y |
| 479 | # CONFIG_MD is not set | 498 | # CONFIG_MD is not set |
| 480 | CONFIG_NETDEVICES=y | 499 | CONFIG_NETDEVICES=y |
| 500 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 481 | # CONFIG_DUMMY is not set | 501 | # CONFIG_DUMMY is not set |
| 482 | # CONFIG_BONDING is not set | 502 | # CONFIG_BONDING is not set |
| 483 | # CONFIG_MACVLAN is not set | 503 | # CONFIG_MACVLAN is not set |
| @@ -490,8 +510,10 @@ CONFIG_MII=y | |||
| 490 | # CONFIG_AX88796 is not set | 510 | # CONFIG_AX88796 is not set |
| 491 | # CONFIG_STNIC is not set | 511 | # CONFIG_STNIC is not set |
| 492 | CONFIG_SMC91X=y | 512 | CONFIG_SMC91X=y |
| 513 | # CONFIG_ETHOC is not set | ||
| 493 | # CONFIG_SMC911X is not set | 514 | # CONFIG_SMC911X is not set |
| 494 | # CONFIG_SMSC911X is not set | 515 | # CONFIG_SMSC911X is not set |
| 516 | # CONFIG_DNET is not set | ||
| 495 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 517 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 496 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 518 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 497 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 519 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -508,7 +530,10 @@ CONFIG_NETDEV_10000=y | |||
| 508 | # | 530 | # |
| 509 | # CONFIG_WLAN_PRE80211 is not set | 531 | # CONFIG_WLAN_PRE80211 is not set |
| 510 | # CONFIG_WLAN_80211 is not set | 532 | # CONFIG_WLAN_80211 is not set |
| 511 | # CONFIG_IWLWIFI_LEDS is not set | 533 | |
| 534 | # | ||
| 535 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 536 | # | ||
| 512 | # CONFIG_WAN is not set | 537 | # CONFIG_WAN is not set |
| 513 | # CONFIG_PPP is not set | 538 | # CONFIG_PPP is not set |
| 514 | # CONFIG_SLIP is not set | 539 | # CONFIG_SLIP is not set |
| @@ -589,6 +614,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 589 | CONFIG_LEGACY_PTY_COUNT=256 | 614 | CONFIG_LEGACY_PTY_COUNT=256 |
| 590 | # CONFIG_IPMI_HANDLER is not set | 615 | # CONFIG_IPMI_HANDLER is not set |
| 591 | CONFIG_HW_RANDOM=y | 616 | CONFIG_HW_RANDOM=y |
| 617 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 592 | # CONFIG_R3964 is not set | 618 | # CONFIG_R3964 is not set |
| 593 | # CONFIG_RAW_DRIVER is not set | 619 | # CONFIG_RAW_DRIVER is not set |
| 594 | # CONFIG_TCG_TPM is not set | 620 | # CONFIG_TCG_TPM is not set |
| @@ -680,9 +706,13 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 680 | # | 706 | # |
| 681 | 707 | ||
| 682 | # | 708 | # |
| 683 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 709 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 684 | # | 710 | # |
| 685 | # CONFIG_USB_GADGET is not set | 711 | # CONFIG_USB_GADGET is not set |
| 712 | |||
| 713 | # | ||
| 714 | # OTG and related infrastructure | ||
| 715 | # | ||
| 686 | # CONFIG_MMC is not set | 716 | # CONFIG_MMC is not set |
| 687 | # CONFIG_MEMSTICK is not set | 717 | # CONFIG_MEMSTICK is not set |
| 688 | # CONFIG_NEW_LEDS is not set | 718 | # CONFIG_NEW_LEDS is not set |
| @@ -725,6 +755,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 725 | # | 755 | # |
| 726 | CONFIG_RTC_DRV_SH=y | 756 | CONFIG_RTC_DRV_SH=y |
| 727 | # CONFIG_DMADEVICES is not set | 757 | # CONFIG_DMADEVICES is not set |
| 758 | # CONFIG_AUXDISPLAY is not set | ||
| 728 | # CONFIG_UIO is not set | 759 | # CONFIG_UIO is not set |
| 729 | # CONFIG_STAGING is not set | 760 | # CONFIG_STAGING is not set |
| 730 | 761 | ||
| @@ -748,6 +779,7 @@ CONFIG_FS_MBCACHE=y | |||
| 748 | CONFIG_FILE_LOCKING=y | 779 | CONFIG_FILE_LOCKING=y |
| 749 | # CONFIG_XFS_FS is not set | 780 | # CONFIG_XFS_FS is not set |
| 750 | # CONFIG_OCFS2_FS is not set | 781 | # CONFIG_OCFS2_FS is not set |
| 782 | # CONFIG_BTRFS_FS is not set | ||
| 751 | CONFIG_DNOTIFY=y | 783 | CONFIG_DNOTIFY=y |
| 752 | CONFIG_INOTIFY=y | 784 | CONFIG_INOTIFY=y |
| 753 | CONFIG_INOTIFY_USER=y | 785 | CONFIG_INOTIFY_USER=y |
| @@ -791,6 +823,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 791 | # CONFIG_BFS_FS is not set | 823 | # CONFIG_BFS_FS is not set |
| 792 | # CONFIG_EFS_FS is not set | 824 | # CONFIG_EFS_FS is not set |
| 793 | # CONFIG_CRAMFS is not set | 825 | # CONFIG_CRAMFS is not set |
| 826 | # CONFIG_SQUASHFS is not set | ||
| 794 | # CONFIG_VXFS_FS is not set | 827 | # CONFIG_VXFS_FS is not set |
| 795 | # CONFIG_MINIX_FS is not set | 828 | # CONFIG_MINIX_FS is not set |
| 796 | # CONFIG_OMFS_FS is not set | 829 | # CONFIG_OMFS_FS is not set |
| @@ -843,7 +876,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 843 | # | 876 | # |
| 844 | # Tracers | 877 | # Tracers |
| 845 | # | 878 | # |
| 846 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 879 | # CONFIG_DYNAMIC_DEBUG is not set |
| 847 | # CONFIG_SAMPLES is not set | 880 | # CONFIG_SAMPLES is not set |
| 848 | CONFIG_HAVE_ARCH_KGDB=y | 881 | CONFIG_HAVE_ARCH_KGDB=y |
| 849 | CONFIG_SH_STANDARD_BIOS=y | 882 | CONFIG_SH_STANDARD_BIOS=y |
| @@ -936,6 +969,7 @@ CONFIG_CRYPTO=y | |||
| 936 | # Compression | 969 | # Compression |
| 937 | # | 970 | # |
| 938 | # CONFIG_CRYPTO_DEFLATE is not set | 971 | # CONFIG_CRYPTO_DEFLATE is not set |
| 972 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 939 | # CONFIG_CRYPTO_LZO is not set | 973 | # CONFIG_CRYPTO_LZO is not set |
| 940 | 974 | ||
| 941 | # | 975 | # |
| @@ -956,7 +990,9 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 956 | CONFIG_CRC32=y | 990 | CONFIG_CRC32=y |
| 957 | # CONFIG_CRC7 is not set | 991 | # CONFIG_CRC7 is not set |
| 958 | # CONFIG_LIBCRC32C is not set | 992 | # CONFIG_LIBCRC32C is not set |
| 959 | CONFIG_PLIST=y | 993 | CONFIG_ZLIB_INFLATE=y |
| 994 | CONFIG_DECOMPRESS_GZIP=y | ||
| 960 | CONFIG_HAS_IOMEM=y | 995 | CONFIG_HAS_IOMEM=y |
| 961 | CONFIG_HAS_IOPORT=y | 996 | CONFIG_HAS_IOPORT=y |
| 962 | CONFIG_HAS_DMA=y | 997 | CONFIG_HAS_DMA=y |
| 998 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7750_defconfig b/arch/sh/configs/se7750_defconfig index ac874f63a625..ceef6d9138ee 100644 --- a/arch/sh/configs/se7750_defconfig +++ b/arch/sh/configs/se7750_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:49:22 2009 | 4 | # Thu Apr 2 18:57:31 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -42,11 +43,20 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | CONFIG_IKCONFIG=y | 55 | CONFIG_IKCONFIG=y |
| 46 | CONFIG_IKCONFIG_PROC=y | 56 | CONFIG_IKCONFIG_PROC=y |
| 47 | CONFIG_LOG_BUF_SHIFT=14 | 57 | CONFIG_LOG_BUF_SHIFT=14 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 60 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 61 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | # CONFIG_RELAY is not set | 62 | # CONFIG_RELAY is not set |
| @@ -54,6 +64,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 54 | # CONFIG_BLK_DEV_INITRD is not set | 64 | # CONFIG_BLK_DEV_INITRD is not set |
| 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 65 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 56 | CONFIG_SYSCTL=y | 66 | CONFIG_SYSCTL=y |
| 67 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 68 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 69 | CONFIG_UID16=y |
| 59 | # CONFIG_SYSCTL_SYSCALL is not set | 70 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -63,10 +74,8 @@ CONFIG_KALLSYMS=y | |||
| 63 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -74,6 +83,7 @@ CONFIG_EVENTFD=y | |||
| 74 | CONFIG_SHMEM=y | 83 | CONFIG_SHMEM=y |
| 75 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 86 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 87 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 88 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 89 | # CONFIG_SLOB is not set |
| @@ -112,11 +122,6 @@ CONFIG_DEFAULT_AS=y | |||
| 112 | # CONFIG_DEFAULT_CFQ is not set | 122 | # CONFIG_DEFAULT_CFQ is not set |
| 113 | # CONFIG_DEFAULT_NOOP is not set | 123 | # CONFIG_DEFAULT_NOOP is not set |
| 114 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 124 | 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 | 125 | # CONFIG_FREEZER is not set |
| 121 | 126 | ||
| 122 | # | 127 | # |
| @@ -151,6 +156,7 @@ CONFIG_CPU_SUBTYPE_SH7750=y | |||
| 151 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 152 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 154 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 160 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 155 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -192,11 +198,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 192 | CONFIG_ZONE_DMA_FLAG=0 | 198 | CONFIG_ZONE_DMA_FLAG=0 |
| 193 | CONFIG_NR_QUICK=2 | 199 | CONFIG_NR_QUICK=2 |
| 194 | CONFIG_UNEVICTABLE_LRU=y | 200 | CONFIG_UNEVICTABLE_LRU=y |
| 201 | CONFIG_HAVE_MLOCK=y | ||
| 202 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 195 | 203 | ||
| 196 | # | 204 | # |
| 197 | # Cache configuration | 205 | # Cache configuration |
| 198 | # | 206 | # |
| 199 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 200 | CONFIG_CACHE_WRITEBACK=y | 207 | CONFIG_CACHE_WRITEBACK=y |
| 201 | # CONFIG_CACHE_WRITETHROUGH is not set | 208 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 202 | # CONFIG_CACHE_OFF is not set | 209 | # CONFIG_CACHE_OFF is not set |
| @@ -299,7 +306,6 @@ CONFIG_NET=y | |||
| 299 | # | 306 | # |
| 300 | # Networking options | 307 | # Networking options |
| 301 | # | 308 | # |
| 302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 303 | CONFIG_PACKET=y | 309 | CONFIG_PACKET=y |
| 304 | # CONFIG_PACKET_MMAP is not set | 310 | # CONFIG_PACKET_MMAP is not set |
| 305 | CONFIG_UNIX=y | 311 | CONFIG_UNIX=y |
| @@ -355,6 +361,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 355 | # CONFIG_LAPB is not set | 361 | # CONFIG_LAPB is not set |
| 356 | # CONFIG_ECONET is not set | 362 | # CONFIG_ECONET is not set |
| 357 | # CONFIG_WAN_ROUTER is not set | 363 | # CONFIG_WAN_ROUTER is not set |
| 364 | # CONFIG_PHONET is not set | ||
| 358 | # CONFIG_NET_SCHED is not set | 365 | # CONFIG_NET_SCHED is not set |
| 359 | # CONFIG_DCB is not set | 366 | # CONFIG_DCB is not set |
| 360 | 367 | ||
| @@ -367,13 +374,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 367 | # CONFIG_IRDA is not set | 374 | # CONFIG_IRDA is not set |
| 368 | # CONFIG_BT is not set | 375 | # CONFIG_BT is not set |
| 369 | # CONFIG_AF_RXRPC is not set | 376 | # CONFIG_AF_RXRPC is not set |
| 370 | # CONFIG_PHONET is not set | ||
| 371 | CONFIG_WIRELESS=y | 377 | CONFIG_WIRELESS=y |
| 372 | # CONFIG_CFG80211 is not set | 378 | # CONFIG_CFG80211 is not set |
| 373 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 379 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 374 | # CONFIG_WIRELESS_EXT is not set | 380 | # CONFIG_WIRELESS_EXT is not set |
| 375 | # CONFIG_LIB80211 is not set | 381 | # CONFIG_LIB80211 is not set |
| 376 | # CONFIG_MAC80211 is not set | 382 | # CONFIG_MAC80211 is not set |
| 383 | # CONFIG_WIMAX is not set | ||
| 377 | # CONFIG_RFKILL is not set | 384 | # CONFIG_RFKILL is not set |
| 378 | # CONFIG_NET_9P is not set | 385 | # CONFIG_NET_9P is not set |
| 379 | 386 | ||
| @@ -392,6 +399,7 @@ CONFIG_MTD=y | |||
| 392 | # CONFIG_MTD_DEBUG is not set | 399 | # CONFIG_MTD_DEBUG is not set |
| 393 | # CONFIG_MTD_CONCAT is not set | 400 | # CONFIG_MTD_CONCAT is not set |
| 394 | CONFIG_MTD_PARTITIONS=y | 401 | CONFIG_MTD_PARTITIONS=y |
| 402 | # CONFIG_MTD_TESTS is not set | ||
| 395 | # CONFIG_MTD_REDBOOT_PARTS is not set | 403 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 396 | # CONFIG_MTD_CMDLINE_PARTS is not set | 404 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 397 | # CONFIG_MTD_AR7_PARTS is not set | 405 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -459,6 +467,11 @@ CONFIG_MTD_ROM=y | |||
| 459 | # CONFIG_MTD_ONENAND is not set | 467 | # CONFIG_MTD_ONENAND is not set |
| 460 | 468 | ||
| 461 | # | 469 | # |
| 470 | # LPDDR flash memory drivers | ||
| 471 | # | ||
| 472 | # CONFIG_MTD_LPDDR is not set | ||
| 473 | |||
| 474 | # | ||
| 462 | # UBI - Unsorted block images | 475 | # UBI - Unsorted block images |
| 463 | # | 476 | # |
| 464 | # CONFIG_MTD_UBI is not set | 477 | # CONFIG_MTD_UBI is not set |
| @@ -472,9 +485,13 @@ CONFIG_BLK_DEV=y | |||
| 472 | # CONFIG_ATA_OVER_ETH is not set | 485 | # CONFIG_ATA_OVER_ETH is not set |
| 473 | # CONFIG_BLK_DEV_HD is not set | 486 | # CONFIG_BLK_DEV_HD is not set |
| 474 | CONFIG_MISC_DEVICES=y | 487 | CONFIG_MISC_DEVICES=y |
| 475 | # CONFIG_EEPROM_93CX6 is not set | ||
| 476 | # CONFIG_ENCLOSURE_SERVICES is not set | 488 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 477 | # CONFIG_C2PORT is not set | 489 | # CONFIG_C2PORT is not set |
| 490 | |||
| 491 | # | ||
| 492 | # EEPROM support | ||
| 493 | # | ||
| 494 | # CONFIG_EEPROM_93CX6 is not set | ||
| 478 | CONFIG_HAVE_IDE=y | 495 | CONFIG_HAVE_IDE=y |
| 479 | CONFIG_IDE=y | 496 | CONFIG_IDE=y |
| 480 | 497 | ||
| @@ -538,9 +555,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 538 | # CONFIG_LIBFC is not set | 555 | # CONFIG_LIBFC is not set |
| 539 | # CONFIG_SCSI_DEBUG is not set | 556 | # CONFIG_SCSI_DEBUG is not set |
| 540 | # CONFIG_SCSI_DH is not set | 557 | # CONFIG_SCSI_DH is not set |
| 558 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 541 | # CONFIG_ATA is not set | 559 | # CONFIG_ATA is not set |
| 542 | # CONFIG_MD is not set | 560 | # CONFIG_MD is not set |
| 543 | CONFIG_NETDEVICES=y | 561 | CONFIG_NETDEVICES=y |
| 562 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 544 | # CONFIG_DUMMY is not set | 563 | # CONFIG_DUMMY is not set |
| 545 | # CONFIG_BONDING is not set | 564 | # CONFIG_BONDING is not set |
| 546 | # CONFIG_MACVLAN is not set | 565 | # CONFIG_MACVLAN is not set |
| @@ -553,8 +572,10 @@ CONFIG_NET_ETHERNET=y | |||
| 553 | # CONFIG_AX88796 is not set | 572 | # CONFIG_AX88796 is not set |
| 554 | CONFIG_STNIC=y | 573 | CONFIG_STNIC=y |
| 555 | # CONFIG_SMC91X is not set | 574 | # CONFIG_SMC91X is not set |
| 575 | # CONFIG_ETHOC is not set | ||
| 556 | # CONFIG_SMC911X is not set | 576 | # CONFIG_SMC911X is not set |
| 557 | # CONFIG_SMSC911X is not set | 577 | # CONFIG_SMSC911X is not set |
| 578 | # CONFIG_DNET is not set | ||
| 558 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 579 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 559 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 580 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 560 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 581 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -571,7 +592,10 @@ CONFIG_NETDEV_10000=y | |||
| 571 | # | 592 | # |
| 572 | # CONFIG_WLAN_PRE80211 is not set | 593 | # CONFIG_WLAN_PRE80211 is not set |
| 573 | # CONFIG_WLAN_80211 is not set | 594 | # CONFIG_WLAN_80211 is not set |
| 574 | # CONFIG_IWLWIFI_LEDS is not set | 595 | |
| 596 | # | ||
| 597 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 598 | # | ||
| 575 | # CONFIG_WAN is not set | 599 | # CONFIG_WAN is not set |
| 576 | # CONFIG_PPP is not set | 600 | # CONFIG_PPP is not set |
| 577 | # CONFIG_SLIP is not set | 601 | # CONFIG_SLIP is not set |
| @@ -622,6 +646,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 622 | CONFIG_LEGACY_PTY_COUNT=256 | 646 | CONFIG_LEGACY_PTY_COUNT=256 |
| 623 | # CONFIG_IPMI_HANDLER is not set | 647 | # CONFIG_IPMI_HANDLER is not set |
| 624 | CONFIG_HW_RANDOM=y | 648 | CONFIG_HW_RANDOM=y |
| 649 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 625 | # CONFIG_R3964 is not set | 650 | # CONFIG_R3964 is not set |
| 626 | # CONFIG_RAW_DRIVER is not set | 651 | # CONFIG_RAW_DRIVER is not set |
| 627 | # CONFIG_TCG_TPM is not set | 652 | # CONFIG_TCG_TPM is not set |
| @@ -711,15 +736,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 711 | # | 736 | # |
| 712 | 737 | ||
| 713 | # | 738 | # |
| 714 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 739 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 715 | # | 740 | # |
| 716 | # CONFIG_USB_GADGET is not set | 741 | # CONFIG_USB_GADGET is not set |
| 742 | |||
| 743 | # | ||
| 744 | # OTG and related infrastructure | ||
| 745 | # | ||
| 717 | # CONFIG_MMC is not set | 746 | # CONFIG_MMC is not set |
| 718 | # CONFIG_MEMSTICK is not set | 747 | # CONFIG_MEMSTICK is not set |
| 719 | # CONFIG_NEW_LEDS is not set | 748 | # CONFIG_NEW_LEDS is not set |
| 720 | # CONFIG_ACCESSIBILITY is not set | 749 | # CONFIG_ACCESSIBILITY is not set |
| 721 | # CONFIG_RTC_CLASS is not set | 750 | # CONFIG_RTC_CLASS is not set |
| 722 | # CONFIG_DMADEVICES is not set | 751 | # CONFIG_DMADEVICES is not set |
| 752 | # CONFIG_AUXDISPLAY is not set | ||
| 723 | # CONFIG_UIO is not set | 753 | # CONFIG_UIO is not set |
| 724 | # CONFIG_STAGING is not set | 754 | # CONFIG_STAGING is not set |
| 725 | 755 | ||
| @@ -735,6 +765,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 735 | CONFIG_FILE_LOCKING=y | 765 | CONFIG_FILE_LOCKING=y |
| 736 | # CONFIG_XFS_FS is not set | 766 | # CONFIG_XFS_FS is not set |
| 737 | # CONFIG_OCFS2_FS is not set | 767 | # CONFIG_OCFS2_FS is not set |
| 768 | # CONFIG_BTRFS_FS is not set | ||
| 738 | CONFIG_DNOTIFY=y | 769 | CONFIG_DNOTIFY=y |
| 739 | CONFIG_INOTIFY=y | 770 | CONFIG_INOTIFY=y |
| 740 | CONFIG_INOTIFY_USER=y | 771 | CONFIG_INOTIFY_USER=y |
| @@ -789,6 +820,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 789 | CONFIG_JFFS2_RTIME=y | 820 | CONFIG_JFFS2_RTIME=y |
| 790 | # CONFIG_JFFS2_RUBIN is not set | 821 | # CONFIG_JFFS2_RUBIN is not set |
| 791 | # CONFIG_CRAMFS is not set | 822 | # CONFIG_CRAMFS is not set |
| 823 | # CONFIG_SQUASHFS is not set | ||
| 792 | # CONFIG_VXFS_FS is not set | 824 | # CONFIG_VXFS_FS is not set |
| 793 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
| 794 | # CONFIG_OMFS_FS is not set | 826 | # CONFIG_OMFS_FS is not set |
| @@ -806,7 +838,6 @@ CONFIG_ROOT_NFS=y | |||
| 806 | CONFIG_LOCKD=y | 838 | CONFIG_LOCKD=y |
| 807 | CONFIG_NFS_COMMON=y | 839 | CONFIG_NFS_COMMON=y |
| 808 | CONFIG_SUNRPC=y | 840 | CONFIG_SUNRPC=y |
| 809 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 810 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 841 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 811 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 842 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 812 | # CONFIG_SMB_FS is not set | 843 | # CONFIG_SMB_FS is not set |
| @@ -859,7 +890,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 859 | # | 890 | # |
| 860 | # Tracers | 891 | # Tracers |
| 861 | # | 892 | # |
| 862 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 863 | # CONFIG_SAMPLES is not set | 893 | # CONFIG_SAMPLES is not set |
| 864 | CONFIG_HAVE_ARCH_KGDB=y | 894 | CONFIG_HAVE_ARCH_KGDB=y |
| 865 | # CONFIG_SH_STANDARD_BIOS is not set | 895 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -951,6 +981,7 @@ CONFIG_CRYPTO=y | |||
| 951 | # Compression | 981 | # Compression |
| 952 | # | 982 | # |
| 953 | # CONFIG_CRYPTO_DEFLATE is not set | 983 | # CONFIG_CRYPTO_DEFLATE is not set |
| 984 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 954 | # CONFIG_CRYPTO_LZO is not set | 985 | # CONFIG_CRYPTO_LZO is not set |
| 955 | 986 | ||
| 956 | # | 987 | # |
| @@ -973,7 +1004,7 @@ CONFIG_CRC32=y | |||
| 973 | # CONFIG_LIBCRC32C is not set | 1004 | # CONFIG_LIBCRC32C is not set |
| 974 | CONFIG_ZLIB_INFLATE=y | 1005 | CONFIG_ZLIB_INFLATE=y |
| 975 | CONFIG_ZLIB_DEFLATE=y | 1006 | CONFIG_ZLIB_DEFLATE=y |
| 976 | CONFIG_PLIST=y | ||
| 977 | CONFIG_HAS_IOMEM=y | 1007 | CONFIG_HAS_IOMEM=y |
| 978 | CONFIG_HAS_IOPORT=y | 1008 | CONFIG_HAS_IOPORT=y |
| 979 | CONFIG_HAS_DMA=y | 1009 | CONFIG_HAS_DMA=y |
| 1010 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7751_defconfig b/arch/sh/configs/se7751_defconfig index f54ae056f177..67fc26b3a7d0 100644 --- a/arch/sh/configs/se7751_defconfig +++ b/arch/sh/configs/se7751_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:51:47 2009 | 4 | # Thu Apr 2 18:59:59 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -42,18 +43,32 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 43 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | # CONFIG_IKCONFIG is not set | 55 | # CONFIG_IKCONFIG is not set |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | # CONFIG_GROUP_SCHED is not set | 57 | # CONFIG_GROUP_SCHED is not set |
| 58 | # CONFIG_CGROUPS is not set | ||
| 49 | CONFIG_SYSFS_DEPRECATED=y | 59 | CONFIG_SYSFS_DEPRECATED=y |
| 50 | CONFIG_SYSFS_DEPRECATED_V2=y | 60 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 51 | # CONFIG_RELAY is not set | 61 | # CONFIG_RELAY is not set |
| 52 | # CONFIG_NAMESPACES is not set | 62 | # CONFIG_NAMESPACES is not set |
| 53 | CONFIG_BLK_DEV_INITRD=y | 63 | CONFIG_BLK_DEV_INITRD=y |
| 54 | CONFIG_INITRAMFS_SOURCE="" | 64 | CONFIG_INITRAMFS_SOURCE="" |
| 65 | CONFIG_RD_GZIP=y | ||
| 66 | # CONFIG_RD_BZIP2 is not set | ||
| 67 | # CONFIG_RD_LZMA is not set | ||
| 68 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 69 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 56 | CONFIG_SYSCTL=y | 70 | CONFIG_SYSCTL=y |
| 71 | CONFIG_ANON_INODES=y | ||
| 57 | CONFIG_EMBEDDED=y | 72 | CONFIG_EMBEDDED=y |
| 58 | CONFIG_UID16=y | 73 | CONFIG_UID16=y |
| 59 | # CONFIG_SYSCTL_SYSCALL is not set | 74 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -63,10 +78,8 @@ CONFIG_KALLSYMS=y | |||
| 63 | CONFIG_PRINTK=y | 78 | CONFIG_PRINTK=y |
| 64 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
| 65 | CONFIG_ELF_CORE=y | 80 | CONFIG_ELF_CORE=y |
| 66 | CONFIG_COMPAT_BRK=y | ||
| 67 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
| 68 | CONFIG_FUTEX=y | 82 | CONFIG_FUTEX=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 70 | CONFIG_EPOLL=y | 83 | CONFIG_EPOLL=y |
| 71 | CONFIG_SIGNALFD=y | 84 | CONFIG_SIGNALFD=y |
| 72 | CONFIG_TIMERFD=y | 85 | CONFIG_TIMERFD=y |
| @@ -74,6 +87,7 @@ CONFIG_EVENTFD=y | |||
| 74 | CONFIG_SHMEM=y | 87 | CONFIG_SHMEM=y |
| 75 | CONFIG_AIO=y | 88 | CONFIG_AIO=y |
| 76 | CONFIG_VM_EVENT_COUNTERS=y | 89 | CONFIG_VM_EVENT_COUNTERS=y |
| 90 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 91 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 92 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 93 | # CONFIG_SLOB is not set |
| @@ -112,11 +126,6 @@ CONFIG_DEFAULT_AS=y | |||
| 112 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
| 113 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
| 114 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 128 | 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 | 129 | # CONFIG_FREEZER is not set |
| 121 | 130 | ||
| 122 | # | 131 | # |
| @@ -151,6 +160,7 @@ CONFIG_CPU_SUBTYPE_SH7751=y | |||
| 151 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 152 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 154 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 164 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 155 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -192,11 +202,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 192 | CONFIG_ZONE_DMA_FLAG=0 | 202 | CONFIG_ZONE_DMA_FLAG=0 |
| 193 | CONFIG_NR_QUICK=2 | 203 | CONFIG_NR_QUICK=2 |
| 194 | CONFIG_UNEVICTABLE_LRU=y | 204 | CONFIG_UNEVICTABLE_LRU=y |
| 205 | CONFIG_HAVE_MLOCK=y | ||
| 206 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 195 | 207 | ||
| 196 | # | 208 | # |
| 197 | # Cache configuration | 209 | # Cache configuration |
| 198 | # | 210 | # |
| 199 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 200 | CONFIG_CACHE_WRITEBACK=y | 211 | CONFIG_CACHE_WRITEBACK=y |
| 201 | # CONFIG_CACHE_WRITETHROUGH is not set | 212 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 202 | # CONFIG_CACHE_OFF is not set | 213 | # CONFIG_CACHE_OFF is not set |
| @@ -301,7 +312,6 @@ CONFIG_NET=y | |||
| 301 | # | 312 | # |
| 302 | # Networking options | 313 | # Networking options |
| 303 | # | 314 | # |
| 304 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 305 | CONFIG_PACKET=y | 315 | CONFIG_PACKET=y |
| 306 | # CONFIG_PACKET_MMAP is not set | 316 | # CONFIG_PACKET_MMAP is not set |
| 307 | CONFIG_UNIX=y | 317 | CONFIG_UNIX=y |
| @@ -376,6 +386,7 @@ CONFIG_IP_NF_QUEUE=y | |||
| 376 | # CONFIG_LAPB is not set | 386 | # CONFIG_LAPB is not set |
| 377 | # CONFIG_ECONET is not set | 387 | # CONFIG_ECONET is not set |
| 378 | # CONFIG_WAN_ROUTER is not set | 388 | # CONFIG_WAN_ROUTER is not set |
| 389 | # CONFIG_PHONET is not set | ||
| 379 | # CONFIG_NET_SCHED is not set | 390 | # CONFIG_NET_SCHED is not set |
| 380 | # CONFIG_DCB is not set | 391 | # CONFIG_DCB is not set |
| 381 | 392 | ||
| @@ -388,13 +399,13 @@ CONFIG_IP_NF_QUEUE=y | |||
| 388 | # CONFIG_IRDA is not set | 399 | # CONFIG_IRDA is not set |
| 389 | # CONFIG_BT is not set | 400 | # CONFIG_BT is not set |
| 390 | # CONFIG_AF_RXRPC is not set | 401 | # CONFIG_AF_RXRPC is not set |
| 391 | # CONFIG_PHONET is not set | ||
| 392 | CONFIG_WIRELESS=y | 402 | CONFIG_WIRELESS=y |
| 393 | # CONFIG_CFG80211 is not set | 403 | # CONFIG_CFG80211 is not set |
| 394 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 404 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 395 | # CONFIG_WIRELESS_EXT is not set | 405 | # CONFIG_WIRELESS_EXT is not set |
| 396 | # CONFIG_LIB80211 is not set | 406 | # CONFIG_LIB80211 is not set |
| 397 | # CONFIG_MAC80211 is not set | 407 | # CONFIG_MAC80211 is not set |
| 408 | # CONFIG_WIMAX is not set | ||
| 398 | # CONFIG_RFKILL is not set | 409 | # CONFIG_RFKILL is not set |
| 399 | # CONFIG_NET_9P is not set | 410 | # CONFIG_NET_9P is not set |
| 400 | 411 | ||
| @@ -413,6 +424,7 @@ CONFIG_MTD=y | |||
| 413 | # CONFIG_MTD_DEBUG is not set | 424 | # CONFIG_MTD_DEBUG is not set |
| 414 | # CONFIG_MTD_CONCAT is not set | 425 | # CONFIG_MTD_CONCAT is not set |
| 415 | CONFIG_MTD_PARTITIONS=y | 426 | CONFIG_MTD_PARTITIONS=y |
| 427 | # CONFIG_MTD_TESTS is not set | ||
| 416 | # CONFIG_MTD_REDBOOT_PARTS is not set | 428 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 417 | # CONFIG_MTD_CMDLINE_PARTS is not set | 429 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 418 | # CONFIG_MTD_AR7_PARTS is not set | 430 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -480,6 +492,11 @@ CONFIG_MTD_RAM=y | |||
| 480 | # CONFIG_MTD_ONENAND is not set | 492 | # CONFIG_MTD_ONENAND is not set |
| 481 | 493 | ||
| 482 | # | 494 | # |
| 495 | # LPDDR flash memory drivers | ||
| 496 | # | ||
| 497 | # CONFIG_MTD_LPDDR is not set | ||
| 498 | |||
| 499 | # | ||
| 483 | # UBI - Unsorted block images | 500 | # UBI - Unsorted block images |
| 484 | # | 501 | # |
| 485 | # CONFIG_MTD_UBI is not set | 502 | # CONFIG_MTD_UBI is not set |
| @@ -496,9 +513,13 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 496 | # CONFIG_ATA_OVER_ETH is not set | 513 | # CONFIG_ATA_OVER_ETH is not set |
| 497 | # CONFIG_BLK_DEV_HD is not set | 514 | # CONFIG_BLK_DEV_HD is not set |
| 498 | CONFIG_MISC_DEVICES=y | 515 | CONFIG_MISC_DEVICES=y |
| 499 | # CONFIG_EEPROM_93CX6 is not set | ||
| 500 | # CONFIG_ENCLOSURE_SERVICES is not set | 516 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 501 | # CONFIG_C2PORT is not set | 517 | # CONFIG_C2PORT is not set |
| 518 | |||
| 519 | # | ||
| 520 | # EEPROM support | ||
| 521 | # | ||
| 522 | # CONFIG_EEPROM_93CX6 is not set | ||
| 502 | CONFIG_HAVE_IDE=y | 523 | CONFIG_HAVE_IDE=y |
| 503 | # CONFIG_IDE is not set | 524 | # CONFIG_IDE is not set |
| 504 | 525 | ||
| @@ -512,6 +533,7 @@ CONFIG_HAVE_IDE=y | |||
| 512 | # CONFIG_ATA is not set | 533 | # CONFIG_ATA is not set |
| 513 | # CONFIG_MD is not set | 534 | # CONFIG_MD is not set |
| 514 | CONFIG_NETDEVICES=y | 535 | CONFIG_NETDEVICES=y |
| 536 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 515 | # CONFIG_DUMMY is not set | 537 | # CONFIG_DUMMY is not set |
| 516 | # CONFIG_BONDING is not set | 538 | # CONFIG_BONDING is not set |
| 517 | # CONFIG_MACVLAN is not set | 539 | # CONFIG_MACVLAN is not set |
| @@ -524,8 +546,10 @@ CONFIG_MII=y | |||
| 524 | # CONFIG_AX88796 is not set | 546 | # CONFIG_AX88796 is not set |
| 525 | # CONFIG_STNIC is not set | 547 | # CONFIG_STNIC is not set |
| 526 | # CONFIG_SMC91X is not set | 548 | # CONFIG_SMC91X is not set |
| 549 | # CONFIG_ETHOC is not set | ||
| 527 | # CONFIG_SMC911X is not set | 550 | # CONFIG_SMC911X is not set |
| 528 | # CONFIG_SMSC911X is not set | 551 | # CONFIG_SMSC911X is not set |
| 552 | # CONFIG_DNET is not set | ||
| 529 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 553 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 530 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 554 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 531 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 555 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -542,7 +566,10 @@ CONFIG_NETDEV_10000=y | |||
| 542 | # | 566 | # |
| 543 | # CONFIG_WLAN_PRE80211 is not set | 567 | # CONFIG_WLAN_PRE80211 is not set |
| 544 | # CONFIG_WLAN_80211 is not set | 568 | # CONFIG_WLAN_80211 is not set |
| 545 | # CONFIG_IWLWIFI_LEDS is not set | 569 | |
| 570 | # | ||
| 571 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 572 | # | ||
| 546 | # CONFIG_WAN is not set | 573 | # CONFIG_WAN is not set |
| 547 | # CONFIG_PPP is not set | 574 | # CONFIG_PPP is not set |
| 548 | # CONFIG_SLIP is not set | 575 | # CONFIG_SLIP is not set |
| @@ -585,6 +612,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 585 | CONFIG_LEGACY_PTY_COUNT=256 | 612 | CONFIG_LEGACY_PTY_COUNT=256 |
| 586 | # CONFIG_IPMI_HANDLER is not set | 613 | # CONFIG_IPMI_HANDLER is not set |
| 587 | CONFIG_HW_RANDOM=y | 614 | CONFIG_HW_RANDOM=y |
| 615 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 588 | # CONFIG_R3964 is not set | 616 | # CONFIG_R3964 is not set |
| 589 | # CONFIG_RAW_DRIVER is not set | 617 | # CONFIG_RAW_DRIVER is not set |
| 590 | # CONFIG_TCG_TPM is not set | 618 | # CONFIG_TCG_TPM is not set |
| @@ -673,15 +701,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 673 | # | 701 | # |
| 674 | 702 | ||
| 675 | # | 703 | # |
| 676 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 704 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 677 | # | 705 | # |
| 678 | # CONFIG_USB_GADGET is not set | 706 | # CONFIG_USB_GADGET is not set |
| 707 | |||
| 708 | # | ||
| 709 | # OTG and related infrastructure | ||
| 710 | # | ||
| 679 | # CONFIG_MMC is not set | 711 | # CONFIG_MMC is not set |
| 680 | # CONFIG_MEMSTICK is not set | 712 | # CONFIG_MEMSTICK is not set |
| 681 | # CONFIG_NEW_LEDS is not set | 713 | # CONFIG_NEW_LEDS is not set |
| 682 | # CONFIG_ACCESSIBILITY is not set | 714 | # CONFIG_ACCESSIBILITY is not set |
| 683 | # CONFIG_RTC_CLASS is not set | 715 | # CONFIG_RTC_CLASS is not set |
| 684 | # CONFIG_DMADEVICES is not set | 716 | # CONFIG_DMADEVICES is not set |
| 717 | # CONFIG_AUXDISPLAY is not set | ||
| 685 | # CONFIG_UIO is not set | 718 | # CONFIG_UIO is not set |
| 686 | # CONFIG_STAGING is not set | 719 | # CONFIG_STAGING is not set |
| 687 | 720 | ||
| @@ -699,6 +732,7 @@ CONFIG_EXT2_FS=y | |||
| 699 | CONFIG_FILE_LOCKING=y | 732 | CONFIG_FILE_LOCKING=y |
| 700 | # CONFIG_XFS_FS is not set | 733 | # CONFIG_XFS_FS is not set |
| 701 | # CONFIG_OCFS2_FS is not set | 734 | # CONFIG_OCFS2_FS is not set |
| 735 | # CONFIG_BTRFS_FS is not set | ||
| 702 | CONFIG_DNOTIFY=y | 736 | CONFIG_DNOTIFY=y |
| 703 | CONFIG_INOTIFY=y | 737 | CONFIG_INOTIFY=y |
| 704 | CONFIG_INOTIFY_USER=y | 738 | CONFIG_INOTIFY_USER=y |
| @@ -753,6 +787,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 753 | CONFIG_JFFS2_RTIME=y | 787 | CONFIG_JFFS2_RTIME=y |
| 754 | # CONFIG_JFFS2_RUBIN is not set | 788 | # CONFIG_JFFS2_RUBIN is not set |
| 755 | # CONFIG_CRAMFS is not set | 789 | # CONFIG_CRAMFS is not set |
| 790 | # CONFIG_SQUASHFS is not set | ||
| 756 | # CONFIG_VXFS_FS is not set | 791 | # CONFIG_VXFS_FS is not set |
| 757 | # CONFIG_MINIX_FS is not set | 792 | # CONFIG_MINIX_FS is not set |
| 758 | # CONFIG_OMFS_FS is not set | 793 | # CONFIG_OMFS_FS is not set |
| @@ -802,7 +837,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 802 | # | 837 | # |
| 803 | # Tracers | 838 | # Tracers |
| 804 | # | 839 | # |
| 805 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 806 | # CONFIG_SAMPLES is not set | 840 | # CONFIG_SAMPLES is not set |
| 807 | CONFIG_HAVE_ARCH_KGDB=y | 841 | CONFIG_HAVE_ARCH_KGDB=y |
| 808 | # CONFIG_SH_STANDARD_BIOS is not set | 842 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -894,6 +928,7 @@ CONFIG_CRYPTO=y | |||
| 894 | # Compression | 928 | # Compression |
| 895 | # | 929 | # |
| 896 | # CONFIG_CRYPTO_DEFLATE is not set | 930 | # CONFIG_CRYPTO_DEFLATE is not set |
| 931 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 897 | # CONFIG_CRYPTO_LZO is not set | 932 | # CONFIG_CRYPTO_LZO is not set |
| 898 | 933 | ||
| 899 | # | 934 | # |
| @@ -916,7 +951,8 @@ CONFIG_CRC32=y | |||
| 916 | # CONFIG_LIBCRC32C is not set | 951 | # CONFIG_LIBCRC32C is not set |
| 917 | CONFIG_ZLIB_INFLATE=y | 952 | CONFIG_ZLIB_INFLATE=y |
| 918 | CONFIG_ZLIB_DEFLATE=y | 953 | CONFIG_ZLIB_DEFLATE=y |
| 919 | CONFIG_PLIST=y | 954 | CONFIG_DECOMPRESS_GZIP=y |
| 920 | CONFIG_HAS_IOMEM=y | 955 | CONFIG_HAS_IOMEM=y |
| 921 | CONFIG_HAS_IOPORT=y | 956 | CONFIG_HAS_IOPORT=y |
| 922 | CONFIG_HAS_DMA=y | 957 | CONFIG_HAS_DMA=y |
| 958 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/se7780_defconfig b/arch/sh/configs/se7780_defconfig index 7504978e8747..ebce23cc2ad8 100644 --- a/arch/sh/configs/se7780_defconfig +++ b/arch/sh/configs/se7780_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:53:50 2009 | 4 | # Thu Apr 2 19:02:05 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -41,6 +42,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | CONFIG_IKCONFIG=y | 54 | CONFIG_IKCONFIG=y |
| 45 | CONFIG_IKCONFIG_PROC=y | 55 | CONFIG_IKCONFIG_PROC=y |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -52,6 +62,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 52 | # CONFIG_BLK_DEV_INITRD is not set | 62 | # CONFIG_BLK_DEV_INITRD is not set |
| 53 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 63 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 54 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
| 65 | CONFIG_ANON_INODES=y | ||
| 55 | CONFIG_EMBEDDED=y | 66 | CONFIG_EMBEDDED=y |
| 56 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
| 57 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -60,10 +71,8 @@ CONFIG_SYSCTL_SYSCALL=y | |||
| 60 | CONFIG_PRINTK=y | 71 | CONFIG_PRINTK=y |
| 61 | CONFIG_BUG=y | 72 | CONFIG_BUG=y |
| 62 | CONFIG_ELF_CORE=y | 73 | CONFIG_ELF_CORE=y |
| 63 | CONFIG_COMPAT_BRK=y | ||
| 64 | CONFIG_BASE_FULL=y | 74 | CONFIG_BASE_FULL=y |
| 65 | CONFIG_FUTEX=y | 75 | CONFIG_FUTEX=y |
| 66 | CONFIG_ANON_INODES=y | ||
| 67 | # CONFIG_EPOLL is not set | 76 | # CONFIG_EPOLL is not set |
| 68 | CONFIG_SIGNALFD=y | 77 | CONFIG_SIGNALFD=y |
| 69 | CONFIG_TIMERFD=y | 78 | CONFIG_TIMERFD=y |
| @@ -72,6 +81,7 @@ CONFIG_SHMEM=y | |||
| 72 | CONFIG_AIO=y | 81 | CONFIG_AIO=y |
| 73 | CONFIG_VM_EVENT_COUNTERS=y | 82 | CONFIG_VM_EVENT_COUNTERS=y |
| 74 | CONFIG_PCI_QUIRKS=y | 83 | CONFIG_PCI_QUIRKS=y |
| 84 | CONFIG_COMPAT_BRK=y | ||
| 75 | CONFIG_SLAB=y | 85 | CONFIG_SLAB=y |
| 76 | # CONFIG_SLUB is not set | 86 | # CONFIG_SLUB is not set |
| 77 | # CONFIG_SLOB is not set | 87 | # CONFIG_SLOB is not set |
| @@ -108,11 +118,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 108 | # CONFIG_DEFAULT_CFQ is not set | 118 | # CONFIG_DEFAULT_CFQ is not set |
| 109 | # CONFIG_DEFAULT_NOOP is not set | 119 | # CONFIG_DEFAULT_NOOP is not set |
| 110 | CONFIG_DEFAULT_IOSCHED="deadline" | 120 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 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 | 121 | # CONFIG_FREEZER is not set |
| 117 | 122 | ||
| 118 | # | 123 | # |
| @@ -148,6 +153,7 @@ CONFIG_CPU_SH4A=y | |||
| 148 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 153 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 149 | CONFIG_CPU_SUBTYPE_SH7780=y | 154 | CONFIG_CPU_SUBTYPE_SH7780=y |
| 150 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 151 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 157 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 152 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -192,11 +198,12 @@ CONFIG_MIGRATION=y | |||
| 192 | CONFIG_ZONE_DMA_FLAG=0 | 198 | CONFIG_ZONE_DMA_FLAG=0 |
| 193 | CONFIG_NR_QUICK=2 | 199 | CONFIG_NR_QUICK=2 |
| 194 | CONFIG_UNEVICTABLE_LRU=y | 200 | CONFIG_UNEVICTABLE_LRU=y |
| 201 | CONFIG_HAVE_MLOCK=y | ||
| 202 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 195 | 203 | ||
| 196 | # | 204 | # |
| 197 | # Cache configuration | 205 | # Cache configuration |
| 198 | # | 206 | # |
| 199 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 200 | CONFIG_CACHE_WRITEBACK=y | 207 | CONFIG_CACHE_WRITEBACK=y |
| 201 | # CONFIG_CACHE_WRITETHROUGH is not set | 208 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 202 | # CONFIG_CACHE_OFF is not set | 209 | # CONFIG_CACHE_OFF is not set |
| @@ -283,6 +290,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 283 | # CONFIG_PCIEPORTBUS is not set | 290 | # CONFIG_PCIEPORTBUS is not set |
| 284 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 291 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 285 | CONFIG_PCI_LEGACY=y | 292 | CONFIG_PCI_LEGACY=y |
| 293 | # CONFIG_PCI_STUB is not set | ||
| 294 | # CONFIG_PCI_IOV is not set | ||
| 286 | 295 | ||
| 287 | # | 296 | # |
| 288 | # Executable file formats | 297 | # Executable file formats |
| @@ -296,7 +305,6 @@ CONFIG_NET=y | |||
| 296 | # | 305 | # |
| 297 | # Networking options | 306 | # Networking options |
| 298 | # | 307 | # |
| 299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 300 | CONFIG_PACKET=y | 308 | CONFIG_PACKET=y |
| 301 | # CONFIG_PACKET_MMAP is not set | 309 | # CONFIG_PACKET_MMAP is not set |
| 302 | CONFIG_UNIX=y | 310 | CONFIG_UNIX=y |
| @@ -351,6 +359,7 @@ CONFIG_IPV6=y | |||
| 351 | # CONFIG_LLC2 is not set | 359 | # CONFIG_LLC2 is not set |
| 352 | # CONFIG_IPX is not set | 360 | # CONFIG_IPX is not set |
| 353 | # CONFIG_ATALK is not set | 361 | # CONFIG_ATALK is not set |
| 362 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 363 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 364 | # CONFIG_DCB is not set |
| 356 | 365 | ||
| @@ -362,13 +371,13 @@ CONFIG_IPV6=y | |||
| 362 | # CONFIG_CAN is not set | 371 | # CONFIG_CAN is not set |
| 363 | # CONFIG_IRDA is not set | 372 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 373 | # CONFIG_BT is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 366 | CONFIG_WIRELESS=y | 374 | CONFIG_WIRELESS=y |
| 367 | # CONFIG_CFG80211 is not set | 375 | # CONFIG_CFG80211 is not set |
| 368 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 376 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 369 | # CONFIG_WIRELESS_EXT is not set | 377 | # CONFIG_WIRELESS_EXT is not set |
| 370 | # CONFIG_LIB80211 is not set | 378 | # CONFIG_LIB80211 is not set |
| 371 | # CONFIG_MAC80211 is not set | 379 | # CONFIG_MAC80211 is not set |
| 380 | # CONFIG_WIMAX is not set | ||
| 372 | # CONFIG_RFKILL is not set | 381 | # CONFIG_RFKILL is not set |
| 373 | 382 | ||
| 374 | # | 383 | # |
| @@ -386,6 +395,7 @@ CONFIG_MTD=y | |||
| 386 | # CONFIG_MTD_DEBUG is not set | 395 | # CONFIG_MTD_DEBUG is not set |
| 387 | # CONFIG_MTD_CONCAT is not set | 396 | # CONFIG_MTD_CONCAT is not set |
| 388 | CONFIG_MTD_PARTITIONS=y | 397 | CONFIG_MTD_PARTITIONS=y |
| 398 | # CONFIG_MTD_TESTS is not set | ||
| 389 | # CONFIG_MTD_REDBOOT_PARTS is not set | 399 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 390 | # CONFIG_MTD_CMDLINE_PARTS is not set | 400 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 391 | # CONFIG_MTD_AR7_PARTS is not set | 401 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -460,6 +470,11 @@ CONFIG_MTD_ROM=y | |||
| 460 | # CONFIG_MTD_ONENAND is not set | 470 | # CONFIG_MTD_ONENAND is not set |
| 461 | 471 | ||
| 462 | # | 472 | # |
| 473 | # LPDDR flash memory drivers | ||
| 474 | # | ||
| 475 | # CONFIG_MTD_LPDDR is not set | ||
| 476 | |||
| 477 | # | ||
| 463 | # UBI - Unsorted block images | 478 | # UBI - Unsorted block images |
| 464 | # | 479 | # |
| 465 | # CONFIG_MTD_UBI is not set | 480 | # CONFIG_MTD_UBI is not set |
| @@ -479,10 +494,14 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 479 | # CONFIG_BLK_DEV_HD is not set | 494 | # CONFIG_BLK_DEV_HD is not set |
| 480 | CONFIG_MISC_DEVICES=y | 495 | CONFIG_MISC_DEVICES=y |
| 481 | # CONFIG_PHANTOM is not set | 496 | # CONFIG_PHANTOM is not set |
| 482 | # CONFIG_EEPROM_93CX6 is not set | ||
| 483 | # CONFIG_SGI_IOC4 is not set | 497 | # CONFIG_SGI_IOC4 is not set |
| 484 | # CONFIG_ENCLOSURE_SERVICES is not set | 498 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 485 | # CONFIG_HP_ILO is not set | 499 | # CONFIG_HP_ILO is not set |
| 500 | |||
| 501 | # | ||
| 502 | # EEPROM support | ||
| 503 | # | ||
| 504 | # CONFIG_EEPROM_93CX6 is not set | ||
| 486 | CONFIG_HAVE_IDE=y | 505 | CONFIG_HAVE_IDE=y |
| 487 | # CONFIG_IDE is not set | 506 | # CONFIG_IDE is not set |
| 488 | 507 | ||
| @@ -536,6 +555,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 536 | # CONFIG_MEGARAID_NEWGEN is not set | 555 | # CONFIG_MEGARAID_NEWGEN is not set |
| 537 | # CONFIG_MEGARAID_LEGACY is not set | 556 | # CONFIG_MEGARAID_LEGACY is not set |
| 538 | # CONFIG_MEGARAID_SAS is not set | 557 | # CONFIG_MEGARAID_SAS is not set |
| 558 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 539 | # CONFIG_SCSI_HPTIOP is not set | 559 | # CONFIG_SCSI_HPTIOP is not set |
| 540 | # CONFIG_LIBFC is not set | 560 | # CONFIG_LIBFC is not set |
| 541 | # CONFIG_FCOE is not set | 561 | # CONFIG_FCOE is not set |
| @@ -557,6 +577,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 557 | # CONFIG_SCSI_DEBUG is not set | 577 | # CONFIG_SCSI_DEBUG is not set |
| 558 | # CONFIG_SCSI_SRP is not set | 578 | # CONFIG_SCSI_SRP is not set |
| 559 | # CONFIG_SCSI_DH is not set | 579 | # CONFIG_SCSI_DH is not set |
| 580 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 560 | CONFIG_ATA=y | 581 | CONFIG_ATA=y |
| 561 | # CONFIG_ATA_NONSTANDARD is not set | 582 | # CONFIG_ATA_NONSTANDARD is not set |
| 562 | CONFIG_SATA_PMP=y | 583 | CONFIG_SATA_PMP=y |
| @@ -565,6 +586,7 @@ CONFIG_SATA_PMP=y | |||
| 565 | CONFIG_ATA_SFF=y | 586 | CONFIG_ATA_SFF=y |
| 566 | # CONFIG_SATA_SVW is not set | 587 | # CONFIG_SATA_SVW is not set |
| 567 | # CONFIG_ATA_PIIX is not set | 588 | # CONFIG_ATA_PIIX is not set |
| 589 | # CONFIG_SATA_MV is not set | ||
| 568 | # CONFIG_SATA_NV is not set | 590 | # CONFIG_SATA_NV is not set |
| 569 | # CONFIG_PDC_ADMA is not set | 591 | # CONFIG_PDC_ADMA is not set |
| 570 | # CONFIG_SATA_QSTOR is not set | 592 | # CONFIG_SATA_QSTOR is not set |
| @@ -619,6 +641,7 @@ CONFIG_SATA_SIL=y | |||
| 619 | # CONFIG_IEEE1394 is not set | 641 | # CONFIG_IEEE1394 is not set |
| 620 | # CONFIG_I2O is not set | 642 | # CONFIG_I2O is not set |
| 621 | CONFIG_NETDEVICES=y | 643 | CONFIG_NETDEVICES=y |
| 644 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 622 | # CONFIG_DUMMY is not set | 645 | # CONFIG_DUMMY is not set |
| 623 | # CONFIG_BONDING is not set | 646 | # CONFIG_BONDING is not set |
| 624 | # CONFIG_EQUALIZER is not set | 647 | # CONFIG_EQUALIZER is not set |
| @@ -654,8 +677,10 @@ CONFIG_MII=y | |||
| 654 | # CONFIG_CASSINI is not set | 677 | # CONFIG_CASSINI is not set |
| 655 | # CONFIG_NET_VENDOR_3COM is not set | 678 | # CONFIG_NET_VENDOR_3COM is not set |
| 656 | CONFIG_SMC91X=y | 679 | CONFIG_SMC91X=y |
| 680 | # CONFIG_ETHOC is not set | ||
| 657 | # CONFIG_SMC911X is not set | 681 | # CONFIG_SMC911X is not set |
| 658 | # CONFIG_SMSC911X is not set | 682 | # CONFIG_SMSC911X is not set |
| 683 | # CONFIG_DNET is not set | ||
| 659 | # CONFIG_NET_TULIP is not set | 684 | # CONFIG_NET_TULIP is not set |
| 660 | # CONFIG_HP100 is not set | 685 | # CONFIG_HP100 is not set |
| 661 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 686 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -693,7 +718,10 @@ CONFIG_NET_PCI=y | |||
| 693 | # | 718 | # |
| 694 | # CONFIG_WLAN_PRE80211 is not set | 719 | # CONFIG_WLAN_PRE80211 is not set |
| 695 | # CONFIG_WLAN_80211 is not set | 720 | # CONFIG_WLAN_80211 is not set |
| 696 | # CONFIG_IWLWIFI_LEDS is not set | 721 | |
| 722 | # | ||
| 723 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 724 | # | ||
| 697 | 725 | ||
| 698 | # | 726 | # |
| 699 | # USB Network Adapters | 727 | # USB Network Adapters |
| @@ -885,6 +913,7 @@ CONFIG_FB_SH_MOBILE_LCDC=m | |||
| 885 | # CONFIG_FB_VIRTUAL is not set | 913 | # CONFIG_FB_VIRTUAL is not set |
| 886 | # CONFIG_FB_METRONOME is not set | 914 | # CONFIG_FB_METRONOME is not set |
| 887 | # CONFIG_FB_MB862XX is not set | 915 | # CONFIG_FB_MB862XX is not set |
| 916 | # CONFIG_FB_BROADSHEET is not set | ||
| 888 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 917 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 889 | 918 | ||
| 890 | # | 919 | # |
| @@ -978,6 +1007,7 @@ CONFIG_USB_MON=y | |||
| 978 | # CONFIG_USB_C67X00_HCD is not set | 1007 | # CONFIG_USB_C67X00_HCD is not set |
| 979 | CONFIG_USB_EHCI_HCD=y | 1008 | CONFIG_USB_EHCI_HCD=y |
| 980 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1009 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1010 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 981 | # CONFIG_USB_ISP116X_HCD is not set | 1011 | # CONFIG_USB_ISP116X_HCD is not set |
| 982 | CONFIG_USB_OHCI_HCD=y | 1012 | CONFIG_USB_OHCI_HCD=y |
| 983 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 1013 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| @@ -996,18 +1026,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 996 | # CONFIG_USB_TMC is not set | 1026 | # CONFIG_USB_TMC is not set |
| 997 | 1027 | ||
| 998 | # | 1028 | # |
| 999 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1029 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1000 | # | 1030 | # |
| 1001 | 1031 | ||
| 1002 | # | 1032 | # |
| 1003 | # see USB_STORAGE Help for more information | 1033 | # also be needed; see USB_STORAGE Help for more info |
| 1004 | # | 1034 | # |
| 1005 | CONFIG_USB_STORAGE=y | 1035 | CONFIG_USB_STORAGE=y |
| 1006 | # CONFIG_USB_STORAGE_DEBUG is not set | 1036 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1007 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1037 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1008 | # CONFIG_USB_STORAGE_FREECOM is not set | 1038 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1009 | # CONFIG_USB_STORAGE_ISD200 is not set | 1039 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1010 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1011 | # CONFIG_USB_STORAGE_USBAT is not set | 1040 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1012 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1041 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1013 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1042 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1043,7 +1072,6 @@ CONFIG_USB_STORAGE=y | |||
| 1043 | # CONFIG_USB_LED is not set | 1072 | # CONFIG_USB_LED is not set |
| 1044 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1073 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1045 | # CONFIG_USB_CYTHERM is not set | 1074 | # CONFIG_USB_CYTHERM is not set |
| 1046 | # CONFIG_USB_PHIDGET is not set | ||
| 1047 | # CONFIG_USB_IDMOUSE is not set | 1075 | # CONFIG_USB_IDMOUSE is not set |
| 1048 | # CONFIG_USB_FTDI_ELAN is not set | 1076 | # CONFIG_USB_FTDI_ELAN is not set |
| 1049 | # CONFIG_USB_APPLEDISPLAY is not set | 1077 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1055,6 +1083,11 @@ CONFIG_USB_STORAGE=y | |||
| 1055 | # CONFIG_USB_ISIGHTFW is not set | 1083 | # CONFIG_USB_ISIGHTFW is not set |
| 1056 | # CONFIG_USB_VST is not set | 1084 | # CONFIG_USB_VST is not set |
| 1057 | # CONFIG_USB_GADGET is not set | 1085 | # CONFIG_USB_GADGET is not set |
| 1086 | |||
| 1087 | # | ||
| 1088 | # OTG and related infrastructure | ||
| 1089 | # | ||
| 1090 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1058 | # CONFIG_MMC is not set | 1091 | # CONFIG_MMC is not set |
| 1059 | # CONFIG_MEMSTICK is not set | 1092 | # CONFIG_MEMSTICK is not set |
| 1060 | # CONFIG_NEW_LEDS is not set | 1093 | # CONFIG_NEW_LEDS is not set |
| @@ -1062,6 +1095,7 @@ CONFIG_USB_STORAGE=y | |||
| 1062 | # CONFIG_INFINIBAND is not set | 1095 | # CONFIG_INFINIBAND is not set |
| 1063 | # CONFIG_RTC_CLASS is not set | 1096 | # CONFIG_RTC_CLASS is not set |
| 1064 | # CONFIG_DMADEVICES is not set | 1097 | # CONFIG_DMADEVICES is not set |
| 1098 | # CONFIG_AUXDISPLAY is not set | ||
| 1065 | # CONFIG_UIO is not set | 1099 | # CONFIG_UIO is not set |
| 1066 | # CONFIG_STAGING is not set | 1100 | # CONFIG_STAGING is not set |
| 1067 | 1101 | ||
| @@ -1120,6 +1154,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1120 | # CONFIG_HFSPLUS_FS is not set | 1154 | # CONFIG_HFSPLUS_FS is not set |
| 1121 | # CONFIG_JFFS2_FS is not set | 1155 | # CONFIG_JFFS2_FS is not set |
| 1122 | CONFIG_CRAMFS=y | 1156 | CONFIG_CRAMFS=y |
| 1157 | # CONFIG_SQUASHFS is not set | ||
| 1123 | # CONFIG_VXFS_FS is not set | 1158 | # CONFIG_VXFS_FS is not set |
| 1124 | # CONFIG_MINIX_FS is not set | 1159 | # CONFIG_MINIX_FS is not set |
| 1125 | # CONFIG_OMFS_FS is not set | 1160 | # CONFIG_OMFS_FS is not set |
| @@ -1214,7 +1249,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1214 | # | 1249 | # |
| 1215 | # Tracers | 1250 | # Tracers |
| 1216 | # | 1251 | # |
| 1217 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1252 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1218 | # CONFIG_SAMPLES is not set | 1253 | # CONFIG_SAMPLES is not set |
| 1219 | CONFIG_HAVE_ARCH_KGDB=y | 1254 | CONFIG_HAVE_ARCH_KGDB=y |
| 1220 | # CONFIG_SH_STANDARD_BIOS is not set | 1255 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1301,6 +1336,7 @@ CONFIG_CRYPTO=y | |||
| 1301 | # Compression | 1336 | # Compression |
| 1302 | # | 1337 | # |
| 1303 | # CONFIG_CRYPTO_DEFLATE is not set | 1338 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1339 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1304 | # CONFIG_CRYPTO_LZO is not set | 1340 | # CONFIG_CRYPTO_LZO is not set |
| 1305 | 1341 | ||
| 1306 | # | 1342 | # |
| @@ -1323,7 +1359,7 @@ CONFIG_CRC32=y | |||
| 1323 | # CONFIG_CRC7 is not set | 1359 | # CONFIG_CRC7 is not set |
| 1324 | # CONFIG_LIBCRC32C is not set | 1360 | # CONFIG_LIBCRC32C is not set |
| 1325 | CONFIG_ZLIB_INFLATE=y | 1361 | CONFIG_ZLIB_INFLATE=y |
| 1326 | CONFIG_PLIST=y | ||
| 1327 | CONFIG_HAS_IOMEM=y | 1362 | CONFIG_HAS_IOMEM=y |
| 1328 | CONFIG_HAS_IOPORT=y | 1363 | CONFIG_HAS_IOPORT=y |
| 1329 | CONFIG_HAS_DMA=y | 1364 | CONFIG_HAS_DMA=y |
| 1365 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sh03_defconfig b/arch/sh/configs/sh03_defconfig index 04bde1e96965..6fcdb090cf32 100644 --- a/arch/sh/configs/sh03_defconfig +++ b/arch/sh/configs/sh03_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 17:56:46 2009 | 4 | # Thu Apr 2 19:04:59 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -44,18 +45,32 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 45 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 45 | # CONFIG_TASKSTATS is not set | 46 | # CONFIG_TASKSTATS is not set |
| 46 | # CONFIG_AUDIT is not set | 47 | # CONFIG_AUDIT is not set |
| 48 | |||
| 49 | # | ||
| 50 | # RCU Subsystem | ||
| 51 | # | ||
| 52 | CONFIG_CLASSIC_RCU=y | ||
| 53 | # CONFIG_TREE_RCU is not set | ||
| 54 | # CONFIG_PREEMPT_RCU is not set | ||
| 55 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 56 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 47 | # CONFIG_IKCONFIG is not set | 57 | # CONFIG_IKCONFIG is not set |
| 48 | CONFIG_LOG_BUF_SHIFT=14 | 58 | CONFIG_LOG_BUF_SHIFT=14 |
| 49 | # CONFIG_CGROUPS is not set | ||
| 50 | # CONFIG_GROUP_SCHED is not set | 59 | # CONFIG_GROUP_SCHED is not set |
| 60 | # CONFIG_CGROUPS is not set | ||
| 51 | CONFIG_SYSFS_DEPRECATED=y | 61 | CONFIG_SYSFS_DEPRECATED=y |
| 52 | CONFIG_SYSFS_DEPRECATED_V2=y | 62 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 53 | # CONFIG_RELAY is not set | 63 | # CONFIG_RELAY is not set |
| 54 | # CONFIG_NAMESPACES is not set | 64 | # CONFIG_NAMESPACES is not set |
| 55 | CONFIG_BLK_DEV_INITRD=y | 65 | CONFIG_BLK_DEV_INITRD=y |
| 56 | CONFIG_INITRAMFS_SOURCE="" | 66 | CONFIG_INITRAMFS_SOURCE="" |
| 67 | CONFIG_RD_GZIP=y | ||
| 68 | # CONFIG_RD_BZIP2 is not set | ||
| 69 | # CONFIG_RD_LZMA is not set | ||
| 70 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 71 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 58 | CONFIG_SYSCTL=y | 72 | CONFIG_SYSCTL=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 74 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 75 | CONFIG_UID16=y |
| 61 | # CONFIG_SYSCTL_SYSCALL is not set | 76 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -65,10 +80,8 @@ CONFIG_HOTPLUG=y | |||
| 65 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 66 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 67 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 68 | CONFIG_COMPAT_BRK=y | ||
| 69 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 70 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 71 | CONFIG_ANON_INODES=y | ||
| 72 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 73 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 74 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -77,6 +90,7 @@ CONFIG_SHMEM=y | |||
| 77 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 78 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 79 | CONFIG_PCI_QUIRKS=y | 92 | CONFIG_PCI_QUIRKS=y |
| 93 | CONFIG_COMPAT_BRK=y | ||
| 80 | CONFIG_SLAB=y | 94 | CONFIG_SLAB=y |
| 81 | # CONFIG_SLUB is not set | 95 | # CONFIG_SLUB is not set |
| 82 | # CONFIG_SLOB is not set | 96 | # CONFIG_SLOB is not set |
| @@ -119,11 +133,6 @@ CONFIG_DEFAULT_AS=y | |||
| 119 | # CONFIG_DEFAULT_CFQ is not set | 133 | # CONFIG_DEFAULT_CFQ is not set |
| 120 | # CONFIG_DEFAULT_NOOP is not set | 134 | # CONFIG_DEFAULT_NOOP is not set |
| 121 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 135 | 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 | 136 | # CONFIG_FREEZER is not set |
| 128 | 137 | ||
| 129 | # | 138 | # |
| @@ -158,6 +167,7 @@ CONFIG_CPU_SUBTYPE_SH7751=y | |||
| 158 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 167 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 170 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 161 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 171 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -199,11 +209,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 199 | CONFIG_ZONE_DMA_FLAG=0 | 209 | CONFIG_ZONE_DMA_FLAG=0 |
| 200 | CONFIG_NR_QUICK=2 | 210 | CONFIG_NR_QUICK=2 |
| 201 | CONFIG_UNEVICTABLE_LRU=y | 211 | CONFIG_UNEVICTABLE_LRU=y |
| 212 | CONFIG_HAVE_MLOCK=y | ||
| 213 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 202 | 214 | ||
| 203 | # | 215 | # |
| 204 | # Cache configuration | 216 | # Cache configuration |
| 205 | # | 217 | # |
| 206 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 207 | CONFIG_CACHE_WRITEBACK=y | 218 | CONFIG_CACHE_WRITEBACK=y |
| 208 | # CONFIG_CACHE_WRITETHROUGH is not set | 219 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 209 | # CONFIG_CACHE_OFF is not set | 220 | # CONFIG_CACHE_OFF is not set |
| @@ -294,6 +305,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 294 | # CONFIG_PCIEPORTBUS is not set | 305 | # CONFIG_PCIEPORTBUS is not set |
| 295 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 306 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 296 | CONFIG_PCI_LEGACY=y | 307 | CONFIG_PCI_LEGACY=y |
| 308 | # CONFIG_PCI_STUB is not set | ||
| 309 | # CONFIG_PCI_IOV is not set | ||
| 297 | # CONFIG_PCCARD is not set | 310 | # CONFIG_PCCARD is not set |
| 298 | CONFIG_HOTPLUG_PCI=m | 311 | CONFIG_HOTPLUG_PCI=m |
| 299 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 312 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
| @@ -318,7 +331,6 @@ CONFIG_NET=y | |||
| 318 | # | 331 | # |
| 319 | # Networking options | 332 | # Networking options |
| 320 | # | 333 | # |
| 321 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 322 | CONFIG_PACKET=y | 334 | CONFIG_PACKET=y |
| 323 | # CONFIG_PACKET_MMAP is not set | 335 | # CONFIG_PACKET_MMAP is not set |
| 324 | CONFIG_UNIX=y | 336 | CONFIG_UNIX=y |
| @@ -375,6 +387,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 375 | # CONFIG_LAPB is not set | 387 | # CONFIG_LAPB is not set |
| 376 | # CONFIG_ECONET is not set | 388 | # CONFIG_ECONET is not set |
| 377 | # CONFIG_WAN_ROUTER is not set | 389 | # CONFIG_WAN_ROUTER is not set |
| 390 | # CONFIG_PHONET is not set | ||
| 378 | # CONFIG_NET_SCHED is not set | 391 | # CONFIG_NET_SCHED is not set |
| 379 | # CONFIG_DCB is not set | 392 | # CONFIG_DCB is not set |
| 380 | 393 | ||
| @@ -382,18 +395,19 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 382 | # Network testing | 395 | # Network testing |
| 383 | # | 396 | # |
| 384 | # CONFIG_NET_PKTGEN is not set | 397 | # CONFIG_NET_PKTGEN is not set |
| 398 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 385 | # CONFIG_HAMRADIO is not set | 399 | # CONFIG_HAMRADIO is not set |
| 386 | # CONFIG_CAN is not set | 400 | # CONFIG_CAN is not set |
| 387 | # CONFIG_IRDA is not set | 401 | # CONFIG_IRDA is not set |
| 388 | # CONFIG_BT is not set | 402 | # CONFIG_BT is not set |
| 389 | # CONFIG_AF_RXRPC is not set | 403 | # CONFIG_AF_RXRPC is not set |
| 390 | # CONFIG_PHONET is not set | ||
| 391 | CONFIG_WIRELESS=y | 404 | CONFIG_WIRELESS=y |
| 392 | # CONFIG_CFG80211 is not set | 405 | # CONFIG_CFG80211 is not set |
| 393 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 406 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 394 | # CONFIG_WIRELESS_EXT is not set | 407 | # CONFIG_WIRELESS_EXT is not set |
| 395 | # CONFIG_LIB80211 is not set | 408 | # CONFIG_LIB80211 is not set |
| 396 | # CONFIG_MAC80211 is not set | 409 | # CONFIG_MAC80211 is not set |
| 410 | # CONFIG_WIMAX is not set | ||
| 397 | # CONFIG_RFKILL is not set | 411 | # CONFIG_RFKILL is not set |
| 398 | # CONFIG_NET_9P is not set | 412 | # CONFIG_NET_9P is not set |
| 399 | 413 | ||
| @@ -430,12 +444,16 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 430 | # CONFIG_BLK_DEV_HD is not set | 444 | # CONFIG_BLK_DEV_HD is not set |
| 431 | CONFIG_MISC_DEVICES=y | 445 | CONFIG_MISC_DEVICES=y |
| 432 | # CONFIG_PHANTOM is not set | 446 | # CONFIG_PHANTOM is not set |
| 433 | # CONFIG_EEPROM_93CX6 is not set | ||
| 434 | # CONFIG_SGI_IOC4 is not set | 447 | # CONFIG_SGI_IOC4 is not set |
| 435 | # CONFIG_TIFM_CORE is not set | 448 | # CONFIG_TIFM_CORE is not set |
| 436 | # CONFIG_ENCLOSURE_SERVICES is not set | 449 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 437 | # CONFIG_HP_ILO is not set | 450 | # CONFIG_HP_ILO is not set |
| 438 | # CONFIG_C2PORT is not set | 451 | # CONFIG_C2PORT is not set |
| 452 | |||
| 453 | # | ||
| 454 | # EEPROM support | ||
| 455 | # | ||
| 456 | # CONFIG_EEPROM_93CX6 is not set | ||
| 439 | CONFIG_HAVE_IDE=y | 457 | CONFIG_HAVE_IDE=y |
| 440 | CONFIG_IDE=y | 458 | CONFIG_IDE=y |
| 441 | 459 | ||
| @@ -541,6 +559,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 541 | # CONFIG_MEGARAID_NEWGEN is not set | 559 | # CONFIG_MEGARAID_NEWGEN is not set |
| 542 | # CONFIG_MEGARAID_LEGACY is not set | 560 | # CONFIG_MEGARAID_LEGACY is not set |
| 543 | # CONFIG_MEGARAID_SAS is not set | 561 | # CONFIG_MEGARAID_SAS is not set |
| 562 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 544 | # CONFIG_SCSI_HPTIOP is not set | 563 | # CONFIG_SCSI_HPTIOP is not set |
| 545 | # CONFIG_LIBFC is not set | 564 | # CONFIG_LIBFC is not set |
| 546 | # CONFIG_FCOE is not set | 565 | # CONFIG_FCOE is not set |
| @@ -562,6 +581,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 562 | # CONFIG_SCSI_DEBUG is not set | 581 | # CONFIG_SCSI_DEBUG is not set |
| 563 | # CONFIG_SCSI_SRP is not set | 582 | # CONFIG_SCSI_SRP is not set |
| 564 | # CONFIG_SCSI_DH is not set | 583 | # CONFIG_SCSI_DH is not set |
| 584 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 565 | # CONFIG_ATA is not set | 585 | # CONFIG_ATA is not set |
| 566 | # CONFIG_MD is not set | 586 | # CONFIG_MD is not set |
| 567 | # CONFIG_FUSION is not set | 587 | # CONFIG_FUSION is not set |
| @@ -577,6 +597,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 577 | # CONFIG_IEEE1394 is not set | 597 | # CONFIG_IEEE1394 is not set |
| 578 | # CONFIG_I2O is not set | 598 | # CONFIG_I2O is not set |
| 579 | CONFIG_NETDEVICES=y | 599 | CONFIG_NETDEVICES=y |
| 600 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 580 | # CONFIG_DUMMY is not set | 601 | # CONFIG_DUMMY is not set |
| 581 | # CONFIG_BONDING is not set | 602 | # CONFIG_BONDING is not set |
| 582 | # CONFIG_MACVLAN is not set | 603 | # CONFIG_MACVLAN is not set |
| @@ -594,8 +615,10 @@ CONFIG_MII=y | |||
| 594 | # CONFIG_CASSINI is not set | 615 | # CONFIG_CASSINI is not set |
| 595 | # CONFIG_NET_VENDOR_3COM is not set | 616 | # CONFIG_NET_VENDOR_3COM is not set |
| 596 | # CONFIG_SMC91X is not set | 617 | # CONFIG_SMC91X is not set |
| 618 | # CONFIG_ETHOC is not set | ||
| 597 | # CONFIG_SMC911X is not set | 619 | # CONFIG_SMC911X is not set |
| 598 | # CONFIG_SMSC911X is not set | 620 | # CONFIG_SMSC911X is not set |
| 621 | # CONFIG_DNET is not set | ||
| 599 | # CONFIG_NET_TULIP is not set | 622 | # CONFIG_NET_TULIP is not set |
| 600 | # CONFIG_HP100 is not set | 623 | # CONFIG_HP100 is not set |
| 601 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 624 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -646,6 +669,7 @@ CONFIG_NETDEV_1000=y | |||
| 646 | # CONFIG_QLA3XXX is not set | 669 | # CONFIG_QLA3XXX is not set |
| 647 | # CONFIG_ATL1 is not set | 670 | # CONFIG_ATL1 is not set |
| 648 | # CONFIG_ATL1E is not set | 671 | # CONFIG_ATL1E is not set |
| 672 | # CONFIG_ATL1C is not set | ||
| 649 | # CONFIG_JME is not set | 673 | # CONFIG_JME is not set |
| 650 | CONFIG_NETDEV_10000=y | 674 | CONFIG_NETDEV_10000=y |
| 651 | # CONFIG_CHELSIO_T1 is not set | 675 | # CONFIG_CHELSIO_T1 is not set |
| @@ -664,6 +688,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 664 | # CONFIG_BNX2X is not set | 688 | # CONFIG_BNX2X is not set |
| 665 | # CONFIG_QLGE is not set | 689 | # CONFIG_QLGE is not set |
| 666 | # CONFIG_SFC is not set | 690 | # CONFIG_SFC is not set |
| 691 | # CONFIG_BE2NET is not set | ||
| 667 | # CONFIG_TR is not set | 692 | # CONFIG_TR is not set |
| 668 | 693 | ||
| 669 | # | 694 | # |
| @@ -671,7 +696,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 671 | # | 696 | # |
| 672 | # CONFIG_WLAN_PRE80211 is not set | 697 | # CONFIG_WLAN_PRE80211 is not set |
| 673 | # CONFIG_WLAN_80211 is not set | 698 | # CONFIG_WLAN_80211 is not set |
| 674 | # CONFIG_IWLWIFI_LEDS is not set | 699 | |
| 700 | # | ||
| 701 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 702 | # | ||
| 675 | # CONFIG_WAN is not set | 703 | # CONFIG_WAN is not set |
| 676 | # CONFIG_FDDI is not set | 704 | # CONFIG_FDDI is not set |
| 677 | # CONFIG_HIPPI is not set | 705 | # CONFIG_HIPPI is not set |
| @@ -754,6 +782,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 754 | CONFIG_LEGACY_PTY_COUNT=256 | 782 | CONFIG_LEGACY_PTY_COUNT=256 |
| 755 | # CONFIG_IPMI_HANDLER is not set | 783 | # CONFIG_IPMI_HANDLER is not set |
| 756 | CONFIG_HW_RANDOM=y | 784 | CONFIG_HW_RANDOM=y |
| 785 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 757 | # CONFIG_R3964 is not set | 786 | # CONFIG_R3964 is not set |
| 758 | # CONFIG_APPLICOM is not set | 787 | # CONFIG_APPLICOM is not set |
| 759 | # CONFIG_RAW_DRIVER is not set | 788 | # CONFIG_RAW_DRIVER is not set |
| @@ -872,9 +901,13 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 872 | # | 901 | # |
| 873 | 902 | ||
| 874 | # | 903 | # |
| 875 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 904 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 876 | # | 905 | # |
| 877 | # CONFIG_USB_GADGET is not set | 906 | # CONFIG_USB_GADGET is not set |
| 907 | |||
| 908 | # | ||
| 909 | # OTG and related infrastructure | ||
| 910 | # | ||
| 878 | # CONFIG_UWB is not set | 911 | # CONFIG_UWB is not set |
| 879 | # CONFIG_MMC is not set | 912 | # CONFIG_MMC is not set |
| 880 | # CONFIG_MEMSTICK is not set | 913 | # CONFIG_MEMSTICK is not set |
| @@ -883,6 +916,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 883 | # CONFIG_INFINIBAND is not set | 916 | # CONFIG_INFINIBAND is not set |
| 884 | # CONFIG_RTC_CLASS is not set | 917 | # CONFIG_RTC_CLASS is not set |
| 885 | # CONFIG_DMADEVICES is not set | 918 | # CONFIG_DMADEVICES is not set |
| 919 | # CONFIG_AUXDISPLAY is not set | ||
| 886 | # CONFIG_UIO is not set | 920 | # CONFIG_UIO is not set |
| 887 | # CONFIG_STAGING is not set | 921 | # CONFIG_STAGING is not set |
| 888 | 922 | ||
| @@ -908,6 +942,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 908 | CONFIG_FILE_LOCKING=y | 942 | CONFIG_FILE_LOCKING=y |
| 909 | # CONFIG_XFS_FS is not set | 943 | # CONFIG_XFS_FS is not set |
| 910 | # CONFIG_OCFS2_FS is not set | 944 | # CONFIG_OCFS2_FS is not set |
| 945 | # CONFIG_BTRFS_FS is not set | ||
| 911 | CONFIG_DNOTIFY=y | 946 | CONFIG_DNOTIFY=y |
| 912 | CONFIG_INOTIFY=y | 947 | CONFIG_INOTIFY=y |
| 913 | CONFIG_INOTIFY_USER=y | 948 | CONFIG_INOTIFY_USER=y |
| @@ -957,6 +992,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 957 | # CONFIG_BFS_FS is not set | 992 | # CONFIG_BFS_FS is not set |
| 958 | # CONFIG_EFS_FS is not set | 993 | # CONFIG_EFS_FS is not set |
| 959 | # CONFIG_CRAMFS is not set | 994 | # CONFIG_CRAMFS is not set |
| 995 | # CONFIG_SQUASHFS is not set | ||
| 960 | # CONFIG_VXFS_FS is not set | 996 | # CONFIG_VXFS_FS is not set |
| 961 | # CONFIG_MINIX_FS is not set | 997 | # CONFIG_MINIX_FS is not set |
| 962 | # CONFIG_OMFS_FS is not set | 998 | # CONFIG_OMFS_FS is not set |
| @@ -981,7 +1017,6 @@ CONFIG_EXPORTFS=y | |||
| 981 | CONFIG_NFS_COMMON=y | 1017 | CONFIG_NFS_COMMON=y |
| 982 | CONFIG_SUNRPC=y | 1018 | CONFIG_SUNRPC=y |
| 983 | CONFIG_SUNRPC_GSS=y | 1019 | CONFIG_SUNRPC_GSS=y |
| 984 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 985 | CONFIG_RPCSEC_GSS_KRB5=y | 1020 | CONFIG_RPCSEC_GSS_KRB5=y |
| 986 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1021 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 987 | # CONFIG_SMB_FS is not set | 1022 | # CONFIG_SMB_FS is not set |
| @@ -1081,7 +1116,7 @@ CONFIG_TRACING=y | |||
| 1081 | # | 1116 | # |
| 1082 | # Tracers | 1117 | # Tracers |
| 1083 | # | 1118 | # |
| 1084 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1119 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1085 | # CONFIG_SAMPLES is not set | 1120 | # CONFIG_SAMPLES is not set |
| 1086 | CONFIG_HAVE_ARCH_KGDB=y | 1121 | CONFIG_HAVE_ARCH_KGDB=y |
| 1087 | CONFIG_SH_STANDARD_BIOS=y | 1122 | CONFIG_SH_STANDARD_BIOS=y |
| @@ -1110,10 +1145,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1110 | CONFIG_CRYPTO_HASH=y | 1145 | CONFIG_CRYPTO_HASH=y |
| 1111 | CONFIG_CRYPTO_HASH2=y | 1146 | CONFIG_CRYPTO_HASH2=y |
| 1112 | CONFIG_CRYPTO_RNG2=y | 1147 | CONFIG_CRYPTO_RNG2=y |
| 1148 | CONFIG_CRYPTO_PCOMP=y | ||
| 1113 | CONFIG_CRYPTO_MANAGER=y | 1149 | CONFIG_CRYPTO_MANAGER=y |
| 1114 | CONFIG_CRYPTO_MANAGER2=y | 1150 | CONFIG_CRYPTO_MANAGER2=y |
| 1115 | # CONFIG_CRYPTO_GF128MUL is not set | 1151 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1116 | # CONFIG_CRYPTO_NULL is not set | 1152 | # CONFIG_CRYPTO_NULL is not set |
| 1153 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1117 | # CONFIG_CRYPTO_CRYPTD is not set | 1154 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1118 | # CONFIG_CRYPTO_AUTHENC is not set | 1155 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1119 | # CONFIG_CRYPTO_TEST is not set | 1156 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1182,6 +1219,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1182 | # Compression | 1219 | # Compression |
| 1183 | # | 1220 | # |
| 1184 | CONFIG_CRYPTO_DEFLATE=y | 1221 | CONFIG_CRYPTO_DEFLATE=y |
| 1222 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1185 | # CONFIG_CRYPTO_LZO is not set | 1223 | # CONFIG_CRYPTO_LZO is not set |
| 1186 | 1224 | ||
| 1187 | # | 1225 | # |
| @@ -1205,7 +1243,8 @@ CONFIG_CRC32=y | |||
| 1205 | # CONFIG_LIBCRC32C is not set | 1243 | # CONFIG_LIBCRC32C is not set |
| 1206 | CONFIG_ZLIB_INFLATE=y | 1244 | CONFIG_ZLIB_INFLATE=y |
| 1207 | CONFIG_ZLIB_DEFLATE=y | 1245 | CONFIG_ZLIB_DEFLATE=y |
| 1208 | CONFIG_PLIST=y | 1246 | CONFIG_DECOMPRESS_GZIP=y |
| 1209 | CONFIG_HAS_IOMEM=y | 1247 | CONFIG_HAS_IOMEM=y |
| 1210 | CONFIG_HAS_IOPORT=y | 1248 | CONFIG_HAS_IOPORT=y |
| 1211 | CONFIG_HAS_DMA=y | 1249 | CONFIG_HAS_DMA=y |
| 1250 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sh7710voipgw_defconfig b/arch/sh/configs/sh7710voipgw_defconfig index 1b869f452ad1..1ab37c01da6e 100644 --- a/arch/sh/configs/sh7710voipgw_defconfig +++ b/arch/sh/configs/sh7710voipgw_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:00:31 2009 | 4 | # Thu Apr 2 19:09:01 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -41,14 +42,23 @@ CONFIG_POSIX_MQUEUE=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 55 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | CONFIG_GROUP_SCHED=y | 56 | CONFIG_GROUP_SCHED=y |
| 48 | CONFIG_FAIR_GROUP_SCHED=y | 57 | CONFIG_FAIR_GROUP_SCHED=y |
| 49 | # CONFIG_RT_GROUP_SCHED is not set | 58 | # CONFIG_RT_GROUP_SCHED is not set |
| 50 | CONFIG_USER_SCHED=y | 59 | CONFIG_USER_SCHED=y |
| 51 | # CONFIG_CGROUP_SCHED is not set | 60 | # CONFIG_CGROUP_SCHED is not set |
| 61 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 62 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 63 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | # CONFIG_RELAY is not set | 64 | # CONFIG_RELAY is not set |
| @@ -56,6 +66,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 56 | # CONFIG_BLK_DEV_INITRD is not set | 66 | # CONFIG_BLK_DEV_INITRD is not set |
| 57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 67 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 58 | CONFIG_SYSCTL=y | 68 | CONFIG_SYSCTL=y |
| 69 | CONFIG_ANON_INODES=y | ||
| 59 | CONFIG_EMBEDDED=y | 70 | CONFIG_EMBEDDED=y |
| 60 | CONFIG_UID16=y | 71 | CONFIG_UID16=y |
| 61 | # CONFIG_SYSCTL_SYSCALL is not set | 72 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -65,10 +76,8 @@ CONFIG_HOTPLUG=y | |||
| 65 | CONFIG_PRINTK=y | 76 | CONFIG_PRINTK=y |
| 66 | CONFIG_BUG=y | 77 | CONFIG_BUG=y |
| 67 | CONFIG_ELF_CORE=y | 78 | CONFIG_ELF_CORE=y |
| 68 | CONFIG_COMPAT_BRK=y | ||
| 69 | CONFIG_BASE_FULL=y | 79 | CONFIG_BASE_FULL=y |
| 70 | # CONFIG_FUTEX is not set | 80 | # CONFIG_FUTEX is not set |
| 71 | CONFIG_ANON_INODES=y | ||
| 72 | # CONFIG_EPOLL is not set | 81 | # CONFIG_EPOLL is not set |
| 73 | CONFIG_SIGNALFD=y | 82 | CONFIG_SIGNALFD=y |
| 74 | CONFIG_TIMERFD=y | 83 | CONFIG_TIMERFD=y |
| @@ -76,6 +85,7 @@ CONFIG_EVENTFD=y | |||
| 76 | # CONFIG_SHMEM is not set | 85 | # CONFIG_SHMEM is not set |
| 77 | CONFIG_AIO=y | 86 | CONFIG_AIO=y |
| 78 | CONFIG_VM_EVENT_COUNTERS=y | 87 | CONFIG_VM_EVENT_COUNTERS=y |
| 88 | CONFIG_COMPAT_BRK=y | ||
| 79 | CONFIG_SLAB=y | 89 | CONFIG_SLAB=y |
| 80 | # CONFIG_SLUB is not set | 90 | # CONFIG_SLUB is not set |
| 81 | # CONFIG_SLOB is not set | 91 | # CONFIG_SLOB is not set |
| @@ -114,11 +124,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 114 | # CONFIG_DEFAULT_CFQ is not set | 124 | # CONFIG_DEFAULT_CFQ is not set |
| 115 | # CONFIG_DEFAULT_NOOP is not set | 125 | # CONFIG_DEFAULT_NOOP is not set |
| 116 | CONFIG_DEFAULT_IOSCHED="deadline" | 126 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 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 | 127 | # CONFIG_FREEZER is not set |
| 123 | 128 | ||
| 124 | # | 129 | # |
| @@ -153,6 +158,7 @@ CONFIG_CPU_SUBTYPE_SH7710=y | |||
| 153 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 154 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 155 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 156 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 162 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -194,11 +200,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 194 | CONFIG_ZONE_DMA_FLAG=0 | 200 | CONFIG_ZONE_DMA_FLAG=0 |
| 195 | CONFIG_NR_QUICK=2 | 201 | CONFIG_NR_QUICK=2 |
| 196 | CONFIG_UNEVICTABLE_LRU=y | 202 | CONFIG_UNEVICTABLE_LRU=y |
| 203 | CONFIG_HAVE_MLOCK=y | ||
| 204 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 197 | 205 | ||
| 198 | # | 206 | # |
| 199 | # Cache configuration | 207 | # Cache configuration |
| 200 | # | 208 | # |
| 201 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 202 | CONFIG_CACHE_WRITEBACK=y | 209 | CONFIG_CACHE_WRITEBACK=y |
| 203 | # CONFIG_CACHE_WRITETHROUGH is not set | 210 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 204 | # CONFIG_CACHE_OFF is not set | 211 | # CONFIG_CACHE_OFF is not set |
| @@ -299,7 +306,6 @@ CONFIG_NET=y | |||
| 299 | # | 306 | # |
| 300 | # Networking options | 307 | # Networking options |
| 301 | # | 308 | # |
| 302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 303 | CONFIG_PACKET=y | 309 | CONFIG_PACKET=y |
| 304 | # CONFIG_PACKET_MMAP is not set | 310 | # CONFIG_PACKET_MMAP is not set |
| 305 | CONFIG_UNIX=y | 311 | CONFIG_UNIX=y |
| @@ -369,6 +375,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 369 | # CONFIG_LAPB is not set | 375 | # CONFIG_LAPB is not set |
| 370 | # CONFIG_ECONET is not set | 376 | # CONFIG_ECONET is not set |
| 371 | # CONFIG_WAN_ROUTER is not set | 377 | # CONFIG_WAN_ROUTER is not set |
| 378 | # CONFIG_PHONET is not set | ||
| 372 | CONFIG_NET_SCHED=y | 379 | CONFIG_NET_SCHED=y |
| 373 | 380 | ||
| 374 | # | 381 | # |
| @@ -418,13 +425,13 @@ CONFIG_NET_SCH_FIFO=y | |||
| 418 | # CONFIG_IRDA is not set | 425 | # CONFIG_IRDA is not set |
| 419 | # CONFIG_BT is not set | 426 | # CONFIG_BT is not set |
| 420 | # CONFIG_AF_RXRPC is not set | 427 | # CONFIG_AF_RXRPC is not set |
| 421 | # CONFIG_PHONET is not set | ||
| 422 | CONFIG_WIRELESS=y | 428 | CONFIG_WIRELESS=y |
| 423 | # CONFIG_CFG80211 is not set | 429 | # CONFIG_CFG80211 is not set |
| 424 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 430 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 425 | # CONFIG_WIRELESS_EXT is not set | 431 | # CONFIG_WIRELESS_EXT is not set |
| 426 | # CONFIG_LIB80211 is not set | 432 | # CONFIG_LIB80211 is not set |
| 427 | # CONFIG_MAC80211 is not set | 433 | # CONFIG_MAC80211 is not set |
| 434 | # CONFIG_WIMAX is not set | ||
| 428 | # CONFIG_RFKILL is not set | 435 | # CONFIG_RFKILL is not set |
| 429 | # CONFIG_NET_9P is not set | 436 | # CONFIG_NET_9P is not set |
| 430 | 437 | ||
| @@ -447,6 +454,7 @@ CONFIG_MTD=y | |||
| 447 | # CONFIG_MTD_DEBUG is not set | 454 | # CONFIG_MTD_DEBUG is not set |
| 448 | # CONFIG_MTD_CONCAT is not set | 455 | # CONFIG_MTD_CONCAT is not set |
| 449 | CONFIG_MTD_PARTITIONS=y | 456 | CONFIG_MTD_PARTITIONS=y |
| 457 | # CONFIG_MTD_TESTS is not set | ||
| 450 | # CONFIG_MTD_REDBOOT_PARTS is not set | 458 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 451 | # CONFIG_MTD_CMDLINE_PARTS is not set | 459 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 452 | # CONFIG_MTD_AR7_PARTS is not set | 460 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -514,6 +522,11 @@ CONFIG_MTD_RAM=y | |||
| 514 | # CONFIG_MTD_ONENAND is not set | 522 | # CONFIG_MTD_ONENAND is not set |
| 515 | 523 | ||
| 516 | # | 524 | # |
| 525 | # LPDDR flash memory drivers | ||
| 526 | # | ||
| 527 | # CONFIG_MTD_LPDDR is not set | ||
| 528 | |||
| 529 | # | ||
| 517 | # UBI - Unsorted block images | 530 | # UBI - Unsorted block images |
| 518 | # | 531 | # |
| 519 | # CONFIG_MTD_UBI is not set | 532 | # CONFIG_MTD_UBI is not set |
| @@ -527,9 +540,13 @@ CONFIG_BLK_DEV=y | |||
| 527 | # CONFIG_ATA_OVER_ETH is not set | 540 | # CONFIG_ATA_OVER_ETH is not set |
| 528 | # CONFIG_BLK_DEV_HD is not set | 541 | # CONFIG_BLK_DEV_HD is not set |
| 529 | CONFIG_MISC_DEVICES=y | 542 | CONFIG_MISC_DEVICES=y |
| 530 | # CONFIG_EEPROM_93CX6 is not set | ||
| 531 | # CONFIG_ENCLOSURE_SERVICES is not set | 543 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 532 | # CONFIG_C2PORT is not set | 544 | # CONFIG_C2PORT is not set |
| 545 | |||
| 546 | # | ||
| 547 | # EEPROM support | ||
| 548 | # | ||
| 549 | # CONFIG_EEPROM_93CX6 is not set | ||
| 533 | CONFIG_HAVE_IDE=y | 550 | CONFIG_HAVE_IDE=y |
| 534 | # CONFIG_IDE is not set | 551 | # CONFIG_IDE is not set |
| 535 | 552 | ||
| @@ -543,6 +560,7 @@ CONFIG_HAVE_IDE=y | |||
| 543 | # CONFIG_ATA is not set | 560 | # CONFIG_ATA is not set |
| 544 | # CONFIG_MD is not set | 561 | # CONFIG_MD is not set |
| 545 | CONFIG_NETDEVICES=y | 562 | CONFIG_NETDEVICES=y |
| 563 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 546 | # CONFIG_DUMMY is not set | 564 | # CONFIG_DUMMY is not set |
| 547 | # CONFIG_BONDING is not set | 565 | # CONFIG_BONDING is not set |
| 548 | # CONFIG_MACVLAN is not set | 566 | # CONFIG_MACVLAN is not set |
| @@ -556,8 +574,10 @@ CONFIG_NET_ETHERNET=y | |||
| 556 | # CONFIG_STNIC is not set | 574 | # CONFIG_STNIC is not set |
| 557 | # CONFIG_SH_ETH is not set | 575 | # CONFIG_SH_ETH is not set |
| 558 | # CONFIG_SMC91X is not set | 576 | # CONFIG_SMC91X is not set |
| 577 | # CONFIG_ETHOC is not set | ||
| 559 | # CONFIG_SMC911X is not set | 578 | # CONFIG_SMC911X is not set |
| 560 | # CONFIG_SMSC911X is not set | 579 | # CONFIG_SMSC911X is not set |
| 580 | # CONFIG_DNET is not set | ||
| 561 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 581 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 562 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 582 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 563 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 583 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -574,7 +594,10 @@ CONFIG_NETDEV_10000=y | |||
| 574 | # | 594 | # |
| 575 | # CONFIG_WLAN_PRE80211 is not set | 595 | # CONFIG_WLAN_PRE80211 is not set |
| 576 | # CONFIG_WLAN_80211 is not set | 596 | # CONFIG_WLAN_80211 is not set |
| 577 | # CONFIG_IWLWIFI_LEDS is not set | 597 | |
| 598 | # | ||
| 599 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 600 | # | ||
| 578 | # CONFIG_WAN is not set | 601 | # CONFIG_WAN is not set |
| 579 | # CONFIG_PPP is not set | 602 | # CONFIG_PPP is not set |
| 580 | # CONFIG_SLIP is not set | 603 | # CONFIG_SLIP is not set |
| @@ -640,6 +663,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 640 | CONFIG_LEGACY_PTY_COUNT=256 | 663 | CONFIG_LEGACY_PTY_COUNT=256 |
| 641 | # CONFIG_IPMI_HANDLER is not set | 664 | # CONFIG_IPMI_HANDLER is not set |
| 642 | CONFIG_HW_RANDOM=y | 665 | CONFIG_HW_RANDOM=y |
| 666 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 643 | # CONFIG_R3964 is not set | 667 | # CONFIG_R3964 is not set |
| 644 | # CONFIG_RAW_DRIVER is not set | 668 | # CONFIG_RAW_DRIVER is not set |
| 645 | # CONFIG_TCG_TPM is not set | 669 | # CONFIG_TCG_TPM is not set |
| @@ -718,15 +742,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 718 | # | 742 | # |
| 719 | 743 | ||
| 720 | # | 744 | # |
| 721 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 745 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 722 | # | 746 | # |
| 723 | # CONFIG_USB_GADGET is not set | 747 | # CONFIG_USB_GADGET is not set |
| 748 | |||
| 749 | # | ||
| 750 | # OTG and related infrastructure | ||
| 751 | # | ||
| 724 | # CONFIG_MMC is not set | 752 | # CONFIG_MMC is not set |
| 725 | # CONFIG_MEMSTICK is not set | 753 | # CONFIG_MEMSTICK is not set |
| 726 | # CONFIG_NEW_LEDS is not set | 754 | # CONFIG_NEW_LEDS is not set |
| 727 | # CONFIG_ACCESSIBILITY is not set | 755 | # CONFIG_ACCESSIBILITY is not set |
| 728 | # CONFIG_RTC_CLASS is not set | 756 | # CONFIG_RTC_CLASS is not set |
| 729 | # CONFIG_DMADEVICES is not set | 757 | # CONFIG_DMADEVICES is not set |
| 758 | # CONFIG_AUXDISPLAY is not set | ||
| 730 | # CONFIG_UIO is not set | 759 | # CONFIG_UIO is not set |
| 731 | # CONFIG_STAGING is not set | 760 | # CONFIG_STAGING is not set |
| 732 | 761 | ||
| @@ -742,6 +771,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 742 | CONFIG_FILE_LOCKING=y | 771 | CONFIG_FILE_LOCKING=y |
| 743 | # CONFIG_XFS_FS is not set | 772 | # CONFIG_XFS_FS is not set |
| 744 | # CONFIG_OCFS2_FS is not set | 773 | # CONFIG_OCFS2_FS is not set |
| 774 | # CONFIG_BTRFS_FS is not set | ||
| 745 | # CONFIG_DNOTIFY is not set | 775 | # CONFIG_DNOTIFY is not set |
| 746 | # CONFIG_INOTIFY is not set | 776 | # CONFIG_INOTIFY is not set |
| 747 | # CONFIG_QUOTA is not set | 777 | # CONFIG_QUOTA is not set |
| @@ -795,6 +825,7 @@ CONFIG_JFFS2_ZLIB=y | |||
| 795 | CONFIG_JFFS2_RTIME=y | 825 | CONFIG_JFFS2_RTIME=y |
| 796 | # CONFIG_JFFS2_RUBIN is not set | 826 | # CONFIG_JFFS2_RUBIN is not set |
| 797 | # CONFIG_CRAMFS is not set | 827 | # CONFIG_CRAMFS is not set |
| 828 | # CONFIG_SQUASHFS is not set | ||
| 798 | # CONFIG_VXFS_FS is not set | 829 | # CONFIG_VXFS_FS is not set |
| 799 | # CONFIG_MINIX_FS is not set | 830 | # CONFIG_MINIX_FS is not set |
| 800 | # CONFIG_OMFS_FS is not set | 831 | # CONFIG_OMFS_FS is not set |
| @@ -844,7 +875,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 844 | # | 875 | # |
| 845 | # Tracers | 876 | # Tracers |
| 846 | # | 877 | # |
| 847 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 878 | # CONFIG_DYNAMIC_DEBUG is not set |
| 848 | # CONFIG_SAMPLES is not set | 879 | # CONFIG_SAMPLES is not set |
| 849 | CONFIG_HAVE_ARCH_KGDB=y | 880 | CONFIG_HAVE_ARCH_KGDB=y |
| 850 | # CONFIG_SH_STANDARD_BIOS is not set | 881 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -936,6 +967,7 @@ CONFIG_CRYPTO=y | |||
| 936 | # Compression | 967 | # Compression |
| 937 | # | 968 | # |
| 938 | # CONFIG_CRYPTO_DEFLATE is not set | 969 | # CONFIG_CRYPTO_DEFLATE is not set |
| 970 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 939 | # CONFIG_CRYPTO_LZO is not set | 971 | # CONFIG_CRYPTO_LZO is not set |
| 940 | 972 | ||
| 941 | # | 973 | # |
| @@ -961,3 +993,4 @@ CONFIG_ZLIB_DEFLATE=y | |||
| 961 | CONFIG_HAS_IOMEM=y | 993 | CONFIG_HAS_IOMEM=y |
| 962 | CONFIG_HAS_IOPORT=y | 994 | CONFIG_HAS_IOPORT=y |
| 963 | CONFIG_HAS_DMA=y | 995 | CONFIG_HAS_DMA=y |
| 996 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sh7763rdp_defconfig b/arch/sh/configs/sh7763rdp_defconfig index ba33aca75af6..c79bb84ec305 100644 --- a/arch/sh/configs/sh7763rdp_defconfig +++ b/arch/sh/configs/sh7763rdp_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:02:28 2009 | 4 | # Thu Apr 2 19:10:57 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -41,15 +42,24 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | CONFIG_IKCONFIG=y | 54 | CONFIG_IKCONFIG=y |
| 45 | CONFIG_IKCONFIG_PROC=y | 55 | CONFIG_IKCONFIG_PROC=y |
| 46 | CONFIG_LOG_BUF_SHIFT=14 | 56 | CONFIG_LOG_BUF_SHIFT=14 |
| 47 | # CONFIG_CGROUPS is not set | ||
| 48 | CONFIG_GROUP_SCHED=y | 57 | CONFIG_GROUP_SCHED=y |
| 49 | CONFIG_FAIR_GROUP_SCHED=y | 58 | CONFIG_FAIR_GROUP_SCHED=y |
| 50 | # CONFIG_RT_GROUP_SCHED is not set | 59 | # CONFIG_RT_GROUP_SCHED is not set |
| 51 | CONFIG_USER_SCHED=y | 60 | CONFIG_USER_SCHED=y |
| 52 | # CONFIG_CGROUP_SCHED is not set | 61 | # CONFIG_CGROUP_SCHED is not set |
| 62 | # CONFIG_CGROUPS is not set | ||
| 53 | CONFIG_SYSFS_DEPRECATED=y | 63 | CONFIG_SYSFS_DEPRECATED=y |
| 54 | CONFIG_SYSFS_DEPRECATED_V2=y | 64 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 55 | # CONFIG_RELAY is not set | 65 | # CONFIG_RELAY is not set |
| @@ -58,9 +68,11 @@ CONFIG_UTS_NS=y | |||
| 58 | CONFIG_IPC_NS=y | 68 | CONFIG_IPC_NS=y |
| 59 | # CONFIG_USER_NS is not set | 69 | # CONFIG_USER_NS is not set |
| 60 | # CONFIG_PID_NS is not set | 70 | # CONFIG_PID_NS is not set |
| 71 | # CONFIG_NET_NS is not set | ||
| 61 | # CONFIG_BLK_DEV_INITRD is not set | 72 | # CONFIG_BLK_DEV_INITRD is not set |
| 62 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 63 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 64 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 65 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 66 | # CONFIG_SYSCTL_SYSCALL is not set | 78 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -70,10 +82,8 @@ CONFIG_HOTPLUG=y | |||
| 70 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 71 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 72 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 73 | CONFIG_COMPAT_BRK=y | ||
| 74 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 75 | CONFIG_FUTEX=y | 86 | CONFIG_FUTEX=y |
| 76 | CONFIG_ANON_INODES=y | ||
| 77 | CONFIG_EPOLL=y | 87 | CONFIG_EPOLL=y |
| 78 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 79 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -81,6 +91,7 @@ CONFIG_EVENTFD=y | |||
| 81 | CONFIG_SHMEM=y | 91 | CONFIG_SHMEM=y |
| 82 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 83 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 94 | CONFIG_COMPAT_BRK=y | ||
| 84 | CONFIG_SLAB=y | 95 | CONFIG_SLAB=y |
| 85 | # CONFIG_SLUB is not set | 96 | # CONFIG_SLUB is not set |
| 86 | # CONFIG_SLOB is not set | 97 | # CONFIG_SLOB is not set |
| @@ -122,11 +133,6 @@ CONFIG_DEFAULT_AS=y | |||
| 122 | # CONFIG_DEFAULT_CFQ is not set | 133 | # CONFIG_DEFAULT_CFQ is not set |
| 123 | # CONFIG_DEFAULT_NOOP is not set | 134 | # CONFIG_DEFAULT_NOOP is not set |
| 124 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 135 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 125 | CONFIG_CLASSIC_RCU=y | ||
| 126 | # CONFIG_TREE_RCU is not set | ||
| 127 | # CONFIG_PREEMPT_RCU is not set | ||
| 128 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 129 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 130 | # CONFIG_FREEZER is not set | 136 | # CONFIG_FREEZER is not set |
| 131 | 137 | ||
| 132 | # | 138 | # |
| @@ -162,6 +168,7 @@ CONFIG_CPU_SUBTYPE_SH7763=y | |||
| 162 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 168 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 163 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 171 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 165 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 172 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 167 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 174 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -207,11 +214,12 @@ CONFIG_MIGRATION=y | |||
| 207 | CONFIG_ZONE_DMA_FLAG=0 | 214 | CONFIG_ZONE_DMA_FLAG=0 |
| 208 | CONFIG_NR_QUICK=2 | 215 | CONFIG_NR_QUICK=2 |
| 209 | CONFIG_UNEVICTABLE_LRU=y | 216 | CONFIG_UNEVICTABLE_LRU=y |
| 217 | CONFIG_HAVE_MLOCK=y | ||
| 218 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 210 | 219 | ||
| 211 | # | 220 | # |
| 212 | # Cache configuration | 221 | # Cache configuration |
| 213 | # | 222 | # |
| 214 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 215 | CONFIG_CACHE_WRITEBACK=y | 223 | CONFIG_CACHE_WRITEBACK=y |
| 216 | # CONFIG_CACHE_WRITETHROUGH is not set | 224 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 217 | # CONFIG_CACHE_OFF is not set | 225 | # CONFIG_CACHE_OFF is not set |
| @@ -231,6 +239,7 @@ CONFIG_CPU_HAS_FPU=y | |||
| 231 | # Board support | 239 | # Board support |
| 232 | # | 240 | # |
| 233 | CONFIG_SH_SH7763RDP=y | 241 | CONFIG_SH_SH7763RDP=y |
| 242 | # CONFIG_SH_ESPT is not set | ||
| 234 | 243 | ||
| 235 | # | 244 | # |
| 236 | # Timer and clock configuration | 245 | # Timer and clock configuration |
| @@ -311,8 +320,6 @@ CONFIG_NET=y | |||
| 311 | # | 320 | # |
| 312 | # Networking options | 321 | # Networking options |
| 313 | # | 322 | # |
| 314 | # CONFIG_NET_NS is not set | ||
| 315 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 316 | CONFIG_PACKET=y | 323 | CONFIG_PACKET=y |
| 317 | # CONFIG_PACKET_MMAP is not set | 324 | # CONFIG_PACKET_MMAP is not set |
| 318 | CONFIG_UNIX=y | 325 | CONFIG_UNIX=y |
| @@ -367,6 +374,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 367 | # CONFIG_LAPB is not set | 374 | # CONFIG_LAPB is not set |
| 368 | # CONFIG_ECONET is not set | 375 | # CONFIG_ECONET is not set |
| 369 | # CONFIG_WAN_ROUTER is not set | 376 | # CONFIG_WAN_ROUTER is not set |
| 377 | # CONFIG_PHONET is not set | ||
| 370 | # CONFIG_NET_SCHED is not set | 378 | # CONFIG_NET_SCHED is not set |
| 371 | # CONFIG_DCB is not set | 379 | # CONFIG_DCB is not set |
| 372 | 380 | ||
| @@ -374,12 +382,12 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 374 | # Network testing | 382 | # Network testing |
| 375 | # | 383 | # |
| 376 | # CONFIG_NET_PKTGEN is not set | 384 | # CONFIG_NET_PKTGEN is not set |
| 385 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 377 | # CONFIG_HAMRADIO is not set | 386 | # CONFIG_HAMRADIO is not set |
| 378 | # CONFIG_CAN is not set | 387 | # CONFIG_CAN is not set |
| 379 | # CONFIG_IRDA is not set | 388 | # CONFIG_IRDA is not set |
| 380 | # CONFIG_BT is not set | 389 | # CONFIG_BT is not set |
| 381 | # CONFIG_AF_RXRPC is not set | 390 | # CONFIG_AF_RXRPC is not set |
| 382 | # CONFIG_PHONET is not set | ||
| 383 | CONFIG_WIRELESS=y | 391 | CONFIG_WIRELESS=y |
| 384 | # CONFIG_CFG80211 is not set | 392 | # CONFIG_CFG80211 is not set |
| 385 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 393 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -387,6 +395,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 387 | CONFIG_WIRELESS_EXT_SYSFS=y | 395 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 388 | # CONFIG_LIB80211 is not set | 396 | # CONFIG_LIB80211 is not set |
| 389 | # CONFIG_MAC80211 is not set | 397 | # CONFIG_MAC80211 is not set |
| 398 | # CONFIG_WIMAX is not set | ||
| 390 | # CONFIG_RFKILL is not set | 399 | # CONFIG_RFKILL is not set |
| 391 | # CONFIG_NET_9P is not set | 400 | # CONFIG_NET_9P is not set |
| 392 | 401 | ||
| @@ -409,6 +418,7 @@ CONFIG_MTD=y | |||
| 409 | # CONFIG_MTD_DEBUG is not set | 418 | # CONFIG_MTD_DEBUG is not set |
| 410 | # CONFIG_MTD_CONCAT is not set | 419 | # CONFIG_MTD_CONCAT is not set |
| 411 | CONFIG_MTD_PARTITIONS=y | 420 | CONFIG_MTD_PARTITIONS=y |
| 421 | # CONFIG_MTD_TESTS is not set | ||
| 412 | # CONFIG_MTD_REDBOOT_PARTS is not set | 422 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 413 | CONFIG_MTD_CMDLINE_PARTS=y | 423 | CONFIG_MTD_CMDLINE_PARTS=y |
| 414 | # CONFIG_MTD_AR7_PARTS is not set | 424 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -462,9 +472,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 462 | # | 472 | # |
| 463 | CONFIG_MTD_COMPLEX_MAPPINGS=y | 473 | CONFIG_MTD_COMPLEX_MAPPINGS=y |
| 464 | CONFIG_MTD_PHYSMAP=y | 474 | CONFIG_MTD_PHYSMAP=y |
| 465 | CONFIG_MTD_PHYSMAP_START=0x8000000 | 475 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 466 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
| 467 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
| 468 | # CONFIG_MTD_PLATRAM is not set | 476 | # CONFIG_MTD_PLATRAM is not set |
| 469 | 477 | ||
| 470 | # | 478 | # |
| @@ -485,6 +493,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 485 | # CONFIG_MTD_ONENAND is not set | 493 | # CONFIG_MTD_ONENAND is not set |
| 486 | 494 | ||
| 487 | # | 495 | # |
| 496 | # LPDDR flash memory drivers | ||
| 497 | # | ||
| 498 | # CONFIG_MTD_LPDDR is not set | ||
| 499 | |||
| 500 | # | ||
| 488 | # UBI - Unsorted block images | 501 | # UBI - Unsorted block images |
| 489 | # | 502 | # |
| 490 | # CONFIG_MTD_UBI is not set | 503 | # CONFIG_MTD_UBI is not set |
| @@ -544,9 +557,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 544 | # CONFIG_LIBFC is not set | 557 | # CONFIG_LIBFC is not set |
| 545 | # CONFIG_SCSI_DEBUG is not set | 558 | # CONFIG_SCSI_DEBUG is not set |
| 546 | # CONFIG_SCSI_DH is not set | 559 | # CONFIG_SCSI_DH is not set |
| 560 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 547 | # CONFIG_ATA is not set | 561 | # CONFIG_ATA is not set |
| 548 | # CONFIG_MD is not set | 562 | # CONFIG_MD is not set |
| 549 | CONFIG_NETDEVICES=y | 563 | CONFIG_NETDEVICES=y |
| 564 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 550 | # CONFIG_DUMMY is not set | 565 | # CONFIG_DUMMY is not set |
| 551 | # CONFIG_BONDING is not set | 566 | # CONFIG_BONDING is not set |
| 552 | # CONFIG_MACVLAN is not set | 567 | # CONFIG_MACVLAN is not set |
| @@ -579,8 +594,10 @@ CONFIG_MII=y | |||
| 579 | # CONFIG_STNIC is not set | 594 | # CONFIG_STNIC is not set |
| 580 | CONFIG_SH_ETH=y | 595 | CONFIG_SH_ETH=y |
| 581 | # CONFIG_SMC91X is not set | 596 | # CONFIG_SMC91X is not set |
| 597 | # CONFIG_ETHOC is not set | ||
| 582 | # CONFIG_SMC911X is not set | 598 | # CONFIG_SMC911X is not set |
| 583 | # CONFIG_SMSC911X is not set | 599 | # CONFIG_SMSC911X is not set |
| 600 | # CONFIG_DNET is not set | ||
| 584 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 601 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 585 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 602 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 586 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 603 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -597,7 +614,10 @@ CONFIG_SH_ETH=y | |||
| 597 | # | 614 | # |
| 598 | # CONFIG_WLAN_PRE80211 is not set | 615 | # CONFIG_WLAN_PRE80211 is not set |
| 599 | # CONFIG_WLAN_80211 is not set | 616 | # CONFIG_WLAN_80211 is not set |
| 600 | # CONFIG_IWLWIFI_LEDS is not set | 617 | |
| 618 | # | ||
| 619 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 620 | # | ||
| 601 | 621 | ||
| 602 | # | 622 | # |
| 603 | # USB Network Adapters | 623 | # USB Network Adapters |
| @@ -677,6 +697,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 677 | CONFIG_LEGACY_PTY_COUNT=256 | 697 | CONFIG_LEGACY_PTY_COUNT=256 |
| 678 | # CONFIG_IPMI_HANDLER is not set | 698 | # CONFIG_IPMI_HANDLER is not set |
| 679 | CONFIG_HW_RANDOM=y | 699 | CONFIG_HW_RANDOM=y |
| 700 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 680 | # CONFIG_R3964 is not set | 701 | # CONFIG_R3964 is not set |
| 681 | # CONFIG_RAW_DRIVER is not set | 702 | # CONFIG_RAW_DRIVER is not set |
| 682 | # CONFIG_TCG_TPM is not set | 703 | # CONFIG_TCG_TPM is not set |
| @@ -756,6 +777,7 @@ CONFIG_FB_SH7760=y | |||
| 756 | # CONFIG_FB_VIRTUAL is not set | 777 | # CONFIG_FB_VIRTUAL is not set |
| 757 | # CONFIG_FB_METRONOME is not set | 778 | # CONFIG_FB_METRONOME is not set |
| 758 | # CONFIG_FB_MB862XX is not set | 779 | # CONFIG_FB_MB862XX is not set |
| 780 | # CONFIG_FB_BROADSHEET is not set | ||
| 759 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 781 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 760 | 782 | ||
| 761 | # | 783 | # |
| @@ -807,7 +829,9 @@ CONFIG_USB_MON=y | |||
| 807 | # USB Host Controller Drivers | 829 | # USB Host Controller Drivers |
| 808 | # | 830 | # |
| 809 | # CONFIG_USB_C67X00_HCD is not set | 831 | # CONFIG_USB_C67X00_HCD is not set |
| 832 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 810 | # CONFIG_USB_ISP116X_HCD is not set | 833 | # CONFIG_USB_ISP116X_HCD is not set |
| 834 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 811 | CONFIG_USB_OHCI_HCD=y | 835 | CONFIG_USB_OHCI_HCD=y |
| 812 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 836 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 813 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 837 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -825,18 +849,17 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 825 | # CONFIG_USB_TMC is not set | 849 | # CONFIG_USB_TMC is not set |
| 826 | 850 | ||
| 827 | # | 851 | # |
| 828 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 852 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 829 | # | 853 | # |
| 830 | 854 | ||
| 831 | # | 855 | # |
| 832 | # see USB_STORAGE Help for more information | 856 | # also be needed; see USB_STORAGE Help for more info |
| 833 | # | 857 | # |
| 834 | CONFIG_USB_STORAGE=y | 858 | CONFIG_USB_STORAGE=y |
| 835 | # CONFIG_USB_STORAGE_DEBUG is not set | 859 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 836 | # CONFIG_USB_STORAGE_DATAFAB is not set | 860 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 837 | # CONFIG_USB_STORAGE_FREECOM is not set | 861 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 838 | # CONFIG_USB_STORAGE_ISD200 is not set | 862 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 839 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 840 | # CONFIG_USB_STORAGE_USBAT is not set | 863 | # CONFIG_USB_STORAGE_USBAT is not set |
| 841 | # CONFIG_USB_STORAGE_SDDR09 is not set | 864 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 842 | # CONFIG_USB_STORAGE_SDDR55 is not set | 865 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -872,7 +895,6 @@ CONFIG_USB_STORAGE=y | |||
| 872 | # CONFIG_USB_LED is not set | 895 | # CONFIG_USB_LED is not set |
| 873 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 896 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 874 | # CONFIG_USB_CYTHERM is not set | 897 | # CONFIG_USB_CYTHERM is not set |
| 875 | # CONFIG_USB_PHIDGET is not set | ||
| 876 | # CONFIG_USB_IDMOUSE is not set | 898 | # CONFIG_USB_IDMOUSE is not set |
| 877 | # CONFIG_USB_FTDI_ELAN is not set | 899 | # CONFIG_USB_FTDI_ELAN is not set |
| 878 | # CONFIG_USB_APPLEDISPLAY is not set | 900 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -882,6 +904,11 @@ CONFIG_USB_STORAGE=y | |||
| 882 | # CONFIG_USB_ISIGHTFW is not set | 904 | # CONFIG_USB_ISIGHTFW is not set |
| 883 | # CONFIG_USB_VST is not set | 905 | # CONFIG_USB_VST is not set |
| 884 | # CONFIG_USB_GADGET is not set | 906 | # CONFIG_USB_GADGET is not set |
| 907 | |||
| 908 | # | ||
| 909 | # OTG and related infrastructure | ||
| 910 | # | ||
| 911 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 885 | CONFIG_MMC=y | 912 | CONFIG_MMC=y |
| 886 | # CONFIG_MMC_DEBUG is not set | 913 | # CONFIG_MMC_DEBUG is not set |
| 887 | # CONFIG_MMC_UNSAFE_RESUME is not set | 914 | # CONFIG_MMC_UNSAFE_RESUME is not set |
| @@ -903,6 +930,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
| 903 | # CONFIG_ACCESSIBILITY is not set | 930 | # CONFIG_ACCESSIBILITY is not set |
| 904 | # CONFIG_RTC_CLASS is not set | 931 | # CONFIG_RTC_CLASS is not set |
| 905 | # CONFIG_DMADEVICES is not set | 932 | # CONFIG_DMADEVICES is not set |
| 933 | # CONFIG_AUXDISPLAY is not set | ||
| 906 | # CONFIG_UIO is not set | 934 | # CONFIG_UIO is not set |
| 907 | # CONFIG_STAGING is not set | 935 | # CONFIG_STAGING is not set |
| 908 | 936 | ||
| @@ -926,6 +954,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 926 | CONFIG_FILE_LOCKING=y | 954 | CONFIG_FILE_LOCKING=y |
| 927 | # CONFIG_XFS_FS is not set | 955 | # CONFIG_XFS_FS is not set |
| 928 | # CONFIG_OCFS2_FS is not set | 956 | # CONFIG_OCFS2_FS is not set |
| 957 | # CONFIG_BTRFS_FS is not set | ||
| 929 | CONFIG_DNOTIFY=y | 958 | CONFIG_DNOTIFY=y |
| 930 | CONFIG_INOTIFY=y | 959 | CONFIG_INOTIFY=y |
| 931 | CONFIG_INOTIFY_USER=y | 960 | CONFIG_INOTIFY_USER=y |
| @@ -974,6 +1003,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 974 | # CONFIG_EFS_FS is not set | 1003 | # CONFIG_EFS_FS is not set |
| 975 | # CONFIG_JFFS2_FS is not set | 1004 | # CONFIG_JFFS2_FS is not set |
| 976 | # CONFIG_CRAMFS is not set | 1005 | # CONFIG_CRAMFS is not set |
| 1006 | # CONFIG_SQUASHFS is not set | ||
| 977 | # CONFIG_VXFS_FS is not set | 1007 | # CONFIG_VXFS_FS is not set |
| 978 | # CONFIG_MINIX_FS is not set | 1008 | # CONFIG_MINIX_FS is not set |
| 979 | # CONFIG_OMFS_FS is not set | 1009 | # CONFIG_OMFS_FS is not set |
| @@ -991,7 +1021,6 @@ CONFIG_ROOT_NFS=y | |||
| 991 | CONFIG_LOCKD=y | 1021 | CONFIG_LOCKD=y |
| 992 | CONFIG_NFS_COMMON=y | 1022 | CONFIG_NFS_COMMON=y |
| 993 | CONFIG_SUNRPC=y | 1023 | CONFIG_SUNRPC=y |
| 994 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 995 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1024 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 996 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1025 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 997 | # CONFIG_SMB_FS is not set | 1026 | # CONFIG_SMB_FS is not set |
| @@ -1075,7 +1104,7 @@ CONFIG_TRACING=y | |||
| 1075 | # | 1104 | # |
| 1076 | # Tracers | 1105 | # Tracers |
| 1077 | # | 1106 | # |
| 1078 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1107 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1079 | # CONFIG_SAMPLES is not set | 1108 | # CONFIG_SAMPLES is not set |
| 1080 | CONFIG_HAVE_ARCH_KGDB=y | 1109 | CONFIG_HAVE_ARCH_KGDB=y |
| 1081 | # CONFIG_SH_STANDARD_BIOS is not set | 1110 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1167,6 +1196,7 @@ CONFIG_CRYPTO=y | |||
| 1167 | # Compression | 1196 | # Compression |
| 1168 | # | 1197 | # |
| 1169 | # CONFIG_CRYPTO_DEFLATE is not set | 1198 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1199 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1170 | # CONFIG_CRYPTO_LZO is not set | 1200 | # CONFIG_CRYPTO_LZO is not set |
| 1171 | 1201 | ||
| 1172 | # | 1202 | # |
| @@ -1187,7 +1217,7 @@ CONFIG_CRC_T10DIF=y | |||
| 1187 | CONFIG_CRC32=y | 1217 | CONFIG_CRC32=y |
| 1188 | # CONFIG_CRC7 is not set | 1218 | # CONFIG_CRC7 is not set |
| 1189 | # CONFIG_LIBCRC32C is not set | 1219 | # CONFIG_LIBCRC32C is not set |
| 1190 | CONFIG_PLIST=y | ||
| 1191 | CONFIG_HAS_IOMEM=y | 1220 | CONFIG_HAS_IOMEM=y |
| 1192 | CONFIG_HAS_IOPORT=y | 1221 | CONFIG_HAS_IOPORT=y |
| 1193 | CONFIG_HAS_DMA=y | 1222 | CONFIG_HAS_DMA=y |
| 1223 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sh7785lcr_32bit_defconfig b/arch/sh/configs/sh7785lcr_32bit_defconfig index 54e1dee8e24a..a6cf4505741c 100644 --- a/arch/sh/configs/sh7785lcr_32bit_defconfig +++ b/arch/sh/configs/sh7785lcr_32bit_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc4 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Feb 20 18:25:29 2009 | 4 | # Thu Apr 2 19:12:18 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_PCI=y | 22 | CONFIG_SYS_SUPPORTS_PCI=y |
| 23 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| @@ -26,6 +26,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 29 | CONFIG_IO_TRAPPED=y | 30 | CONFIG_IO_TRAPPED=y |
| 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 31 | 32 | ||
| @@ -71,6 +72,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 71 | # CONFIG_BLK_DEV_INITRD is not set | 72 | # CONFIG_BLK_DEV_INITRD is not set |
| 72 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 73 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 74 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 75 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 76 | CONFIG_SYSCTL_SYSCALL=y | 78 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -81,10 +83,8 @@ CONFIG_HOTPLUG=y | |||
| 81 | CONFIG_PRINTK=y | 83 | CONFIG_PRINTK=y |
| 82 | CONFIG_BUG=y | 84 | CONFIG_BUG=y |
| 83 | CONFIG_ELF_CORE=y | 85 | CONFIG_ELF_CORE=y |
| 84 | CONFIG_COMPAT_BRK=y | ||
| 85 | CONFIG_BASE_FULL=y | 86 | CONFIG_BASE_FULL=y |
| 86 | CONFIG_FUTEX=y | 87 | CONFIG_FUTEX=y |
| 87 | CONFIG_ANON_INODES=y | ||
| 88 | CONFIG_EPOLL=y | 88 | CONFIG_EPOLL=y |
| 89 | CONFIG_SIGNALFD=y | 89 | CONFIG_SIGNALFD=y |
| 90 | CONFIG_TIMERFD=y | 90 | CONFIG_TIMERFD=y |
| @@ -93,6 +93,7 @@ CONFIG_SHMEM=y | |||
| 93 | CONFIG_AIO=y | 93 | CONFIG_AIO=y |
| 94 | CONFIG_VM_EVENT_COUNTERS=y | 94 | CONFIG_VM_EVENT_COUNTERS=y |
| 95 | CONFIG_PCI_QUIRKS=y | 95 | CONFIG_PCI_QUIRKS=y |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 96 | CONFIG_SLAB=y | 97 | CONFIG_SLAB=y |
| 97 | # CONFIG_SLUB is not set | 98 | # CONFIG_SLUB is not set |
| 98 | # CONFIG_SLOB is not set | 99 | # CONFIG_SLOB is not set |
| @@ -169,6 +170,7 @@ CONFIG_CPU_SHX2=y | |||
| 169 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 170 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 171 | CONFIG_CPU_SUBTYPE_SH7785=y | 172 | CONFIG_CPU_SUBTYPE_SH7785=y |
| 173 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 172 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 174 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 173 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 175 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 174 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 176 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -220,11 +222,12 @@ CONFIG_MIGRATION=y | |||
| 220 | CONFIG_ZONE_DMA_FLAG=0 | 222 | CONFIG_ZONE_DMA_FLAG=0 |
| 221 | CONFIG_NR_QUICK=2 | 223 | CONFIG_NR_QUICK=2 |
| 222 | CONFIG_UNEVICTABLE_LRU=y | 224 | CONFIG_UNEVICTABLE_LRU=y |
| 225 | CONFIG_HAVE_MLOCK=y | ||
| 226 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 223 | 227 | ||
| 224 | # | 228 | # |
| 225 | # Cache configuration | 229 | # Cache configuration |
| 226 | # | 230 | # |
| 227 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 228 | CONFIG_CACHE_WRITEBACK=y | 231 | CONFIG_CACHE_WRITEBACK=y |
| 229 | # CONFIG_CACHE_WRITETHROUGH is not set | 232 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 230 | # CONFIG_CACHE_OFF is not set | 233 | # CONFIG_CACHE_OFF is not set |
| @@ -314,6 +317,7 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 314 | CONFIG_PCI_LEGACY=y | 317 | CONFIG_PCI_LEGACY=y |
| 315 | # CONFIG_PCI_DEBUG is not set | 318 | # CONFIG_PCI_DEBUG is not set |
| 316 | # CONFIG_PCI_STUB is not set | 319 | # CONFIG_PCI_STUB is not set |
| 320 | # CONFIG_PCI_IOV is not set | ||
| 317 | # CONFIG_PCCARD is not set | 321 | # CONFIG_PCCARD is not set |
| 318 | # CONFIG_HOTPLUG_PCI is not set | 322 | # CONFIG_HOTPLUG_PCI is not set |
| 319 | 323 | ||
| @@ -335,7 +339,6 @@ CONFIG_NET=y | |||
| 335 | # | 339 | # |
| 336 | # Networking options | 340 | # Networking options |
| 337 | # | 341 | # |
| 338 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 339 | CONFIG_PACKET=y | 342 | CONFIG_PACKET=y |
| 340 | # CONFIG_PACKET_MMAP is not set | 343 | # CONFIG_PACKET_MMAP is not set |
| 341 | CONFIG_UNIX=y | 344 | CONFIG_UNIX=y |
| @@ -395,6 +398,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 395 | # CONFIG_LAPB is not set | 398 | # CONFIG_LAPB is not set |
| 396 | # CONFIG_ECONET is not set | 399 | # CONFIG_ECONET is not set |
| 397 | # CONFIG_WAN_ROUTER is not set | 400 | # CONFIG_WAN_ROUTER is not set |
| 401 | # CONFIG_PHONET is not set | ||
| 398 | # CONFIG_NET_SCHED is not set | 402 | # CONFIG_NET_SCHED is not set |
| 399 | # CONFIG_DCB is not set | 403 | # CONFIG_DCB is not set |
| 400 | 404 | ||
| @@ -407,7 +411,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 407 | # CONFIG_IRDA is not set | 411 | # CONFIG_IRDA is not set |
| 408 | # CONFIG_BT is not set | 412 | # CONFIG_BT is not set |
| 409 | # CONFIG_AF_RXRPC is not set | 413 | # CONFIG_AF_RXRPC is not set |
| 410 | # CONFIG_PHONET is not set | ||
| 411 | CONFIG_WIRELESS=y | 414 | CONFIG_WIRELESS=y |
| 412 | # CONFIG_CFG80211 is not set | 415 | # CONFIG_CFG80211 is not set |
| 413 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 416 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -512,7 +515,6 @@ CONFIG_MTD_PHYSMAP=y | |||
| 512 | # LPDDR flash memory drivers | 515 | # LPDDR flash memory drivers |
| 513 | # | 516 | # |
| 514 | # CONFIG_MTD_LPDDR is not set | 517 | # CONFIG_MTD_LPDDR is not set |
| 515 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 516 | 518 | ||
| 517 | # | 519 | # |
| 518 | # UBI - Unsorted block images | 520 | # UBI - Unsorted block images |
| @@ -578,6 +580,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 578 | # CONFIG_SCSI_SRP_ATTRS is not set | 580 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 579 | # CONFIG_SCSI_LOWLEVEL is not set | 581 | # CONFIG_SCSI_LOWLEVEL is not set |
| 580 | # CONFIG_SCSI_DH is not set | 582 | # CONFIG_SCSI_DH is not set |
| 583 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 581 | CONFIG_ATA=y | 584 | CONFIG_ATA=y |
| 582 | # CONFIG_ATA_NONSTANDARD is not set | 585 | # CONFIG_ATA_NONSTANDARD is not set |
| 583 | CONFIG_SATA_PMP=y | 586 | CONFIG_SATA_PMP=y |
| @@ -652,6 +655,7 @@ CONFIG_SATA_SIL=y | |||
| 652 | # CONFIG_IEEE1394 is not set | 655 | # CONFIG_IEEE1394 is not set |
| 653 | # CONFIG_I2O is not set | 656 | # CONFIG_I2O is not set |
| 654 | CONFIG_NETDEVICES=y | 657 | CONFIG_NETDEVICES=y |
| 658 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 655 | # CONFIG_DUMMY is not set | 659 | # CONFIG_DUMMY is not set |
| 656 | # CONFIG_BONDING is not set | 660 | # CONFIG_BONDING is not set |
| 657 | # CONFIG_MACVLAN is not set | 661 | # CONFIG_MACVLAN is not set |
| @@ -681,6 +685,7 @@ CONFIG_R8169=y | |||
| 681 | # CONFIG_QLA3XXX is not set | 685 | # CONFIG_QLA3XXX is not set |
| 682 | # CONFIG_ATL1 is not set | 686 | # CONFIG_ATL1 is not set |
| 683 | # CONFIG_ATL1E is not set | 687 | # CONFIG_ATL1E is not set |
| 688 | # CONFIG_ATL1C is not set | ||
| 684 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
| 685 | # CONFIG_NETDEV_10000 is not set | 690 | # CONFIG_NETDEV_10000 is not set |
| 686 | # CONFIG_TR is not set | 691 | # CONFIG_TR is not set |
| @@ -690,7 +695,6 @@ CONFIG_R8169=y | |||
| 690 | # | 695 | # |
| 691 | # CONFIG_WLAN_PRE80211 is not set | 696 | # CONFIG_WLAN_PRE80211 is not set |
| 692 | # CONFIG_WLAN_80211 is not set | 697 | # CONFIG_WLAN_80211 is not set |
| 693 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 694 | 698 | ||
| 695 | # | 699 | # |
| 696 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 700 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -789,6 +793,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 789 | CONFIG_LEGACY_PTY_COUNT=256 | 793 | CONFIG_LEGACY_PTY_COUNT=256 |
| 790 | # CONFIG_IPMI_HANDLER is not set | 794 | # CONFIG_IPMI_HANDLER is not set |
| 791 | CONFIG_HW_RANDOM=y | 795 | CONFIG_HW_RANDOM=y |
| 796 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 792 | # CONFIG_R3964 is not set | 797 | # CONFIG_R3964 is not set |
| 793 | # CONFIG_APPLICOM is not set | 798 | # CONFIG_APPLICOM is not set |
| 794 | # CONFIG_RAW_DRIVER is not set | 799 | # CONFIG_RAW_DRIVER is not set |
| @@ -854,7 +859,6 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
| 854 | # CONFIG_SENSORS_PCF8574 is not set | 859 | # CONFIG_SENSORS_PCF8574 is not set |
| 855 | # CONFIG_PCF8575 is not set | 860 | # CONFIG_PCF8575 is not set |
| 856 | # CONFIG_SENSORS_PCA9539 is not set | 861 | # CONFIG_SENSORS_PCA9539 is not set |
| 857 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 858 | # CONFIG_SENSORS_MAX6875 is not set | 862 | # CONFIG_SENSORS_MAX6875 is not set |
| 859 | # CONFIG_SENSORS_TSL2550 is not set | 863 | # CONFIG_SENSORS_TSL2550 is not set |
| 860 | # CONFIG_I2C_DEBUG_CORE is not set | 864 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -964,6 +968,7 @@ CONFIG_FB_SM501=y | |||
| 964 | # CONFIG_FB_VIRTUAL is not set | 968 | # CONFIG_FB_VIRTUAL is not set |
| 965 | # CONFIG_FB_METRONOME is not set | 969 | # CONFIG_FB_METRONOME is not set |
| 966 | # CONFIG_FB_MB862XX is not set | 970 | # CONFIG_FB_MB862XX is not set |
| 971 | # CONFIG_FB_BROADSHEET is not set | ||
| 967 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 972 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 968 | 973 | ||
| 969 | # | 974 | # |
| @@ -1079,11 +1084,11 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 1079 | # CONFIG_USB_TMC is not set | 1084 | # CONFIG_USB_TMC is not set |
| 1080 | 1085 | ||
| 1081 | # | 1086 | # |
| 1082 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1087 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1083 | # | 1088 | # |
| 1084 | 1089 | ||
| 1085 | # | 1090 | # |
| 1086 | # see USB_STORAGE Help for more information | 1091 | # also be needed; see USB_STORAGE Help for more info |
| 1087 | # | 1092 | # |
| 1088 | CONFIG_USB_STORAGE=y | 1093 | CONFIG_USB_STORAGE=y |
| 1089 | # CONFIG_USB_STORAGE_DEBUG is not set | 1094 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1125,7 +1130,6 @@ CONFIG_USB_STORAGE=y | |||
| 1125 | # CONFIG_USB_LED is not set | 1130 | # CONFIG_USB_LED is not set |
| 1126 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1131 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1127 | # CONFIG_USB_CYTHERM is not set | 1132 | # CONFIG_USB_CYTHERM is not set |
| 1128 | # CONFIG_USB_PHIDGET is not set | ||
| 1129 | # CONFIG_USB_IDMOUSE is not set | 1133 | # CONFIG_USB_IDMOUSE is not set |
| 1130 | # CONFIG_USB_FTDI_ELAN is not set | 1134 | # CONFIG_USB_FTDI_ELAN is not set |
| 1131 | # CONFIG_USB_APPLEDISPLAY is not set | 1135 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1141,6 +1145,7 @@ CONFIG_USB_TEST=m | |||
| 1141 | # | 1145 | # |
| 1142 | # OTG and related infrastructure | 1146 | # OTG and related infrastructure |
| 1143 | # | 1147 | # |
| 1148 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1144 | # CONFIG_UWB is not set | 1149 | # CONFIG_UWB is not set |
| 1145 | # CONFIG_MMC is not set | 1150 | # CONFIG_MMC is not set |
| 1146 | # CONFIG_MEMSTICK is not set | 1151 | # CONFIG_MEMSTICK is not set |
| @@ -1202,6 +1207,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1202 | # | 1207 | # |
| 1203 | # CONFIG_RTC_DRV_SH is not set | 1208 | # CONFIG_RTC_DRV_SH is not set |
| 1204 | # CONFIG_DMADEVICES is not set | 1209 | # CONFIG_DMADEVICES is not set |
| 1210 | # CONFIG_AUXDISPLAY is not set | ||
| 1205 | # CONFIG_UIO is not set | 1211 | # CONFIG_UIO is not set |
| 1206 | # CONFIG_STAGING is not set | 1212 | # CONFIG_STAGING is not set |
| 1207 | 1213 | ||
| @@ -1299,7 +1305,6 @@ CONFIG_EXPORTFS=y | |||
| 1299 | CONFIG_NFS_COMMON=y | 1305 | CONFIG_NFS_COMMON=y |
| 1300 | CONFIG_SUNRPC=y | 1306 | CONFIG_SUNRPC=y |
| 1301 | CONFIG_SUNRPC_GSS=y | 1307 | CONFIG_SUNRPC_GSS=y |
| 1302 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1303 | CONFIG_RPCSEC_GSS_KRB5=y | 1308 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1304 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1309 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1305 | # CONFIG_SMB_FS is not set | 1310 | # CONFIG_SMB_FS is not set |
| @@ -1404,6 +1409,7 @@ CONFIG_DEBUG_PREEMPT=y | |||
| 1404 | # CONFIG_FAULT_INJECTION is not set | 1409 | # CONFIG_FAULT_INJECTION is not set |
| 1405 | # CONFIG_LATENCYTOP is not set | 1410 | # CONFIG_LATENCYTOP is not set |
| 1406 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1411 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1412 | # CONFIG_PAGE_POISONING is not set | ||
| 1407 | CONFIG_HAVE_FUNCTION_TRACER=y | 1413 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1408 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1414 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1409 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1415 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -1419,7 +1425,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1419 | # CONFIG_BOOT_TRACER is not set | 1425 | # CONFIG_BOOT_TRACER is not set |
| 1420 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1421 | # CONFIG_STACK_TRACER is not set | 1427 | # CONFIG_STACK_TRACER is not set |
| 1422 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1423 | # CONFIG_SAMPLES is not set | 1428 | # CONFIG_SAMPLES is not set |
| 1424 | CONFIG_HAVE_ARCH_KGDB=y | 1429 | CONFIG_HAVE_ARCH_KGDB=y |
| 1425 | # CONFIG_KGDB is not set | 1430 | # CONFIG_KGDB is not set |
| @@ -1455,10 +1460,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1455 | CONFIG_CRYPTO_HASH=y | 1460 | CONFIG_CRYPTO_HASH=y |
| 1456 | CONFIG_CRYPTO_HASH2=y | 1461 | CONFIG_CRYPTO_HASH2=y |
| 1457 | CONFIG_CRYPTO_RNG2=y | 1462 | CONFIG_CRYPTO_RNG2=y |
| 1463 | CONFIG_CRYPTO_PCOMP=y | ||
| 1458 | CONFIG_CRYPTO_MANAGER=y | 1464 | CONFIG_CRYPTO_MANAGER=y |
| 1459 | CONFIG_CRYPTO_MANAGER2=y | 1465 | CONFIG_CRYPTO_MANAGER2=y |
| 1460 | # CONFIG_CRYPTO_GF128MUL is not set | 1466 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1461 | # CONFIG_CRYPTO_NULL is not set | 1467 | # CONFIG_CRYPTO_NULL is not set |
| 1468 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1462 | # CONFIG_CRYPTO_CRYPTD is not set | 1469 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1463 | # CONFIG_CRYPTO_AUTHENC is not set | 1470 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1464 | # CONFIG_CRYPTO_TEST is not set | 1471 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1527,6 +1534,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1527 | # Compression | 1534 | # Compression |
| 1528 | # | 1535 | # |
| 1529 | # CONFIG_CRYPTO_DEFLATE is not set | 1536 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1537 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1530 | # CONFIG_CRYPTO_LZO is not set | 1538 | # CONFIG_CRYPTO_LZO is not set |
| 1531 | 1539 | ||
| 1532 | # | 1540 | # |
| @@ -1547,7 +1555,7 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1547 | CONFIG_CRC32=y | 1555 | CONFIG_CRC32=y |
| 1548 | # CONFIG_CRC7 is not set | 1556 | # CONFIG_CRC7 is not set |
| 1549 | # CONFIG_LIBCRC32C is not set | 1557 | # CONFIG_LIBCRC32C is not set |
| 1550 | CONFIG_PLIST=y | ||
| 1551 | CONFIG_HAS_IOMEM=y | 1558 | CONFIG_HAS_IOMEM=y |
| 1552 | CONFIG_HAS_IOPORT=y | 1559 | CONFIG_HAS_IOPORT=y |
| 1553 | CONFIG_HAS_DMA=y | 1560 | CONFIG_HAS_DMA=y |
| 1561 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/sh7785lcr_defconfig b/arch/sh/configs/sh7785lcr_defconfig index 1d63628df6f6..8a42bbef1f50 100644 --- a/arch/sh/configs/sh7785lcr_defconfig +++ b/arch/sh/configs/sh7785lcr_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:05:18 2009 | 4 | # Thu Apr 2 19:15:58 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_PCI=y | 22 | CONFIG_SYS_SUPPORTS_PCI=y |
| 23 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| @@ -26,6 +26,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 29 | CONFIG_IO_TRAPPED=y | 30 | CONFIG_IO_TRAPPED=y |
| 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 31 | 32 | ||
| @@ -46,15 +47,24 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 46 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 47 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 47 | # CONFIG_TASKSTATS is not set | 48 | # CONFIG_TASKSTATS is not set |
| 48 | # CONFIG_AUDIT is not set | 49 | # CONFIG_AUDIT is not set |
| 50 | |||
| 51 | # | ||
| 52 | # RCU Subsystem | ||
| 53 | # | ||
| 54 | CONFIG_CLASSIC_RCU=y | ||
| 55 | # CONFIG_TREE_RCU is not set | ||
| 56 | # CONFIG_PREEMPT_RCU is not set | ||
| 57 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 58 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 49 | CONFIG_IKCONFIG=y | 59 | CONFIG_IKCONFIG=y |
| 50 | CONFIG_IKCONFIG_PROC=y | 60 | CONFIG_IKCONFIG_PROC=y |
| 51 | CONFIG_LOG_BUF_SHIFT=14 | 61 | CONFIG_LOG_BUF_SHIFT=14 |
| 52 | # CONFIG_CGROUPS is not set | ||
| 53 | CONFIG_GROUP_SCHED=y | 62 | CONFIG_GROUP_SCHED=y |
| 54 | CONFIG_FAIR_GROUP_SCHED=y | 63 | CONFIG_FAIR_GROUP_SCHED=y |
| 55 | # CONFIG_RT_GROUP_SCHED is not set | 64 | # CONFIG_RT_GROUP_SCHED is not set |
| 56 | CONFIG_USER_SCHED=y | 65 | CONFIG_USER_SCHED=y |
| 57 | # CONFIG_CGROUP_SCHED is not set | 66 | # CONFIG_CGROUP_SCHED is not set |
| 67 | # CONFIG_CGROUPS is not set | ||
| 58 | CONFIG_SYSFS_DEPRECATED=y | 68 | CONFIG_SYSFS_DEPRECATED=y |
| 59 | CONFIG_SYSFS_DEPRECATED_V2=y | 69 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 60 | # CONFIG_RELAY is not set | 70 | # CONFIG_RELAY is not set |
| @@ -62,6 +72,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 62 | # CONFIG_BLK_DEV_INITRD is not set | 72 | # CONFIG_BLK_DEV_INITRD is not set |
| 63 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 64 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 65 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 66 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 67 | CONFIG_SYSCTL_SYSCALL=y | 78 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -72,10 +83,8 @@ CONFIG_HOTPLUG=y | |||
| 72 | CONFIG_PRINTK=y | 83 | CONFIG_PRINTK=y |
| 73 | CONFIG_BUG=y | 84 | CONFIG_BUG=y |
| 74 | CONFIG_ELF_CORE=y | 85 | CONFIG_ELF_CORE=y |
| 75 | CONFIG_COMPAT_BRK=y | ||
| 76 | CONFIG_BASE_FULL=y | 86 | CONFIG_BASE_FULL=y |
| 77 | CONFIG_FUTEX=y | 87 | CONFIG_FUTEX=y |
| 78 | CONFIG_ANON_INODES=y | ||
| 79 | CONFIG_EPOLL=y | 88 | CONFIG_EPOLL=y |
| 80 | CONFIG_SIGNALFD=y | 89 | CONFIG_SIGNALFD=y |
| 81 | CONFIG_TIMERFD=y | 90 | CONFIG_TIMERFD=y |
| @@ -84,6 +93,7 @@ CONFIG_SHMEM=y | |||
| 84 | CONFIG_AIO=y | 93 | CONFIG_AIO=y |
| 85 | CONFIG_VM_EVENT_COUNTERS=y | 94 | CONFIG_VM_EVENT_COUNTERS=y |
| 86 | CONFIG_PCI_QUIRKS=y | 95 | CONFIG_PCI_QUIRKS=y |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 87 | CONFIG_SLAB=y | 97 | CONFIG_SLAB=y |
| 88 | # CONFIG_SLUB is not set | 98 | # CONFIG_SLUB is not set |
| 89 | # CONFIG_SLOB is not set | 99 | # CONFIG_SLOB is not set |
| @@ -124,11 +134,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 124 | CONFIG_DEFAULT_CFQ=y | 134 | CONFIG_DEFAULT_CFQ=y |
| 125 | # CONFIG_DEFAULT_NOOP is not set | 135 | # CONFIG_DEFAULT_NOOP is not set |
| 126 | CONFIG_DEFAULT_IOSCHED="cfq" | 136 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 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 | 137 | # CONFIG_FREEZER is not set |
| 133 | 138 | ||
| 134 | # | 139 | # |
| @@ -165,6 +170,7 @@ CONFIG_CPU_SHX2=y | |||
| 165 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 166 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 167 | CONFIG_CPU_SUBTYPE_SH7785=y | 172 | CONFIG_CPU_SUBTYPE_SH7785=y |
| 173 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 168 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 174 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 169 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 175 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 170 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 176 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -180,8 +186,11 @@ CONFIG_MMU=y | |||
| 180 | CONFIG_PAGE_OFFSET=0x80000000 | 186 | CONFIG_PAGE_OFFSET=0x80000000 |
| 181 | CONFIG_MEMORY_START=0x08000000 | 187 | CONFIG_MEMORY_START=0x08000000 |
| 182 | CONFIG_MEMORY_SIZE=0x08000000 | 188 | CONFIG_MEMORY_SIZE=0x08000000 |
| 183 | CONFIG_29BIT=y | 189 | # CONFIG_29BIT is not set |
| 190 | CONFIG_32BIT=y | ||
| 191 | CONFIG_PMB_ENABLE=y | ||
| 184 | # CONFIG_PMB is not set | 192 | # CONFIG_PMB is not set |
| 193 | CONFIG_PMB_FIXED=y | ||
| 185 | # CONFIG_X2TLB is not set | 194 | # CONFIG_X2TLB is not set |
| 186 | CONFIG_VSYSCALL=y | 195 | CONFIG_VSYSCALL=y |
| 187 | # CONFIG_NUMA is not set | 196 | # CONFIG_NUMA is not set |
| @@ -213,11 +222,12 @@ CONFIG_MIGRATION=y | |||
| 213 | CONFIG_ZONE_DMA_FLAG=0 | 222 | CONFIG_ZONE_DMA_FLAG=0 |
| 214 | CONFIG_NR_QUICK=2 | 223 | CONFIG_NR_QUICK=2 |
| 215 | CONFIG_UNEVICTABLE_LRU=y | 224 | CONFIG_UNEVICTABLE_LRU=y |
| 225 | CONFIG_HAVE_MLOCK=y | ||
| 226 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 216 | 227 | ||
| 217 | # | 228 | # |
| 218 | # Cache configuration | 229 | # Cache configuration |
| 219 | # | 230 | # |
| 220 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 221 | CONFIG_CACHE_WRITEBACK=y | 231 | CONFIG_CACHE_WRITEBACK=y |
| 222 | # CONFIG_CACHE_WRITETHROUGH is not set | 232 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 223 | # CONFIG_CACHE_OFF is not set | 233 | # CONFIG_CACHE_OFF is not set |
| @@ -239,7 +249,6 @@ CONFIG_CPU_HAS_FPU=y | |||
| 239 | # | 249 | # |
| 240 | # CONFIG_SH_HIGHLANDER is not set | 250 | # CONFIG_SH_HIGHLANDER is not set |
| 241 | CONFIG_SH_SH7785LCR=y | 251 | CONFIG_SH_SH7785LCR=y |
| 242 | CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS=y | ||
| 243 | 252 | ||
| 244 | # | 253 | # |
| 245 | # Timer and clock configuration | 254 | # Timer and clock configuration |
| @@ -307,6 +316,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 307 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 316 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 308 | CONFIG_PCI_LEGACY=y | 317 | CONFIG_PCI_LEGACY=y |
| 309 | # CONFIG_PCI_DEBUG is not set | 318 | # CONFIG_PCI_DEBUG is not set |
| 319 | # CONFIG_PCI_STUB is not set | ||
| 320 | # CONFIG_PCI_IOV is not set | ||
| 310 | # CONFIG_PCCARD is not set | 321 | # CONFIG_PCCARD is not set |
| 311 | # CONFIG_HOTPLUG_PCI is not set | 322 | # CONFIG_HOTPLUG_PCI is not set |
| 312 | 323 | ||
| @@ -328,7 +339,6 @@ CONFIG_NET=y | |||
| 328 | # | 339 | # |
| 329 | # Networking options | 340 | # Networking options |
| 330 | # | 341 | # |
| 331 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 332 | CONFIG_PACKET=y | 342 | CONFIG_PACKET=y |
| 333 | # CONFIG_PACKET_MMAP is not set | 343 | # CONFIG_PACKET_MMAP is not set |
| 334 | CONFIG_UNIX=y | 344 | CONFIG_UNIX=y |
| @@ -388,6 +398,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 388 | # CONFIG_LAPB is not set | 398 | # CONFIG_LAPB is not set |
| 389 | # CONFIG_ECONET is not set | 399 | # CONFIG_ECONET is not set |
| 390 | # CONFIG_WAN_ROUTER is not set | 400 | # CONFIG_WAN_ROUTER is not set |
| 401 | # CONFIG_PHONET is not set | ||
| 391 | # CONFIG_NET_SCHED is not set | 402 | # CONFIG_NET_SCHED is not set |
| 392 | # CONFIG_DCB is not set | 403 | # CONFIG_DCB is not set |
| 393 | 404 | ||
| @@ -400,7 +411,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 400 | # CONFIG_IRDA is not set | 411 | # CONFIG_IRDA is not set |
| 401 | # CONFIG_BT is not set | 412 | # CONFIG_BT is not set |
| 402 | # CONFIG_AF_RXRPC is not set | 413 | # CONFIG_AF_RXRPC is not set |
| 403 | # CONFIG_PHONET is not set | ||
| 404 | CONFIG_WIRELESS=y | 414 | CONFIG_WIRELESS=y |
| 405 | # CONFIG_CFG80211 is not set | 415 | # CONFIG_CFG80211 is not set |
| 406 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 416 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -408,6 +418,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 408 | CONFIG_WIRELESS_EXT_SYSFS=y | 418 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 409 | # CONFIG_LIB80211 is not set | 419 | # CONFIG_LIB80211 is not set |
| 410 | # CONFIG_MAC80211 is not set | 420 | # CONFIG_MAC80211 is not set |
| 421 | # CONFIG_WIMAX is not set | ||
| 411 | # CONFIG_RFKILL is not set | 422 | # CONFIG_RFKILL is not set |
| 412 | # CONFIG_NET_9P is not set | 423 | # CONFIG_NET_9P is not set |
| 413 | 424 | ||
| @@ -430,6 +441,7 @@ CONFIG_MTD=y | |||
| 430 | # CONFIG_MTD_DEBUG is not set | 441 | # CONFIG_MTD_DEBUG is not set |
| 431 | CONFIG_MTD_CONCAT=y | 442 | CONFIG_MTD_CONCAT=y |
| 432 | CONFIG_MTD_PARTITIONS=y | 443 | CONFIG_MTD_PARTITIONS=y |
| 444 | # CONFIG_MTD_TESTS is not set | ||
| 433 | # CONFIG_MTD_REDBOOT_PARTS is not set | 445 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 434 | # CONFIG_MTD_CMDLINE_PARTS is not set | 446 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 435 | # CONFIG_MTD_AR7_PARTS is not set | 447 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -477,9 +489,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 477 | # | 489 | # |
| 478 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 490 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 479 | CONFIG_MTD_PHYSMAP=y | 491 | CONFIG_MTD_PHYSMAP=y |
| 480 | CONFIG_MTD_PHYSMAP_START=0x00000000 | 492 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 481 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
| 482 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
| 483 | # CONFIG_MTD_INTEL_VR_NOR is not set | 493 | # CONFIG_MTD_INTEL_VR_NOR is not set |
| 484 | # CONFIG_MTD_PLATRAM is not set | 494 | # CONFIG_MTD_PLATRAM is not set |
| 485 | 495 | ||
| @@ -502,6 +512,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | |||
| 502 | # CONFIG_MTD_ONENAND is not set | 512 | # CONFIG_MTD_ONENAND is not set |
| 503 | 513 | ||
| 504 | # | 514 | # |
| 515 | # LPDDR flash memory drivers | ||
| 516 | # | ||
| 517 | # CONFIG_MTD_LPDDR is not set | ||
| 518 | |||
| 519 | # | ||
| 505 | # UBI - Unsorted block images | 520 | # UBI - Unsorted block images |
| 506 | # | 521 | # |
| 507 | # CONFIG_MTD_UBI is not set | 522 | # CONFIG_MTD_UBI is not set |
| @@ -565,6 +580,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 565 | # CONFIG_SCSI_SRP_ATTRS is not set | 580 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 566 | # CONFIG_SCSI_LOWLEVEL is not set | 581 | # CONFIG_SCSI_LOWLEVEL is not set |
| 567 | # CONFIG_SCSI_DH is not set | 582 | # CONFIG_SCSI_DH is not set |
| 583 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 568 | CONFIG_ATA=y | 584 | CONFIG_ATA=y |
| 569 | # CONFIG_ATA_NONSTANDARD is not set | 585 | # CONFIG_ATA_NONSTANDARD is not set |
| 570 | CONFIG_SATA_PMP=y | 586 | CONFIG_SATA_PMP=y |
| @@ -639,6 +655,7 @@ CONFIG_SATA_SIL=y | |||
| 639 | # CONFIG_IEEE1394 is not set | 655 | # CONFIG_IEEE1394 is not set |
| 640 | # CONFIG_I2O is not set | 656 | # CONFIG_I2O is not set |
| 641 | CONFIG_NETDEVICES=y | 657 | CONFIG_NETDEVICES=y |
| 658 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 642 | # CONFIG_DUMMY is not set | 659 | # CONFIG_DUMMY is not set |
| 643 | # CONFIG_BONDING is not set | 660 | # CONFIG_BONDING is not set |
| 644 | # CONFIG_MACVLAN is not set | 661 | # CONFIG_MACVLAN is not set |
| @@ -668,6 +685,7 @@ CONFIG_R8169=y | |||
| 668 | # CONFIG_QLA3XXX is not set | 685 | # CONFIG_QLA3XXX is not set |
| 669 | # CONFIG_ATL1 is not set | 686 | # CONFIG_ATL1 is not set |
| 670 | # CONFIG_ATL1E is not set | 687 | # CONFIG_ATL1E is not set |
| 688 | # CONFIG_ATL1C is not set | ||
| 671 | # CONFIG_JME is not set | 689 | # CONFIG_JME is not set |
| 672 | # CONFIG_NETDEV_10000 is not set | 690 | # CONFIG_NETDEV_10000 is not set |
| 673 | # CONFIG_TR is not set | 691 | # CONFIG_TR is not set |
| @@ -677,7 +695,10 @@ CONFIG_R8169=y | |||
| 677 | # | 695 | # |
| 678 | # CONFIG_WLAN_PRE80211 is not set | 696 | # CONFIG_WLAN_PRE80211 is not set |
| 679 | # CONFIG_WLAN_80211 is not set | 697 | # CONFIG_WLAN_80211 is not set |
| 680 | # CONFIG_IWLWIFI_LEDS is not set | 698 | |
| 699 | # | ||
| 700 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 701 | # | ||
| 681 | 702 | ||
| 682 | # | 703 | # |
| 683 | # USB Network Adapters | 704 | # USB Network Adapters |
| @@ -772,6 +793,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 772 | CONFIG_LEGACY_PTY_COUNT=256 | 793 | CONFIG_LEGACY_PTY_COUNT=256 |
| 773 | # CONFIG_IPMI_HANDLER is not set | 794 | # CONFIG_IPMI_HANDLER is not set |
| 774 | CONFIG_HW_RANDOM=y | 795 | CONFIG_HW_RANDOM=y |
| 796 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 775 | # CONFIG_R3964 is not set | 797 | # CONFIG_R3964 is not set |
| 776 | # CONFIG_APPLICOM is not set | 798 | # CONFIG_APPLICOM is not set |
| 777 | # CONFIG_RAW_DRIVER is not set | 799 | # CONFIG_RAW_DRIVER is not set |
| @@ -834,12 +856,9 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
| 834 | # Miscellaneous I2C Chip support | 856 | # Miscellaneous I2C Chip support |
| 835 | # | 857 | # |
| 836 | # CONFIG_DS1682 is not set | 858 | # CONFIG_DS1682 is not set |
| 837 | # CONFIG_EEPROM_AT24 is not set | ||
| 838 | # CONFIG_EEPROM_LEGACY is not set | ||
| 839 | # CONFIG_SENSORS_PCF8574 is not set | 859 | # CONFIG_SENSORS_PCF8574 is not set |
| 840 | # CONFIG_PCF8575 is not set | 860 | # CONFIG_PCF8575 is not set |
| 841 | # CONFIG_SENSORS_PCA9539 is not set | 861 | # CONFIG_SENSORS_PCA9539 is not set |
| 842 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 843 | # CONFIG_SENSORS_MAX6875 is not set | 862 | # CONFIG_SENSORS_MAX6875 is not set |
| 844 | # CONFIG_SENSORS_TSL2550 is not set | 863 | # CONFIG_SENSORS_TSL2550 is not set |
| 845 | # CONFIG_I2C_DEBUG_CORE is not set | 864 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -871,6 +890,7 @@ CONFIG_MFD_SM501=y | |||
| 871 | # CONFIG_PMIC_DA903X is not set | 890 | # CONFIG_PMIC_DA903X is not set |
| 872 | # CONFIG_MFD_WM8400 is not set | 891 | # CONFIG_MFD_WM8400 is not set |
| 873 | # CONFIG_MFD_WM8350_I2C is not set | 892 | # CONFIG_MFD_WM8350_I2C is not set |
| 893 | # CONFIG_MFD_PCF50633 is not set | ||
| 874 | # CONFIG_REGULATOR is not set | 894 | # CONFIG_REGULATOR is not set |
| 875 | 895 | ||
| 876 | # | 896 | # |
| @@ -948,6 +968,7 @@ CONFIG_FB_SM501=y | |||
| 948 | # CONFIG_FB_VIRTUAL is not set | 968 | # CONFIG_FB_VIRTUAL is not set |
| 949 | # CONFIG_FB_METRONOME is not set | 969 | # CONFIG_FB_METRONOME is not set |
| 950 | # CONFIG_FB_MB862XX is not set | 970 | # CONFIG_FB_MB862XX is not set |
| 971 | # CONFIG_FB_BROADSHEET is not set | ||
| 951 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 972 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 952 | 973 | ||
| 953 | # | 974 | # |
| @@ -1041,6 +1062,7 @@ CONFIG_USB_MON=y | |||
| 1041 | CONFIG_USB_EHCI_HCD=m | 1062 | CONFIG_USB_EHCI_HCD=m |
| 1042 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1063 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1043 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1064 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1065 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1044 | # CONFIG_USB_ISP116X_HCD is not set | 1066 | # CONFIG_USB_ISP116X_HCD is not set |
| 1045 | # CONFIG_USB_ISP1760_HCD is not set | 1067 | # CONFIG_USB_ISP1760_HCD is not set |
| 1046 | CONFIG_USB_OHCI_HCD=m | 1068 | CONFIG_USB_OHCI_HCD=m |
| @@ -1062,18 +1084,17 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 1062 | # CONFIG_USB_TMC is not set | 1084 | # CONFIG_USB_TMC is not set |
| 1063 | 1085 | ||
| 1064 | # | 1086 | # |
| 1065 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1087 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1066 | # | 1088 | # |
| 1067 | 1089 | ||
| 1068 | # | 1090 | # |
| 1069 | # see USB_STORAGE Help for more information | 1091 | # also be needed; see USB_STORAGE Help for more info |
| 1070 | # | 1092 | # |
| 1071 | CONFIG_USB_STORAGE=y | 1093 | CONFIG_USB_STORAGE=y |
| 1072 | # CONFIG_USB_STORAGE_DEBUG is not set | 1094 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1073 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1095 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1074 | # CONFIG_USB_STORAGE_FREECOM is not set | 1096 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1075 | # CONFIG_USB_STORAGE_ISD200 is not set | 1097 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1076 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1077 | # CONFIG_USB_STORAGE_USBAT is not set | 1098 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1078 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1099 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1079 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1100 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1109,7 +1130,6 @@ CONFIG_USB_STORAGE=y | |||
| 1109 | # CONFIG_USB_LED is not set | 1130 | # CONFIG_USB_LED is not set |
| 1110 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1131 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1111 | # CONFIG_USB_CYTHERM is not set | 1132 | # CONFIG_USB_CYTHERM is not set |
| 1112 | # CONFIG_USB_PHIDGET is not set | ||
| 1113 | # CONFIG_USB_IDMOUSE is not set | 1133 | # CONFIG_USB_IDMOUSE is not set |
| 1114 | # CONFIG_USB_FTDI_ELAN is not set | 1134 | # CONFIG_USB_FTDI_ELAN is not set |
| 1115 | # CONFIG_USB_APPLEDISPLAY is not set | 1135 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1121,6 +1141,11 @@ CONFIG_USB_TEST=m | |||
| 1121 | # CONFIG_USB_ISIGHTFW is not set | 1141 | # CONFIG_USB_ISIGHTFW is not set |
| 1122 | # CONFIG_USB_VST is not set | 1142 | # CONFIG_USB_VST is not set |
| 1123 | # CONFIG_USB_GADGET is not set | 1143 | # CONFIG_USB_GADGET is not set |
| 1144 | |||
| 1145 | # | ||
| 1146 | # OTG and related infrastructure | ||
| 1147 | # | ||
| 1148 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1124 | # CONFIG_UWB is not set | 1149 | # CONFIG_UWB is not set |
| 1125 | # CONFIG_MMC is not set | 1150 | # CONFIG_MMC is not set |
| 1126 | # CONFIG_MEMSTICK is not set | 1151 | # CONFIG_MEMSTICK is not set |
| @@ -1182,6 +1207,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1182 | # | 1207 | # |
| 1183 | # CONFIG_RTC_DRV_SH is not set | 1208 | # CONFIG_RTC_DRV_SH is not set |
| 1184 | # CONFIG_DMADEVICES is not set | 1209 | # CONFIG_DMADEVICES is not set |
| 1210 | # CONFIG_AUXDISPLAY is not set | ||
| 1185 | # CONFIG_UIO is not set | 1211 | # CONFIG_UIO is not set |
| 1186 | # CONFIG_STAGING is not set | 1212 | # CONFIG_STAGING is not set |
| 1187 | 1213 | ||
| @@ -1204,6 +1230,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1204 | CONFIG_FILE_LOCKING=y | 1230 | CONFIG_FILE_LOCKING=y |
| 1205 | # CONFIG_XFS_FS is not set | 1231 | # CONFIG_XFS_FS is not set |
| 1206 | # CONFIG_OCFS2_FS is not set | 1232 | # CONFIG_OCFS2_FS is not set |
| 1233 | # CONFIG_BTRFS_FS is not set | ||
| 1207 | CONFIG_DNOTIFY=y | 1234 | CONFIG_DNOTIFY=y |
| 1208 | CONFIG_INOTIFY=y | 1235 | CONFIG_INOTIFY=y |
| 1209 | CONFIG_INOTIFY_USER=y | 1236 | CONFIG_INOTIFY_USER=y |
| @@ -1253,6 +1280,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1253 | # CONFIG_EFS_FS is not set | 1280 | # CONFIG_EFS_FS is not set |
| 1254 | # CONFIG_JFFS2_FS is not set | 1281 | # CONFIG_JFFS2_FS is not set |
| 1255 | # CONFIG_CRAMFS is not set | 1282 | # CONFIG_CRAMFS is not set |
| 1283 | # CONFIG_SQUASHFS is not set | ||
| 1256 | # CONFIG_VXFS_FS is not set | 1284 | # CONFIG_VXFS_FS is not set |
| 1257 | CONFIG_MINIX_FS=y | 1285 | CONFIG_MINIX_FS=y |
| 1258 | # CONFIG_OMFS_FS is not set | 1286 | # CONFIG_OMFS_FS is not set |
| @@ -1277,7 +1305,6 @@ CONFIG_EXPORTFS=y | |||
| 1277 | CONFIG_NFS_COMMON=y | 1305 | CONFIG_NFS_COMMON=y |
| 1278 | CONFIG_SUNRPC=y | 1306 | CONFIG_SUNRPC=y |
| 1279 | CONFIG_SUNRPC_GSS=y | 1307 | CONFIG_SUNRPC_GSS=y |
| 1280 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1281 | CONFIG_RPCSEC_GSS_KRB5=y | 1308 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1282 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1309 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1283 | # CONFIG_SMB_FS is not set | 1310 | # CONFIG_SMB_FS is not set |
| @@ -1382,6 +1409,7 @@ CONFIG_DEBUG_PREEMPT=y | |||
| 1382 | # CONFIG_FAULT_INJECTION is not set | 1409 | # CONFIG_FAULT_INJECTION is not set |
| 1383 | # CONFIG_LATENCYTOP is not set | 1410 | # CONFIG_LATENCYTOP is not set |
| 1384 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1411 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1412 | # CONFIG_PAGE_POISONING is not set | ||
| 1385 | CONFIG_HAVE_FUNCTION_TRACER=y | 1413 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1386 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1414 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1387 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1415 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -1397,7 +1425,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1397 | # CONFIG_BOOT_TRACER is not set | 1425 | # CONFIG_BOOT_TRACER is not set |
| 1398 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1399 | # CONFIG_STACK_TRACER is not set | 1427 | # CONFIG_STACK_TRACER is not set |
| 1400 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1401 | # CONFIG_SAMPLES is not set | 1428 | # CONFIG_SAMPLES is not set |
| 1402 | CONFIG_HAVE_ARCH_KGDB=y | 1429 | CONFIG_HAVE_ARCH_KGDB=y |
| 1403 | # CONFIG_KGDB is not set | 1430 | # CONFIG_KGDB is not set |
| @@ -1433,10 +1460,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1433 | CONFIG_CRYPTO_HASH=y | 1460 | CONFIG_CRYPTO_HASH=y |
| 1434 | CONFIG_CRYPTO_HASH2=y | 1461 | CONFIG_CRYPTO_HASH2=y |
| 1435 | CONFIG_CRYPTO_RNG2=y | 1462 | CONFIG_CRYPTO_RNG2=y |
| 1463 | CONFIG_CRYPTO_PCOMP=y | ||
| 1436 | CONFIG_CRYPTO_MANAGER=y | 1464 | CONFIG_CRYPTO_MANAGER=y |
| 1437 | CONFIG_CRYPTO_MANAGER2=y | 1465 | CONFIG_CRYPTO_MANAGER2=y |
| 1438 | # CONFIG_CRYPTO_GF128MUL is not set | 1466 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1439 | # CONFIG_CRYPTO_NULL is not set | 1467 | # CONFIG_CRYPTO_NULL is not set |
| 1468 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1440 | # CONFIG_CRYPTO_CRYPTD is not set | 1469 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1441 | # CONFIG_CRYPTO_AUTHENC is not set | 1470 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1442 | # CONFIG_CRYPTO_TEST is not set | 1471 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1505,6 +1534,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1505 | # Compression | 1534 | # Compression |
| 1506 | # | 1535 | # |
| 1507 | # CONFIG_CRYPTO_DEFLATE is not set | 1536 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1537 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1508 | # CONFIG_CRYPTO_LZO is not set | 1538 | # CONFIG_CRYPTO_LZO is not set |
| 1509 | 1539 | ||
| 1510 | # | 1540 | # |
| @@ -1525,7 +1555,7 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1525 | CONFIG_CRC32=y | 1555 | CONFIG_CRC32=y |
| 1526 | # CONFIG_CRC7 is not set | 1556 | # CONFIG_CRC7 is not set |
| 1527 | # CONFIG_LIBCRC32C is not set | 1557 | # CONFIG_LIBCRC32C is not set |
| 1528 | CONFIG_PLIST=y | ||
| 1529 | CONFIG_HAS_IOMEM=y | 1558 | CONFIG_HAS_IOMEM=y |
| 1530 | CONFIG_HAS_IOPORT=y | 1559 | CONFIG_HAS_IOPORT=y |
| 1531 | CONFIG_HAS_DMA=y | 1560 | CONFIG_HAS_DMA=y |
| 1561 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/shmin_defconfig b/arch/sh/configs/shmin_defconfig index 8ba10e1e08cd..d695e9061874 100644 --- a/arch/sh/configs/shmin_defconfig +++ b/arch/sh/configs/shmin_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:09:00 2009 | 4 | # Thu Apr 2 19:19:03 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,13 +16,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | CONFIG_GENERIC_TIME=y | 16 | CONFIG_GENERIC_TIME=y |
| 17 | CONFIG_GENERIC_CLOCKEVENTS=y | 17 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 18 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 19 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 19 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 20 | CONFIG_STACKTRACE_SUPPORT=y | 20 | CONFIG_STACKTRACE_SUPPORT=y |
| 21 | CONFIG_LOCKDEP_SUPPORT=y | 21 | CONFIG_LOCKDEP_SUPPORT=y |
| 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 22 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 23 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 25 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 26 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 27 | 28 | ||
| 28 | # | 29 | # |
| @@ -39,15 +40,25 @@ CONFIG_LOCALVERSION_AUTO=y | |||
| 39 | # CONFIG_BSD_PROCESS_ACCT is not set | 40 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 40 | # CONFIG_TASKSTATS is not set | 41 | # CONFIG_TASKSTATS is not set |
| 41 | # CONFIG_AUDIT is not set | 42 | # CONFIG_AUDIT is not set |
| 43 | |||
| 44 | # | ||
| 45 | # RCU Subsystem | ||
| 46 | # | ||
| 47 | CONFIG_CLASSIC_RCU=y | ||
| 48 | # CONFIG_TREE_RCU is not set | ||
| 49 | # CONFIG_PREEMPT_RCU is not set | ||
| 50 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 51 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 42 | # CONFIG_IKCONFIG is not set | 52 | # CONFIG_IKCONFIG is not set |
| 43 | CONFIG_LOG_BUF_SHIFT=14 | 53 | CONFIG_LOG_BUF_SHIFT=14 |
| 44 | # CONFIG_CGROUPS is not set | ||
| 45 | # CONFIG_GROUP_SCHED is not set | 54 | # CONFIG_GROUP_SCHED is not set |
| 55 | # CONFIG_CGROUPS is not set | ||
| 46 | # CONFIG_RELAY is not set | 56 | # CONFIG_RELAY is not set |
| 47 | # CONFIG_NAMESPACES is not set | 57 | # CONFIG_NAMESPACES is not set |
| 48 | # CONFIG_BLK_DEV_INITRD is not set | 58 | # CONFIG_BLK_DEV_INITRD is not set |
| 49 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 59 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 50 | CONFIG_SYSCTL=y | 60 | CONFIG_SYSCTL=y |
| 61 | CONFIG_ANON_INODES=y | ||
| 51 | CONFIG_EMBEDDED=y | 62 | CONFIG_EMBEDDED=y |
| 52 | # CONFIG_UID16 is not set | 63 | # CONFIG_UID16 is not set |
| 53 | # CONFIG_SYSCTL_SYSCALL is not set | 64 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -56,10 +67,8 @@ CONFIG_EMBEDDED=y | |||
| 56 | CONFIG_PRINTK=y | 67 | CONFIG_PRINTK=y |
| 57 | # CONFIG_BUG is not set | 68 | # CONFIG_BUG is not set |
| 58 | # CONFIG_ELF_CORE is not set | 69 | # CONFIG_ELF_CORE is not set |
| 59 | CONFIG_COMPAT_BRK=y | ||
| 60 | # CONFIG_BASE_FULL is not set | 70 | # CONFIG_BASE_FULL is not set |
| 61 | # CONFIG_FUTEX is not set | 71 | # CONFIG_FUTEX is not set |
| 62 | CONFIG_ANON_INODES=y | ||
| 63 | # CONFIG_EPOLL is not set | 72 | # CONFIG_EPOLL is not set |
| 64 | CONFIG_SIGNALFD=y | 73 | CONFIG_SIGNALFD=y |
| 65 | CONFIG_TIMERFD=y | 74 | CONFIG_TIMERFD=y |
| @@ -67,6 +76,7 @@ CONFIG_EVENTFD=y | |||
| 67 | # CONFIG_SHMEM is not set | 76 | # CONFIG_SHMEM is not set |
| 68 | CONFIG_AIO=y | 77 | CONFIG_AIO=y |
| 69 | CONFIG_VM_EVENT_COUNTERS=y | 78 | CONFIG_VM_EVENT_COUNTERS=y |
| 79 | CONFIG_COMPAT_BRK=y | ||
| 70 | # CONFIG_SLAB is not set | 80 | # CONFIG_SLAB is not set |
| 71 | # CONFIG_SLUB is not set | 81 | # CONFIG_SLUB is not set |
| 72 | CONFIG_SLOB=y | 82 | CONFIG_SLOB=y |
| @@ -97,11 +107,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 97 | # CONFIG_DEFAULT_CFQ is not set | 107 | # CONFIG_DEFAULT_CFQ is not set |
| 98 | CONFIG_DEFAULT_NOOP=y | 108 | CONFIG_DEFAULT_NOOP=y |
| 99 | CONFIG_DEFAULT_IOSCHED="noop" | 109 | CONFIG_DEFAULT_IOSCHED="noop" |
| 100 | CONFIG_CLASSIC_RCU=y | ||
| 101 | # CONFIG_TREE_RCU is not set | ||
| 102 | # CONFIG_PREEMPT_RCU is not set | ||
| 103 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 104 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 105 | # CONFIG_FREEZER is not set | 110 | # CONFIG_FREEZER is not set |
| 106 | 111 | ||
| 107 | # | 112 | # |
| @@ -136,6 +141,7 @@ CONFIG_CPU_SUBTYPE_SH7706=y | |||
| 136 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 141 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 137 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 142 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 138 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 143 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 144 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 139 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 145 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 140 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 146 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 141 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 147 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -177,11 +183,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 177 | CONFIG_ZONE_DMA_FLAG=0 | 183 | CONFIG_ZONE_DMA_FLAG=0 |
| 178 | CONFIG_NR_QUICK=2 | 184 | CONFIG_NR_QUICK=2 |
| 179 | CONFIG_UNEVICTABLE_LRU=y | 185 | CONFIG_UNEVICTABLE_LRU=y |
| 186 | CONFIG_HAVE_MLOCK=y | ||
| 187 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 180 | 188 | ||
| 181 | # | 189 | # |
| 182 | # Cache configuration | 190 | # Cache configuration |
| 183 | # | 191 | # |
| 184 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 185 | CONFIG_CACHE_WRITEBACK=y | 192 | CONFIG_CACHE_WRITEBACK=y |
| 186 | # CONFIG_CACHE_WRITETHROUGH is not set | 193 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 187 | # CONFIG_CACHE_OFF is not set | 194 | # CONFIG_CACHE_OFF is not set |
| @@ -267,7 +274,6 @@ CONFIG_CMDLINE="console=ttySC1,115200 root=1f01 mtdparts=phys_mapped_flash:64k(f | |||
| 267 | # Executable file formats | 274 | # Executable file formats |
| 268 | # | 275 | # |
| 269 | CONFIG_BINFMT_ELF=y | 276 | CONFIG_BINFMT_ELF=y |
| 270 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
| 271 | # CONFIG_HAVE_AOUT is not set | 277 | # CONFIG_HAVE_AOUT is not set |
| 272 | # CONFIG_BINFMT_MISC is not set | 278 | # CONFIG_BINFMT_MISC is not set |
| 273 | 279 | ||
| @@ -281,7 +287,6 @@ CONFIG_NET=y | |||
| 281 | # | 287 | # |
| 282 | # Networking options | 288 | # Networking options |
| 283 | # | 289 | # |
| 284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 285 | # CONFIG_PACKET is not set | 290 | # CONFIG_PACKET is not set |
| 286 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
| 287 | CONFIG_XFRM=y | 292 | CONFIG_XFRM=y |
| @@ -335,6 +340,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 335 | # CONFIG_LAPB is not set | 340 | # CONFIG_LAPB is not set |
| 336 | # CONFIG_ECONET is not set | 341 | # CONFIG_ECONET is not set |
| 337 | # CONFIG_WAN_ROUTER is not set | 342 | # CONFIG_WAN_ROUTER is not set |
| 343 | # CONFIG_PHONET is not set | ||
| 338 | # CONFIG_NET_SCHED is not set | 344 | # CONFIG_NET_SCHED is not set |
| 339 | # CONFIG_DCB is not set | 345 | # CONFIG_DCB is not set |
| 340 | 346 | ||
| @@ -347,13 +353,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 347 | # CONFIG_IRDA is not set | 353 | # CONFIG_IRDA is not set |
| 348 | # CONFIG_BT is not set | 354 | # CONFIG_BT is not set |
| 349 | # CONFIG_AF_RXRPC is not set | 355 | # CONFIG_AF_RXRPC is not set |
| 350 | # CONFIG_PHONET is not set | ||
| 351 | CONFIG_WIRELESS=y | 356 | CONFIG_WIRELESS=y |
| 352 | # CONFIG_CFG80211 is not set | 357 | # CONFIG_CFG80211 is not set |
| 353 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 358 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 354 | # CONFIG_WIRELESS_EXT is not set | 359 | # CONFIG_WIRELESS_EXT is not set |
| 355 | # CONFIG_LIB80211 is not set | 360 | # CONFIG_LIB80211 is not set |
| 356 | # CONFIG_MAC80211 is not set | 361 | # CONFIG_MAC80211 is not set |
| 362 | # CONFIG_WIMAX is not set | ||
| 357 | # CONFIG_RFKILL is not set | 363 | # CONFIG_RFKILL is not set |
| 358 | # CONFIG_NET_9P is not set | 364 | # CONFIG_NET_9P is not set |
| 359 | 365 | ||
| @@ -419,9 +425,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 419 | # | 425 | # |
| 420 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 426 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 421 | CONFIG_MTD_PHYSMAP=y | 427 | CONFIG_MTD_PHYSMAP=y |
| 422 | CONFIG_MTD_PHYSMAP_START=0xa0000000 | 428 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
| 423 | CONFIG_MTD_PHYSMAP_LEN=0x80000 | ||
| 424 | CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | ||
| 425 | # CONFIG_MTD_PLATRAM is not set | 429 | # CONFIG_MTD_PLATRAM is not set |
| 426 | 430 | ||
| 427 | # | 431 | # |
| @@ -442,6 +446,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
| 442 | # CONFIG_MTD_ONENAND is not set | 446 | # CONFIG_MTD_ONENAND is not set |
| 443 | 447 | ||
| 444 | # | 448 | # |
| 449 | # LPDDR flash memory drivers | ||
| 450 | # | ||
| 451 | # CONFIG_MTD_LPDDR is not set | ||
| 452 | |||
| 453 | # | ||
| 445 | # UBI - Unsorted block images | 454 | # UBI - Unsorted block images |
| 446 | # | 455 | # |
| 447 | # CONFIG_MTD_UBI is not set | 456 | # CONFIG_MTD_UBI is not set |
| @@ -456,9 +465,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 456 | # CONFIG_ATA_OVER_ETH is not set | 465 | # CONFIG_ATA_OVER_ETH is not set |
| 457 | # CONFIG_BLK_DEV_HD is not set | 466 | # CONFIG_BLK_DEV_HD is not set |
| 458 | CONFIG_MISC_DEVICES=y | 467 | CONFIG_MISC_DEVICES=y |
| 459 | # CONFIG_EEPROM_93CX6 is not set | ||
| 460 | # CONFIG_ENCLOSURE_SERVICES is not set | 468 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 461 | # CONFIG_C2PORT is not set | 469 | # CONFIG_C2PORT is not set |
| 470 | |||
| 471 | # | ||
| 472 | # EEPROM support | ||
| 473 | # | ||
| 474 | # CONFIG_EEPROM_93CX6 is not set | ||
| 462 | CONFIG_HAVE_IDE=y | 475 | CONFIG_HAVE_IDE=y |
| 463 | # CONFIG_IDE is not set | 476 | # CONFIG_IDE is not set |
| 464 | 477 | ||
| @@ -472,6 +485,7 @@ CONFIG_HAVE_IDE=y | |||
| 472 | # CONFIG_ATA is not set | 485 | # CONFIG_ATA is not set |
| 473 | # CONFIG_MD is not set | 486 | # CONFIG_MD is not set |
| 474 | CONFIG_NETDEVICES=y | 487 | CONFIG_NETDEVICES=y |
| 488 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 475 | # CONFIG_DUMMY is not set | 489 | # CONFIG_DUMMY is not set |
| 476 | # CONFIG_BONDING is not set | 490 | # CONFIG_BONDING is not set |
| 477 | # CONFIG_MACVLAN is not set | 491 | # CONFIG_MACVLAN is not set |
| @@ -484,8 +498,10 @@ CONFIG_NET_ETHERNET=y | |||
| 484 | # CONFIG_AX88796 is not set | 498 | # CONFIG_AX88796 is not set |
| 485 | # CONFIG_STNIC is not set | 499 | # CONFIG_STNIC is not set |
| 486 | # CONFIG_SMC91X is not set | 500 | # CONFIG_SMC91X is not set |
| 501 | # CONFIG_ETHOC is not set | ||
| 487 | # CONFIG_SMC911X is not set | 502 | # CONFIG_SMC911X is not set |
| 488 | # CONFIG_SMSC911X is not set | 503 | # CONFIG_SMSC911X is not set |
| 504 | # CONFIG_DNET is not set | ||
| 489 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 505 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 490 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 506 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 491 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 507 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -502,7 +518,10 @@ CONFIG_NETDEV_10000=y | |||
| 502 | # | 518 | # |
| 503 | # CONFIG_WLAN_PRE80211 is not set | 519 | # CONFIG_WLAN_PRE80211 is not set |
| 504 | # CONFIG_WLAN_80211 is not set | 520 | # CONFIG_WLAN_80211 is not set |
| 505 | # CONFIG_IWLWIFI_LEDS is not set | 521 | |
| 522 | # | ||
| 523 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 524 | # | ||
| 506 | # CONFIG_WAN is not set | 525 | # CONFIG_WAN is not set |
| 507 | # CONFIG_PPP is not set | 526 | # CONFIG_PPP is not set |
| 508 | # CONFIG_SLIP is not set | 527 | # CONFIG_SLIP is not set |
| @@ -549,6 +568,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 549 | CONFIG_LEGACY_PTY_COUNT=256 | 568 | CONFIG_LEGACY_PTY_COUNT=256 |
| 550 | # CONFIG_IPMI_HANDLER is not set | 569 | # CONFIG_IPMI_HANDLER is not set |
| 551 | CONFIG_HW_RANDOM=y | 570 | CONFIG_HW_RANDOM=y |
| 571 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 552 | # CONFIG_R3964 is not set | 572 | # CONFIG_R3964 is not set |
| 553 | # CONFIG_RAW_DRIVER is not set | 573 | # CONFIG_RAW_DRIVER is not set |
| 554 | # CONFIG_TCG_TPM is not set | 574 | # CONFIG_TCG_TPM is not set |
| @@ -618,15 +638,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 618 | # | 638 | # |
| 619 | 639 | ||
| 620 | # | 640 | # |
| 621 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 641 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 622 | # | 642 | # |
| 623 | # CONFIG_USB_GADGET is not set | 643 | # CONFIG_USB_GADGET is not set |
| 644 | |||
| 645 | # | ||
| 646 | # OTG and related infrastructure | ||
| 647 | # | ||
| 624 | # CONFIG_MMC is not set | 648 | # CONFIG_MMC is not set |
| 625 | # CONFIG_MEMSTICK is not set | 649 | # CONFIG_MEMSTICK is not set |
| 626 | # CONFIG_NEW_LEDS is not set | 650 | # CONFIG_NEW_LEDS is not set |
| 627 | # CONFIG_ACCESSIBILITY is not set | 651 | # CONFIG_ACCESSIBILITY is not set |
| 628 | # CONFIG_RTC_CLASS is not set | 652 | # CONFIG_RTC_CLASS is not set |
| 629 | # CONFIG_DMADEVICES is not set | 653 | # CONFIG_DMADEVICES is not set |
| 654 | # CONFIG_AUXDISPLAY is not set | ||
| 630 | # CONFIG_UIO is not set | 655 | # CONFIG_UIO is not set |
| 631 | # CONFIG_STAGING is not set | 656 | # CONFIG_STAGING is not set |
| 632 | 657 | ||
| @@ -641,6 +666,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 641 | # CONFIG_FS_POSIX_ACL is not set | 666 | # CONFIG_FS_POSIX_ACL is not set |
| 642 | CONFIG_FILE_LOCKING=y | 667 | CONFIG_FILE_LOCKING=y |
| 643 | # CONFIG_XFS_FS is not set | 668 | # CONFIG_XFS_FS is not set |
| 669 | # CONFIG_BTRFS_FS is not set | ||
| 644 | # CONFIG_DNOTIFY is not set | 670 | # CONFIG_DNOTIFY is not set |
| 645 | # CONFIG_INOTIFY is not set | 671 | # CONFIG_INOTIFY is not set |
| 646 | # CONFIG_QUOTA is not set | 672 | # CONFIG_QUOTA is not set |
| @@ -683,6 +709,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 683 | # CONFIG_EFS_FS is not set | 709 | # CONFIG_EFS_FS is not set |
| 684 | # CONFIG_JFFS2_FS is not set | 710 | # CONFIG_JFFS2_FS is not set |
| 685 | CONFIG_CRAMFS=y | 711 | CONFIG_CRAMFS=y |
| 712 | # CONFIG_SQUASHFS is not set | ||
| 686 | # CONFIG_VXFS_FS is not set | 713 | # CONFIG_VXFS_FS is not set |
| 687 | # CONFIG_MINIX_FS is not set | 714 | # CONFIG_MINIX_FS is not set |
| 688 | # CONFIG_OMFS_FS is not set | 715 | # CONFIG_OMFS_FS is not set |
| @@ -702,7 +729,6 @@ CONFIG_LOCKD=y | |||
| 702 | CONFIG_LOCKD_V4=y | 729 | CONFIG_LOCKD_V4=y |
| 703 | CONFIG_NFS_COMMON=y | 730 | CONFIG_NFS_COMMON=y |
| 704 | CONFIG_SUNRPC=y | 731 | CONFIG_SUNRPC=y |
| 705 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 706 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 732 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 707 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 733 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 708 | # CONFIG_SMB_FS is not set | 734 | # CONFIG_SMB_FS is not set |
| @@ -740,7 +766,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 740 | # | 766 | # |
| 741 | # Tracers | 767 | # Tracers |
| 742 | # | 768 | # |
| 743 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 744 | # CONFIG_SAMPLES is not set | 769 | # CONFIG_SAMPLES is not set |
| 745 | CONFIG_HAVE_ARCH_KGDB=y | 770 | CONFIG_HAVE_ARCH_KGDB=y |
| 746 | CONFIG_SH_STANDARD_BIOS=y | 771 | CONFIG_SH_STANDARD_BIOS=y |
| @@ -831,6 +856,7 @@ CONFIG_CRYPTO=y | |||
| 831 | # Compression | 856 | # Compression |
| 832 | # | 857 | # |
| 833 | # CONFIG_CRYPTO_DEFLATE is not set | 858 | # CONFIG_CRYPTO_DEFLATE is not set |
| 859 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 834 | # CONFIG_CRYPTO_LZO is not set | 860 | # CONFIG_CRYPTO_LZO is not set |
| 835 | 861 | ||
| 836 | # | 862 | # |
| @@ -855,3 +881,4 @@ CONFIG_ZLIB_INFLATE=y | |||
| 855 | CONFIG_HAS_IOMEM=y | 881 | CONFIG_HAS_IOMEM=y |
| 856 | CONFIG_HAS_IOPORT=y | 882 | CONFIG_HAS_IOPORT=y |
| 857 | CONFIG_HAS_DMA=y | 883 | CONFIG_HAS_DMA=y |
| 884 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/shx3_defconfig b/arch/sh/configs/shx3_defconfig index ed90a7e81099..e3651f574399 100644 --- a/arch/sh/configs/shx3_defconfig +++ b/arch/sh/configs/shx3_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:10:57 2009 | 4 | # Thu Apr 2 19:20:54 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -19,7 +19,7 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 19 | CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y | 19 | CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y |
| 20 | CONFIG_GENERIC_LOCKBREAK=y | 20 | CONFIG_GENERIC_LOCKBREAK=y |
| 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 22 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 23 | CONFIG_SYS_SUPPORTS_SMP=y | 23 | CONFIG_SYS_SUPPORTS_SMP=y |
| 24 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 25 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
| @@ -27,6 +27,7 @@ CONFIG_LOCKDEP_SUPPORT=y | |||
| 27 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 28 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 28 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 31 | 32 | ||
| 32 | # | 33 | # |
| @@ -47,24 +48,35 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 47 | CONFIG_AUDIT=y | 48 | CONFIG_AUDIT=y |
| 48 | CONFIG_AUDITSYSCALL=y | 49 | CONFIG_AUDITSYSCALL=y |
| 49 | CONFIG_AUDIT_TREE=y | 50 | CONFIG_AUDIT_TREE=y |
| 51 | |||
| 52 | # | ||
| 53 | # RCU Subsystem | ||
| 54 | # | ||
| 55 | # CONFIG_CLASSIC_RCU is not set | ||
| 56 | # CONFIG_TREE_RCU is not set | ||
| 57 | CONFIG_PREEMPT_RCU=y | ||
| 58 | CONFIG_RCU_TRACE=y | ||
| 59 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 60 | CONFIG_PREEMPT_RCU_TRACE=y | ||
| 50 | CONFIG_IKCONFIG=y | 61 | CONFIG_IKCONFIG=y |
| 51 | CONFIG_IKCONFIG_PROC=y | 62 | CONFIG_IKCONFIG_PROC=y |
| 52 | CONFIG_LOG_BUF_SHIFT=14 | 63 | CONFIG_LOG_BUF_SHIFT=14 |
| 64 | CONFIG_GROUP_SCHED=y | ||
| 65 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 66 | CONFIG_RT_GROUP_SCHED=y | ||
| 67 | CONFIG_USER_SCHED=y | ||
| 68 | # CONFIG_CGROUP_SCHED is not set | ||
| 53 | CONFIG_CGROUPS=y | 69 | CONFIG_CGROUPS=y |
| 54 | # CONFIG_CGROUP_DEBUG is not set | 70 | # CONFIG_CGROUP_DEBUG is not set |
| 55 | CONFIG_CGROUP_NS=y | 71 | CONFIG_CGROUP_NS=y |
| 56 | CONFIG_CGROUP_FREEZER=y | 72 | CONFIG_CGROUP_FREEZER=y |
| 57 | CONFIG_CGROUP_DEVICE=y | 73 | CONFIG_CGROUP_DEVICE=y |
| 58 | # CONFIG_CPUSETS is not set | 74 | # CONFIG_CPUSETS is not set |
| 59 | CONFIG_GROUP_SCHED=y | ||
| 60 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 61 | CONFIG_RT_GROUP_SCHED=y | ||
| 62 | CONFIG_USER_SCHED=y | ||
| 63 | # CONFIG_CGROUP_SCHED is not set | ||
| 64 | CONFIG_CGROUP_CPUACCT=y | 75 | CONFIG_CGROUP_CPUACCT=y |
| 65 | CONFIG_RESOURCE_COUNTERS=y | 76 | CONFIG_RESOURCE_COUNTERS=y |
| 66 | CONFIG_MM_OWNER=y | ||
| 67 | CONFIG_CGROUP_MEM_RES_CTLR=y | 77 | CONFIG_CGROUP_MEM_RES_CTLR=y |
| 78 | # CONFIG_CGROUP_MEM_RES_CTLR_SWAP is not set | ||
| 79 | CONFIG_MM_OWNER=y | ||
| 68 | CONFIG_SYSFS_DEPRECATED=y | 80 | CONFIG_SYSFS_DEPRECATED=y |
| 69 | CONFIG_SYSFS_DEPRECATED_V2=y | 81 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 70 | CONFIG_RELAY=y | 82 | CONFIG_RELAY=y |
| @@ -73,24 +85,23 @@ CONFIG_UTS_NS=y | |||
| 73 | CONFIG_IPC_NS=y | 85 | CONFIG_IPC_NS=y |
| 74 | CONFIG_USER_NS=y | 86 | CONFIG_USER_NS=y |
| 75 | CONFIG_PID_NS=y | 87 | CONFIG_PID_NS=y |
| 88 | # CONFIG_NET_NS is not set | ||
| 76 | # CONFIG_BLK_DEV_INITRD is not set | 89 | # CONFIG_BLK_DEV_INITRD is not set |
| 77 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 78 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 92 | CONFIG_ANON_INODES=y | ||
| 79 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 80 | CONFIG_UID16=y | 94 | CONFIG_UID16=y |
| 81 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 82 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 83 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 84 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 85 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 86 | CONFIG_HOTPLUG=y | 99 | CONFIG_HOTPLUG=y |
| 87 | CONFIG_PRINTK=y | 100 | CONFIG_PRINTK=y |
| 88 | CONFIG_BUG=y | 101 | CONFIG_BUG=y |
| 89 | CONFIG_ELF_CORE=y | 102 | CONFIG_ELF_CORE=y |
| 90 | CONFIG_COMPAT_BRK=y | ||
| 91 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 92 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| 93 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EPOLL=y | 105 | CONFIG_EPOLL=y |
| 95 | CONFIG_SIGNALFD=y | 106 | CONFIG_SIGNALFD=y |
| 96 | CONFIG_TIMERFD=y | 107 | CONFIG_TIMERFD=y |
| @@ -98,6 +109,7 @@ CONFIG_EVENTFD=y | |||
| 98 | CONFIG_SHMEM=y | 109 | CONFIG_SHMEM=y |
| 99 | CONFIG_AIO=y | 110 | CONFIG_AIO=y |
| 100 | CONFIG_VM_EVENT_COUNTERS=y | 111 | CONFIG_VM_EVENT_COUNTERS=y |
| 112 | CONFIG_COMPAT_BRK=y | ||
| 101 | # CONFIG_SLAB is not set | 113 | # CONFIG_SLAB is not set |
| 102 | # CONFIG_SLUB is not set | 114 | # CONFIG_SLUB is not set |
| 103 | CONFIG_SLOB=y | 115 | CONFIG_SLOB=y |
| @@ -142,12 +154,6 @@ CONFIG_DEFAULT_AS=y | |||
| 142 | # CONFIG_DEFAULT_CFQ is not set | 154 | # CONFIG_DEFAULT_CFQ is not set |
| 143 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
| 144 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 156 | 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 | 157 | CONFIG_FREEZER=y |
| 152 | 158 | ||
| 153 | # | 159 | # |
| @@ -184,6 +190,7 @@ CONFIG_CPU_SHX3=y | |||
| 184 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 190 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 185 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 191 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 186 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 192 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 193 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 187 | CONFIG_CPU_SUBTYPE_SHX3=y | 194 | CONFIG_CPU_SUBTYPE_SHX3=y |
| 188 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 195 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 189 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 196 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -240,11 +247,12 @@ CONFIG_MIGRATION=y | |||
| 240 | CONFIG_ZONE_DMA_FLAG=0 | 247 | CONFIG_ZONE_DMA_FLAG=0 |
| 241 | CONFIG_NR_QUICK=2 | 248 | CONFIG_NR_QUICK=2 |
| 242 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
| 250 | CONFIG_HAVE_MLOCK=y | ||
| 251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 243 | 252 | ||
| 244 | # | 253 | # |
| 245 | # Cache configuration | 254 | # Cache configuration |
| 246 | # | 255 | # |
| 247 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 248 | CONFIG_CACHE_WRITEBACK=y | 256 | CONFIG_CACHE_WRITEBACK=y |
| 249 | # CONFIG_CACHE_WRITETHROUGH is not set | 257 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 250 | # CONFIG_CACHE_OFF is not set | 258 | # CONFIG_CACHE_OFF is not set |
| @@ -361,8 +369,6 @@ CONFIG_NET=y | |||
| 361 | # | 369 | # |
| 362 | # Networking options | 370 | # Networking options |
| 363 | # | 371 | # |
| 364 | # CONFIG_NET_NS is not set | ||
| 365 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 366 | # CONFIG_PACKET is not set | 372 | # CONFIG_PACKET is not set |
| 367 | # CONFIG_UNIX is not set | 373 | # CONFIG_UNIX is not set |
| 368 | CONFIG_XFRM=y | 374 | CONFIG_XFRM=y |
| @@ -434,6 +440,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 434 | # CONFIG_LAPB is not set | 440 | # CONFIG_LAPB is not set |
| 435 | # CONFIG_ECONET is not set | 441 | # CONFIG_ECONET is not set |
| 436 | # CONFIG_WAN_ROUTER is not set | 442 | # CONFIG_WAN_ROUTER is not set |
| 443 | # CONFIG_PHONET is not set | ||
| 437 | # CONFIG_NET_SCHED is not set | 444 | # CONFIG_NET_SCHED is not set |
| 438 | # CONFIG_DCB is not set | 445 | # CONFIG_DCB is not set |
| 439 | 446 | ||
| @@ -442,6 +449,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 442 | # | 449 | # |
| 443 | # CONFIG_NET_PKTGEN is not set | 450 | # CONFIG_NET_PKTGEN is not set |
| 444 | # CONFIG_NET_TCPPROBE is not set | 451 | # CONFIG_NET_TCPPROBE is not set |
| 452 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 445 | # CONFIG_HAMRADIO is not set | 453 | # CONFIG_HAMRADIO is not set |
| 446 | CONFIG_CAN=m | 454 | CONFIG_CAN=m |
| 447 | CONFIG_CAN_RAW=m | 455 | CONFIG_CAN_RAW=m |
| @@ -455,8 +463,8 @@ CONFIG_CAN_VCAN=m | |||
| 455 | # CONFIG_IRDA is not set | 463 | # CONFIG_IRDA is not set |
| 456 | # CONFIG_BT is not set | 464 | # CONFIG_BT is not set |
| 457 | # CONFIG_AF_RXRPC is not set | 465 | # CONFIG_AF_RXRPC is not set |
| 458 | # CONFIG_PHONET is not set | ||
| 459 | # CONFIG_WIRELESS is not set | 466 | # CONFIG_WIRELESS is not set |
| 467 | # CONFIG_WIMAX is not set | ||
| 460 | # CONFIG_RFKILL is not set | 468 | # CONFIG_RFKILL is not set |
| 461 | # CONFIG_NET_9P is not set | 469 | # CONFIG_NET_9P is not set |
| 462 | 470 | ||
| @@ -490,10 +498,18 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 490 | # CONFIG_ATA_OVER_ETH is not set | 498 | # CONFIG_ATA_OVER_ETH is not set |
| 491 | # CONFIG_BLK_DEV_HD is not set | 499 | # CONFIG_BLK_DEV_HD is not set |
| 492 | CONFIG_MISC_DEVICES=y | 500 | CONFIG_MISC_DEVICES=y |
| 493 | # CONFIG_EEPROM_93CX6 is not set | ||
| 494 | # CONFIG_ICS932S401 is not set | 501 | # CONFIG_ICS932S401 is not set |
| 495 | # CONFIG_ENCLOSURE_SERVICES is not set | 502 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 503 | # CONFIG_ISL29003 is not set | ||
| 496 | # CONFIG_C2PORT is not set | 504 | # CONFIG_C2PORT is not set |
| 505 | |||
| 506 | # | ||
| 507 | # EEPROM support | ||
| 508 | # | ||
| 509 | # CONFIG_EEPROM_AT24 is not set | ||
| 510 | # CONFIG_EEPROM_AT25 is not set | ||
| 511 | # CONFIG_EEPROM_LEGACY is not set | ||
| 512 | # CONFIG_EEPROM_93CX6 is not set | ||
| 497 | CONFIG_HAVE_IDE=y | 513 | CONFIG_HAVE_IDE=y |
| 498 | # CONFIG_IDE is not set | 514 | # CONFIG_IDE is not set |
| 499 | 515 | ||
| @@ -539,6 +555,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 539 | # CONFIG_LIBFC is not set | 555 | # CONFIG_LIBFC is not set |
| 540 | # CONFIG_SCSI_DEBUG is not set | 556 | # CONFIG_SCSI_DEBUG is not set |
| 541 | # CONFIG_SCSI_DH is not set | 557 | # CONFIG_SCSI_DH is not set |
| 558 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 542 | CONFIG_ATA=y | 559 | CONFIG_ATA=y |
| 543 | # CONFIG_ATA_NONSTANDARD is not set | 560 | # CONFIG_ATA_NONSTANDARD is not set |
| 544 | CONFIG_SATA_PMP=y | 561 | CONFIG_SATA_PMP=y |
| @@ -547,6 +564,7 @@ CONFIG_ATA_SFF=y | |||
| 547 | CONFIG_PATA_PLATFORM=y | 564 | CONFIG_PATA_PLATFORM=y |
| 548 | # CONFIG_MD is not set | 565 | # CONFIG_MD is not set |
| 549 | CONFIG_NETDEVICES=y | 566 | CONFIG_NETDEVICES=y |
| 567 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 550 | # CONFIG_DUMMY is not set | 568 | # CONFIG_DUMMY is not set |
| 551 | # CONFIG_BONDING is not set | 569 | # CONFIG_BONDING is not set |
| 552 | # CONFIG_MACVLAN is not set | 570 | # CONFIG_MACVLAN is not set |
| @@ -560,8 +578,10 @@ CONFIG_MII=y | |||
| 560 | # CONFIG_STNIC is not set | 578 | # CONFIG_STNIC is not set |
| 561 | CONFIG_SMC91X=y | 579 | CONFIG_SMC91X=y |
| 562 | # CONFIG_ENC28J60 is not set | 580 | # CONFIG_ENC28J60 is not set |
| 581 | # CONFIG_ETHOC is not set | ||
| 563 | # CONFIG_SMC911X is not set | 582 | # CONFIG_SMC911X is not set |
| 564 | # CONFIG_SMSC911X is not set | 583 | # CONFIG_SMSC911X is not set |
| 584 | # CONFIG_DNET is not set | ||
| 565 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 585 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 566 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 586 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 567 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 587 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -578,7 +598,10 @@ CONFIG_SMC91X=y | |||
| 578 | # | 598 | # |
| 579 | # CONFIG_WLAN_PRE80211 is not set | 599 | # CONFIG_WLAN_PRE80211 is not set |
| 580 | # CONFIG_WLAN_80211 is not set | 600 | # CONFIG_WLAN_80211 is not set |
| 581 | # CONFIG_IWLWIFI_LEDS is not set | 601 | |
| 602 | # | ||
| 603 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 604 | # | ||
| 582 | 605 | ||
| 583 | # | 606 | # |
| 584 | # USB Network Adapters | 607 | # USB Network Adapters |
| @@ -670,12 +693,9 @@ CONFIG_I2C_HELPER_AUTO=y | |||
| 670 | # Miscellaneous I2C Chip support | 693 | # Miscellaneous I2C Chip support |
| 671 | # | 694 | # |
| 672 | # CONFIG_DS1682 is not set | 695 | # CONFIG_DS1682 is not set |
| 673 | # CONFIG_EEPROM_AT24 is not set | ||
| 674 | # CONFIG_EEPROM_LEGACY is not set | ||
| 675 | # CONFIG_SENSORS_PCF8574 is not set | 696 | # CONFIG_SENSORS_PCF8574 is not set |
| 676 | # CONFIG_PCF8575 is not set | 697 | # CONFIG_PCF8575 is not set |
| 677 | # CONFIG_SENSORS_PCA9539 is not set | 698 | # CONFIG_SENSORS_PCA9539 is not set |
| 678 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 679 | # CONFIG_SENSORS_MAX6875 is not set | 699 | # CONFIG_SENSORS_MAX6875 is not set |
| 680 | # CONFIG_SENSORS_TSL2550 is not set | 700 | # CONFIG_SENSORS_TSL2550 is not set |
| 681 | # CONFIG_I2C_DEBUG_CORE is not set | 701 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -695,7 +715,6 @@ CONFIG_SPI_MASTER=y | |||
| 695 | # | 715 | # |
| 696 | # SPI Protocol Masters | 716 | # SPI Protocol Masters |
| 697 | # | 717 | # |
| 698 | # CONFIG_EEPROM_AT25 is not set | ||
| 699 | # CONFIG_SPI_SPIDEV is not set | 718 | # CONFIG_SPI_SPIDEV is not set |
| 700 | # CONFIG_SPI_TLE62X0 is not set | 719 | # CONFIG_SPI_TLE62X0 is not set |
| 701 | # CONFIG_W1 is not set | 720 | # CONFIG_W1 is not set |
| @@ -732,6 +751,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 732 | # CONFIG_MFD_TMIO is not set | 751 | # CONFIG_MFD_TMIO is not set |
| 733 | # CONFIG_MFD_WM8400 is not set | 752 | # CONFIG_MFD_WM8400 is not set |
| 734 | # CONFIG_MFD_WM8350_I2C is not set | 753 | # CONFIG_MFD_WM8350_I2C is not set |
| 754 | # CONFIG_MFD_PCF50633 is not set | ||
| 735 | # CONFIG_REGULATOR is not set | 755 | # CONFIG_REGULATOR is not set |
| 736 | 756 | ||
| 737 | # | 757 | # |
| @@ -788,7 +808,9 @@ CONFIG_USB_MON=y | |||
| 788 | # USB Host Controller Drivers | 808 | # USB Host Controller Drivers |
| 789 | # | 809 | # |
| 790 | # CONFIG_USB_C67X00_HCD is not set | 810 | # CONFIG_USB_C67X00_HCD is not set |
| 811 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 791 | # CONFIG_USB_ISP116X_HCD is not set | 812 | # CONFIG_USB_ISP116X_HCD is not set |
| 813 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 792 | # CONFIG_USB_SL811_HCD is not set | 814 | # CONFIG_USB_SL811_HCD is not set |
| 793 | CONFIG_USB_R8A66597_HCD=m | 815 | CONFIG_USB_R8A66597_HCD=m |
| 794 | # CONFIG_USB_HWA_HCD is not set | 816 | # CONFIG_USB_HWA_HCD is not set |
| @@ -803,11 +825,11 @@ CONFIG_USB_R8A66597_HCD=m | |||
| 803 | # CONFIG_USB_TMC is not set | 825 | # CONFIG_USB_TMC is not set |
| 804 | 826 | ||
| 805 | # | 827 | # |
| 806 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 828 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 807 | # | 829 | # |
| 808 | 830 | ||
| 809 | # | 831 | # |
| 810 | # see USB_STORAGE Help for more information | 832 | # also be needed; see USB_STORAGE Help for more info |
| 811 | # | 833 | # |
| 812 | # CONFIG_USB_STORAGE is not set | 834 | # CONFIG_USB_STORAGE is not set |
| 813 | # CONFIG_USB_LIBUSUAL is not set | 835 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -837,7 +859,6 @@ CONFIG_USB_R8A66597_HCD=m | |||
| 837 | # CONFIG_USB_LED is not set | 859 | # CONFIG_USB_LED is not set |
| 838 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 860 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 839 | # CONFIG_USB_CYTHERM is not set | 861 | # CONFIG_USB_CYTHERM is not set |
| 840 | # CONFIG_USB_PHIDGET is not set | ||
| 841 | # CONFIG_USB_IDMOUSE is not set | 862 | # CONFIG_USB_IDMOUSE is not set |
| 842 | # CONFIG_USB_FTDI_ELAN is not set | 863 | # CONFIG_USB_FTDI_ELAN is not set |
| 843 | # CONFIG_USB_APPLEDISPLAY is not set | 864 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -860,10 +881,12 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 860 | # CONFIG_USB_GADGET_PXA25X is not set | 881 | # CONFIG_USB_GADGET_PXA25X is not set |
| 861 | # CONFIG_USB_GADGET_PXA27X is not set | 882 | # CONFIG_USB_GADGET_PXA27X is not set |
| 862 | # CONFIG_USB_GADGET_S3C2410 is not set | 883 | # CONFIG_USB_GADGET_S3C2410 is not set |
| 884 | # CONFIG_USB_GADGET_IMX is not set | ||
| 863 | CONFIG_USB_GADGET_M66592=y | 885 | CONFIG_USB_GADGET_M66592=y |
| 864 | CONFIG_USB_M66592=y | 886 | CONFIG_USB_M66592=y |
| 865 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 887 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
| 866 | # CONFIG_USB_GADGET_FSL_QE is not set | 888 | # CONFIG_USB_GADGET_FSL_QE is not set |
| 889 | # CONFIG_USB_GADGET_CI13XXX is not set | ||
| 867 | # CONFIG_USB_GADGET_NET2280 is not set | 890 | # CONFIG_USB_GADGET_NET2280 is not set |
| 868 | # CONFIG_USB_GADGET_GOKU is not set | 891 | # CONFIG_USB_GADGET_GOKU is not set |
| 869 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | 892 | # CONFIG_USB_GADGET_DUMMY_HCD is not set |
| @@ -876,6 +899,11 @@ CONFIG_USB_GADGET_DUALSPEED=y | |||
| 876 | # CONFIG_USB_MIDI_GADGET is not set | 899 | # CONFIG_USB_MIDI_GADGET is not set |
| 877 | # CONFIG_USB_G_PRINTER is not set | 900 | # CONFIG_USB_G_PRINTER is not set |
| 878 | # CONFIG_USB_CDC_COMPOSITE is not set | 901 | # CONFIG_USB_CDC_COMPOSITE is not set |
| 902 | |||
| 903 | # | ||
| 904 | # OTG and related infrastructure | ||
| 905 | # | ||
| 906 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 879 | # CONFIG_MMC is not set | 907 | # CONFIG_MMC is not set |
| 880 | # CONFIG_MEMSTICK is not set | 908 | # CONFIG_MEMSTICK is not set |
| 881 | # CONFIG_NEW_LEDS is not set | 909 | # CONFIG_NEW_LEDS is not set |
| @@ -942,6 +970,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 942 | # | 970 | # |
| 943 | CONFIG_RTC_DRV_SH=y | 971 | CONFIG_RTC_DRV_SH=y |
| 944 | # CONFIG_DMADEVICES is not set | 972 | # CONFIG_DMADEVICES is not set |
| 973 | # CONFIG_AUXDISPLAY is not set | ||
| 945 | CONFIG_UIO=m | 974 | CONFIG_UIO=m |
| 946 | # CONFIG_UIO_PDRV is not set | 975 | # CONFIG_UIO_PDRV is not set |
| 947 | # CONFIG_UIO_PDRV_GENIRQ is not set | 976 | # CONFIG_UIO_PDRV_GENIRQ is not set |
| @@ -969,6 +998,7 @@ CONFIG_FS_MBCACHE=y | |||
| 969 | CONFIG_FILE_LOCKING=y | 998 | CONFIG_FILE_LOCKING=y |
| 970 | # CONFIG_XFS_FS is not set | 999 | # CONFIG_XFS_FS is not set |
| 971 | # CONFIG_OCFS2_FS is not set | 1000 | # CONFIG_OCFS2_FS is not set |
| 1001 | # CONFIG_BTRFS_FS is not set | ||
| 972 | CONFIG_DNOTIFY=y | 1002 | CONFIG_DNOTIFY=y |
| 973 | CONFIG_INOTIFY=y | 1003 | CONFIG_INOTIFY=y |
| 974 | CONFIG_INOTIFY_USER=y | 1004 | CONFIG_INOTIFY_USER=y |
| @@ -1012,6 +1042,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1012 | # CONFIG_BFS_FS is not set | 1042 | # CONFIG_BFS_FS is not set |
| 1013 | # CONFIG_EFS_FS is not set | 1043 | # CONFIG_EFS_FS is not set |
| 1014 | # CONFIG_CRAMFS is not set | 1044 | # CONFIG_CRAMFS is not set |
| 1045 | # CONFIG_SQUASHFS is not set | ||
| 1015 | # CONFIG_VXFS_FS is not set | 1046 | # CONFIG_VXFS_FS is not set |
| 1016 | # CONFIG_MINIX_FS is not set | 1047 | # CONFIG_MINIX_FS is not set |
| 1017 | # CONFIG_OMFS_FS is not set | 1048 | # CONFIG_OMFS_FS is not set |
| @@ -1086,6 +1117,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1086 | # CONFIG_LKDTM is not set | 1117 | # CONFIG_LKDTM is not set |
| 1087 | # CONFIG_FAULT_INJECTION is not set | 1118 | # CONFIG_FAULT_INJECTION is not set |
| 1088 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1119 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
| 1120 | # CONFIG_PAGE_POISONING is not set | ||
| 1089 | CONFIG_NOP_TRACER=y | 1121 | CONFIG_NOP_TRACER=y |
| 1090 | CONFIG_HAVE_FUNCTION_TRACER=y | 1122 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1091 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1123 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| @@ -1105,7 +1137,7 @@ CONFIG_TRACING=y | |||
| 1105 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1137 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1106 | # CONFIG_STACK_TRACER is not set | 1138 | # CONFIG_STACK_TRACER is not set |
| 1107 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1139 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1108 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1140 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1109 | # CONFIG_SAMPLES is not set | 1141 | # CONFIG_SAMPLES is not set |
| 1110 | CONFIG_HAVE_ARCH_KGDB=y | 1142 | CONFIG_HAVE_ARCH_KGDB=y |
| 1111 | # CONFIG_KGDB is not set | 1143 | # CONFIG_KGDB is not set |
| @@ -1205,6 +1237,7 @@ CONFIG_CRYPTO=y | |||
| 1205 | # Compression | 1237 | # Compression |
| 1206 | # | 1238 | # |
| 1207 | # CONFIG_CRYPTO_DEFLATE is not set | 1239 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1240 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1208 | # CONFIG_CRYPTO_LZO is not set | 1241 | # CONFIG_CRYPTO_LZO is not set |
| 1209 | 1242 | ||
| 1210 | # | 1243 | # |
| @@ -1226,7 +1259,7 @@ CONFIG_CRC32=y | |||
| 1226 | # CONFIG_CRC7 is not set | 1259 | # CONFIG_CRC7 is not set |
| 1227 | # CONFIG_LIBCRC32C is not set | 1260 | # CONFIG_LIBCRC32C is not set |
| 1228 | CONFIG_AUDIT_GENERIC=y | 1261 | CONFIG_AUDIT_GENERIC=y |
| 1229 | CONFIG_PLIST=y | ||
| 1230 | CONFIG_HAS_IOMEM=y | 1262 | CONFIG_HAS_IOMEM=y |
| 1231 | CONFIG_HAS_IOPORT=y | 1263 | CONFIG_HAS_IOPORT=y |
| 1232 | CONFIG_HAS_DMA=y | 1264 | CONFIG_HAS_DMA=y |
| 1265 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/snapgear_defconfig b/arch/sh/configs/snapgear_defconfig index 98377e502650..6960f60bf52e 100644 --- a/arch/sh/configs/snapgear_defconfig +++ b/arch/sh/configs/snapgear_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:14:08 2009 | 4 | # Thu Apr 2 19:21:39 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -41,18 +42,32 @@ CONFIG_LOCALVERSION_AUTO=y | |||
| 41 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
| 43 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
| 45 | |||
| 46 | # | ||
| 47 | # RCU Subsystem | ||
| 48 | # | ||
| 49 | CONFIG_CLASSIC_RCU=y | ||
| 50 | # CONFIG_TREE_RCU is not set | ||
| 51 | # CONFIG_PREEMPT_RCU is not set | ||
| 52 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 44 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
| 45 | CONFIG_LOG_BUF_SHIFT=14 | 55 | CONFIG_LOG_BUF_SHIFT=14 |
| 46 | # CONFIG_CGROUPS is not set | ||
| 47 | # CONFIG_GROUP_SCHED is not set | 56 | # CONFIG_GROUP_SCHED is not set |
| 57 | # CONFIG_CGROUPS is not set | ||
| 48 | CONFIG_SYSFS_DEPRECATED=y | 58 | CONFIG_SYSFS_DEPRECATED=y |
| 49 | CONFIG_SYSFS_DEPRECATED_V2=y | 59 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 50 | # CONFIG_RELAY is not set | 60 | # CONFIG_RELAY is not set |
| 51 | # CONFIG_NAMESPACES is not set | 61 | # CONFIG_NAMESPACES is not set |
| 52 | CONFIG_BLK_DEV_INITRD=y | 62 | CONFIG_BLK_DEV_INITRD=y |
| 53 | CONFIG_INITRAMFS_SOURCE="" | 63 | CONFIG_INITRAMFS_SOURCE="" |
| 64 | CONFIG_RD_GZIP=y | ||
| 65 | # CONFIG_RD_BZIP2 is not set | ||
| 66 | # CONFIG_RD_LZMA is not set | ||
| 67 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 54 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 68 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 55 | CONFIG_SYSCTL=y | 69 | CONFIG_SYSCTL=y |
| 70 | CONFIG_ANON_INODES=y | ||
| 56 | CONFIG_EMBEDDED=y | 71 | CONFIG_EMBEDDED=y |
| 57 | CONFIG_UID16=y | 72 | CONFIG_UID16=y |
| 58 | # CONFIG_SYSCTL_SYSCALL is not set | 73 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -62,10 +77,8 @@ CONFIG_KALLSYMS=y | |||
| 62 | CONFIG_PRINTK=y | 77 | CONFIG_PRINTK=y |
| 63 | CONFIG_BUG=y | 78 | CONFIG_BUG=y |
| 64 | CONFIG_ELF_CORE=y | 79 | CONFIG_ELF_CORE=y |
| 65 | CONFIG_COMPAT_BRK=y | ||
| 66 | CONFIG_BASE_FULL=y | 80 | CONFIG_BASE_FULL=y |
| 67 | CONFIG_FUTEX=y | 81 | CONFIG_FUTEX=y |
| 68 | CONFIG_ANON_INODES=y | ||
| 69 | CONFIG_EPOLL=y | 82 | CONFIG_EPOLL=y |
| 70 | CONFIG_SIGNALFD=y | 83 | CONFIG_SIGNALFD=y |
| 71 | CONFIG_TIMERFD=y | 84 | CONFIG_TIMERFD=y |
| @@ -74,6 +87,7 @@ CONFIG_SHMEM=y | |||
| 74 | CONFIG_AIO=y | 87 | CONFIG_AIO=y |
| 75 | CONFIG_VM_EVENT_COUNTERS=y | 88 | CONFIG_VM_EVENT_COUNTERS=y |
| 76 | CONFIG_PCI_QUIRKS=y | 89 | CONFIG_PCI_QUIRKS=y |
| 90 | CONFIG_COMPAT_BRK=y | ||
| 77 | CONFIG_SLAB=y | 91 | CONFIG_SLAB=y |
| 78 | # CONFIG_SLUB is not set | 92 | # CONFIG_SLUB is not set |
| 79 | # CONFIG_SLOB is not set | 93 | # CONFIG_SLOB is not set |
| @@ -107,11 +121,6 @@ CONFIG_DEFAULT_AS=y | |||
| 107 | # CONFIG_DEFAULT_CFQ is not set | 121 | # CONFIG_DEFAULT_CFQ is not set |
| 108 | # CONFIG_DEFAULT_NOOP is not set | 122 | # CONFIG_DEFAULT_NOOP is not set |
| 109 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 123 | 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 is not set | 124 | # CONFIG_FREEZER is not set |
| 116 | 125 | ||
| 117 | # | 126 | # |
| @@ -146,6 +155,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 146 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 147 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 148 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 158 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 149 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 159 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 150 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 160 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 151 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 161 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -187,11 +197,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 187 | CONFIG_ZONE_DMA_FLAG=0 | 197 | CONFIG_ZONE_DMA_FLAG=0 |
| 188 | CONFIG_NR_QUICK=2 | 198 | CONFIG_NR_QUICK=2 |
| 189 | CONFIG_UNEVICTABLE_LRU=y | 199 | CONFIG_UNEVICTABLE_LRU=y |
| 200 | CONFIG_HAVE_MLOCK=y | ||
| 201 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 190 | 202 | ||
| 191 | # | 203 | # |
| 192 | # Cache configuration | 204 | # Cache configuration |
| 193 | # | 205 | # |
| 194 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 195 | CONFIG_CACHE_WRITEBACK=y | 206 | CONFIG_CACHE_WRITEBACK=y |
| 196 | # CONFIG_CACHE_WRITETHROUGH is not set | 207 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 197 | # CONFIG_CACHE_OFF is not set | 208 | # CONFIG_CACHE_OFF is not set |
| @@ -239,6 +250,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 239 | # | 250 | # |
| 240 | CONFIG_SH_DMA_API=y | 251 | CONFIG_SH_DMA_API=y |
| 241 | CONFIG_SH_DMA=y | 252 | CONFIG_SH_DMA=y |
| 253 | CONFIG_SH_DMA_IRQ_MULTI=y | ||
| 242 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 | 254 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
| 243 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 255 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 244 | 256 | ||
| @@ -288,6 +300,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 288 | # CONFIG_PCIEPORTBUS is not set | 300 | # CONFIG_PCIEPORTBUS is not set |
| 289 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 301 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 290 | CONFIG_PCI_LEGACY=y | 302 | CONFIG_PCI_LEGACY=y |
| 303 | # CONFIG_PCI_STUB is not set | ||
| 304 | # CONFIG_PCI_IOV is not set | ||
| 291 | 305 | ||
| 292 | # | 306 | # |
| 293 | # Executable file formats | 307 | # Executable file formats |
| @@ -307,7 +321,6 @@ CONFIG_NET=y | |||
| 307 | # | 321 | # |
| 308 | # Networking options | 322 | # Networking options |
| 309 | # | 323 | # |
| 310 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 311 | # CONFIG_PACKET is not set | 324 | # CONFIG_PACKET is not set |
| 312 | # CONFIG_UNIX is not set | 325 | # CONFIG_UNIX is not set |
| 313 | # CONFIG_NET_KEY is not set | 326 | # CONFIG_NET_KEY is not set |
| @@ -352,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 352 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 353 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 354 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 355 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 356 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 357 | 371 | ||
| @@ -364,13 +378,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 364 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 365 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 366 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 368 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 369 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 370 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 383 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 371 | # CONFIG_WIRELESS_EXT is not set | 384 | # CONFIG_WIRELESS_EXT is not set |
| 372 | # CONFIG_LIB80211 is not set | 385 | # CONFIG_LIB80211 is not set |
| 373 | # CONFIG_MAC80211 is not set | 386 | # CONFIG_MAC80211 is not set |
| 387 | # CONFIG_WIMAX is not set | ||
| 374 | # CONFIG_RFKILL is not set | 388 | # CONFIG_RFKILL is not set |
| 375 | # CONFIG_NET_9P is not set | 389 | # CONFIG_NET_9P is not set |
| 376 | 390 | ||
| @@ -464,6 +478,11 @@ CONFIG_MTD_PLATRAM=y | |||
| 464 | # CONFIG_MTD_ONENAND is not set | 478 | # CONFIG_MTD_ONENAND is not set |
| 465 | 479 | ||
| 466 | # | 480 | # |
| 481 | # LPDDR flash memory drivers | ||
| 482 | # | ||
| 483 | # CONFIG_MTD_LPDDR is not set | ||
| 484 | |||
| 485 | # | ||
| 467 | # UBI - Unsorted block images | 486 | # UBI - Unsorted block images |
| 468 | # | 487 | # |
| 469 | # CONFIG_MTD_UBI is not set | 488 | # CONFIG_MTD_UBI is not set |
| @@ -509,6 +528,7 @@ CONFIG_HAVE_IDE=y | |||
| 509 | # CONFIG_IEEE1394 is not set | 528 | # CONFIG_IEEE1394 is not set |
| 510 | # CONFIG_I2O is not set | 529 | # CONFIG_I2O is not set |
| 511 | CONFIG_NETDEVICES=y | 530 | CONFIG_NETDEVICES=y |
| 531 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 512 | # CONFIG_DUMMY is not set | 532 | # CONFIG_DUMMY is not set |
| 513 | # CONFIG_BONDING is not set | 533 | # CONFIG_BONDING is not set |
| 514 | # CONFIG_MACVLAN is not set | 534 | # CONFIG_MACVLAN is not set |
| @@ -526,8 +546,10 @@ CONFIG_MII=y | |||
| 526 | # CONFIG_CASSINI is not set | 546 | # CONFIG_CASSINI is not set |
| 527 | # CONFIG_NET_VENDOR_3COM is not set | 547 | # CONFIG_NET_VENDOR_3COM is not set |
| 528 | # CONFIG_SMC91X is not set | 548 | # CONFIG_SMC91X is not set |
| 549 | # CONFIG_ETHOC is not set | ||
| 529 | # CONFIG_SMC911X is not set | 550 | # CONFIG_SMC911X is not set |
| 530 | # CONFIG_SMSC911X is not set | 551 | # CONFIG_SMSC911X is not set |
| 552 | # CONFIG_DNET is not set | ||
| 531 | # CONFIG_NET_TULIP is not set | 553 | # CONFIG_NET_TULIP is not set |
| 532 | # CONFIG_HP100 is not set | 554 | # CONFIG_HP100 is not set |
| 533 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 555 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -571,7 +593,10 @@ CONFIG_8139TOO_PIO=y | |||
| 571 | # | 593 | # |
| 572 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
| 573 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
| 574 | # CONFIG_IWLWIFI_LEDS is not set | 596 | |
| 597 | # | ||
| 598 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 599 | # | ||
| 575 | # CONFIG_WAN is not set | 600 | # CONFIG_WAN is not set |
| 576 | # CONFIG_FDDI is not set | 601 | # CONFIG_FDDI is not set |
| 577 | # CONFIG_HIPPI is not set | 602 | # CONFIG_HIPPI is not set |
| @@ -711,6 +736,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 711 | # CONFIG_INFINIBAND is not set | 736 | # CONFIG_INFINIBAND is not set |
| 712 | # CONFIG_RTC_CLASS is not set | 737 | # CONFIG_RTC_CLASS is not set |
| 713 | # CONFIG_DMADEVICES is not set | 738 | # CONFIG_DMADEVICES is not set |
| 739 | # CONFIG_AUXDISPLAY is not set | ||
| 714 | # CONFIG_UIO is not set | 740 | # CONFIG_UIO is not set |
| 715 | # CONFIG_STAGING is not set | 741 | # CONFIG_STAGING is not set |
| 716 | 742 | ||
| @@ -728,6 +754,7 @@ CONFIG_EXT2_FS=y | |||
| 728 | CONFIG_FILE_LOCKING=y | 754 | CONFIG_FILE_LOCKING=y |
| 729 | # CONFIG_XFS_FS is not set | 755 | # CONFIG_XFS_FS is not set |
| 730 | # CONFIG_OCFS2_FS is not set | 756 | # CONFIG_OCFS2_FS is not set |
| 757 | # CONFIG_BTRFS_FS is not set | ||
| 731 | # CONFIG_DNOTIFY is not set | 758 | # CONFIG_DNOTIFY is not set |
| 732 | # CONFIG_INOTIFY is not set | 759 | # CONFIG_INOTIFY is not set |
| 733 | # CONFIG_QUOTA is not set | 760 | # CONFIG_QUOTA is not set |
| @@ -771,6 +798,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 771 | # CONFIG_EFS_FS is not set | 798 | # CONFIG_EFS_FS is not set |
| 772 | # CONFIG_JFFS2_FS is not set | 799 | # CONFIG_JFFS2_FS is not set |
| 773 | CONFIG_CRAMFS=y | 800 | CONFIG_CRAMFS=y |
| 801 | # CONFIG_SQUASHFS is not set | ||
| 774 | # CONFIG_VXFS_FS is not set | 802 | # CONFIG_VXFS_FS is not set |
| 775 | # CONFIG_MINIX_FS is not set | 803 | # CONFIG_MINIX_FS is not set |
| 776 | # CONFIG_OMFS_FS is not set | 804 | # CONFIG_OMFS_FS is not set |
| @@ -820,7 +848,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 820 | # | 848 | # |
| 821 | # Tracers | 849 | # Tracers |
| 822 | # | 850 | # |
| 823 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 824 | # CONFIG_SAMPLES is not set | 851 | # CONFIG_SAMPLES is not set |
| 825 | CONFIG_HAVE_ARCH_KGDB=y | 852 | CONFIG_HAVE_ARCH_KGDB=y |
| 826 | # CONFIG_SH_STANDARD_BIOS is not set | 853 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -849,7 +876,8 @@ CONFIG_CRC32=y | |||
| 849 | # CONFIG_CRC7 is not set | 876 | # CONFIG_CRC7 is not set |
| 850 | # CONFIG_LIBCRC32C is not set | 877 | # CONFIG_LIBCRC32C is not set |
| 851 | CONFIG_ZLIB_INFLATE=y | 878 | CONFIG_ZLIB_INFLATE=y |
| 852 | CONFIG_PLIST=y | 879 | CONFIG_DECOMPRESS_GZIP=y |
| 853 | CONFIG_HAS_IOMEM=y | 880 | CONFIG_HAS_IOMEM=y |
| 854 | CONFIG_HAS_IOPORT=y | 881 | CONFIG_HAS_IOPORT=y |
| 855 | CONFIG_HAS_DMA=y | 882 | CONFIG_HAS_DMA=y |
| 883 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/systemh_defconfig b/arch/sh/configs/systemh_defconfig index 72703bf57afa..7ea639bc5936 100644 --- a/arch/sh/configs/systemh_defconfig +++ b/arch/sh/configs/systemh_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:15:56 2009 | 4 | # Thu Apr 2 19:23:31 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,13 +17,14 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_STACKTRACE_SUPPORT=y | 21 | CONFIG_STACKTRACE_SUPPORT=y |
| 22 | CONFIG_LOCKDEP_SUPPORT=y | 22 | CONFIG_LOCKDEP_SUPPORT=y |
| 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 23 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 24 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 26 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 27 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 28 | 29 | ||
| 29 | # | 30 | # |
| @@ -38,18 +39,32 @@ CONFIG_LOCALVERSION_AUTO=y | |||
| 38 | CONFIG_SWAP=y | 39 | CONFIG_SWAP=y |
| 39 | # CONFIG_SYSVIPC is not set | 40 | # CONFIG_SYSVIPC is not set |
| 40 | # CONFIG_BSD_PROCESS_ACCT is not set | 41 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 42 | |||
| 43 | # | ||
| 44 | # RCU Subsystem | ||
| 45 | # | ||
| 46 | CONFIG_CLASSIC_RCU=y | ||
| 47 | # CONFIG_TREE_RCU is not set | ||
| 48 | # CONFIG_PREEMPT_RCU is not set | ||
| 49 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 50 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 41 | # CONFIG_IKCONFIG is not set | 51 | # CONFIG_IKCONFIG is not set |
| 42 | CONFIG_LOG_BUF_SHIFT=14 | 52 | CONFIG_LOG_BUF_SHIFT=14 |
| 43 | # CONFIG_CGROUPS is not set | ||
| 44 | # CONFIG_GROUP_SCHED is not set | 53 | # CONFIG_GROUP_SCHED is not set |
| 54 | # CONFIG_CGROUPS is not set | ||
| 45 | CONFIG_SYSFS_DEPRECATED=y | 55 | CONFIG_SYSFS_DEPRECATED=y |
| 46 | CONFIG_SYSFS_DEPRECATED_V2=y | 56 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 47 | # CONFIG_RELAY is not set | 57 | # CONFIG_RELAY is not set |
| 48 | # CONFIG_NAMESPACES is not set | 58 | # CONFIG_NAMESPACES is not set |
| 49 | CONFIG_BLK_DEV_INITRD=y | 59 | CONFIG_BLK_DEV_INITRD=y |
| 50 | CONFIG_INITRAMFS_SOURCE="" | 60 | CONFIG_INITRAMFS_SOURCE="" |
| 61 | CONFIG_RD_GZIP=y | ||
| 62 | # CONFIG_RD_BZIP2 is not set | ||
| 63 | # CONFIG_RD_LZMA is not set | ||
| 64 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 51 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 65 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 52 | CONFIG_SYSCTL=y | 66 | CONFIG_SYSCTL=y |
| 67 | CONFIG_ANON_INODES=y | ||
| 53 | CONFIG_EMBEDDED=y | 68 | CONFIG_EMBEDDED=y |
| 54 | CONFIG_UID16=y | 69 | CONFIG_UID16=y |
| 55 | # CONFIG_SYSCTL_SYSCALL is not set | 70 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -59,10 +74,8 @@ CONFIG_KALLSYMS=y | |||
| 59 | CONFIG_PRINTK=y | 74 | CONFIG_PRINTK=y |
| 60 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
| 61 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
| 62 | CONFIG_COMPAT_BRK=y | ||
| 63 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
| 64 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
| 65 | CONFIG_ANON_INODES=y | ||
| 66 | CONFIG_EPOLL=y | 79 | CONFIG_EPOLL=y |
| 67 | CONFIG_SIGNALFD=y | 80 | CONFIG_SIGNALFD=y |
| 68 | CONFIG_TIMERFD=y | 81 | CONFIG_TIMERFD=y |
| @@ -70,6 +83,7 @@ CONFIG_EVENTFD=y | |||
| 70 | CONFIG_SHMEM=y | 83 | CONFIG_SHMEM=y |
| 71 | CONFIG_AIO=y | 84 | CONFIG_AIO=y |
| 72 | CONFIG_VM_EVENT_COUNTERS=y | 85 | CONFIG_VM_EVENT_COUNTERS=y |
| 86 | CONFIG_COMPAT_BRK=y | ||
| 73 | CONFIG_SLAB=y | 87 | CONFIG_SLAB=y |
| 74 | # CONFIG_SLUB is not set | 88 | # CONFIG_SLUB is not set |
| 75 | # CONFIG_SLOB is not set | 89 | # CONFIG_SLOB is not set |
| @@ -109,11 +123,6 @@ CONFIG_DEFAULT_AS=y | |||
| 109 | # CONFIG_DEFAULT_CFQ is not set | 123 | # CONFIG_DEFAULT_CFQ is not set |
| 110 | # CONFIG_DEFAULT_NOOP is not set | 124 | # CONFIG_DEFAULT_NOOP is not set |
| 111 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 125 | 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 | 126 | # CONFIG_FREEZER is not set |
| 118 | 127 | ||
| 119 | # | 128 | # |
| @@ -148,6 +157,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 148 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 157 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 149 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 158 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 150 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 159 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 151 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 161 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 152 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 162 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 153 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 163 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -189,11 +199,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 189 | CONFIG_ZONE_DMA_FLAG=0 | 199 | CONFIG_ZONE_DMA_FLAG=0 |
| 190 | CONFIG_NR_QUICK=2 | 200 | CONFIG_NR_QUICK=2 |
| 191 | CONFIG_UNEVICTABLE_LRU=y | 201 | CONFIG_UNEVICTABLE_LRU=y |
| 202 | CONFIG_HAVE_MLOCK=y | ||
| 203 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 192 | 204 | ||
| 193 | # | 205 | # |
| 194 | # Cache configuration | 206 | # Cache configuration |
| 195 | # | 207 | # |
| 196 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 197 | CONFIG_CACHE_WRITEBACK=y | 208 | CONFIG_CACHE_WRITEBACK=y |
| 198 | # CONFIG_CACHE_WRITETHROUGH is not set | 209 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 199 | # CONFIG_CACHE_OFF is not set | 210 | # CONFIG_CACHE_OFF is not set |
| @@ -318,9 +329,13 @@ CONFIG_BLK_DEV_RAM_SIZE=1024 | |||
| 318 | # CONFIG_CDROM_PKTCDVD is not set | 329 | # CONFIG_CDROM_PKTCDVD is not set |
| 319 | # CONFIG_BLK_DEV_HD is not set | 330 | # CONFIG_BLK_DEV_HD is not set |
| 320 | CONFIG_MISC_DEVICES=y | 331 | CONFIG_MISC_DEVICES=y |
| 321 | # CONFIG_EEPROM_93CX6 is not set | ||
| 322 | # CONFIG_ENCLOSURE_SERVICES is not set | 332 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 323 | # CONFIG_C2PORT is not set | 333 | # CONFIG_C2PORT is not set |
| 334 | |||
| 335 | # | ||
| 336 | # EEPROM support | ||
| 337 | # | ||
| 338 | # CONFIG_EEPROM_93CX6 is not set | ||
| 324 | CONFIG_HAVE_IDE=y | 339 | CONFIG_HAVE_IDE=y |
| 325 | # CONFIG_IDE is not set | 340 | # CONFIG_IDE is not set |
| 326 | 341 | ||
| @@ -372,6 +387,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 372 | CONFIG_LEGACY_PTY_COUNT=256 | 387 | CONFIG_LEGACY_PTY_COUNT=256 |
| 373 | # CONFIG_IPMI_HANDLER is not set | 388 | # CONFIG_IPMI_HANDLER is not set |
| 374 | CONFIG_HW_RANDOM=y | 389 | CONFIG_HW_RANDOM=y |
| 390 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 375 | # CONFIG_R3964 is not set | 391 | # CONFIG_R3964 is not set |
| 376 | # CONFIG_RAW_DRIVER is not set | 392 | # CONFIG_RAW_DRIVER is not set |
| 377 | # CONFIG_TCG_TPM is not set | 393 | # CONFIG_TCG_TPM is not set |
| @@ -452,15 +468,20 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 452 | # | 468 | # |
| 453 | 469 | ||
| 454 | # | 470 | # |
| 455 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 471 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 456 | # | 472 | # |
| 457 | # CONFIG_USB_GADGET is not set | 473 | # CONFIG_USB_GADGET is not set |
| 474 | |||
| 475 | # | ||
| 476 | # OTG and related infrastructure | ||
| 477 | # | ||
| 458 | # CONFIG_MMC is not set | 478 | # CONFIG_MMC is not set |
| 459 | # CONFIG_MEMSTICK is not set | 479 | # CONFIG_MEMSTICK is not set |
| 460 | # CONFIG_NEW_LEDS is not set | 480 | # CONFIG_NEW_LEDS is not set |
| 461 | # CONFIG_ACCESSIBILITY is not set | 481 | # CONFIG_ACCESSIBILITY is not set |
| 462 | # CONFIG_RTC_CLASS is not set | 482 | # CONFIG_RTC_CLASS is not set |
| 463 | # CONFIG_DMADEVICES is not set | 483 | # CONFIG_DMADEVICES is not set |
| 484 | # CONFIG_AUXDISPLAY is not set | ||
| 464 | # CONFIG_UIO is not set | 485 | # CONFIG_UIO is not set |
| 465 | # CONFIG_STAGING is not set | 486 | # CONFIG_STAGING is not set |
| 466 | 487 | ||
| @@ -475,6 +496,7 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 475 | # CONFIG_FS_POSIX_ACL is not set | 496 | # CONFIG_FS_POSIX_ACL is not set |
| 476 | CONFIG_FILE_LOCKING=y | 497 | CONFIG_FILE_LOCKING=y |
| 477 | # CONFIG_XFS_FS is not set | 498 | # CONFIG_XFS_FS is not set |
| 499 | # CONFIG_BTRFS_FS is not set | ||
| 478 | CONFIG_DNOTIFY=y | 500 | CONFIG_DNOTIFY=y |
| 479 | CONFIG_INOTIFY=y | 501 | CONFIG_INOTIFY=y |
| 480 | CONFIG_INOTIFY_USER=y | 502 | CONFIG_INOTIFY_USER=y |
| @@ -518,6 +540,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 518 | # CONFIG_BFS_FS is not set | 540 | # CONFIG_BFS_FS is not set |
| 519 | # CONFIG_EFS_FS is not set | 541 | # CONFIG_EFS_FS is not set |
| 520 | CONFIG_CRAMFS=y | 542 | CONFIG_CRAMFS=y |
| 543 | # CONFIG_SQUASHFS is not set | ||
| 521 | # CONFIG_VXFS_FS is not set | 544 | # CONFIG_VXFS_FS is not set |
| 522 | # CONFIG_MINIX_FS is not set | 545 | # CONFIG_MINIX_FS is not set |
| 523 | # CONFIG_OMFS_FS is not set | 546 | # CONFIG_OMFS_FS is not set |
| @@ -558,7 +581,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 558 | # | 581 | # |
| 559 | # Tracers | 582 | # Tracers |
| 560 | # | 583 | # |
| 561 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 562 | # CONFIG_SAMPLES is not set | 584 | # CONFIG_SAMPLES is not set |
| 563 | CONFIG_HAVE_ARCH_KGDB=y | 585 | CONFIG_HAVE_ARCH_KGDB=y |
| 564 | # CONFIG_SH_STANDARD_BIOS is not set | 586 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -587,7 +609,7 @@ CONFIG_CRC32=y | |||
| 587 | # CONFIG_CRC7 is not set | 609 | # CONFIG_CRC7 is not set |
| 588 | # CONFIG_LIBCRC32C is not set | 610 | # CONFIG_LIBCRC32C is not set |
| 589 | CONFIG_ZLIB_INFLATE=y | 611 | CONFIG_ZLIB_INFLATE=y |
| 590 | CONFIG_PLIST=y | 612 | CONFIG_DECOMPRESS_GZIP=y |
| 591 | CONFIG_HAS_IOMEM=y | 613 | CONFIG_HAS_IOMEM=y |
| 592 | CONFIG_HAS_IOPORT=y | 614 | CONFIG_HAS_IOPORT=y |
| 593 | CONFIG_HAS_DMA=y | 615 | CONFIG_HAS_DMA=y |
diff --git a/arch/sh/configs/titan_defconfig b/arch/sh/configs/titan_defconfig index 01fc1defb33b..bbeb4c6ebb95 100644 --- a/arch/sh/configs/titan_defconfig +++ b/arch/sh/configs/titan_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:17:19 2009 | 4 | # Thu Apr 2 19:24:55 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_PCI=y | 21 | CONFIG_SYS_SUPPORTS_PCI=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -42,19 +43,33 @@ CONFIG_POSIX_MQUEUE=y | |||
| 42 | # CONFIG_BSD_PROCESS_ACCT is not set | 43 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 43 | # CONFIG_TASKSTATS is not set | 44 | # CONFIG_TASKSTATS is not set |
| 44 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
| 46 | |||
| 47 | # | ||
| 48 | # RCU Subsystem | ||
| 49 | # | ||
| 50 | CONFIG_CLASSIC_RCU=y | ||
| 51 | # CONFIG_TREE_RCU is not set | ||
| 52 | # CONFIG_PREEMPT_RCU is not set | ||
| 53 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 54 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 45 | CONFIG_IKCONFIG=y | 55 | CONFIG_IKCONFIG=y |
| 46 | CONFIG_IKCONFIG_PROC=y | 56 | CONFIG_IKCONFIG_PROC=y |
| 47 | CONFIG_LOG_BUF_SHIFT=16 | 57 | CONFIG_LOG_BUF_SHIFT=16 |
| 48 | # CONFIG_CGROUPS is not set | ||
| 49 | # CONFIG_GROUP_SCHED is not set | 58 | # CONFIG_GROUP_SCHED is not set |
| 59 | # CONFIG_CGROUPS is not set | ||
| 50 | CONFIG_SYSFS_DEPRECATED=y | 60 | CONFIG_SYSFS_DEPRECATED=y |
| 51 | CONFIG_SYSFS_DEPRECATED_V2=y | 61 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 52 | # CONFIG_RELAY is not set | 62 | # CONFIG_RELAY is not set |
| 53 | # CONFIG_NAMESPACES is not set | 63 | # CONFIG_NAMESPACES is not set |
| 54 | CONFIG_BLK_DEV_INITRD=y | 64 | CONFIG_BLK_DEV_INITRD=y |
| 55 | CONFIG_INITRAMFS_SOURCE="" | 65 | CONFIG_INITRAMFS_SOURCE="" |
| 66 | CONFIG_RD_GZIP=y | ||
| 67 | # CONFIG_RD_BZIP2 is not set | ||
| 68 | # CONFIG_RD_LZMA is not set | ||
| 69 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 56 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 70 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 57 | CONFIG_SYSCTL=y | 71 | CONFIG_SYSCTL=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 58 | CONFIG_EMBEDDED=y | 73 | CONFIG_EMBEDDED=y |
| 59 | CONFIG_UID16=y | 74 | CONFIG_UID16=y |
| 60 | # CONFIG_SYSCTL_SYSCALL is not set | 75 | # CONFIG_SYSCTL_SYSCALL is not set |
| @@ -65,10 +80,8 @@ CONFIG_HOTPLUG=y | |||
| 65 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 66 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 67 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 68 | CONFIG_COMPAT_BRK=y | ||
| 69 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 70 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 71 | CONFIG_ANON_INODES=y | ||
| 72 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 73 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 74 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -77,6 +90,7 @@ CONFIG_SHMEM=y | |||
| 77 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 78 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 79 | CONFIG_PCI_QUIRKS=y | 92 | CONFIG_PCI_QUIRKS=y |
| 93 | CONFIG_COMPAT_BRK=y | ||
| 80 | CONFIG_SLAB=y | 94 | CONFIG_SLAB=y |
| 81 | # CONFIG_SLUB is not set | 95 | # CONFIG_SLUB is not set |
| 82 | # CONFIG_SLOB is not set | 96 | # CONFIG_SLOB is not set |
| @@ -116,11 +130,6 @@ CONFIG_DEFAULT_AS=y | |||
| 116 | # CONFIG_DEFAULT_CFQ is not set | 130 | # CONFIG_DEFAULT_CFQ is not set |
| 117 | # CONFIG_DEFAULT_NOOP is not set | 131 | # CONFIG_DEFAULT_NOOP is not set |
| 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 132 | 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 | 133 | # CONFIG_FREEZER is not set |
| 125 | 134 | ||
| 126 | # | 135 | # |
| @@ -155,6 +164,7 @@ CONFIG_CPU_SUBTYPE_SH7751R=y | |||
| 155 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 164 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 156 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 165 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 157 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 166 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 167 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 158 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 168 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 159 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 169 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 160 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -196,11 +206,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 196 | CONFIG_ZONE_DMA_FLAG=0 | 206 | CONFIG_ZONE_DMA_FLAG=0 |
| 197 | CONFIG_NR_QUICK=2 | 207 | CONFIG_NR_QUICK=2 |
| 198 | CONFIG_UNEVICTABLE_LRU=y | 208 | CONFIG_UNEVICTABLE_LRU=y |
| 209 | CONFIG_HAVE_MLOCK=y | ||
| 210 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 199 | 211 | ||
| 200 | # | 212 | # |
| 201 | # Cache configuration | 213 | # Cache configuration |
| 202 | # | 214 | # |
| 203 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 204 | CONFIG_CACHE_WRITEBACK=y | 215 | CONFIG_CACHE_WRITEBACK=y |
| 205 | # CONFIG_CACHE_WRITETHROUGH is not set | 216 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 206 | # CONFIG_CACHE_OFF is not set | 217 | # CONFIG_CACHE_OFF is not set |
| @@ -248,6 +259,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 248 | # | 259 | # |
| 249 | CONFIG_SH_DMA_API=y | 260 | CONFIG_SH_DMA_API=y |
| 250 | CONFIG_SH_DMA=y | 261 | CONFIG_SH_DMA=y |
| 262 | CONFIG_SH_DMA_IRQ_MULTI=y | ||
| 251 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 | 263 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
| 252 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 264 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
| 253 | 265 | ||
| @@ -299,6 +311,8 @@ CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | |||
| 299 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 311 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 300 | CONFIG_PCI_LEGACY=y | 312 | CONFIG_PCI_LEGACY=y |
| 301 | # CONFIG_PCI_DEBUG is not set | 313 | # CONFIG_PCI_DEBUG is not set |
| 314 | # CONFIG_PCI_STUB is not set | ||
| 315 | # CONFIG_PCI_IOV is not set | ||
| 302 | # CONFIG_PCCARD is not set | 316 | # CONFIG_PCCARD is not set |
| 303 | CONFIG_HOTPLUG_PCI=y | 317 | CONFIG_HOTPLUG_PCI=y |
| 304 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 318 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
| @@ -323,7 +337,6 @@ CONFIG_NET=y | |||
| 323 | # | 337 | # |
| 324 | # Networking options | 338 | # Networking options |
| 325 | # | 339 | # |
| 326 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 327 | CONFIG_PACKET=y | 340 | CONFIG_PACKET=y |
| 328 | CONFIG_PACKET_MMAP=y | 341 | CONFIG_PACKET_MMAP=y |
| 329 | CONFIG_UNIX=y | 342 | CONFIG_UNIX=y |
| @@ -406,6 +419,7 @@ CONFIG_NETFILTER_NETLINK_LOG=m | |||
| 406 | CONFIG_NETFILTER_XTABLES=m | 419 | CONFIG_NETFILTER_XTABLES=m |
| 407 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 420 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
| 408 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 421 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 422 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
| 409 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 423 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
| 410 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 424 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 411 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 425 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
| @@ -418,6 +432,7 @@ CONFIG_NETFILTER_XT_MATCH_DCCP=m | |||
| 418 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 432 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 419 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 433 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
| 420 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 434 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 435 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 421 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 436 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 422 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 437 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
| 423 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 438 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
| @@ -475,11 +490,11 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
| 475 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 490 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
| 476 | # CONFIG_IP6_NF_MATCH_MH is not set | 491 | # CONFIG_IP6_NF_MATCH_MH is not set |
| 477 | CONFIG_IP6_NF_MATCH_RT=m | 492 | CONFIG_IP6_NF_MATCH_RT=m |
| 493 | CONFIG_IP6_NF_TARGET_HL=m | ||
| 478 | CONFIG_IP6_NF_TARGET_LOG=m | 494 | CONFIG_IP6_NF_TARGET_LOG=m |
| 479 | CONFIG_IP6_NF_FILTER=m | 495 | CONFIG_IP6_NF_FILTER=m |
| 480 | CONFIG_IP6_NF_TARGET_REJECT=m | 496 | CONFIG_IP6_NF_TARGET_REJECT=m |
| 481 | CONFIG_IP6_NF_MANGLE=m | 497 | CONFIG_IP6_NF_MANGLE=m |
| 482 | CONFIG_IP6_NF_TARGET_HL=m | ||
| 483 | CONFIG_IP6_NF_RAW=m | 498 | CONFIG_IP6_NF_RAW=m |
| 484 | # CONFIG_BRIDGE_NF_EBTABLES is not set | 499 | # CONFIG_BRIDGE_NF_EBTABLES is not set |
| 485 | # CONFIG_IP_DCCP is not set | 500 | # CONFIG_IP_DCCP is not set |
| @@ -500,6 +515,7 @@ CONFIG_LLC=y | |||
| 500 | # CONFIG_LAPB is not set | 515 | # CONFIG_LAPB is not set |
| 501 | # CONFIG_ECONET is not set | 516 | # CONFIG_ECONET is not set |
| 502 | # CONFIG_WAN_ROUTER is not set | 517 | # CONFIG_WAN_ROUTER is not set |
| 518 | # CONFIG_PHONET is not set | ||
| 503 | CONFIG_NET_SCHED=y | 519 | CONFIG_NET_SCHED=y |
| 504 | 520 | ||
| 505 | # | 521 | # |
| @@ -565,7 +581,6 @@ CONFIG_NET_SCH_FIFO=y | |||
| 565 | # CONFIG_IRDA is not set | 581 | # CONFIG_IRDA is not set |
| 566 | # CONFIG_BT is not set | 582 | # CONFIG_BT is not set |
| 567 | # CONFIG_AF_RXRPC is not set | 583 | # CONFIG_AF_RXRPC is not set |
| 568 | # CONFIG_PHONET is not set | ||
| 569 | CONFIG_FIB_RULES=y | 584 | CONFIG_FIB_RULES=y |
| 570 | CONFIG_WIRELESS=y | 585 | CONFIG_WIRELESS=y |
| 571 | # CONFIG_CFG80211 is not set | 586 | # CONFIG_CFG80211 is not set |
| @@ -574,6 +589,7 @@ CONFIG_WIRELESS_EXT=y | |||
| 574 | CONFIG_WIRELESS_EXT_SYSFS=y | 589 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 575 | # CONFIG_LIB80211 is not set | 590 | # CONFIG_LIB80211 is not set |
| 576 | # CONFIG_MAC80211 is not set | 591 | # CONFIG_MAC80211 is not set |
| 592 | # CONFIG_WIMAX is not set | ||
| 577 | # CONFIG_RFKILL is not set | 593 | # CONFIG_RFKILL is not set |
| 578 | # CONFIG_NET_9P is not set | 594 | # CONFIG_NET_9P is not set |
| 579 | 595 | ||
| @@ -599,6 +615,7 @@ CONFIG_MTD_DEBUG=y | |||
| 599 | CONFIG_MTD_DEBUG_VERBOSE=0 | 615 | CONFIG_MTD_DEBUG_VERBOSE=0 |
| 600 | # CONFIG_MTD_CONCAT is not set | 616 | # CONFIG_MTD_CONCAT is not set |
| 601 | # CONFIG_MTD_PARTITIONS is not set | 617 | # CONFIG_MTD_PARTITIONS is not set |
| 618 | # CONFIG_MTD_TESTS is not set | ||
| 602 | 619 | ||
| 603 | # | 620 | # |
| 604 | # User Modules And Translation Layers | 621 | # User Modules And Translation Layers |
| @@ -675,6 +692,11 @@ CONFIG_MTD_NAND_IDS=m | |||
| 675 | # CONFIG_MTD_ONENAND is not set | 692 | # CONFIG_MTD_ONENAND is not set |
| 676 | 693 | ||
| 677 | # | 694 | # |
| 695 | # LPDDR flash memory drivers | ||
| 696 | # | ||
| 697 | # CONFIG_MTD_LPDDR is not set | ||
| 698 | |||
| 699 | # | ||
| 678 | # UBI - Unsorted block images | 700 | # UBI - Unsorted block images |
| 679 | # | 701 | # |
| 680 | # CONFIG_MTD_UBI is not set | 702 | # CONFIG_MTD_UBI is not set |
| @@ -698,12 +720,16 @@ CONFIG_ATA_OVER_ETH=m | |||
| 698 | # CONFIG_BLK_DEV_HD is not set | 720 | # CONFIG_BLK_DEV_HD is not set |
| 699 | CONFIG_MISC_DEVICES=y | 721 | CONFIG_MISC_DEVICES=y |
| 700 | # CONFIG_PHANTOM is not set | 722 | # CONFIG_PHANTOM is not set |
| 701 | # CONFIG_EEPROM_93CX6 is not set | ||
| 702 | # CONFIG_SGI_IOC4 is not set | 723 | # CONFIG_SGI_IOC4 is not set |
| 703 | # CONFIG_TIFM_CORE is not set | 724 | # CONFIG_TIFM_CORE is not set |
| 704 | # CONFIG_ENCLOSURE_SERVICES is not set | 725 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 705 | # CONFIG_HP_ILO is not set | 726 | # CONFIG_HP_ILO is not set |
| 706 | # CONFIG_C2PORT is not set | 727 | # CONFIG_C2PORT is not set |
| 728 | |||
| 729 | # | ||
| 730 | # EEPROM support | ||
| 731 | # | ||
| 732 | # CONFIG_EEPROM_93CX6 is not set | ||
| 707 | CONFIG_HAVE_IDE=y | 733 | CONFIG_HAVE_IDE=y |
| 708 | # CONFIG_IDE is not set | 734 | # CONFIG_IDE is not set |
| 709 | 735 | ||
| @@ -760,6 +786,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 760 | # CONFIG_MEGARAID_NEWGEN is not set | 786 | # CONFIG_MEGARAID_NEWGEN is not set |
| 761 | # CONFIG_MEGARAID_LEGACY is not set | 787 | # CONFIG_MEGARAID_LEGACY is not set |
| 762 | # CONFIG_MEGARAID_SAS is not set | 788 | # CONFIG_MEGARAID_SAS is not set |
| 789 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 763 | # CONFIG_SCSI_HPTIOP is not set | 790 | # CONFIG_SCSI_HPTIOP is not set |
| 764 | # CONFIG_LIBFC is not set | 791 | # CONFIG_LIBFC is not set |
| 765 | # CONFIG_FCOE is not set | 792 | # CONFIG_FCOE is not set |
| @@ -781,6 +808,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 781 | # CONFIG_SCSI_DEBUG is not set | 808 | # CONFIG_SCSI_DEBUG is not set |
| 782 | # CONFIG_SCSI_SRP is not set | 809 | # CONFIG_SCSI_SRP is not set |
| 783 | # CONFIG_SCSI_DH is not set | 810 | # CONFIG_SCSI_DH is not set |
| 811 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 784 | # CONFIG_ATA is not set | 812 | # CONFIG_ATA is not set |
| 785 | # CONFIG_MD is not set | 813 | # CONFIG_MD is not set |
| 786 | # CONFIG_FUSION is not set | 814 | # CONFIG_FUSION is not set |
| @@ -796,6 +824,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 796 | # CONFIG_IEEE1394 is not set | 824 | # CONFIG_IEEE1394 is not set |
| 797 | # CONFIG_I2O is not set | 825 | # CONFIG_I2O is not set |
| 798 | CONFIG_NETDEVICES=y | 826 | CONFIG_NETDEVICES=y |
| 827 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 799 | # CONFIG_IFB is not set | 828 | # CONFIG_IFB is not set |
| 800 | # CONFIG_DUMMY is not set | 829 | # CONFIG_DUMMY is not set |
| 801 | # CONFIG_BONDING is not set | 830 | # CONFIG_BONDING is not set |
| @@ -832,8 +861,10 @@ CONFIG_MII=y | |||
| 832 | # CONFIG_CASSINI is not set | 861 | # CONFIG_CASSINI is not set |
| 833 | # CONFIG_NET_VENDOR_3COM is not set | 862 | # CONFIG_NET_VENDOR_3COM is not set |
| 834 | # CONFIG_SMC91X is not set | 863 | # CONFIG_SMC91X is not set |
| 864 | # CONFIG_ETHOC is not set | ||
| 835 | # CONFIG_SMC911X is not set | 865 | # CONFIG_SMC911X is not set |
| 836 | # CONFIG_SMSC911X is not set | 866 | # CONFIG_SMSC911X is not set |
| 867 | # CONFIG_DNET is not set | ||
| 837 | # CONFIG_NET_TULIP is not set | 868 | # CONFIG_NET_TULIP is not set |
| 838 | # CONFIG_HP100 is not set | 869 | # CONFIG_HP100 is not set |
| 839 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 870 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -888,6 +919,7 @@ CONFIG_NETDEV_1000=y | |||
| 888 | # CONFIG_QLA3XXX is not set | 919 | # CONFIG_QLA3XXX is not set |
| 889 | # CONFIG_ATL1 is not set | 920 | # CONFIG_ATL1 is not set |
| 890 | # CONFIG_ATL1E is not set | 921 | # CONFIG_ATL1E is not set |
| 922 | # CONFIG_ATL1C is not set | ||
| 891 | # CONFIG_JME is not set | 923 | # CONFIG_JME is not set |
| 892 | CONFIG_NETDEV_10000=y | 924 | CONFIG_NETDEV_10000=y |
| 893 | # CONFIG_CHELSIO_T1 is not set | 925 | # CONFIG_CHELSIO_T1 is not set |
| @@ -906,6 +938,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 906 | # CONFIG_BNX2X is not set | 938 | # CONFIG_BNX2X is not set |
| 907 | # CONFIG_QLGE is not set | 939 | # CONFIG_QLGE is not set |
| 908 | # CONFIG_SFC is not set | 940 | # CONFIG_SFC is not set |
| 941 | # CONFIG_BE2NET is not set | ||
| 909 | # CONFIG_TR is not set | 942 | # CONFIG_TR is not set |
| 910 | 943 | ||
| 911 | # | 944 | # |
| @@ -913,7 +946,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 913 | # | 946 | # |
| 914 | # CONFIG_WLAN_PRE80211 is not set | 947 | # CONFIG_WLAN_PRE80211 is not set |
| 915 | # CONFIG_WLAN_80211 is not set | 948 | # CONFIG_WLAN_80211 is not set |
| 916 | # CONFIG_IWLWIFI_LEDS is not set | 949 | |
| 950 | # | ||
| 951 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 952 | # | ||
| 917 | 953 | ||
| 918 | # | 954 | # |
| 919 | # USB Network Adapters | 955 | # USB Network Adapters |
| @@ -1025,6 +1061,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 1025 | CONFIG_LEGACY_PTY_COUNT=256 | 1061 | CONFIG_LEGACY_PTY_COUNT=256 |
| 1026 | # CONFIG_IPMI_HANDLER is not set | 1062 | # CONFIG_IPMI_HANDLER is not set |
| 1027 | CONFIG_HW_RANDOM=y | 1063 | CONFIG_HW_RANDOM=y |
| 1064 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 1028 | # CONFIG_R3964 is not set | 1065 | # CONFIG_R3964 is not set |
| 1029 | # CONFIG_APPLICOM is not set | 1066 | # CONFIG_APPLICOM is not set |
| 1030 | # CONFIG_RAW_DRIVER is not set | 1067 | # CONFIG_RAW_DRIVER is not set |
| @@ -1174,6 +1211,7 @@ CONFIG_USB_MON=y | |||
| 1174 | CONFIG_USB_EHCI_HCD=y | 1211 | CONFIG_USB_EHCI_HCD=y |
| 1175 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1212 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 1176 | CONFIG_USB_EHCI_TT_NEWSCHED=y | 1213 | CONFIG_USB_EHCI_TT_NEWSCHED=y |
| 1214 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1177 | # CONFIG_USB_ISP116X_HCD is not set | 1215 | # CONFIG_USB_ISP116X_HCD is not set |
| 1178 | # CONFIG_USB_ISP1760_HCD is not set | 1216 | # CONFIG_USB_ISP1760_HCD is not set |
| 1179 | CONFIG_USB_OHCI_HCD=y | 1217 | CONFIG_USB_OHCI_HCD=y |
| @@ -1195,18 +1233,17 @@ CONFIG_USB_PRINTER=m | |||
| 1195 | # CONFIG_USB_TMC is not set | 1233 | # CONFIG_USB_TMC is not set |
| 1196 | 1234 | ||
| 1197 | # | 1235 | # |
| 1198 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1236 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1199 | # | 1237 | # |
| 1200 | 1238 | ||
| 1201 | # | 1239 | # |
| 1202 | # see USB_STORAGE Help for more information | 1240 | # also be needed; see USB_STORAGE Help for more info |
| 1203 | # | 1241 | # |
| 1204 | CONFIG_USB_STORAGE=y | 1242 | CONFIG_USB_STORAGE=y |
| 1205 | # CONFIG_USB_STORAGE_DEBUG is not set | 1243 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1206 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1244 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1207 | # CONFIG_USB_STORAGE_FREECOM is not set | 1245 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1208 | # CONFIG_USB_STORAGE_ISD200 is not set | 1246 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1209 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1210 | # CONFIG_USB_STORAGE_USBAT is not set | 1247 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1211 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1248 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1212 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1249 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1235,7 +1272,7 @@ CONFIG_USB_SERIAL_ARK3116=m | |||
| 1235 | # CONFIG_USB_SERIAL_CH341 is not set | 1272 | # CONFIG_USB_SERIAL_CH341 is not set |
| 1236 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1273 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
| 1237 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1274 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
| 1238 | # CONFIG_USB_SERIAL_CP2101 is not set | 1275 | # CONFIG_USB_SERIAL_CP210X is not set |
| 1239 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1276 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
| 1240 | # CONFIG_USB_SERIAL_EMPEG is not set | 1277 | # CONFIG_USB_SERIAL_EMPEG is not set |
| 1241 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1278 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
| @@ -1259,15 +1296,19 @@ CONFIG_USB_SERIAL_ARK3116=m | |||
| 1259 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1296 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1260 | CONFIG_USB_SERIAL_PL2303=m | 1297 | CONFIG_USB_SERIAL_PL2303=m |
| 1261 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1298 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1299 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
| 1262 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1300 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
| 1263 | # CONFIG_USB_SERIAL_HP4X is not set | 1301 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1264 | # CONFIG_USB_SERIAL_SAFE is not set | 1302 | # CONFIG_USB_SERIAL_SAFE is not set |
| 1303 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
| 1265 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1304 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| 1305 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
| 1266 | # CONFIG_USB_SERIAL_TI is not set | 1306 | # CONFIG_USB_SERIAL_TI is not set |
| 1267 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1307 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
| 1268 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1308 | # CONFIG_USB_SERIAL_XIRCOM is not set |
| 1269 | # CONFIG_USB_SERIAL_OPTION is not set | 1309 | # CONFIG_USB_SERIAL_OPTION is not set |
| 1270 | # CONFIG_USB_SERIAL_OMNINET is not set | 1310 | # CONFIG_USB_SERIAL_OMNINET is not set |
| 1311 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
| 1271 | # CONFIG_USB_SERIAL_DEBUG is not set | 1312 | # CONFIG_USB_SERIAL_DEBUG is not set |
| 1272 | 1313 | ||
| 1273 | # | 1314 | # |
| @@ -1284,7 +1325,6 @@ CONFIG_USB_SERIAL_PL2303=m | |||
| 1284 | # CONFIG_USB_LED is not set | 1325 | # CONFIG_USB_LED is not set |
| 1285 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1326 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1286 | # CONFIG_USB_CYTHERM is not set | 1327 | # CONFIG_USB_CYTHERM is not set |
| 1287 | # CONFIG_USB_PHIDGET is not set | ||
| 1288 | # CONFIG_USB_IDMOUSE is not set | 1328 | # CONFIG_USB_IDMOUSE is not set |
| 1289 | # CONFIG_USB_FTDI_ELAN is not set | 1329 | # CONFIG_USB_FTDI_ELAN is not set |
| 1290 | # CONFIG_USB_APPLEDISPLAY is not set | 1330 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1296,6 +1336,11 @@ CONFIG_USB_SERIAL_PL2303=m | |||
| 1296 | # CONFIG_USB_ISIGHTFW is not set | 1336 | # CONFIG_USB_ISIGHTFW is not set |
| 1297 | # CONFIG_USB_VST is not set | 1337 | # CONFIG_USB_VST is not set |
| 1298 | # CONFIG_USB_GADGET is not set | 1338 | # CONFIG_USB_GADGET is not set |
| 1339 | |||
| 1340 | # | ||
| 1341 | # OTG and related infrastructure | ||
| 1342 | # | ||
| 1343 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1299 | # CONFIG_UWB is not set | 1344 | # CONFIG_UWB is not set |
| 1300 | # CONFIG_MMC is not set | 1345 | # CONFIG_MMC is not set |
| 1301 | # CONFIG_MEMSTICK is not set | 1346 | # CONFIG_MEMSTICK is not set |
| @@ -1337,6 +1382,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1337 | # | 1382 | # |
| 1338 | CONFIG_RTC_DRV_SH=m | 1383 | CONFIG_RTC_DRV_SH=m |
| 1339 | # CONFIG_DMADEVICES is not set | 1384 | # CONFIG_DMADEVICES is not set |
| 1385 | # CONFIG_AUXDISPLAY is not set | ||
| 1340 | # CONFIG_UIO is not set | 1386 | # CONFIG_UIO is not set |
| 1341 | # CONFIG_STAGING is not set | 1387 | # CONFIG_STAGING is not set |
| 1342 | 1388 | ||
| @@ -1363,6 +1409,7 @@ CONFIG_XFS_FS=m | |||
| 1363 | # CONFIG_XFS_RT is not set | 1409 | # CONFIG_XFS_RT is not set |
| 1364 | # CONFIG_XFS_DEBUG is not set | 1410 | # CONFIG_XFS_DEBUG is not set |
| 1365 | # CONFIG_OCFS2_FS is not set | 1411 | # CONFIG_OCFS2_FS is not set |
| 1412 | # CONFIG_BTRFS_FS is not set | ||
| 1366 | CONFIG_DNOTIFY=y | 1413 | CONFIG_DNOTIFY=y |
| 1367 | CONFIG_INOTIFY=y | 1414 | CONFIG_INOTIFY=y |
| 1368 | CONFIG_INOTIFY_USER=y | 1415 | CONFIG_INOTIFY_USER=y |
| @@ -1413,6 +1460,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1413 | # CONFIG_EFS_FS is not set | 1460 | # CONFIG_EFS_FS is not set |
| 1414 | # CONFIG_JFFS2_FS is not set | 1461 | # CONFIG_JFFS2_FS is not set |
| 1415 | # CONFIG_CRAMFS is not set | 1462 | # CONFIG_CRAMFS is not set |
| 1463 | # CONFIG_SQUASHFS is not set | ||
| 1416 | # CONFIG_VXFS_FS is not set | 1464 | # CONFIG_VXFS_FS is not set |
| 1417 | # CONFIG_MINIX_FS is not set | 1465 | # CONFIG_MINIX_FS is not set |
| 1418 | # CONFIG_OMFS_FS is not set | 1466 | # CONFIG_OMFS_FS is not set |
| @@ -1436,7 +1484,6 @@ CONFIG_LOCKD_V4=y | |||
| 1436 | CONFIG_EXPORTFS=y | 1484 | CONFIG_EXPORTFS=y |
| 1437 | CONFIG_NFS_COMMON=y | 1485 | CONFIG_NFS_COMMON=y |
| 1438 | CONFIG_SUNRPC=y | 1486 | CONFIG_SUNRPC=y |
| 1439 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1440 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1487 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1441 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1488 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1442 | CONFIG_SMB_FS=m | 1489 | CONFIG_SMB_FS=m |
| @@ -1559,6 +1606,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1559 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1606 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 1560 | # CONFIG_FAULT_INJECTION is not set | 1607 | # CONFIG_FAULT_INJECTION is not set |
| 1561 | # CONFIG_LATENCYTOP is not set | 1608 | # CONFIG_LATENCYTOP is not set |
| 1609 | # CONFIG_PAGE_POISONING is not set | ||
| 1562 | CONFIG_HAVE_FUNCTION_TRACER=y | 1610 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1563 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1611 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1564 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1612 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| @@ -1573,7 +1621,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1573 | # CONFIG_BOOT_TRACER is not set | 1621 | # CONFIG_BOOT_TRACER is not set |
| 1574 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1622 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1575 | # CONFIG_STACK_TRACER is not set | 1623 | # CONFIG_STACK_TRACER is not set |
| 1576 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1577 | # CONFIG_SAMPLES is not set | 1624 | # CONFIG_SAMPLES is not set |
| 1578 | CONFIG_HAVE_ARCH_KGDB=y | 1625 | CONFIG_HAVE_ARCH_KGDB=y |
| 1579 | # CONFIG_KGDB is not set | 1626 | # CONFIG_KGDB is not set |
| @@ -1610,10 +1657,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1610 | CONFIG_CRYPTO_HASH=y | 1657 | CONFIG_CRYPTO_HASH=y |
| 1611 | CONFIG_CRYPTO_HASH2=y | 1658 | CONFIG_CRYPTO_HASH2=y |
| 1612 | CONFIG_CRYPTO_RNG2=y | 1659 | CONFIG_CRYPTO_RNG2=y |
| 1660 | CONFIG_CRYPTO_PCOMP=y | ||
| 1613 | CONFIG_CRYPTO_MANAGER=y | 1661 | CONFIG_CRYPTO_MANAGER=y |
| 1614 | CONFIG_CRYPTO_MANAGER2=y | 1662 | CONFIG_CRYPTO_MANAGER2=y |
| 1615 | # CONFIG_CRYPTO_GF128MUL is not set | 1663 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1616 | CONFIG_CRYPTO_NULL=m | 1664 | CONFIG_CRYPTO_NULL=m |
| 1665 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1617 | # CONFIG_CRYPTO_CRYPTD is not set | 1666 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1618 | CONFIG_CRYPTO_AUTHENC=y | 1667 | CONFIG_CRYPTO_AUTHENC=y |
| 1619 | # CONFIG_CRYPTO_TEST is not set | 1668 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1683,6 +1732,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1683 | # Compression | 1732 | # Compression |
| 1684 | # | 1733 | # |
| 1685 | CONFIG_CRYPTO_DEFLATE=y | 1734 | CONFIG_CRYPTO_DEFLATE=y |
| 1735 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1686 | # CONFIG_CRYPTO_LZO is not set | 1736 | # CONFIG_CRYPTO_LZO is not set |
| 1687 | 1737 | ||
| 1688 | # | 1738 | # |
| @@ -1706,11 +1756,12 @@ CONFIG_CRC32=y | |||
| 1706 | CONFIG_LIBCRC32C=m | 1756 | CONFIG_LIBCRC32C=m |
| 1707 | CONFIG_ZLIB_INFLATE=y | 1757 | CONFIG_ZLIB_INFLATE=y |
| 1708 | CONFIG_ZLIB_DEFLATE=y | 1758 | CONFIG_ZLIB_DEFLATE=y |
| 1759 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1709 | CONFIG_TEXTSEARCH=y | 1760 | CONFIG_TEXTSEARCH=y |
| 1710 | CONFIG_TEXTSEARCH_KMP=m | 1761 | CONFIG_TEXTSEARCH_KMP=m |
| 1711 | CONFIG_TEXTSEARCH_BM=m | 1762 | CONFIG_TEXTSEARCH_BM=m |
| 1712 | CONFIG_TEXTSEARCH_FSM=m | 1763 | CONFIG_TEXTSEARCH_FSM=m |
| 1713 | CONFIG_PLIST=y | ||
| 1714 | CONFIG_HAS_IOMEM=y | 1764 | CONFIG_HAS_IOMEM=y |
| 1715 | CONFIG_HAS_IOPORT=y | 1765 | CONFIG_HAS_IOPORT=y |
| 1716 | CONFIG_HAS_DMA=y | 1766 | CONFIG_HAS_DMA=y |
| 1767 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/ul2_defconfig b/arch/sh/configs/ul2_defconfig index 27f968a959f8..34f5192a3241 100644 --- a/arch/sh/configs/ul2_defconfig +++ b/arch/sh/configs/ul2_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Fri Jan 9 18:22:53 2009 | 4 | # Thu Apr 2 19:30:27 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -16,15 +16,17 @@ CONFIG_GENERIC_IRQ_PROBE=y | |||
| 16 | # CONFIG_GENERIC_GPIO is not set | 16 | # CONFIG_GENERIC_GPIO is not set |
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_SYS_SUPPORTS_CMT=y | ||
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 23 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 24 | CONFIG_LOCKDEP_SUPPORT=y |
| 24 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | 25 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y |
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 27 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 30 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 31 | ||
| 30 | # | 32 | # |
| @@ -44,19 +46,33 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
| 44 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 46 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 45 | # CONFIG_TASKSTATS is not set | 47 | # CONFIG_TASKSTATS is not set |
| 46 | # CONFIG_AUDIT is not set | 48 | # CONFIG_AUDIT is not set |
| 49 | |||
| 50 | # | ||
| 51 | # RCU Subsystem | ||
| 52 | # | ||
| 53 | CONFIG_CLASSIC_RCU=y | ||
| 54 | # CONFIG_TREE_RCU is not set | ||
| 55 | # CONFIG_PREEMPT_RCU is not set | ||
| 56 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 57 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 47 | CONFIG_IKCONFIG=y | 58 | CONFIG_IKCONFIG=y |
| 48 | CONFIG_IKCONFIG_PROC=y | 59 | CONFIG_IKCONFIG_PROC=y |
| 49 | CONFIG_LOG_BUF_SHIFT=14 | 60 | CONFIG_LOG_BUF_SHIFT=14 |
| 50 | # CONFIG_CGROUPS is not set | ||
| 51 | # CONFIG_GROUP_SCHED is not set | 61 | # CONFIG_GROUP_SCHED is not set |
| 62 | # CONFIG_CGROUPS is not set | ||
| 52 | CONFIG_SYSFS_DEPRECATED=y | 63 | CONFIG_SYSFS_DEPRECATED=y |
| 53 | CONFIG_SYSFS_DEPRECATED_V2=y | 64 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 54 | # CONFIG_RELAY is not set | 65 | # CONFIG_RELAY is not set |
| 55 | # CONFIG_NAMESPACES is not set | 66 | # CONFIG_NAMESPACES is not set |
| 56 | CONFIG_BLK_DEV_INITRD=y | 67 | CONFIG_BLK_DEV_INITRD=y |
| 57 | CONFIG_INITRAMFS_SOURCE="" | 68 | CONFIG_INITRAMFS_SOURCE="" |
| 69 | CONFIG_RD_GZIP=y | ||
| 70 | # CONFIG_RD_BZIP2 is not set | ||
| 71 | # CONFIG_RD_LZMA is not set | ||
| 72 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 58 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 73 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 59 | CONFIG_SYSCTL=y | 74 | CONFIG_SYSCTL=y |
| 75 | CONFIG_ANON_INODES=y | ||
| 60 | CONFIG_EMBEDDED=y | 76 | CONFIG_EMBEDDED=y |
| 61 | CONFIG_UID16=y | 77 | CONFIG_UID16=y |
| 62 | CONFIG_SYSCTL_SYSCALL=y | 78 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -66,10 +82,8 @@ CONFIG_HOTPLUG=y | |||
| 66 | CONFIG_PRINTK=y | 82 | CONFIG_PRINTK=y |
| 67 | CONFIG_BUG=y | 83 | CONFIG_BUG=y |
| 68 | CONFIG_ELF_CORE=y | 84 | CONFIG_ELF_CORE=y |
| 69 | CONFIG_COMPAT_BRK=y | ||
| 70 | CONFIG_BASE_FULL=y | 85 | CONFIG_BASE_FULL=y |
| 71 | CONFIG_FUTEX=y | 86 | CONFIG_FUTEX=y |
| 72 | CONFIG_ANON_INODES=y | ||
| 73 | CONFIG_EPOLL=y | 87 | CONFIG_EPOLL=y |
| 74 | CONFIG_SIGNALFD=y | 88 | CONFIG_SIGNALFD=y |
| 75 | CONFIG_TIMERFD=y | 89 | CONFIG_TIMERFD=y |
| @@ -78,6 +92,7 @@ CONFIG_SHMEM=y | |||
| 78 | CONFIG_AIO=y | 92 | CONFIG_AIO=y |
| 79 | CONFIG_VM_EVENT_COUNTERS=y | 93 | CONFIG_VM_EVENT_COUNTERS=y |
| 80 | CONFIG_SLUB_DEBUG=y | 94 | CONFIG_SLUB_DEBUG=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 81 | # CONFIG_SLAB is not set | 96 | # CONFIG_SLAB is not set |
| 82 | CONFIG_SLUB=y | 97 | CONFIG_SLUB=y |
| 83 | # CONFIG_SLOB is not set | 98 | # CONFIG_SLOB is not set |
| @@ -118,11 +133,6 @@ CONFIG_IOSCHED_NOOP=y | |||
| 118 | # CONFIG_DEFAULT_CFQ is not set | 133 | # CONFIG_DEFAULT_CFQ is not set |
| 119 | CONFIG_DEFAULT_NOOP=y | 134 | CONFIG_DEFAULT_NOOP=y |
| 120 | CONFIG_DEFAULT_IOSCHED="noop" | 135 | 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 | 136 | # CONFIG_FREEZER is not set |
| 127 | 137 | ||
| 128 | # | 138 | # |
| @@ -132,6 +142,7 @@ CONFIG_CPU_SH4=y | |||
| 132 | CONFIG_CPU_SH4A=y | 142 | CONFIG_CPU_SH4A=y |
| 133 | CONFIG_CPU_SH4AL_DSP=y | 143 | CONFIG_CPU_SH4AL_DSP=y |
| 134 | CONFIG_CPU_SHX2=y | 144 | CONFIG_CPU_SHX2=y |
| 145 | CONFIG_ARCH_SHMOBILE=y | ||
| 135 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 146 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
| 136 | # CONFIG_CPU_SUBTYPE_SH7201 is not set | 147 | # CONFIG_CPU_SUBTYPE_SH7201 is not set |
| 137 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | 148 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
| @@ -160,6 +171,7 @@ CONFIG_CPU_SHX2=y | |||
| 160 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
| 161 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
| 162 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 173 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
| 174 | # CONFIG_CPU_SUBTYPE_SH7786 is not set | ||
| 163 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 175 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
| 164 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 176 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
| 165 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 177 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
| @@ -213,11 +225,12 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
| 213 | CONFIG_ZONE_DMA_FLAG=0 | 225 | CONFIG_ZONE_DMA_FLAG=0 |
| 214 | CONFIG_NR_QUICK=2 | 226 | CONFIG_NR_QUICK=2 |
| 215 | CONFIG_UNEVICTABLE_LRU=y | 227 | CONFIG_UNEVICTABLE_LRU=y |
| 228 | CONFIG_HAVE_MLOCK=y | ||
| 229 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 216 | 230 | ||
| 217 | # | 231 | # |
| 218 | # Cache configuration | 232 | # Cache configuration |
| 219 | # | 233 | # |
| 220 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 221 | CONFIG_CACHE_WRITEBACK=y | 234 | CONFIG_CACHE_WRITEBACK=y |
| 222 | # CONFIG_CACHE_WRITETHROUGH is not set | 235 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 223 | # CONFIG_CACHE_OFF is not set | 236 | # CONFIG_CACHE_OFF is not set |
| @@ -243,6 +256,7 @@ CONFIG_CPU_HAS_DSP=y | |||
| 243 | # Timer and clock configuration | 256 | # Timer and clock configuration |
| 244 | # | 257 | # |
| 245 | CONFIG_SH_TMU=y | 258 | CONFIG_SH_TMU=y |
| 259 | # CONFIG_SH_TIMER_CMT is not set | ||
| 246 | CONFIG_SH_TIMER_IRQ=16 | 260 | CONFIG_SH_TIMER_IRQ=16 |
| 247 | CONFIG_SH_PCLK_FREQ=33333333 | 261 | CONFIG_SH_PCLK_FREQ=33333333 |
| 248 | CONFIG_TICK_ONESHOT=y | 262 | CONFIG_TICK_ONESHOT=y |
| @@ -319,7 +333,6 @@ CONFIG_NET=y | |||
| 319 | # | 333 | # |
| 320 | # Networking options | 334 | # Networking options |
| 321 | # | 335 | # |
| 322 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 323 | CONFIG_PACKET=y | 336 | CONFIG_PACKET=y |
| 324 | CONFIG_PACKET_MMAP=y | 337 | CONFIG_PACKET_MMAP=y |
| 325 | CONFIG_UNIX=y | 338 | CONFIG_UNIX=y |
| @@ -374,6 +387,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 374 | # CONFIG_LAPB is not set | 387 | # CONFIG_LAPB is not set |
| 375 | # CONFIG_ECONET is not set | 388 | # CONFIG_ECONET is not set |
| 376 | # CONFIG_WAN_ROUTER is not set | 389 | # CONFIG_WAN_ROUTER is not set |
| 390 | # CONFIG_PHONET is not set | ||
| 377 | # CONFIG_NET_SCHED is not set | 391 | # CONFIG_NET_SCHED is not set |
| 378 | # CONFIG_DCB is not set | 392 | # CONFIG_DCB is not set |
| 379 | 393 | ||
| @@ -386,15 +400,14 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 386 | # CONFIG_IRDA is not set | 400 | # CONFIG_IRDA is not set |
| 387 | # CONFIG_BT is not set | 401 | # CONFIG_BT is not set |
| 388 | # CONFIG_AF_RXRPC is not set | 402 | # CONFIG_AF_RXRPC is not set |
| 389 | # CONFIG_PHONET is not set | ||
| 390 | CONFIG_WIRELESS=y | 403 | CONFIG_WIRELESS=y |
| 391 | CONFIG_CFG80211=y | 404 | CONFIG_CFG80211=y |
| 392 | # CONFIG_CFG80211_REG_DEBUG is not set | 405 | # CONFIG_CFG80211_REG_DEBUG is not set |
| 393 | CONFIG_NL80211=y | ||
| 394 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 406 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 395 | CONFIG_WIRELESS_EXT=y | 407 | CONFIG_WIRELESS_EXT=y |
| 396 | CONFIG_WIRELESS_EXT_SYSFS=y | 408 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 397 | CONFIG_LIB80211=m | 409 | CONFIG_LIB80211=m |
| 410 | # CONFIG_LIB80211_DEBUG is not set | ||
| 398 | CONFIG_MAC80211=y | 411 | CONFIG_MAC80211=y |
| 399 | 412 | ||
| 400 | # | 413 | # |
| @@ -408,6 +421,7 @@ CONFIG_MAC80211_RC_DEFAULT="pid" | |||
| 408 | # CONFIG_MAC80211_MESH is not set | 421 | # CONFIG_MAC80211_MESH is not set |
| 409 | # CONFIG_MAC80211_LEDS is not set | 422 | # CONFIG_MAC80211_LEDS is not set |
| 410 | # CONFIG_MAC80211_DEBUG_MENU is not set | 423 | # CONFIG_MAC80211_DEBUG_MENU is not set |
| 424 | # CONFIG_WIMAX is not set | ||
| 411 | # CONFIG_RFKILL is not set | 425 | # CONFIG_RFKILL is not set |
| 412 | # CONFIG_NET_9P is not set | 426 | # CONFIG_NET_9P is not set |
| 413 | 427 | ||
| @@ -430,6 +444,7 @@ CONFIG_MTD=y | |||
| 430 | # CONFIG_MTD_DEBUG is not set | 444 | # CONFIG_MTD_DEBUG is not set |
| 431 | CONFIG_MTD_CONCAT=y | 445 | CONFIG_MTD_CONCAT=y |
| 432 | CONFIG_MTD_PARTITIONS=y | 446 | CONFIG_MTD_PARTITIONS=y |
| 447 | # CONFIG_MTD_TESTS is not set | ||
| 433 | # CONFIG_MTD_REDBOOT_PARTS is not set | 448 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 434 | # CONFIG_MTD_CMDLINE_PARTS is not set | 449 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 435 | # CONFIG_MTD_AR7_PARTS is not set | 450 | # CONFIG_MTD_AR7_PARTS is not set |
| @@ -497,6 +512,11 @@ CONFIG_MTD_RAM=y | |||
| 497 | # CONFIG_MTD_ONENAND is not set | 512 | # CONFIG_MTD_ONENAND is not set |
| 498 | 513 | ||
| 499 | # | 514 | # |
| 515 | # LPDDR flash memory drivers | ||
| 516 | # | ||
| 517 | # CONFIG_MTD_LPDDR is not set | ||
| 518 | |||
| 519 | # | ||
| 500 | # UBI - Unsorted block images | 520 | # UBI - Unsorted block images |
| 501 | # | 521 | # |
| 502 | # CONFIG_MTD_UBI is not set | 522 | # CONFIG_MTD_UBI is not set |
| @@ -514,9 +534,13 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 514 | # CONFIG_ATA_OVER_ETH is not set | 534 | # CONFIG_ATA_OVER_ETH is not set |
| 515 | # CONFIG_BLK_DEV_HD is not set | 535 | # CONFIG_BLK_DEV_HD is not set |
| 516 | CONFIG_MISC_DEVICES=y | 536 | CONFIG_MISC_DEVICES=y |
| 517 | # CONFIG_EEPROM_93CX6 is not set | ||
| 518 | # CONFIG_ENCLOSURE_SERVICES is not set | 537 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 519 | # CONFIG_C2PORT is not set | 538 | # CONFIG_C2PORT is not set |
| 539 | |||
| 540 | # | ||
| 541 | # EEPROM support | ||
| 542 | # | ||
| 543 | # CONFIG_EEPROM_93CX6 is not set | ||
| 520 | CONFIG_HAVE_IDE=y | 544 | CONFIG_HAVE_IDE=y |
| 521 | # CONFIG_IDE is not set | 545 | # CONFIG_IDE is not set |
| 522 | 546 | ||
| @@ -562,6 +586,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 562 | # CONFIG_LIBFC is not set | 586 | # CONFIG_LIBFC is not set |
| 563 | # CONFIG_SCSI_DEBUG is not set | 587 | # CONFIG_SCSI_DEBUG is not set |
| 564 | # CONFIG_SCSI_DH is not set | 588 | # CONFIG_SCSI_DH is not set |
| 589 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 565 | CONFIG_ATA=y | 590 | CONFIG_ATA=y |
| 566 | # CONFIG_ATA_NONSTANDARD is not set | 591 | # CONFIG_ATA_NONSTANDARD is not set |
| 567 | CONFIG_SATA_PMP=y | 592 | CONFIG_SATA_PMP=y |
| @@ -570,6 +595,7 @@ CONFIG_ATA_SFF=y | |||
| 570 | CONFIG_PATA_PLATFORM=y | 595 | CONFIG_PATA_PLATFORM=y |
| 571 | # CONFIG_MD is not set | 596 | # CONFIG_MD is not set |
| 572 | CONFIG_NETDEVICES=y | 597 | CONFIG_NETDEVICES=y |
| 598 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 573 | # CONFIG_DUMMY is not set | 599 | # CONFIG_DUMMY is not set |
| 574 | # CONFIG_BONDING is not set | 600 | # CONFIG_BONDING is not set |
| 575 | # CONFIG_MACVLAN is not set | 601 | # CONFIG_MACVLAN is not set |
| @@ -582,8 +608,10 @@ CONFIG_MII=y | |||
| 582 | # CONFIG_AX88796 is not set | 608 | # CONFIG_AX88796 is not set |
| 583 | # CONFIG_STNIC is not set | 609 | # CONFIG_STNIC is not set |
| 584 | # CONFIG_SMC91X is not set | 610 | # CONFIG_SMC91X is not set |
| 611 | # CONFIG_ETHOC is not set | ||
| 585 | # CONFIG_SMC911X is not set | 612 | # CONFIG_SMC911X is not set |
| 586 | # CONFIG_SMSC911X is not set | 613 | # CONFIG_SMSC911X is not set |
| 614 | # CONFIG_DNET is not set | ||
| 587 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 615 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 588 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 616 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 589 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 617 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -605,12 +633,13 @@ CONFIG_LIBERTAS=m | |||
| 605 | CONFIG_LIBERTAS_SDIO=m | 633 | CONFIG_LIBERTAS_SDIO=m |
| 606 | CONFIG_LIBERTAS_DEBUG=y | 634 | CONFIG_LIBERTAS_DEBUG=y |
| 607 | # CONFIG_LIBERTAS_THINFIRM is not set | 635 | # CONFIG_LIBERTAS_THINFIRM is not set |
| 636 | # CONFIG_AT76C50X_USB is not set | ||
| 608 | # CONFIG_USB_ZD1201 is not set | 637 | # CONFIG_USB_ZD1201 is not set |
| 609 | # CONFIG_USB_NET_RNDIS_WLAN is not set | 638 | # CONFIG_USB_NET_RNDIS_WLAN is not set |
| 610 | # CONFIG_RTL8187 is not set | 639 | # CONFIG_RTL8187 is not set |
| 611 | # CONFIG_MAC80211_HWSIM is not set | 640 | # CONFIG_MAC80211_HWSIM is not set |
| 612 | # CONFIG_P54_COMMON is not set | 641 | # CONFIG_P54_COMMON is not set |
| 613 | # CONFIG_IWLWIFI_LEDS is not set | 642 | # CONFIG_AR9170_USB is not set |
| 614 | # CONFIG_HOSTAP is not set | 643 | # CONFIG_HOSTAP is not set |
| 615 | # CONFIG_B43 is not set | 644 | # CONFIG_B43 is not set |
| 616 | # CONFIG_B43LEGACY is not set | 645 | # CONFIG_B43LEGACY is not set |
| @@ -618,6 +647,10 @@ CONFIG_LIBERTAS_DEBUG=y | |||
| 618 | # CONFIG_RT2X00 is not set | 647 | # CONFIG_RT2X00 is not set |
| 619 | 648 | ||
| 620 | # | 649 | # |
| 650 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 651 | # | ||
| 652 | |||
| 653 | # | ||
| 621 | # USB Network Adapters | 654 | # USB Network Adapters |
| 622 | # | 655 | # |
| 623 | # CONFIG_USB_CATC is not set | 656 | # CONFIG_USB_CATC is not set |
| @@ -794,7 +827,9 @@ CONFIG_USB_MON=y | |||
| 794 | # USB Host Controller Drivers | 827 | # USB Host Controller Drivers |
| 795 | # | 828 | # |
| 796 | # CONFIG_USB_C67X00_HCD is not set | 829 | # CONFIG_USB_C67X00_HCD is not set |
| 830 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 797 | # CONFIG_USB_ISP116X_HCD is not set | 831 | # CONFIG_USB_ISP116X_HCD is not set |
| 832 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 798 | # CONFIG_USB_SL811_HCD is not set | 833 | # CONFIG_USB_SL811_HCD is not set |
| 799 | CONFIG_USB_R8A66597_HCD=y | 834 | CONFIG_USB_R8A66597_HCD=y |
| 800 | # CONFIG_SUPERH_ON_CHIP_R8A66597 is not set | 835 | # CONFIG_SUPERH_ON_CHIP_R8A66597 is not set |
| @@ -809,18 +844,17 @@ CONFIG_USB_R8A66597_HCD=y | |||
| 809 | # CONFIG_USB_TMC is not set | 844 | # CONFIG_USB_TMC is not set |
| 810 | 845 | ||
| 811 | # | 846 | # |
| 812 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 847 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 813 | # | 848 | # |
| 814 | 849 | ||
| 815 | # | 850 | # |
| 816 | # see USB_STORAGE Help for more information | 851 | # also be needed; see USB_STORAGE Help for more info |
| 817 | # | 852 | # |
| 818 | CONFIG_USB_STORAGE=y | 853 | CONFIG_USB_STORAGE=y |
| 819 | # CONFIG_USB_STORAGE_DEBUG is not set | 854 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 820 | # CONFIG_USB_STORAGE_DATAFAB is not set | 855 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 821 | # CONFIG_USB_STORAGE_FREECOM is not set | 856 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 822 | # CONFIG_USB_STORAGE_ISD200 is not set | 857 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 823 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 824 | # CONFIG_USB_STORAGE_USBAT is not set | 858 | # CONFIG_USB_STORAGE_USBAT is not set |
| 825 | # CONFIG_USB_STORAGE_SDDR09 is not set | 859 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 826 | # CONFIG_USB_STORAGE_SDDR55 is not set | 860 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -856,7 +890,6 @@ CONFIG_USB_STORAGE=y | |||
| 856 | # CONFIG_USB_LED is not set | 890 | # CONFIG_USB_LED is not set |
| 857 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 891 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 858 | # CONFIG_USB_CYTHERM is not set | 892 | # CONFIG_USB_CYTHERM is not set |
| 859 | # CONFIG_USB_PHIDGET is not set | ||
| 860 | # CONFIG_USB_IDMOUSE is not set | 893 | # CONFIG_USB_IDMOUSE is not set |
| 861 | # CONFIG_USB_FTDI_ELAN is not set | 894 | # CONFIG_USB_FTDI_ELAN is not set |
| 862 | # CONFIG_USB_APPLEDISPLAY is not set | 895 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -866,6 +899,11 @@ CONFIG_USB_STORAGE=y | |||
| 866 | # CONFIG_USB_ISIGHTFW is not set | 899 | # CONFIG_USB_ISIGHTFW is not set |
| 867 | # CONFIG_USB_VST is not set | 900 | # CONFIG_USB_VST is not set |
| 868 | # CONFIG_USB_GADGET is not set | 901 | # CONFIG_USB_GADGET is not set |
| 902 | |||
| 903 | # | ||
| 904 | # OTG and related infrastructure | ||
| 905 | # | ||
| 906 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 869 | CONFIG_MMC=y | 907 | CONFIG_MMC=y |
| 870 | # CONFIG_MMC_DEBUG is not set | 908 | # CONFIG_MMC_DEBUG is not set |
| 871 | # CONFIG_MMC_UNSAFE_RESUME is not set | 909 | # CONFIG_MMC_UNSAFE_RESUME is not set |
| @@ -887,6 +925,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
| 887 | # CONFIG_ACCESSIBILITY is not set | 925 | # CONFIG_ACCESSIBILITY is not set |
| 888 | # CONFIG_RTC_CLASS is not set | 926 | # CONFIG_RTC_CLASS is not set |
| 889 | # CONFIG_DMADEVICES is not set | 927 | # CONFIG_DMADEVICES is not set |
| 928 | # CONFIG_AUXDISPLAY is not set | ||
| 890 | # CONFIG_UIO is not set | 929 | # CONFIG_UIO is not set |
| 891 | # CONFIG_STAGING is not set | 930 | # CONFIG_STAGING is not set |
| 892 | 931 | ||
| @@ -909,6 +948,7 @@ CONFIG_FS_MBCACHE=y | |||
| 909 | CONFIG_FILE_LOCKING=y | 948 | CONFIG_FILE_LOCKING=y |
| 910 | # CONFIG_XFS_FS is not set | 949 | # CONFIG_XFS_FS is not set |
| 911 | # CONFIG_OCFS2_FS is not set | 950 | # CONFIG_OCFS2_FS is not set |
| 951 | # CONFIG_BTRFS_FS is not set | ||
| 912 | CONFIG_DNOTIFY=y | 952 | CONFIG_DNOTIFY=y |
| 913 | CONFIG_INOTIFY=y | 953 | CONFIG_INOTIFY=y |
| 914 | CONFIG_INOTIFY_USER=y | 954 | CONFIG_INOTIFY_USER=y |
| @@ -956,6 +996,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 956 | # CONFIG_EFS_FS is not set | 996 | # CONFIG_EFS_FS is not set |
| 957 | # CONFIG_JFFS2_FS is not set | 997 | # CONFIG_JFFS2_FS is not set |
| 958 | CONFIG_CRAMFS=y | 998 | CONFIG_CRAMFS=y |
| 999 | # CONFIG_SQUASHFS is not set | ||
| 959 | # CONFIG_VXFS_FS is not set | 1000 | # CONFIG_VXFS_FS is not set |
| 960 | # CONFIG_MINIX_FS is not set | 1001 | # CONFIG_MINIX_FS is not set |
| 961 | # CONFIG_OMFS_FS is not set | 1002 | # CONFIG_OMFS_FS is not set |
| @@ -976,7 +1017,6 @@ CONFIG_LOCKD=y | |||
| 976 | CONFIG_EXPORTFS=y | 1017 | CONFIG_EXPORTFS=y |
| 977 | CONFIG_NFS_COMMON=y | 1018 | CONFIG_NFS_COMMON=y |
| 978 | CONFIG_SUNRPC=y | 1019 | CONFIG_SUNRPC=y |
| 979 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 980 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1020 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 981 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1021 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 982 | # CONFIG_SMB_FS is not set | 1022 | # CONFIG_SMB_FS is not set |
| @@ -1059,7 +1099,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1059 | # | 1099 | # |
| 1060 | # Tracers | 1100 | # Tracers |
| 1061 | # | 1101 | # |
| 1062 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1063 | # CONFIG_SAMPLES is not set | 1102 | # CONFIG_SAMPLES is not set |
| 1064 | CONFIG_HAVE_ARCH_KGDB=y | 1103 | CONFIG_HAVE_ARCH_KGDB=y |
| 1065 | # CONFIG_SH_STANDARD_BIOS is not set | 1104 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1087,10 +1126,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1087 | CONFIG_CRYPTO_HASH=y | 1126 | CONFIG_CRYPTO_HASH=y |
| 1088 | CONFIG_CRYPTO_HASH2=y | 1127 | CONFIG_CRYPTO_HASH2=y |
| 1089 | CONFIG_CRYPTO_RNG2=y | 1128 | CONFIG_CRYPTO_RNG2=y |
| 1129 | CONFIG_CRYPTO_PCOMP=y | ||
| 1090 | CONFIG_CRYPTO_MANAGER=y | 1130 | CONFIG_CRYPTO_MANAGER=y |
| 1091 | CONFIG_CRYPTO_MANAGER2=y | 1131 | CONFIG_CRYPTO_MANAGER2=y |
| 1092 | # CONFIG_CRYPTO_GF128MUL is not set | 1132 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1093 | # CONFIG_CRYPTO_NULL is not set | 1133 | # CONFIG_CRYPTO_NULL is not set |
| 1134 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1094 | # CONFIG_CRYPTO_CRYPTD is not set | 1135 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1095 | # CONFIG_CRYPTO_AUTHENC is not set | 1136 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1096 | # CONFIG_CRYPTO_TEST is not set | 1137 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1159,6 +1200,7 @@ CONFIG_CRYPTO_ARC4=y | |||
| 1159 | # Compression | 1200 | # Compression |
| 1160 | # | 1201 | # |
| 1161 | # CONFIG_CRYPTO_DEFLATE is not set | 1202 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1203 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1162 | # CONFIG_CRYPTO_LZO is not set | 1204 | # CONFIG_CRYPTO_LZO is not set |
| 1163 | 1205 | ||
| 1164 | # | 1206 | # |
| @@ -1180,7 +1222,8 @@ CONFIG_CRC32=y | |||
| 1180 | # CONFIG_CRC7 is not set | 1222 | # CONFIG_CRC7 is not set |
| 1181 | # CONFIG_LIBCRC32C is not set | 1223 | # CONFIG_LIBCRC32C is not set |
| 1182 | CONFIG_ZLIB_INFLATE=y | 1224 | CONFIG_ZLIB_INFLATE=y |
| 1183 | CONFIG_PLIST=y | 1225 | CONFIG_DECOMPRESS_GZIP=y |
| 1184 | CONFIG_HAS_IOMEM=y | 1226 | CONFIG_HAS_IOMEM=y |
| 1185 | CONFIG_HAS_IOPORT=y | 1227 | CONFIG_HAS_IOPORT=y |
| 1186 | CONFIG_HAS_DMA=y | 1228 | CONFIG_HAS_DMA=y |
| 1229 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/configs/urquell_defconfig b/arch/sh/configs/urquell_defconfig index be726c7cdf91..d174b1a4d802 100644 --- a/arch/sh/configs/urquell_defconfig +++ b/arch/sh/configs/urquell_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc4 | 3 | # Linux kernel version: 2.6.29 |
| 4 | # Thu Mar 5 17:28:13 2009 | 4 | # Thu Apr 2 19:33:39 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
| 7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
| @@ -17,7 +17,7 @@ CONFIG_GENERIC_GPIO=y | |||
| 17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
| 18 | CONFIG_GENERIC_CLOCKEVENTS=y | 18 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 19 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
| 20 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 20 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 21 | CONFIG_SYS_SUPPORTS_NUMA=y | 21 | CONFIG_SYS_SUPPORTS_NUMA=y |
| 22 | CONFIG_STACKTRACE_SUPPORT=y | 22 | CONFIG_STACKTRACE_SUPPORT=y |
| 23 | CONFIG_LOCKDEP_SUPPORT=y | 23 | CONFIG_LOCKDEP_SUPPORT=y |
| @@ -25,6 +25,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
| 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 25 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 26 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 27 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
| 28 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | ||
| 28 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 29 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 29 | 30 | ||
| 30 | # | 31 | # |
| @@ -69,6 +70,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 69 | # CONFIG_BLK_DEV_INITRD is not set | 70 | # CONFIG_BLK_DEV_INITRD is not set |
| 70 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 71 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 71 | CONFIG_SYSCTL=y | 72 | CONFIG_SYSCTL=y |
| 73 | CONFIG_ANON_INODES=y | ||
| 72 | CONFIG_EMBEDDED=y | 74 | CONFIG_EMBEDDED=y |
| 73 | CONFIG_UID16=y | 75 | CONFIG_UID16=y |
| 74 | CONFIG_SYSCTL_SYSCALL=y | 76 | CONFIG_SYSCTL_SYSCALL=y |
| @@ -78,10 +80,8 @@ CONFIG_HOTPLUG=y | |||
| 78 | CONFIG_PRINTK=y | 80 | CONFIG_PRINTK=y |
| 79 | CONFIG_BUG=y | 81 | CONFIG_BUG=y |
| 80 | CONFIG_ELF_CORE=y | 82 | CONFIG_ELF_CORE=y |
| 81 | CONFIG_COMPAT_BRK=y | ||
| 82 | CONFIG_BASE_FULL=y | 83 | CONFIG_BASE_FULL=y |
| 83 | CONFIG_FUTEX=y | 84 | CONFIG_FUTEX=y |
| 84 | CONFIG_ANON_INODES=y | ||
| 85 | CONFIG_EPOLL=y | 85 | CONFIG_EPOLL=y |
| 86 | CONFIG_SIGNALFD=y | 86 | CONFIG_SIGNALFD=y |
| 87 | CONFIG_TIMERFD=y | 87 | CONFIG_TIMERFD=y |
| @@ -89,6 +89,7 @@ CONFIG_EVENTFD=y | |||
| 89 | CONFIG_SHMEM=y | 89 | CONFIG_SHMEM=y |
| 90 | CONFIG_AIO=y | 90 | CONFIG_AIO=y |
| 91 | CONFIG_VM_EVENT_COUNTERS=y | 91 | CONFIG_VM_EVENT_COUNTERS=y |
| 92 | CONFIG_COMPAT_BRK=y | ||
| 92 | CONFIG_SLAB=y | 93 | CONFIG_SLAB=y |
| 93 | # CONFIG_SLUB is not set | 94 | # CONFIG_SLUB is not set |
| 94 | # CONFIG_SLOB is not set | 95 | # CONFIG_SLOB is not set |
| @@ -213,11 +214,12 @@ CONFIG_MIGRATION=y | |||
| 213 | CONFIG_ZONE_DMA_FLAG=0 | 214 | CONFIG_ZONE_DMA_FLAG=0 |
| 214 | CONFIG_NR_QUICK=2 | 215 | CONFIG_NR_QUICK=2 |
| 215 | CONFIG_UNEVICTABLE_LRU=y | 216 | CONFIG_UNEVICTABLE_LRU=y |
| 217 | CONFIG_HAVE_MLOCK=y | ||
| 218 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 216 | 219 | ||
| 217 | # | 220 | # |
| 218 | # Cache configuration | 221 | # Cache configuration |
| 219 | # | 222 | # |
| 220 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
| 221 | CONFIG_CACHE_WRITEBACK=y | 223 | CONFIG_CACHE_WRITEBACK=y |
| 222 | # CONFIG_CACHE_WRITETHROUGH is not set | 224 | # CONFIG_CACHE_WRITETHROUGH is not set |
| 223 | # CONFIG_CACHE_OFF is not set | 225 | # CONFIG_CACHE_OFF is not set |
| @@ -231,6 +233,7 @@ CONFIG_SH_FPU=y | |||
| 231 | CONFIG_SH_STORE_QUEUES=y | 233 | CONFIG_SH_STORE_QUEUES=y |
| 232 | CONFIG_CPU_HAS_INTEVT=y | 234 | CONFIG_CPU_HAS_INTEVT=y |
| 233 | CONFIG_CPU_HAS_SR_RB=y | 235 | CONFIG_CPU_HAS_SR_RB=y |
| 236 | CONFIG_CPU_HAS_PTEAEX=y | ||
| 234 | CONFIG_CPU_HAS_FPU=y | 237 | CONFIG_CPU_HAS_FPU=y |
| 235 | 238 | ||
| 236 | # | 239 | # |
| @@ -318,7 +321,6 @@ CONFIG_NET=y | |||
| 318 | # | 321 | # |
| 319 | # Networking options | 322 | # Networking options |
| 320 | # | 323 | # |
| 321 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 322 | CONFIG_PACKET=y | 324 | CONFIG_PACKET=y |
| 323 | # CONFIG_PACKET_MMAP is not set | 325 | # CONFIG_PACKET_MMAP is not set |
| 324 | CONFIG_UNIX=y | 326 | CONFIG_UNIX=y |
| @@ -378,6 +380,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 378 | # CONFIG_LAPB is not set | 380 | # CONFIG_LAPB is not set |
| 379 | # CONFIG_ECONET is not set | 381 | # CONFIG_ECONET is not set |
| 380 | # CONFIG_WAN_ROUTER is not set | 382 | # CONFIG_WAN_ROUTER is not set |
| 383 | # CONFIG_PHONET is not set | ||
| 381 | # CONFIG_NET_SCHED is not set | 384 | # CONFIG_NET_SCHED is not set |
| 382 | # CONFIG_DCB is not set | 385 | # CONFIG_DCB is not set |
| 383 | 386 | ||
| @@ -390,7 +393,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 390 | # CONFIG_IRDA is not set | 393 | # CONFIG_IRDA is not set |
| 391 | # CONFIG_BT is not set | 394 | # CONFIG_BT is not set |
| 392 | # CONFIG_AF_RXRPC is not set | 395 | # CONFIG_AF_RXRPC is not set |
| 393 | # CONFIG_PHONET is not set | ||
| 394 | CONFIG_WIRELESS=y | 396 | CONFIG_WIRELESS=y |
| 395 | # CONFIG_CFG80211 is not set | 397 | # CONFIG_CFG80211 is not set |
| 396 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 398 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| @@ -491,7 +493,6 @@ CONFIG_MTD_PHYSMAP=y | |||
| 491 | # LPDDR flash memory drivers | 493 | # LPDDR flash memory drivers |
| 492 | # | 494 | # |
| 493 | # CONFIG_MTD_LPDDR is not set | 495 | # CONFIG_MTD_LPDDR is not set |
| 494 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 495 | 496 | ||
| 496 | # | 497 | # |
| 497 | # UBI - Unsorted block images | 498 | # UBI - Unsorted block images |
| @@ -553,6 +554,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 553 | # CONFIG_SCSI_SRP_ATTRS is not set | 554 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 554 | # CONFIG_SCSI_LOWLEVEL is not set | 555 | # CONFIG_SCSI_LOWLEVEL is not set |
| 555 | # CONFIG_SCSI_DH is not set | 556 | # CONFIG_SCSI_DH is not set |
| 557 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 556 | CONFIG_ATA=y | 558 | CONFIG_ATA=y |
| 557 | # CONFIG_ATA_NONSTANDARD is not set | 559 | # CONFIG_ATA_NONSTANDARD is not set |
| 558 | CONFIG_SATA_PMP=y | 560 | CONFIG_SATA_PMP=y |
| @@ -561,6 +563,7 @@ CONFIG_ATA_SFF=y | |||
| 561 | # CONFIG_PATA_PLATFORM is not set | 563 | # CONFIG_PATA_PLATFORM is not set |
| 562 | # CONFIG_MD is not set | 564 | # CONFIG_MD is not set |
| 563 | CONFIG_NETDEVICES=y | 565 | CONFIG_NETDEVICES=y |
| 566 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 564 | # CONFIG_DUMMY is not set | 567 | # CONFIG_DUMMY is not set |
| 565 | # CONFIG_BONDING is not set | 568 | # CONFIG_BONDING is not set |
| 566 | # CONFIG_MACVLAN is not set | 569 | # CONFIG_MACVLAN is not set |
| @@ -592,8 +595,10 @@ CONFIG_MII=y | |||
| 592 | # CONFIG_AX88796 is not set | 595 | # CONFIG_AX88796 is not set |
| 593 | # CONFIG_STNIC is not set | 596 | # CONFIG_STNIC is not set |
| 594 | CONFIG_SMC91X=y | 597 | CONFIG_SMC91X=y |
| 598 | # CONFIG_ETHOC is not set | ||
| 595 | # CONFIG_SMC911X is not set | 599 | # CONFIG_SMC911X is not set |
| 596 | # CONFIG_SMSC911X is not set | 600 | # CONFIG_SMSC911X is not set |
| 601 | # CONFIG_DNET is not set | ||
| 597 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 602 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 598 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 603 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 599 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 604 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -610,7 +615,6 @@ CONFIG_SMC91X=y | |||
| 610 | # | 615 | # |
| 611 | # CONFIG_WLAN_PRE80211 is not set | 616 | # CONFIG_WLAN_PRE80211 is not set |
| 612 | # CONFIG_WLAN_80211 is not set | 617 | # CONFIG_WLAN_80211 is not set |
| 613 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 614 | 618 | ||
| 615 | # | 619 | # |
| 616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 620 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -705,6 +709,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 705 | CONFIG_LEGACY_PTY_COUNT=256 | 709 | CONFIG_LEGACY_PTY_COUNT=256 |
| 706 | # CONFIG_IPMI_HANDLER is not set | 710 | # CONFIG_IPMI_HANDLER is not set |
| 707 | CONFIG_HW_RANDOM=y | 711 | CONFIG_HW_RANDOM=y |
| 712 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 708 | # CONFIG_R3964 is not set | 713 | # CONFIG_R3964 is not set |
| 709 | # CONFIG_RAW_DRIVER is not set | 714 | # CONFIG_RAW_DRIVER is not set |
| 710 | # CONFIG_TCG_TPM is not set | 715 | # CONFIG_TCG_TPM is not set |
| @@ -746,7 +751,6 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
| 746 | # CONFIG_SENSORS_PCF8574 is not set | 751 | # CONFIG_SENSORS_PCF8574 is not set |
| 747 | # CONFIG_PCF8575 is not set | 752 | # CONFIG_PCF8575 is not set |
| 748 | # CONFIG_SENSORS_PCA9539 is not set | 753 | # CONFIG_SENSORS_PCA9539 is not set |
| 749 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 750 | # CONFIG_SENSORS_MAX6875 is not set | 754 | # CONFIG_SENSORS_MAX6875 is not set |
| 751 | # CONFIG_SENSORS_TSL2550 is not set | 755 | # CONFIG_SENSORS_TSL2550 is not set |
| 752 | # CONFIG_I2C_DEBUG_CORE is not set | 756 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -855,6 +859,7 @@ CONFIG_FB_SM501=y | |||
| 855 | # CONFIG_FB_VIRTUAL is not set | 859 | # CONFIG_FB_VIRTUAL is not set |
| 856 | # CONFIG_FB_METRONOME is not set | 860 | # CONFIG_FB_METRONOME is not set |
| 857 | # CONFIG_FB_MB862XX is not set | 861 | # CONFIG_FB_MB862XX is not set |
| 862 | # CONFIG_FB_BROADSHEET is not set | ||
| 858 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 863 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 859 | 864 | ||
| 860 | # | 865 | # |
| @@ -922,7 +927,7 @@ CONFIG_THRUSTMASTER_FF=m | |||
| 922 | CONFIG_ZEROPLUS_FF=m | 927 | CONFIG_ZEROPLUS_FF=m |
| 923 | CONFIG_USB_SUPPORT=y | 928 | CONFIG_USB_SUPPORT=y |
| 924 | CONFIG_USB_ARCH_HAS_HCD=y | 929 | CONFIG_USB_ARCH_HAS_HCD=y |
| 925 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 930 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 926 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 931 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 927 | CONFIG_USB=y | 932 | CONFIG_USB=y |
| 928 | # CONFIG_USB_DEBUG is not set | 933 | # CONFIG_USB_DEBUG is not set |
| @@ -947,6 +952,8 @@ CONFIG_USB_MON=y | |||
| 947 | # CONFIG_USB_C67X00_HCD is not set | 952 | # CONFIG_USB_C67X00_HCD is not set |
| 948 | # CONFIG_USB_OXU210HP_HCD is not set | 953 | # CONFIG_USB_OXU210HP_HCD is not set |
| 949 | # CONFIG_USB_ISP116X_HCD is not set | 954 | # CONFIG_USB_ISP116X_HCD is not set |
| 955 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 956 | # CONFIG_USB_OHCI_HCD is not set | ||
| 950 | # CONFIG_USB_SL811_HCD is not set | 957 | # CONFIG_USB_SL811_HCD is not set |
| 951 | # CONFIG_USB_R8A66597_HCD is not set | 958 | # CONFIG_USB_R8A66597_HCD is not set |
| 952 | # CONFIG_USB_HWA_HCD is not set | 959 | # CONFIG_USB_HWA_HCD is not set |
| @@ -960,11 +967,11 @@ CONFIG_USB_MON=y | |||
| 960 | # CONFIG_USB_TMC is not set | 967 | # CONFIG_USB_TMC is not set |
| 961 | 968 | ||
| 962 | # | 969 | # |
| 963 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 970 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 964 | # | 971 | # |
| 965 | 972 | ||
| 966 | # | 973 | # |
| 967 | # see USB_STORAGE Help for more information | 974 | # also be needed; see USB_STORAGE Help for more info |
| 968 | # | 975 | # |
| 969 | CONFIG_USB_STORAGE=y | 976 | CONFIG_USB_STORAGE=y |
| 970 | # CONFIG_USB_STORAGE_DEBUG is not set | 977 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1006,7 +1013,6 @@ CONFIG_USB_STORAGE=y | |||
| 1006 | # CONFIG_USB_LED is not set | 1013 | # CONFIG_USB_LED is not set |
| 1007 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1014 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1008 | # CONFIG_USB_CYTHERM is not set | 1015 | # CONFIG_USB_CYTHERM is not set |
| 1009 | # CONFIG_USB_PHIDGET is not set | ||
| 1010 | # CONFIG_USB_IDMOUSE is not set | 1016 | # CONFIG_USB_IDMOUSE is not set |
| 1011 | # CONFIG_USB_FTDI_ELAN is not set | 1017 | # CONFIG_USB_FTDI_ELAN is not set |
| 1012 | # CONFIG_USB_APPLEDISPLAY is not set | 1018 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1022,12 +1028,14 @@ CONFIG_USB_STORAGE=y | |||
| 1022 | # OTG and related infrastructure | 1028 | # OTG and related infrastructure |
| 1023 | # | 1029 | # |
| 1024 | # CONFIG_USB_GPIO_VBUS is not set | 1030 | # CONFIG_USB_GPIO_VBUS is not set |
| 1031 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1025 | # CONFIG_MMC is not set | 1032 | # CONFIG_MMC is not set |
| 1026 | # CONFIG_MEMSTICK is not set | 1033 | # CONFIG_MEMSTICK is not set |
| 1027 | # CONFIG_NEW_LEDS is not set | 1034 | # CONFIG_NEW_LEDS is not set |
| 1028 | # CONFIG_ACCESSIBILITY is not set | 1035 | # CONFIG_ACCESSIBILITY is not set |
| 1029 | # CONFIG_RTC_CLASS is not set | 1036 | # CONFIG_RTC_CLASS is not set |
| 1030 | # CONFIG_DMADEVICES is not set | 1037 | # CONFIG_DMADEVICES is not set |
| 1038 | # CONFIG_AUXDISPLAY is not set | ||
| 1031 | # CONFIG_UIO is not set | 1039 | # CONFIG_UIO is not set |
| 1032 | # CONFIG_STAGING is not set | 1040 | # CONFIG_STAGING is not set |
| 1033 | 1041 | ||
| @@ -1125,7 +1133,6 @@ CONFIG_EXPORTFS=y | |||
| 1125 | CONFIG_NFS_COMMON=y | 1133 | CONFIG_NFS_COMMON=y |
| 1126 | CONFIG_SUNRPC=y | 1134 | CONFIG_SUNRPC=y |
| 1127 | CONFIG_SUNRPC_GSS=y | 1135 | CONFIG_SUNRPC_GSS=y |
| 1128 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1129 | CONFIG_RPCSEC_GSS_KRB5=y | 1136 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1130 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1137 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1131 | # CONFIG_SMB_FS is not set | 1138 | # CONFIG_SMB_FS is not set |
| @@ -1206,7 +1213,6 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1206 | # | 1213 | # |
| 1207 | # Tracers | 1214 | # Tracers |
| 1208 | # | 1215 | # |
| 1209 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
| 1210 | # CONFIG_SAMPLES is not set | 1216 | # CONFIG_SAMPLES is not set |
| 1211 | CONFIG_HAVE_ARCH_KGDB=y | 1217 | CONFIG_HAVE_ARCH_KGDB=y |
| 1212 | # CONFIG_SH_STANDARD_BIOS is not set | 1218 | # CONFIG_SH_STANDARD_BIOS is not set |
| @@ -1234,10 +1240,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1234 | CONFIG_CRYPTO_HASH=y | 1240 | CONFIG_CRYPTO_HASH=y |
| 1235 | CONFIG_CRYPTO_HASH2=y | 1241 | CONFIG_CRYPTO_HASH2=y |
| 1236 | CONFIG_CRYPTO_RNG2=y | 1242 | CONFIG_CRYPTO_RNG2=y |
| 1243 | CONFIG_CRYPTO_PCOMP=y | ||
| 1237 | CONFIG_CRYPTO_MANAGER=y | 1244 | CONFIG_CRYPTO_MANAGER=y |
| 1238 | CONFIG_CRYPTO_MANAGER2=y | 1245 | CONFIG_CRYPTO_MANAGER2=y |
| 1239 | # CONFIG_CRYPTO_GF128MUL is not set | 1246 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1240 | # CONFIG_CRYPTO_NULL is not set | 1247 | # CONFIG_CRYPTO_NULL is not set |
| 1248 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1241 | # CONFIG_CRYPTO_CRYPTD is not set | 1249 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1242 | # CONFIG_CRYPTO_AUTHENC is not set | 1250 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1243 | # CONFIG_CRYPTO_TEST is not set | 1251 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1306,6 +1314,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1306 | # Compression | 1314 | # Compression |
| 1307 | # | 1315 | # |
| 1308 | # CONFIG_CRYPTO_DEFLATE is not set | 1316 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1317 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1309 | # CONFIG_CRYPTO_LZO is not set | 1318 | # CONFIG_CRYPTO_LZO is not set |
| 1310 | 1319 | ||
| 1311 | # | 1320 | # |
| @@ -1326,7 +1335,7 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1326 | CONFIG_CRC32=y | 1335 | CONFIG_CRC32=y |
| 1327 | # CONFIG_CRC7 is not set | 1336 | # CONFIG_CRC7 is not set |
| 1328 | # CONFIG_LIBCRC32C is not set | 1337 | # CONFIG_LIBCRC32C is not set |
| 1329 | CONFIG_PLIST=y | ||
| 1330 | CONFIG_HAS_IOMEM=y | 1338 | CONFIG_HAS_IOMEM=y |
| 1331 | CONFIG_HAS_IOPORT=y | 1339 | CONFIG_HAS_IOPORT=y |
| 1332 | CONFIG_HAS_DMA=y | 1340 | CONFIG_HAS_DMA=y |
| 1341 | CONFIG_NLATTR=y | ||
diff --git a/arch/sh/drivers/dma/Kconfig b/arch/sh/drivers/dma/Kconfig index f13a05285a9d..666713ac5fcf 100644 --- a/arch/sh/drivers/dma/Kconfig +++ b/arch/sh/drivers/dma/Kconfig | |||
| @@ -12,21 +12,25 @@ config SH_DMA | |||
| 12 | config SH_DMA_IRQ_MULTI | 12 | config SH_DMA_IRQ_MULTI |
| 13 | bool | 13 | bool |
| 14 | depends on SH_DMA | 14 | depends on SH_DMA |
| 15 | default y if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7751 || \ | 15 | default y if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7751 || \ |
| 16 | CPU_SUBTYPE_SH7750S || CPU_SUBTYPE_SH7750R || CPU_SUBTYPE_SH7751R || \ | 16 | CPU_SUBTYPE_SH7750S || CPU_SUBTYPE_SH7750R || \ |
| 17 | CPU_SUBTYPE_SH7091 || CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7764 || \ | 17 | CPU_SUBTYPE_SH7751R || CPU_SUBTYPE_SH7091 || \ |
| 18 | CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 | 18 | CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7764 || \ |
| 19 | CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 | ||
| 19 | 20 | ||
| 20 | config NR_ONCHIP_DMA_CHANNELS | 21 | config NR_ONCHIP_DMA_CHANNELS |
| 21 | int | 22 | int |
| 22 | depends on SH_DMA | 23 | depends on SH_DMA |
| 23 | default "4" if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7750S | 24 | default "4" if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7751 || \ |
| 24 | default "8" if CPU_SUBTYPE_SH7750R || CPU_SUBTYPE_SH7751R || CPU_SUBTYPE_SH7760 | 25 | CPU_SUBTYPE_SH7750S || CPU_SUBTYPE_SH7091 |
| 25 | default "12" if CPU_SUBTYPE_SH7723 || CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 | 26 | default "8" if CPU_SUBTYPE_SH7750R || CPU_SUBTYPE_SH7751R || \ |
| 27 | CPU_SUBTYPE_SH7760 | ||
| 28 | default "12" if CPU_SUBTYPE_SH7723 || CPU_SUBTYPE_SH7780 || \ | ||
| 29 | CPU_SUBTYPE_SH7785 | ||
| 26 | default "6" | 30 | default "6" |
| 27 | help | 31 | help |
| 28 | This allows you to specify the number of channels that the on-chip | 32 | This allows you to specify the number of channels that the on-chip |
| 29 | DMAC supports. This will be 4 for SH7750/SH7751 and 8 for the | 33 | DMAC supports. This will be 4 for SH7091/SH7750/SH7751 and 8 for the |
| 30 | SH7750R/SH7751R. | 34 | SH7750R/SH7751R. |
| 31 | 35 | ||
| 32 | config NR_DMA_CHANNELS_BOOL | 36 | config NR_DMA_CHANNELS_BOOL |
diff --git a/arch/sh/drivers/pci/ops-sh7785lcr.c b/arch/sh/drivers/pci/ops-sh7785lcr.c index b3bd68702059..e8b7446a7c2b 100644 --- a/arch/sh/drivers/pci/ops-sh7785lcr.c +++ b/arch/sh/drivers/pci/ops-sh7785lcr.c | |||
| @@ -48,13 +48,8 @@ EXPORT_SYMBOL(board_pci_channels); | |||
| 48 | 48 | ||
| 49 | static struct sh4_pci_address_map sh7785_pci_map = { | 49 | static struct sh4_pci_address_map sh7785_pci_map = { |
| 50 | .window0 = { | 50 | .window0 = { |
| 51 | .base = SH7780_CS2_BASE_ADDR, | 51 | .base = SH7780_CS0_BASE_ADDR, |
| 52 | .size = 0x04000000, | 52 | .size = 0x20000000, |
| 53 | }, | ||
| 54 | |||
| 55 | .window1 = { | ||
| 56 | .base = SH7780_CS3_BASE_ADDR, | ||
| 57 | .size = 0x04000000, | ||
| 58 | }, | 53 | }, |
| 59 | 54 | ||
| 60 | .flags = SH4_PCIC_NO_RESET, | 55 | .flags = SH4_PCIC_NO_RESET, |
diff --git a/arch/sh/drivers/pci/pci-sh7780.c b/arch/sh/drivers/pci/pci-sh7780.c index 773d575a04b9..bae6a2cf047d 100644 --- a/arch/sh/drivers/pci/pci-sh7780.c +++ b/arch/sh/drivers/pci/pci-sh7780.c | |||
| @@ -120,19 +120,15 @@ int __init sh7780_pcic_init(struct sh4_pci_address_map *map) | |||
| 120 | 120 | ||
| 121 | /* Set IO and Mem windows to local address | 121 | /* Set IO and Mem windows to local address |
| 122 | * Make PCI and local address the same for easy 1 to 1 mapping | 122 | * Make PCI and local address the same for easy 1 to 1 mapping |
| 123 | * Window0 = map->window0.size @ non-cached area base = SDRAM | ||
| 124 | * Window1 = map->window1.size @ cached area base = SDRAM | ||
| 125 | */ | 123 | */ |
| 126 | word = (CONFIG_MEMORY_SIZE - 0x00100000) | 0x00000001; | 124 | pci_write_reg(map->window0.size - 0xfffff, SH4_PCILSR0); |
| 127 | pci_write_reg(word, SH4_PCILSR0); | 125 | pci_write_reg(map->window1.size - 0xfffff, SH4_PCILSR1); |
| 128 | pci_write_reg(0x00000001, SH4_PCILSR1); | ||
| 129 | /* Set the values on window 0 PCI config registers */ | 126 | /* Set the values on window 0 PCI config registers */ |
| 130 | word = CONFIG_MEMORY_START | (CONFIG_MEMORY_SIZE - 0x01000000); | 127 | pci_write_reg(map->window0.base, SH4_PCILAR0); |
| 131 | pci_write_reg(word, SH4_PCILAR0); | 128 | pci_write_reg(map->window0.base, SH7780_PCIMBAR0); |
| 132 | pci_write_reg(word, SH7780_PCIMBAR0); | ||
| 133 | /* Set the values on window 1 PCI config registers */ | 129 | /* Set the values on window 1 PCI config registers */ |
| 134 | pci_write_reg(0x00000000, SH4_PCILAR1); | 130 | pci_write_reg(map->window1.base, SH4_PCILAR1); |
| 135 | pci_write_reg(0x00000000, SH7780_PCIMBAR1); | 131 | pci_write_reg(map->window1.base, SH7780_PCIMBAR1); |
| 136 | 132 | ||
| 137 | /* Map IO space into PCI IO window | 133 | /* Map IO space into PCI IO window |
| 138 | * The IO window is 64K-PCIBIOS_MIN_IO in size | 134 | * The IO window is 64K-PCIBIOS_MIN_IO in size |
diff --git a/arch/sh/include/asm/mmu.h b/arch/sh/include/asm/mmu.h index 6c43625bb1a5..f5963037c9d6 100644 --- a/arch/sh/include/asm/mmu.h +++ b/arch/sh/include/asm/mmu.h | |||
| @@ -1,22 +1,6 @@ | |||
| 1 | #ifndef __MMU_H | 1 | #ifndef __MMU_H |
| 2 | #define __MMU_H | 2 | #define __MMU_H |
| 3 | 3 | ||
| 4 | /* Default "unsigned long" context */ | ||
| 5 | typedef unsigned long mm_context_id_t[NR_CPUS]; | ||
| 6 | |||
| 7 | typedef struct { | ||
| 8 | #ifdef CONFIG_MMU | ||
| 9 | mm_context_id_t id; | ||
| 10 | void *vdso; | ||
| 11 | #else | ||
| 12 | unsigned long end_brk; | ||
| 13 | #endif | ||
| 14 | #ifdef CONFIG_BINFMT_ELF_FDPIC | ||
| 15 | unsigned long exec_fdpic_loadmap; | ||
| 16 | unsigned long interp_fdpic_loadmap; | ||
| 17 | #endif | ||
| 18 | } mm_context_t; | ||
| 19 | |||
| 20 | /* | 4 | /* |
| 21 | * Privileged Space Mapping Buffer (PMB) definitions | 5 | * Privileged Space Mapping Buffer (PMB) definitions |
| 22 | */ | 6 | */ |
| @@ -41,6 +25,24 @@ typedef struct { | |||
| 41 | 25 | ||
| 42 | #define PMB_NO_ENTRY (-1) | 26 | #define PMB_NO_ENTRY (-1) |
| 43 | 27 | ||
| 28 | #ifndef __ASSEMBLY__ | ||
| 29 | |||
| 30 | /* Default "unsigned long" context */ | ||
| 31 | typedef unsigned long mm_context_id_t[NR_CPUS]; | ||
| 32 | |||
| 33 | typedef struct { | ||
| 34 | #ifdef CONFIG_MMU | ||
| 35 | mm_context_id_t id; | ||
| 36 | void *vdso; | ||
| 37 | #else | ||
| 38 | unsigned long end_brk; | ||
| 39 | #endif | ||
| 40 | #ifdef CONFIG_BINFMT_ELF_FDPIC | ||
| 41 | unsigned long exec_fdpic_loadmap; | ||
| 42 | unsigned long interp_fdpic_loadmap; | ||
| 43 | #endif | ||
| 44 | } mm_context_t; | ||
| 45 | |||
| 44 | struct pmb_entry; | 46 | struct pmb_entry; |
| 45 | 47 | ||
| 46 | struct pmb_entry { | 48 | struct pmb_entry { |
| @@ -70,6 +72,7 @@ void pmb_free(struct pmb_entry *pmbe); | |||
| 70 | long pmb_remap(unsigned long virt, unsigned long phys, | 72 | long pmb_remap(unsigned long virt, unsigned long phys, |
| 71 | unsigned long size, unsigned long flags); | 73 | unsigned long size, unsigned long flags); |
| 72 | void pmb_unmap(unsigned long addr); | 74 | void pmb_unmap(unsigned long addr); |
| 75 | #endif /* __ASSEMBLY__ */ | ||
| 73 | 76 | ||
| 74 | #endif /* __MMU_H */ | 77 | #endif /* __MMU_H */ |
| 75 | 78 | ||
diff --git a/arch/sh/include/asm/processor_32.h b/arch/sh/include/asm/processor_32.h index efdd78a53b11..9a8714945dc9 100644 --- a/arch/sh/include/asm/processor_32.h +++ b/arch/sh/include/asm/processor_32.h | |||
| @@ -58,6 +58,14 @@ asmlinkage void __init sh_cpu_init(void); | |||
| 58 | #define SR_FD 0x00008000 | 58 | #define SR_FD 0x00008000 |
| 59 | 59 | ||
| 60 | /* | 60 | /* |
| 61 | * DSP structure and data | ||
| 62 | */ | ||
| 63 | struct sh_dsp_struct { | ||
| 64 | unsigned long dsp_regs[14]; | ||
| 65 | long status; | ||
| 66 | }; | ||
| 67 | |||
| 68 | /* | ||
| 61 | * FPU structure and data | 69 | * FPU structure and data |
| 62 | */ | 70 | */ |
| 63 | 71 | ||
| @@ -96,6 +104,11 @@ struct thread_struct { | |||
| 96 | 104 | ||
| 97 | /* floating point info */ | 105 | /* floating point info */ |
| 98 | union sh_fpu_union fpu; | 106 | union sh_fpu_union fpu; |
| 107 | |||
| 108 | #ifdef CONFIG_SH_DSP | ||
| 109 | /* Dsp status information */ | ||
| 110 | struct sh_dsp_struct dsp_status; | ||
| 111 | #endif | ||
| 99 | }; | 112 | }; |
| 100 | 113 | ||
| 101 | /* Count of active tasks with UBC settings */ | 114 | /* Count of active tasks with UBC settings */ |
diff --git a/arch/sh/include/asm/ptrace.h b/arch/sh/include/asm/ptrace.h index 81c6568fdb3e..d3f6caa936b0 100644 --- a/arch/sh/include/asm/ptrace.h +++ b/arch/sh/include/asm/ptrace.h | |||
| @@ -119,16 +119,8 @@ struct task_struct; | |||
| 119 | extern void user_enable_single_step(struct task_struct *); | 119 | extern void user_enable_single_step(struct task_struct *); |
| 120 | extern void user_disable_single_step(struct task_struct *); | 120 | extern void user_disable_single_step(struct task_struct *); |
| 121 | 121 | ||
| 122 | #ifdef CONFIG_SH_DSP | ||
| 123 | #define task_pt_regs(task) \ | ||
| 124 | ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE \ | ||
| 125 | - sizeof(struct pt_dspregs)) - 1) | ||
| 126 | #define task_pt_dspregs(task) \ | ||
| 127 | ((struct pt_dspregs *) (task_stack_page(task) + THREAD_SIZE) - 1) | ||
| 128 | #else | ||
| 129 | #define task_pt_regs(task) \ | 122 | #define task_pt_regs(task) \ |
| 130 | ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE) - 1) | 123 | ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE) - 1) |
| 131 | #endif | ||
| 132 | 124 | ||
| 133 | static inline unsigned long profile_pc(struct pt_regs *regs) | 125 | static inline unsigned long profile_pc(struct pt_regs *regs) |
| 134 | { | 126 | { |
diff --git a/arch/sh/include/asm/system.h b/arch/sh/include/asm/system.h index c9ec6af8e745..a88895e6dcb0 100644 --- a/arch/sh/include/asm/system.h +++ b/arch/sh/include/asm/system.h | |||
| @@ -153,6 +153,7 @@ extern unsigned long cached_to_uncached; | |||
| 153 | extern struct dentry *sh_debugfs_root; | 153 | extern struct dentry *sh_debugfs_root; |
| 154 | 154 | ||
| 155 | void per_cpu_trap_init(void); | 155 | void per_cpu_trap_init(void); |
| 156 | void default_idle(void); | ||
| 156 | 157 | ||
| 157 | asmlinkage void break_point_trap(void); | 158 | asmlinkage void break_point_trap(void); |
| 158 | 159 | ||
diff --git a/arch/sh/include/asm/system_32.h b/arch/sh/include/asm/system_32.h index a726d5d07277..240b31e1142c 100644 --- a/arch/sh/include/asm/system_32.h +++ b/arch/sh/include/asm/system_32.h | |||
| @@ -3,59 +3,135 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | #ifdef CONFIG_SH_DSP | ||
| 7 | |||
| 8 | #define is_dsp_enabled(tsk) \ | ||
| 9 | (!!(tsk->thread.dsp_status.status & SR_DSP)) | ||
| 10 | |||
| 11 | #define __restore_dsp(tsk) \ | ||
| 12 | do { \ | ||
| 13 | register u32 *__ts2 __asm__ ("r2") = \ | ||
| 14 | (u32 *)&tsk->thread.dsp_status; \ | ||
| 15 | __asm__ __volatile__ ( \ | ||
| 16 | ".balign 4\n\t" \ | ||
| 17 | "movs.l @r2+, a1\n\t" \ | ||
| 18 | "movs.l @r2+, a0g\n\t" \ | ||
| 19 | "movs.l @r2+, a1g\n\t" \ | ||
| 20 | "movs.l @r2+, m0\n\t" \ | ||
| 21 | "movs.l @r2+, m1\n\t" \ | ||
| 22 | "movs.l @r2+, a0\n\t" \ | ||
| 23 | "movs.l @r2+, x0\n\t" \ | ||
| 24 | "movs.l @r2+, x1\n\t" \ | ||
| 25 | "movs.l @r2+, y0\n\t" \ | ||
| 26 | "movs.l @r2+, y1\n\t" \ | ||
| 27 | "lds.l @r2+, dsr\n\t" \ | ||
| 28 | "ldc.l @r2+, rs\n\t" \ | ||
| 29 | "ldc.l @r2+, re\n\t" \ | ||
| 30 | "ldc.l @r2+, mod\n\t" \ | ||
| 31 | : : "r" (__ts2)); \ | ||
| 32 | } while (0) | ||
| 33 | |||
| 34 | |||
| 35 | #define __save_dsp(tsk) \ | ||
| 36 | do { \ | ||
| 37 | register u32 *__ts2 __asm__ ("r2") = \ | ||
| 38 | (u32 *)&tsk->thread.dsp_status + 14; \ | ||
| 39 | \ | ||
| 40 | __asm__ __volatile__ ( \ | ||
| 41 | ".balign 4\n\t" \ | ||
| 42 | "stc.l mod, @-r2\n\t" \ | ||
| 43 | "stc.l re, @-r2\n\t" \ | ||
| 44 | "stc.l rs, @-r2\n\t" \ | ||
| 45 | "sts.l dsr, @-r2\n\t" \ | ||
| 46 | "sts.l y1, @-r2\n\t" \ | ||
| 47 | "sts.l y0, @-r2\n\t" \ | ||
| 48 | "sts.l x1, @-r2\n\t" \ | ||
| 49 | "sts.l x0, @-r2\n\t" \ | ||
| 50 | "sts.l a0, @-r2\n\t" \ | ||
| 51 | ".word 0xf653 ! movs.l a1, @-r2\n\t" \ | ||
| 52 | ".word 0xf6f3 ! movs.l a0g, @-r2\n\t" \ | ||
| 53 | ".word 0xf6d3 ! movs.l a1g, @-r2\n\t" \ | ||
| 54 | ".word 0xf6c3 ! movs.l m0, @-r2\n\t" \ | ||
| 55 | ".word 0xf6e3 ! movs.l m1, @-r2\n\t" \ | ||
| 56 | : : "r" (__ts2)); \ | ||
| 57 | } while (0) | ||
| 58 | |||
| 59 | #else | ||
| 60 | |||
| 61 | #define is_dsp_enabled(tsk) (0) | ||
| 62 | #define __save_dsp(tsk) do { } while (0) | ||
| 63 | #define __restore_dsp(tsk) do { } while (0) | ||
| 64 | #endif | ||
| 65 | |||
| 6 | struct task_struct *__switch_to(struct task_struct *prev, | 66 | struct task_struct *__switch_to(struct task_struct *prev, |
| 7 | struct task_struct *next); | 67 | struct task_struct *next); |
| 8 | 68 | ||
| 9 | /* | 69 | /* |
| 10 | * switch_to() should switch tasks to task nr n, first | 70 | * switch_to() should switch tasks to task nr n, first |
| 11 | */ | 71 | */ |
| 12 | #define switch_to(prev, next, last) \ | 72 | #define switch_to(prev, next, last) \ |
| 13 | do { \ | 73 | do { \ |
| 14 | register u32 *__ts1 __asm__ ("r1") = (u32 *)&prev->thread.sp; \ | 74 | register u32 *__ts1 __asm__ ("r1"); \ |
| 15 | register u32 *__ts2 __asm__ ("r2") = (u32 *)&prev->thread.pc; \ | 75 | register u32 *__ts2 __asm__ ("r2"); \ |
| 16 | register u32 *__ts4 __asm__ ("r4") = (u32 *)prev; \ | 76 | register u32 *__ts4 __asm__ ("r4"); \ |
| 17 | register u32 *__ts5 __asm__ ("r5") = (u32 *)next; \ | 77 | register u32 *__ts5 __asm__ ("r5"); \ |
| 18 | register u32 *__ts6 __asm__ ("r6") = (u32 *)&next->thread.sp; \ | 78 | register u32 *__ts6 __asm__ ("r6"); \ |
| 19 | register u32 __ts7 __asm__ ("r7") = next->thread.pc; \ | 79 | register u32 __ts7 __asm__ ("r7"); \ |
| 20 | struct task_struct *__last; \ | 80 | struct task_struct *__last; \ |
| 21 | \ | 81 | \ |
| 22 | __asm__ __volatile__ ( \ | 82 | if (is_dsp_enabled(prev)) \ |
| 23 | ".balign 4\n\t" \ | 83 | __save_dsp(prev); \ |
| 24 | "stc.l gbr, @-r15\n\t" \ | 84 | \ |
| 25 | "sts.l pr, @-r15\n\t" \ | 85 | __ts1 = (u32 *)&prev->thread.sp; \ |
| 26 | "mov.l r8, @-r15\n\t" \ | 86 | __ts2 = (u32 *)&prev->thread.pc; \ |
| 27 | "mov.l r9, @-r15\n\t" \ | 87 | __ts4 = (u32 *)prev; \ |
| 28 | "mov.l r10, @-r15\n\t" \ | 88 | __ts5 = (u32 *)next; \ |
| 29 | "mov.l r11, @-r15\n\t" \ | 89 | __ts6 = (u32 *)&next->thread.sp; \ |
| 30 | "mov.l r12, @-r15\n\t" \ | 90 | __ts7 = next->thread.pc; \ |
| 31 | "mov.l r13, @-r15\n\t" \ | 91 | \ |
| 32 | "mov.l r14, @-r15\n\t" \ | 92 | __asm__ __volatile__ ( \ |
| 33 | "mov.l r15, @r1\t! save SP\n\t" \ | 93 | ".balign 4\n\t" \ |
| 34 | "mov.l @r6, r15\t! change to new stack\n\t" \ | 94 | "stc.l gbr, @-r15\n\t" \ |
| 35 | "mova 1f, %0\n\t" \ | 95 | "sts.l pr, @-r15\n\t" \ |
| 36 | "mov.l %0, @r2\t! save PC\n\t" \ | 96 | "mov.l r8, @-r15\n\t" \ |
| 37 | "mov.l 2f, %0\n\t" \ | 97 | "mov.l r9, @-r15\n\t" \ |
| 38 | "jmp @%0\t! call __switch_to\n\t" \ | 98 | "mov.l r10, @-r15\n\t" \ |
| 39 | " lds r7, pr\t! with return to new PC\n\t" \ | 99 | "mov.l r11, @-r15\n\t" \ |
| 40 | ".balign 4\n" \ | 100 | "mov.l r12, @-r15\n\t" \ |
| 41 | "2:\n\t" \ | 101 | "mov.l r13, @-r15\n\t" \ |
| 42 | ".long __switch_to\n" \ | 102 | "mov.l r14, @-r15\n\t" \ |
| 43 | "1:\n\t" \ | 103 | "mov.l r15, @r1\t! save SP\n\t" \ |
| 44 | "mov.l @r15+, r14\n\t" \ | 104 | "mov.l @r6, r15\t! change to new stack\n\t" \ |
| 45 | "mov.l @r15+, r13\n\t" \ | 105 | "mova 1f, %0\n\t" \ |
| 46 | "mov.l @r15+, r12\n\t" \ | 106 | "mov.l %0, @r2\t! save PC\n\t" \ |
| 47 | "mov.l @r15+, r11\n\t" \ | 107 | "mov.l 2f, %0\n\t" \ |
| 48 | "mov.l @r15+, r10\n\t" \ | 108 | "jmp @%0\t! call __switch_to\n\t" \ |
| 49 | "mov.l @r15+, r9\n\t" \ | 109 | " lds r7, pr\t! with return to new PC\n\t" \ |
| 50 | "mov.l @r15+, r8\n\t" \ | 110 | ".balign 4\n" \ |
| 51 | "lds.l @r15+, pr\n\t" \ | 111 | "2:\n\t" \ |
| 52 | "ldc.l @r15+, gbr\n\t" \ | 112 | ".long __switch_to\n" \ |
| 53 | : "=z" (__last) \ | 113 | "1:\n\t" \ |
| 54 | : "r" (__ts1), "r" (__ts2), "r" (__ts4), \ | 114 | "mov.l @r15+, r14\n\t" \ |
| 55 | "r" (__ts5), "r" (__ts6), "r" (__ts7) \ | 115 | "mov.l @r15+, r13\n\t" \ |
| 56 | : "r3", "t"); \ | 116 | "mov.l @r15+, r12\n\t" \ |
| 57 | \ | 117 | "mov.l @r15+, r11\n\t" \ |
| 58 | last = __last; \ | 118 | "mov.l @r15+, r10\n\t" \ |
| 119 | "mov.l @r15+, r9\n\t" \ | ||
| 120 | "mov.l @r15+, r8\n\t" \ | ||
| 121 | "lds.l @r15+, pr\n\t" \ | ||
| 122 | "ldc.l @r15+, gbr\n\t" \ | ||
| 123 | : "=z" (__last) \ | ||
| 124 | : "r" (__ts1), "r" (__ts2), "r" (__ts4), \ | ||
| 125 | "r" (__ts5), "r" (__ts6), "r" (__ts7) \ | ||
| 126 | : "r3", "t"); \ | ||
| 127 | \ | ||
| 128 | last = __last; \ | ||
| 129 | } while (0) | ||
| 130 | |||
| 131 | #define finish_arch_switch(prev) \ | ||
| 132 | do { \ | ||
| 133 | if (is_dsp_enabled(prev)) \ | ||
| 134 | __restore_dsp(prev); \ | ||
| 59 | } while (0) | 135 | } while (0) |
| 60 | 136 | ||
| 61 | #define __uses_jump_to_uncached \ | 137 | #define __uses_jump_to_uncached \ |
diff --git a/arch/sh/include/cpu-sh4/cpu/sh7786.h b/arch/sh/include/cpu-sh4/cpu/sh7786.h index 48688adc0c84..977862f9072a 100644 --- a/arch/sh/include/cpu-sh4/cpu/sh7786.h +++ b/arch/sh/include/cpu-sh4/cpu/sh7786.h | |||
| @@ -51,142 +51,86 @@ enum { | |||
| 51 | GPIO_PJ7, GPIO_PJ6, GPIO_PJ5, GPIO_PJ4, | 51 | GPIO_PJ7, GPIO_PJ6, GPIO_PJ5, GPIO_PJ4, |
| 52 | GPIO_PJ3, GPIO_PJ2, GPIO_PJ1, GPIO_PJ0, | 52 | GPIO_PJ3, GPIO_PJ2, GPIO_PJ1, GPIO_PJ0, |
| 53 | 53 | ||
| 54 | GPIO_FN_CDE, | 54 | /* DU */ |
| 55 | GPIO_FN_ETH_MAGIC, | 55 | GPIO_FN_DCLKIN, GPIO_FN_DCLKOUT, GPIO_FN_ODDF, |
| 56 | GPIO_FN_DISP, | 56 | GPIO_FN_VSYNC, GPIO_FN_HSYNC, GPIO_FN_CDE, GPIO_FN_DISP, |
| 57 | GPIO_FN_ETH_LINK, | 57 | GPIO_FN_DR0, GPIO_FN_DG0, GPIO_FN_DB0, |
| 58 | GPIO_FN_DR5, | 58 | GPIO_FN_DR1, GPIO_FN_DG1, GPIO_FN_DB1, |
| 59 | GPIO_FN_ETH_TX_ER, | 59 | GPIO_FN_DR2, GPIO_FN_DG2, GPIO_FN_DB2, |
| 60 | GPIO_FN_DR4, | 60 | GPIO_FN_DR3, GPIO_FN_DG3, GPIO_FN_DB3, |
| 61 | GPIO_FN_ETH_TX_EN, | 61 | GPIO_FN_DR4, GPIO_FN_DG4, GPIO_FN_DB4, |
| 62 | GPIO_FN_DR3, | 62 | GPIO_FN_DR5, GPIO_FN_DG5, GPIO_FN_DB5, |
| 63 | GPIO_FN_ETH_TXD3, | 63 | |
| 64 | GPIO_FN_DR2, | 64 | /* Eth */ |
| 65 | GPIO_FN_ETH_TXD2, | 65 | GPIO_FN_ETH_MAGIC, GPIO_FN_ETH_LINK, GPIO_FN_ETH_TX_ER, |
| 66 | GPIO_FN_DR1, | 66 | GPIO_FN_ETH_TX_EN, GPIO_FN_ETH_MDIO, GPIO_FN_ETH_RX_CLK, |
| 67 | GPIO_FN_ETH_TXD1, | 67 | GPIO_FN_ETH_MDC, GPIO_FN_ETH_COL, GPIO_FN_ETH_TX_CLK, |
| 68 | GPIO_FN_DR0, | 68 | GPIO_FN_ETH_CRS, GPIO_FN_ETH_RX_DV, GPIO_FN_ETH_RX_ER, |
| 69 | GPIO_FN_ETH_TXD0, | 69 | GPIO_FN_ETH_TXD3, GPIO_FN_ETH_TXD2, GPIO_FN_ETH_TXD1, GPIO_FN_ETH_TXD0, |
| 70 | GPIO_FN_VSYNC, | 70 | GPIO_FN_ETH_RXD3, GPIO_FN_ETH_RXD2, GPIO_FN_ETH_RXD1, GPIO_FN_ETH_RXD0, |
| 71 | GPIO_FN_HSPI_CLK, | 71 | |
| 72 | GPIO_FN_ODDF, | 72 | /* HSPI */ |
| 73 | GPIO_FN_HSPI_CS, | 73 | GPIO_FN_HSPI_CLK, GPIO_FN_HSPI_CS, GPIO_FN_HSPI_RX, GPIO_FN_HSPI_TX, |
| 74 | GPIO_FN_DG5, | 74 | |
| 75 | GPIO_FN_ETH_MDIO, | 75 | /* SCIF0 */ |
| 76 | GPIO_FN_DG4, | 76 | GPIO_FN_SCIF0_CTS, GPIO_FN_SCIF0_RTS, GPIO_FN_SCIF0_SCK, |
| 77 | GPIO_FN_ETH_RX_CLK, | 77 | GPIO_FN_SCIF0_RXD, GPIO_FN_SCIF0_TXD, |
| 78 | GPIO_FN_DG3, | 78 | |
| 79 | GPIO_FN_ETH_MDC, | 79 | /* SCIF1 */ |
| 80 | GPIO_FN_DG2, | 80 | GPIO_FN_SCIF1_SCK, GPIO_FN_SCIF1_RXD, GPIO_FN_SCIF1_TXD, |
| 81 | GPIO_FN_ETH_COL, | 81 | |
| 82 | GPIO_FN_DG1, | 82 | /* SCIF3 */ |
| 83 | GPIO_FN_ETH_TX_CLK, | 83 | GPIO_FN_SCIF3_SCK, GPIO_FN_SCIF3_RXD, GPIO_FN_SCIF3_TXD, |
| 84 | GPIO_FN_DG0, | 84 | |
| 85 | GPIO_FN_ETH_CRS, | 85 | /* SCIF4 */ |
| 86 | GPIO_FN_DCLKIN, | 86 | GPIO_FN_SCIF4_SCK, GPIO_FN_SCIF4_RXD, GPIO_FN_SCIF4_TXD, |
| 87 | GPIO_FN_HSPI_RX, | 87 | |
| 88 | GPIO_FN_HSYNC, | 88 | /* SCIF5 */ |
| 89 | GPIO_FN_HSPI_TX, | 89 | GPIO_FN_SCIF5_SCK, GPIO_FN_SCIF5_RXD, GPIO_FN_SCIF5_TXD, |
| 90 | GPIO_FN_DB5, | 90 | |
| 91 | GPIO_FN_ETH_RXD3, | 91 | /* LBSC */ |
| 92 | GPIO_FN_DB4, | 92 | GPIO_FN_BREQ, GPIO_FN_IOIS16, GPIO_FN_CE2B, GPIO_FN_CE2A, GPIO_FN_BACK, |
| 93 | GPIO_FN_ETH_RXD2, | 93 | |
| 94 | GPIO_FN_DB3, | 94 | /* FLCTL */ |
| 95 | GPIO_FN_ETH_RXD1, | 95 | GPIO_FN_FALE, GPIO_FN_FRB, GPIO_FN_FSTATUS, |
| 96 | GPIO_FN_DB2, | 96 | GPIO_FN_FSE, GPIO_FN_FCLE, |
| 97 | GPIO_FN_ETH_RXD0, | 97 | |
| 98 | GPIO_FN_DB1, | 98 | /* DMAC */ |
| 99 | GPIO_FN_ETH_RX_DV, | 99 | GPIO_FN_DACK0, GPIO_FN_DREQ0, GPIO_FN_DRAK0, |
| 100 | GPIO_FN_DB0, | 100 | GPIO_FN_DACK1, GPIO_FN_DREQ1, GPIO_FN_DRAK1, |
| 101 | GPIO_FN_ETH_RX_ER, | 101 | GPIO_FN_DACK2, GPIO_FN_DREQ2, GPIO_FN_DRAK2, |
| 102 | GPIO_FN_DCLKOUT, | 102 | GPIO_FN_DACK3, GPIO_FN_DREQ3, GPIO_FN_DRAK3, |
| 103 | GPIO_FN_SCIF1_SLK, | 103 | |
| 104 | GPIO_FN_SCIF1_RXD, | 104 | /* USB */ |
| 105 | GPIO_FN_SCIF1_TXD, | 105 | GPIO_FN_USB_OVC0, GPIO_FN_USB_PENC0, |
| 106 | GPIO_FN_DACK1, | 106 | GPIO_FN_USB_OVC1, GPIO_FN_USB_PENC1, |
| 107 | GPIO_FN_BACK, | 107 | |
| 108 | GPIO_FN_FALE, | 108 | /* HAC */ |
| 109 | GPIO_FN_DACK0, | ||
| 110 | GPIO_FN_FCLE, | ||
| 111 | GPIO_FN_DREQ1, | ||
| 112 | GPIO_FN_BREQ, | ||
| 113 | GPIO_FN_USB_OVC1, | ||
| 114 | GPIO_FN_DREQ0, | ||
| 115 | GPIO_FN_USB_OVC0, | ||
| 116 | GPIO_FN_USB_PENC1, | ||
| 117 | GPIO_FN_USB_PENC0, | ||
| 118 | GPIO_FN_HAC1_SDOUT, | ||
| 119 | GPIO_FN_SSI1_SDATA, | ||
| 120 | GPIO_FN_SDIF1CMD, | ||
| 121 | GPIO_FN_HAC1_SDIN, | ||
| 122 | GPIO_FN_SSI1_SCK, | ||
| 123 | GPIO_FN_SDIF1CD, | ||
| 124 | GPIO_FN_HAC1_SYNC, | ||
| 125 | GPIO_FN_SSI1_WS, | ||
| 126 | GPIO_FN_SDIF1WP, | ||
| 127 | GPIO_FN_HAC1_BITCLK, | ||
| 128 | GPIO_FN_SSI1_CLK, | ||
| 129 | GPIO_FN_SDIF1CLK, | ||
| 130 | GPIO_FN_HAC0_SDOUT, | ||
| 131 | GPIO_FN_SSI0_SDATA, | ||
| 132 | GPIO_FN_SDIF1D3, | ||
| 133 | GPIO_FN_HAC0_SDIN, | ||
| 134 | GPIO_FN_SSI0_SCK, | ||
| 135 | GPIO_FN_SDIF1D2, | ||
| 136 | GPIO_FN_HAC0_SYNC, | ||
| 137 | GPIO_FN_SSI0_WS, | ||
| 138 | GPIO_FN_SDIF1D1, | ||
| 139 | GPIO_FN_HAC0_BITCLK, | ||
| 140 | GPIO_FN_SSI0_CLK, | ||
| 141 | GPIO_FN_SDIF1D0, | ||
| 142 | GPIO_FN_SCIF3_SCK, | ||
| 143 | GPIO_FN_SSI2_SDATA, | ||
| 144 | GPIO_FN_SCIF3_RXD, | ||
| 145 | GPIO_FN_TCLK, | ||
| 146 | GPIO_FN_SSI2_SCK, | ||
| 147 | GPIO_FN_SCIF3_TXD, | ||
| 148 | GPIO_FN_HAC_RES, | 109 | GPIO_FN_HAC_RES, |
| 149 | GPIO_FN_SSI2_WS, | 110 | GPIO_FN_HAC0_SDOUT, GPIO_FN_HAC0_SDIN, |
| 150 | GPIO_FN_DACK3, | 111 | GPIO_FN_HAC0_SYNC, GPIO_FN_HAC0_BITCLK, |
| 151 | GPIO_FN_SDIF0CMD, | 112 | GPIO_FN_HAC1_SDOUT, GPIO_FN_HAC1_SDIN, |
| 152 | GPIO_FN_DACK2, | 113 | GPIO_FN_HAC1_SYNC, GPIO_FN_HAC1_BITCLK, |
| 153 | GPIO_FN_SDIF0CD, | 114 | |
| 154 | GPIO_FN_DREQ3, | 115 | /* SSI */ |
| 155 | GPIO_FN_SDIF0WP, | 116 | GPIO_FN_SSI0_SDATA, GPIO_FN_SSI0_SCK, GPIO_FN_SSI0_WS, GPIO_FN_SSI0_CLK, |
| 156 | GPIO_FN_SCIF0_CTS, | 117 | GPIO_FN_SSI1_SDATA, GPIO_FN_SSI1_SCK, GPIO_FN_SSI1_WS, GPIO_FN_SSI1_CLK, |
| 157 | GPIO_FN_DREQ2, | 118 | GPIO_FN_SSI2_SDATA, GPIO_FN_SSI2_SCK, GPIO_FN_SSI2_WS, |
| 158 | GPIO_FN_SDIF0CLK, | 119 | GPIO_FN_SSI3_SDATA, GPIO_FN_SSI3_SCK, GPIO_FN_SSI3_WS, |
| 159 | GPIO_FN_SCIF0_RTS, | 120 | |
| 160 | GPIO_FN_IRL7, | 121 | /* SDIF1 */ |
| 161 | GPIO_FN_SDIF0D3, | 122 | GPIO_FN_SDIF1CMD, GPIO_FN_SDIF1CD, GPIO_FN_SDIF1WP, GPIO_FN_SDIF1CLK, |
| 162 | GPIO_FN_SCIF0_SCK, | 123 | GPIO_FN_SDIF1D3, GPIO_FN_SDIF1D2, GPIO_FN_SDIF1D1, GPIO_FN_SDIF1D0, |
| 163 | GPIO_FN_IRL6, | 124 | |
| 164 | GPIO_FN_SDIF0D2, | 125 | /* SDIF0 */ |
| 165 | GPIO_FN_SCIF0_RXD, | 126 | GPIO_FN_SDIF0CMD, GPIO_FN_SDIF0CD, GPIO_FN_SDIF0WP, GPIO_FN_SDIF0CLK, |
| 166 | GPIO_FN_IRL5, | 127 | GPIO_FN_SDIF0D3, GPIO_FN_SDIF0D2, GPIO_FN_SDIF0D1, GPIO_FN_SDIF0D0, |
| 167 | GPIO_FN_SDIF0D1, | 128 | |
| 168 | GPIO_FN_SCIF0_TXD, | 129 | /* TMU */ |
| 169 | GPIO_FN_IRL4, | 130 | GPIO_FN_TCLK, |
| 170 | GPIO_FN_SDIF0D0, | 131 | |
| 171 | GPIO_FN_SCIF5_SCK, | 132 | /* INTC */ |
| 172 | GPIO_FN_FRB, | 133 | GPIO_FN_IRL7, GPIO_FN_IRL6, GPIO_FN_IRL5, GPIO_FN_IRL4, |
| 173 | GPIO_FN_SCIF5_RXD, | ||
| 174 | GPIO_FN_IOIS16, | ||
| 175 | GPIO_FN_SCIF5_TXD, | ||
| 176 | GPIO_FN_CE2B, | ||
| 177 | GPIO_FN_DRAK3, | ||
| 178 | GPIO_FN_CE2A, | ||
| 179 | GPIO_FN_SCIF4_SCK, | ||
| 180 | GPIO_FN_DRAK2, | ||
| 181 | GPIO_FN_SSI3_WS, | ||
| 182 | GPIO_FN_SCIF4_RXD, | ||
| 183 | GPIO_FN_DRAK1, | ||
| 184 | GPIO_FN_SSI3_SDATA, | ||
| 185 | GPIO_FN_FSTATUS, | ||
| 186 | GPIO_FN_SCIF4_TXD, | ||
| 187 | GPIO_FN_DRAK0, | ||
| 188 | GPIO_FN_SSI3_SCK, | ||
| 189 | GPIO_FN_FSE, | ||
| 190 | }; | 134 | }; |
| 191 | 135 | ||
| 192 | #endif /* __CPU_SH7786_H__ */ | 136 | #endif /* __CPU_SH7786_H__ */ |
diff --git a/arch/sh/kernel/cpu/sh3/entry.S b/arch/sh/kernel/cpu/sh3/entry.S index 55da0ff9848d..3cb531f233f2 100644 --- a/arch/sh/kernel/cpu/sh3/entry.S +++ b/arch/sh/kernel/cpu/sh3/entry.S | |||
| @@ -254,40 +254,6 @@ restore_all: | |||
| 254 | 254 | ||
| 255 | lds k2, pr ! restore pr | 255 | lds k2, pr ! restore pr |
| 256 | ! | 256 | ! |
| 257 | #ifdef CONFIG_SH_DSP | ||
| 258 | mov.l @r15+, k0 ! DSP mode marker | ||
| 259 | mov.l 5f, k1 | ||
| 260 | cmp/eq k0, k1 ! Do we have a DSP stack frame? | ||
| 261 | bf skip_restore | ||
| 262 | |||
| 263 | stc sr, k0 ! Enable CPU DSP mode | ||
| 264 | or k1, k0 ! (within kernel it may be disabled) | ||
| 265 | ldc k0, sr | ||
| 266 | mov r2, k0 ! Backup r2 | ||
| 267 | |||
| 268 | ! Restore DSP registers from stack | ||
| 269 | mov r15, r2 | ||
| 270 | movs.l @r2+, a1 | ||
| 271 | movs.l @r2+, a0g | ||
| 272 | movs.l @r2+, a1g | ||
| 273 | movs.l @r2+, m0 | ||
| 274 | movs.l @r2+, m1 | ||
| 275 | mov r2, r15 | ||
| 276 | |||
| 277 | lds.l @r15+, a0 | ||
| 278 | lds.l @r15+, x0 | ||
| 279 | lds.l @r15+, x1 | ||
| 280 | lds.l @r15+, y0 | ||
| 281 | lds.l @r15+, y1 | ||
| 282 | lds.l @r15+, dsr | ||
| 283 | ldc.l @r15+, rs | ||
| 284 | ldc.l @r15+, re | ||
| 285 | ldc.l @r15+, mod | ||
| 286 | |||
| 287 | mov k0, r2 ! Restore r2 | ||
| 288 | skip_restore: | ||
| 289 | #endif | ||
| 290 | ! | ||
| 291 | ! Calculate new SR value | 257 | ! Calculate new SR value |
| 292 | mov k3, k2 ! original SR value | 258 | mov k3, k2 ! original SR value |
| 293 | mov #0xf0, k1 | 259 | mov #0xf0, k1 |
| @@ -358,7 +324,7 @@ general_exception: | |||
| 358 | add k0, k4 | 324 | add k0, k4 |
| 359 | 0: | 325 | 0: |
| 360 | ! Setup stack and save DSP context (k0 contains original r15 on return) | 326 | ! Setup stack and save DSP context (k0 contains original r15 on return) |
| 361 | bsr prepare_stack_save_dsp | 327 | bsr prepare_stack |
| 362 | nop | 328 | nop |
| 363 | 329 | ||
| 364 | ! Save registers / Switch to bank 0 | 330 | ! Save registers / Switch to bank 0 |
| @@ -374,15 +340,14 @@ general_exception: | |||
| 374 | 1: .long EXPEVT | 340 | 1: .long EXPEVT |
| 375 | #endif | 341 | #endif |
| 376 | 342 | ||
| 377 | ! prepare_stack_save_dsp() | 343 | ! prepare_stack() |
| 378 | ! - roll back gRB | 344 | ! - roll back gRB |
| 379 | ! - switch to kernel stack | 345 | ! - switch to kernel stack |
| 380 | ! - save DSP | ||
| 381 | ! k0 returns original sp (after roll back) | 346 | ! k0 returns original sp (after roll back) |
| 382 | ! k1 trashed | 347 | ! k1 trashed |
| 383 | ! k2 trashed | 348 | ! k2 trashed |
| 384 | 349 | ||
| 385 | prepare_stack_save_dsp: | 350 | prepare_stack: |
| 386 | #ifdef CONFIG_GUSA | 351 | #ifdef CONFIG_GUSA |
| 387 | ! Check for roll back gRB (User and Kernel) | 352 | ! Check for roll back gRB (User and Kernel) |
| 388 | mov r15, k0 | 353 | mov r15, k0 |
| @@ -416,47 +381,9 @@ prepare_stack_save_dsp: | |||
| 416 | mov k1, r15 ! change to kernel stack | 381 | mov k1, r15 ! change to kernel stack |
| 417 | ! | 382 | ! |
| 418 | 1: | 383 | 1: |
| 419 | #ifdef CONFIG_SH_DSP | ||
| 420 | ! Save DSP context if needed | ||
| 421 | stc sr, k1 | ||
| 422 | mov #0x10, k2 | ||
| 423 | shll8 k2 ! DSP=1 (0x00001000) | ||
| 424 | tst k2, k1 ! Check if in DSP mode (passed in k2) | ||
| 425 | bt/s skip_save | ||
| 426 | mov #0, k1 ! Set marker for no stack frame | ||
| 427 | |||
| 428 | mov k2, k1 ! Save has-frame marker | ||
| 429 | |||
| 430 | ! Save DSP registers on stack | ||
| 431 | stc.l mod, @-r15 | ||
| 432 | stc.l re, @-r15 | ||
| 433 | stc.l rs, @-r15 | ||
| 434 | sts.l dsr, @-r15 | ||
| 435 | sts.l y1, @-r15 | ||
| 436 | sts.l y0, @-r15 | ||
| 437 | sts.l x1, @-r15 | ||
| 438 | sts.l x0, @-r15 | ||
| 439 | sts.l a0, @-r15 | ||
| 440 | |||
| 441 | ! GAS is broken, does not generate correct "movs.l Ds,@-As" instr. | ||
| 442 | |||
| 443 | ! FIXME: Make sure that this is still the case with newer toolchains, | ||
| 444 | ! as we're not at all interested in supporting ancient toolchains at | ||
| 445 | ! this point. -- PFM. | ||
| 446 | |||
| 447 | mov r15, k2 | ||
| 448 | .word 0xf653 ! movs.l a1, @-r2 | ||
| 449 | .word 0xf6f3 ! movs.l a0g, @-r2 | ||
| 450 | .word 0xf6d3 ! movs.l a1g, @-r2 | ||
| 451 | .word 0xf6c3 ! movs.l m0, @-r2 | ||
| 452 | .word 0xf6e3 ! movs.l m1, @-r2 | ||
| 453 | mov k2, r15 | ||
| 454 | |||
| 455 | skip_save: | ||
| 456 | mov.l k1, @-r15 ! Push DSP mode marker onto stack | ||
| 457 | #endif | ||
| 458 | rts | 384 | rts |
| 459 | nop | 385 | nop |
| 386 | |||
| 460 | ! | 387 | ! |
| 461 | ! 0x400: Instruction and Data TLB miss exception vector | 388 | ! 0x400: Instruction and Data TLB miss exception vector |
| 462 | ! | 389 | ! |
| @@ -468,7 +395,7 @@ handle_exception: | |||
| 468 | mova exception_data, k0 | 395 | mova exception_data, k0 |
| 469 | 396 | ||
| 470 | ! Setup stack and save DSP context (k0 contains original r15 on return) | 397 | ! Setup stack and save DSP context (k0 contains original r15 on return) |
| 471 | bsr prepare_stack_save_dsp | 398 | bsr prepare_stack |
| 472 | PREF(k0) | 399 | PREF(k0) |
| 473 | 400 | ||
| 474 | ! Save registers / Switch to bank 0 | 401 | ! Save registers / Switch to bank 0 |
| @@ -572,7 +499,7 @@ ENTRY(handle_interrupt) | |||
| 572 | mova exception_data, k0 | 499 | mova exception_data, k0 |
| 573 | 500 | ||
| 574 | ! Setup stack and save DSP context (k0 contains original r15 on return) | 501 | ! Setup stack and save DSP context (k0 contains original r15 on return) |
| 575 | bsr prepare_stack_save_dsp | 502 | bsr prepare_stack |
| 576 | PREF(k0) | 503 | PREF(k0) |
| 577 | 504 | ||
| 578 | ! Save registers / Switch to bank 0 | 505 | ! Save registers / Switch to bank 0 |
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index 3d3a3c4425a9..91e3677ae09d 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c | |||
| @@ -199,11 +199,6 @@ int __init detect_cpu_and_cache_system(void) | |||
| 199 | break; | 199 | break; |
| 200 | } | 200 | } |
| 201 | 201 | ||
| 202 | #ifdef CONFIG_SH_DIRECT_MAPPED | ||
| 203 | boot_cpu_data.icache.ways = 1; | ||
| 204 | boot_cpu_data.dcache.ways = 1; | ||
| 205 | #endif | ||
| 206 | |||
| 207 | #ifdef CONFIG_CPU_HAS_PTEA | 202 | #ifdef CONFIG_CPU_HAS_PTEA |
| 208 | boot_cpu_data.flags |= CPU_HAS_PTEA; | 203 | boot_cpu_data.flags |= CPU_HAS_PTEA; |
| 209 | #endif | 204 | #endif |
diff --git a/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c b/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c index 373b3447bfdf..4229e0724c89 100644 --- a/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c +++ b/arch/sh/kernel/cpu/sh4a/pinmux-sh7786.c | |||
| @@ -149,150 +149,44 @@ enum { | |||
| 149 | PINMUX_FUNCTION_END, | 149 | PINMUX_FUNCTION_END, |
| 150 | 150 | ||
| 151 | PINMUX_MARK_BEGIN, | 151 | PINMUX_MARK_BEGIN, |
| 152 | CDE_MARK, | 152 | DCLKIN_MARK, DCLKOUT_MARK, ODDF_MARK, |
| 153 | ETH_MAGIC_MARK, | 153 | VSYNC_MARK, HSYNC_MARK, CDE_MARK, DISP_MARK, |
| 154 | DISP_MARK, | 154 | DR0_MARK, DR1_MARK, DR2_MARK, DR3_MARK, DR4_MARK, DR5_MARK, |
| 155 | ETH_LINK_MARK, | 155 | DG0_MARK, DG1_MARK, DG2_MARK, DG3_MARK, DG4_MARK, DG5_MARK, |
| 156 | DR5_MARK, | 156 | DB0_MARK, DB1_MARK, DB2_MARK, DB3_MARK, DB4_MARK, DB5_MARK, |
| 157 | ETH_TX_ER_MARK, | 157 | ETH_MAGIC_MARK, ETH_LINK_MARK, ETH_TX_ER_MARK, ETH_TX_EN_MARK, |
| 158 | DR4_MARK, | 158 | ETH_MDIO_MARK, ETH_RX_CLK_MARK, ETH_MDC_MARK, ETH_COL_MARK, |
| 159 | ETH_TX_EN_MARK, | 159 | ETH_TX_CLK_MARK, ETH_CRS_MARK, ETH_RX_DV_MARK, ETH_RX_ER_MARK, |
| 160 | DR3_MARK, | 160 | ETH_TXD3_MARK, ETH_TXD2_MARK, ETH_TXD1_MARK, ETH_TXD0_MARK, |
| 161 | ETH_TXD3_MARK, | 161 | ETH_RXD3_MARK, ETH_RXD2_MARK, ETH_RXD1_MARK, ETH_RXD0_MARK, |
| 162 | DR2_MARK, | 162 | HSPI_CLK_MARK, HSPI_CS_MARK, HSPI_RX_MARK, HSPI_TX_MARK, |
| 163 | ETH_TXD2_MARK, | 163 | SCIF0_CTS_MARK, SCIF0_RTS_MARK, |
| 164 | DR1_MARK, | 164 | SCIF0_SCK_MARK, SCIF0_RXD_MARK, SCIF0_TXD_MARK, |
| 165 | ETH_TXD1_MARK, | 165 | SCIF1_SCK_MARK, SCIF1_RXD_MARK, SCIF1_TXD_MARK, |
| 166 | DR0_MARK, | 166 | SCIF3_SCK_MARK, SCIF3_RXD_MARK, SCIF3_TXD_MARK, |
| 167 | ETH_TXD0_MARK, | 167 | SCIF4_SCK_MARK, SCIF4_RXD_MARK, SCIF4_TXD_MARK, |
| 168 | 168 | SCIF5_SCK_MARK, SCIF5_RXD_MARK, SCIF5_TXD_MARK, | |
| 169 | VSYNC_MARK, | 169 | BREQ_MARK, IOIS16_MARK, CE2B_MARK, CE2A_MARK, BACK_MARK, |
| 170 | HSPI_CLK_MARK, | 170 | FALE_MARK, FRB_MARK, FSTATUS_MARK, |
| 171 | ODDF_MARK, | 171 | FSE_MARK, FCLE_MARK, |
| 172 | HSPI_CS_MARK, | 172 | DACK0_MARK, DACK1_MARK, DACK2_MARK, DACK3_MARK, |
| 173 | DG5_MARK, | 173 | DREQ0_MARK, DREQ1_MARK, DREQ2_MARK, DREQ3_MARK, |
| 174 | ETH_MDIO_MARK, | 174 | DRAK0_MARK, DRAK1_MARK, DRAK2_MARK, DRAK3_MARK, |
| 175 | DG4_MARK, | 175 | USB_OVC1_MARK, USB_OVC0_MARK, |
| 176 | ETH_RX_CLK_MARK, | 176 | USB_PENC1_MARK, USB_PENC0_MARK, |
| 177 | DG3_MARK, | ||
| 178 | ETH_MDC_MARK, | ||
| 179 | DG2_MARK, | ||
| 180 | ETH_COL_MARK, | ||
| 181 | DG1_MARK, | ||
| 182 | ETH_TX_CLK_MARK, | ||
| 183 | DG0_MARK, | ||
| 184 | ETH_CRS_MARK, | ||
| 185 | |||
| 186 | DCLKIN_MARK, | ||
| 187 | HSPI_RX_MARK, | ||
| 188 | HSYNC_MARK, | ||
| 189 | HSPI_TX_MARK, | ||
| 190 | DB5_MARK, | ||
| 191 | ETH_RXD3_MARK, | ||
| 192 | DB4_MARK, | ||
| 193 | ETH_RXD2_MARK, | ||
| 194 | DB3_MARK, | ||
| 195 | ETH_RXD1_MARK, | ||
| 196 | DB2_MARK, | ||
| 197 | ETH_RXD0_MARK, | ||
| 198 | DB1_MARK, | ||
| 199 | ETH_RX_DV_MARK, | ||
| 200 | DB0_MARK, | ||
| 201 | ETH_RX_ER_MARK, | ||
| 202 | |||
| 203 | DCLKOUT_MARK, | ||
| 204 | SCIF1_SLK_MARK, | ||
| 205 | SCIF1_RXD_MARK, | ||
| 206 | SCIF1_TXD_MARK, | ||
| 207 | DACK1_MARK, | ||
| 208 | BACK_MARK, | ||
| 209 | FALE_MARK, | ||
| 210 | DACK0_MARK, | ||
| 211 | FCLE_MARK, | ||
| 212 | DREQ1_MARK, | ||
| 213 | BREQ_MARK, | ||
| 214 | USB_OVC1_MARK, | ||
| 215 | DREQ0_MARK, | ||
| 216 | USB_OVC0_MARK, | ||
| 217 | |||
| 218 | USB_PENC1_MARK, | ||
| 219 | USB_PENC0_MARK, | ||
| 220 | |||
| 221 | HAC1_SDOUT_MARK, | ||
| 222 | SSI1_SDATA_MARK, | ||
| 223 | SDIF1CMD_MARK, | ||
| 224 | HAC1_SDIN_MARK, | ||
| 225 | SSI1_SCK_MARK, | ||
| 226 | SDIF1CD_MARK, | ||
| 227 | HAC1_SYNC_MARK, | ||
| 228 | SSI1_WS_MARK, | ||
| 229 | SDIF1WP_MARK, | ||
| 230 | HAC1_BITCLK_MARK, | ||
| 231 | SSI1_CLK_MARK, | ||
| 232 | SDIF1CLK_MARK, | ||
| 233 | HAC0_SDOUT_MARK, | ||
| 234 | SSI0_SDATA_MARK, | ||
| 235 | SDIF1D3_MARK, | ||
| 236 | HAC0_SDIN_MARK, | ||
| 237 | SSI0_SCK_MARK, | ||
| 238 | SDIF1D2_MARK, | ||
| 239 | HAC0_SYNC_MARK, | ||
| 240 | SSI0_WS_MARK, | ||
| 241 | SDIF1D1_MARK, | ||
| 242 | HAC0_BITCLK_MARK, | ||
| 243 | SSI0_CLK_MARK, | ||
| 244 | SDIF1D0_MARK, | ||
| 245 | |||
| 246 | SCIF3_SCK_MARK, | ||
| 247 | SSI2_SDATA_MARK, | ||
| 248 | SCIF3_RXD_MARK, | ||
| 249 | TCLK_MARK, | ||
| 250 | SSI2_SCK_MARK, | ||
| 251 | SCIF3_TXD_MARK, | ||
| 252 | HAC_RES_MARK, | 177 | HAC_RES_MARK, |
| 253 | SSI2_WS_MARK, | 178 | HAC1_SDOUT_MARK, HAC1_SDIN_MARK, HAC1_SYNC_MARK, HAC1_BITCLK_MARK, |
| 254 | 179 | HAC0_SDOUT_MARK, HAC0_SDIN_MARK, HAC0_SYNC_MARK, HAC0_BITCLK_MARK, | |
| 255 | DACK3_MARK, | 180 | SSI0_SDATA_MARK, SSI0_SCK_MARK, SSI0_WS_MARK, SSI0_CLK_MARK, |
| 256 | SDIF0CMD_MARK, | 181 | SSI1_SDATA_MARK, SSI1_SCK_MARK, SSI1_WS_MARK, SSI1_CLK_MARK, |
| 257 | DACK2_MARK, | 182 | SSI2_SDATA_MARK, SSI2_SCK_MARK, SSI2_WS_MARK, |
| 258 | SDIF0CD_MARK, | 183 | SSI3_SDATA_MARK, SSI3_SCK_MARK, SSI3_WS_MARK, |
| 259 | DREQ3_MARK, | 184 | SDIF1CMD_MARK, SDIF1CD_MARK, SDIF1WP_MARK, SDIF1CLK_MARK, |
| 260 | SDIF0WP_MARK, | 185 | SDIF1D3_MARK, SDIF1D2_MARK, SDIF1D1_MARK, SDIF1D0_MARK, |
| 261 | SCIF0_CTS_MARK, | 186 | SDIF0CMD_MARK, SDIF0CD_MARK, SDIF0WP_MARK, SDIF0CLK_MARK, |
| 262 | DREQ2_MARK, | 187 | SDIF0D3_MARK, SDIF0D2_MARK, SDIF0D1_MARK, SDIF0D0_MARK, |
| 263 | SDIF0CLK_MARK, | 188 | TCLK_MARK, |
| 264 | SCIF0_RTS_MARK, | 189 | IRL7_MARK, IRL6_MARK, IRL5_MARK, IRL4_MARK, |
| 265 | IRL7_MARK, | ||
| 266 | SDIF0D3_MARK, | ||
| 267 | SCIF0_SCK_MARK, | ||
| 268 | IRL6_MARK, | ||
| 269 | SDIF0D2_MARK, | ||
| 270 | SCIF0_RXD_MARK, | ||
| 271 | IRL5_MARK, | ||
| 272 | SDIF0D1_MARK, | ||
| 273 | SCIF0_TXD_MARK, | ||
| 274 | IRL4_MARK, | ||
| 275 | SDIF0D0_MARK, | ||
| 276 | |||
| 277 | SCIF5_SCK_MARK, | ||
| 278 | FRB_MARK, | ||
| 279 | SCIF5_RXD_MARK, | ||
| 280 | IOIS16_MARK, | ||
| 281 | SCIF5_TXD_MARK, | ||
| 282 | CE2B_MARK, | ||
| 283 | DRAK3_MARK, | ||
| 284 | CE2A_MARK, | ||
| 285 | SCIF4_SCK_MARK, | ||
| 286 | DRAK2_MARK, | ||
| 287 | SSI3_WS_MARK, | ||
| 288 | SCIF4_RXD_MARK, | ||
| 289 | DRAK1_MARK, | ||
| 290 | SSI3_SDATA_MARK, | ||
| 291 | FSTATUS_MARK, | ||
| 292 | SCIF4_TXD_MARK, | ||
| 293 | DRAK0_MARK, | ||
| 294 | SSI3_SCK_MARK, | ||
| 295 | FSE_MARK, | ||
| 296 | PINMUX_MARK_END, | 190 | PINMUX_MARK_END, |
| 297 | }; | 191 | }; |
| 298 | 192 | ||
| @@ -377,7 +271,6 @@ static pinmux_enum_t pinmux_data[] = { | |||
| 377 | PINMUX_DATA(PJ1_DATA, PJ1_IN, PJ1_OUT, PJ1_IN_PU), | 271 | PINMUX_DATA(PJ1_DATA, PJ1_IN, PJ1_OUT, PJ1_IN_PU), |
| 378 | 272 | ||
| 379 | /* PA FN */ | 273 | /* PA FN */ |
| 380 | PINMUX_MARK_BEGIN, | ||
| 381 | PINMUX_DATA(CDE_MARK, P1MSEL2_0, PA7_FN), | 274 | PINMUX_DATA(CDE_MARK, P1MSEL2_0, PA7_FN), |
| 382 | PINMUX_DATA(DISP_MARK, P1MSEL2_0, PA6_FN), | 275 | PINMUX_DATA(DISP_MARK, P1MSEL2_0, PA6_FN), |
| 383 | PINMUX_DATA(DR5_MARK, P1MSEL2_0, PA5_FN), | 276 | PINMUX_DATA(DR5_MARK, P1MSEL2_0, PA5_FN), |
| @@ -434,7 +327,7 @@ static pinmux_enum_t pinmux_data[] = { | |||
| 434 | 327 | ||
| 435 | /* PD FN */ | 328 | /* PD FN */ |
| 436 | PINMUX_DATA(DCLKOUT_MARK, PD7_FN), | 329 | PINMUX_DATA(DCLKOUT_MARK, PD7_FN), |
| 437 | PINMUX_DATA(SCIF1_SLK_MARK, PD6_FN), | 330 | PINMUX_DATA(SCIF1_SCK_MARK, PD6_FN), |
| 438 | PINMUX_DATA(SCIF1_RXD_MARK, PD5_FN), | 331 | PINMUX_DATA(SCIF1_RXD_MARK, PD5_FN), |
| 439 | PINMUX_DATA(SCIF1_TXD_MARK, PD4_FN), | 332 | PINMUX_DATA(SCIF1_TXD_MARK, PD4_FN), |
| 440 | PINMUX_DATA(DACK1_MARK, P1MSEL13_1, P1MSEL12_0, PD3_FN), | 333 | PINMUX_DATA(DACK1_MARK, P1MSEL13_1, P1MSEL12_0, PD3_FN), |
| @@ -662,7 +555,7 @@ static struct pinmux_gpio pinmux_gpios[] = { | |||
| 662 | PINMUX_GPIO(GPIO_FN_DB0, DB0_MARK), | 555 | PINMUX_GPIO(GPIO_FN_DB0, DB0_MARK), |
| 663 | PINMUX_GPIO(GPIO_FN_ETH_RX_ER, ETH_RX_ER_MARK), | 556 | PINMUX_GPIO(GPIO_FN_ETH_RX_ER, ETH_RX_ER_MARK), |
| 664 | PINMUX_GPIO(GPIO_FN_DCLKOUT, DCLKOUT_MARK), | 557 | PINMUX_GPIO(GPIO_FN_DCLKOUT, DCLKOUT_MARK), |
| 665 | PINMUX_GPIO(GPIO_FN_SCIF1_SLK, SCIF1_SLK_MARK), | 558 | PINMUX_GPIO(GPIO_FN_SCIF1_SCK, SCIF1_SCK_MARK), |
| 666 | PINMUX_GPIO(GPIO_FN_SCIF1_RXD, SCIF1_RXD_MARK), | 559 | PINMUX_GPIO(GPIO_FN_SCIF1_RXD, SCIF1_RXD_MARK), |
| 667 | PINMUX_GPIO(GPIO_FN_SCIF1_TXD, SCIF1_TXD_MARK), | 560 | PINMUX_GPIO(GPIO_FN_SCIF1_TXD, SCIF1_TXD_MARK), |
| 668 | PINMUX_GPIO(GPIO_FN_DACK1, DACK1_MARK), | 561 | PINMUX_GPIO(GPIO_FN_DACK1, DACK1_MARK), |
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index fe59ccfc1152..f35ed0348850 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c | |||
| @@ -38,7 +38,7 @@ static int __init hlt_setup(char *__unused) | |||
| 38 | } | 38 | } |
| 39 | __setup("hlt", hlt_setup); | 39 | __setup("hlt", hlt_setup); |
| 40 | 40 | ||
| 41 | static void default_idle(void) | 41 | void default_idle(void) |
| 42 | { | 42 | { |
| 43 | if (!hlt_counter) { | 43 | if (!hlt_counter) { |
| 44 | clear_thread_flag(TIF_POLLING_NRFLAG); | 44 | clear_thread_flag(TIF_POLLING_NRFLAG); |
diff --git a/arch/sh/kernel/io_trapped.c b/arch/sh/kernel/io_trapped.c index 39cd7f3aec7b..c22853b059ef 100644 --- a/arch/sh/kernel/io_trapped.c +++ b/arch/sh/kernel/io_trapped.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/bitops.h> | 14 | #include <linux/bitops.h> |
| 15 | #include <linux/vmalloc.h> | 15 | #include <linux/vmalloc.h> |
| 16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> | ||
| 17 | #include <asm/system.h> | 18 | #include <asm/system.h> |
| 18 | #include <asm/mmu_context.h> | 19 | #include <asm/mmu_context.h> |
| 19 | #include <asm/uaccess.h> | 20 | #include <asm/uaccess.h> |
| @@ -32,6 +33,15 @@ EXPORT_SYMBOL_GPL(trapped_mem); | |||
| 32 | #endif | 33 | #endif |
| 33 | static DEFINE_SPINLOCK(trapped_lock); | 34 | static DEFINE_SPINLOCK(trapped_lock); |
| 34 | 35 | ||
| 36 | static int trapped_io_disable __read_mostly; | ||
| 37 | |||
| 38 | static int __init trapped_io_setup(char *__unused) | ||
| 39 | { | ||
| 40 | trapped_io_disable = 1; | ||
| 41 | return 1; | ||
| 42 | } | ||
| 43 | __setup("noiotrap", trapped_io_setup); | ||
| 44 | |||
| 35 | int register_trapped_io(struct trapped_io *tiop) | 45 | int register_trapped_io(struct trapped_io *tiop) |
| 36 | { | 46 | { |
| 37 | struct resource *res; | 47 | struct resource *res; |
| @@ -39,6 +49,9 @@ int register_trapped_io(struct trapped_io *tiop) | |||
| 39 | struct page *pages[TRAPPED_PAGES_MAX]; | 49 | struct page *pages[TRAPPED_PAGES_MAX]; |
| 40 | int k, n; | 50 | int k, n; |
| 41 | 51 | ||
| 52 | if (unlikely(trapped_io_disable)) | ||
| 53 | return 0; | ||
| 54 | |||
| 42 | /* structure must be page aligned */ | 55 | /* structure must be page aligned */ |
| 43 | if ((unsigned long)tiop & (PAGE_SIZE - 1)) | 56 | if ((unsigned long)tiop & (PAGE_SIZE - 1)) |
| 44 | goto bad; | 57 | goto bad; |
diff --git a/arch/sh/kernel/process_32.c b/arch/sh/kernel/process_32.c index 694bc15f84fd..6d94725d22f2 100644 --- a/arch/sh/kernel/process_32.c +++ b/arch/sh/kernel/process_32.c | |||
| @@ -176,14 +176,26 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, | |||
| 176 | { | 176 | { |
| 177 | struct thread_info *ti = task_thread_info(p); | 177 | struct thread_info *ti = task_thread_info(p); |
| 178 | struct pt_regs *childregs; | 178 | struct pt_regs *childregs; |
| 179 | #if defined(CONFIG_SH_FPU) | 179 | #if defined(CONFIG_SH_FPU) || defined(CONFIG_SH_DSP) |
| 180 | struct task_struct *tsk = current; | 180 | struct task_struct *tsk = current; |
| 181 | #endif | ||
| 181 | 182 | ||
| 183 | #if defined(CONFIG_SH_FPU) | ||
| 182 | unlazy_fpu(tsk, regs); | 184 | unlazy_fpu(tsk, regs); |
| 183 | p->thread.fpu = tsk->thread.fpu; | 185 | p->thread.fpu = tsk->thread.fpu; |
| 184 | copy_to_stopped_child_used_math(p); | 186 | copy_to_stopped_child_used_math(p); |
| 185 | #endif | 187 | #endif |
| 186 | 188 | ||
| 189 | #if defined(CONFIG_SH_DSP) | ||
| 190 | if (is_dsp_enabled(tsk)) { | ||
| 191 | /* We can use the __save_dsp or just copy the struct: | ||
| 192 | * __save_dsp(p); | ||
| 193 | * p->thread.dsp_status.status |= SR_DSP | ||
| 194 | */ | ||
| 195 | p->thread.dsp_status = tsk->thread.dsp_status; | ||
| 196 | } | ||
| 197 | #endif | ||
| 198 | |||
| 187 | childregs = task_pt_regs(p); | 199 | childregs = task_pt_regs(p); |
| 188 | *childregs = *regs; | 200 | *childregs = *regs; |
| 189 | 201 | ||
diff --git a/arch/sh/kernel/ptrace_32.c b/arch/sh/kernel/ptrace_32.c index 29ca09d24ef8..f7b22dd83b0c 100644 --- a/arch/sh/kernel/ptrace_32.c +++ b/arch/sh/kernel/ptrace_32.c | |||
| @@ -200,7 +200,8 @@ static int dspregs_get(struct task_struct *target, | |||
| 200 | unsigned int pos, unsigned int count, | 200 | unsigned int pos, unsigned int count, |
| 201 | void *kbuf, void __user *ubuf) | 201 | void *kbuf, void __user *ubuf) |
| 202 | { | 202 | { |
| 203 | const struct pt_dspregs *regs = task_pt_dspregs(target); | 203 | const struct pt_dspregs *regs = |
| 204 | (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs; | ||
| 204 | int ret; | 205 | int ret; |
| 205 | 206 | ||
| 206 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, regs, | 207 | ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, regs, |
| @@ -217,7 +218,8 @@ static int dspregs_set(struct task_struct *target, | |||
| 217 | unsigned int pos, unsigned int count, | 218 | unsigned int pos, unsigned int count, |
| 218 | const void *kbuf, const void __user *ubuf) | 219 | const void *kbuf, const void __user *ubuf) |
| 219 | { | 220 | { |
| 220 | struct pt_dspregs *regs = task_pt_dspregs(target); | 221 | struct pt_dspregs *regs = |
| 222 | (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs; | ||
| 221 | int ret; | 223 | int ret; |
| 222 | 224 | ||
| 223 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, regs, | 225 | ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, regs, |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 24c60251f680..04a6004fccc4 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
| @@ -103,12 +103,11 @@ static int __init early_parse_mem(char *p) | |||
| 103 | size = memparse(p, &p); | 103 | size = memparse(p, &p); |
| 104 | 104 | ||
| 105 | if (size > __MEMORY_SIZE) { | 105 | if (size > __MEMORY_SIZE) { |
| 106 | static char msg[] __initdata = KERN_ERR | 106 | printk(KERN_ERR |
| 107 | "Using mem= to increase the size of kernel memory " | 107 | "Using mem= to increase the size of kernel memory " |
| 108 | "is not allowed.\n" | 108 | "is not allowed.\n" |
| 109 | " Recompile the kernel with the correct value for " | 109 | " Recompile the kernel with the correct value for " |
| 110 | "CONFIG_MEMORY_SIZE.\n"; | 110 | "CONFIG_MEMORY_SIZE.\n"); |
| 111 | printk(msg); | ||
| 112 | return 0; | 111 | return 0; |
| 113 | } | 112 | } |
| 114 | 113 | ||
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index 60dcf87ed019..30ca9c51e52d 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c | |||
| @@ -664,6 +664,8 @@ asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5, | |||
| 664 | if (is_dsp_inst(regs)) { | 664 | if (is_dsp_inst(regs)) { |
| 665 | /* Enable DSP mode, and restart instruction. */ | 665 | /* Enable DSP mode, and restart instruction. */ |
| 666 | regs->sr |= SR_DSP; | 666 | regs->sr |= SR_DSP; |
| 667 | /* Save DSP mode */ | ||
| 668 | tsk->thread.dsp_status.status |= SR_DSP; | ||
| 667 | return; | 669 | return; |
| 668 | } | 670 | } |
| 669 | #endif | 671 | #endif |
diff --git a/arch/sh/mm/Kconfig b/arch/sh/mm/Kconfig index 10c24356d2d5..d4079cab2d58 100644 --- a/arch/sh/mm/Kconfig +++ b/arch/sh/mm/Kconfig | |||
| @@ -251,18 +251,6 @@ config SH7705_CACHE_32KB | |||
| 251 | depends on CPU_SUBTYPE_SH7705 | 251 | depends on CPU_SUBTYPE_SH7705 |
| 252 | default y | 252 | default y |
| 253 | 253 | ||
| 254 | config SH_DIRECT_MAPPED | ||
| 255 | bool "Use direct-mapped caching" | ||
| 256 | default n | ||
| 257 | help | ||
| 258 | Selecting this option will configure the caches to be direct-mapped, | ||
| 259 | even if the cache supports a 2 or 4-way mode. This is useful primarily | ||
| 260 | for debugging on platforms with 2 and 4-way caches (SH7750R/SH7751R, | ||
| 261 | SH4-202, SH4-501, etc.) | ||
| 262 | |||
| 263 | Turn this option off for platforms that do not have a direct-mapped | ||
| 264 | cache, and you have no need to run the caches in such a configuration. | ||
| 265 | |||
| 266 | choice | 254 | choice |
| 267 | prompt "Cache mode" | 255 | prompt "Cache mode" |
| 268 | default CACHE_WRITEBACK if CPU_SH2A || CPU_SH3 || CPU_SH4 || CPU_SH5 | 256 | default CACHE_WRITEBACK if CPU_SH2A || CPU_SH3 || CPU_SH4 || CPU_SH5 |
diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index 7783b42f6914..1c92c39a53aa 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c | |||
| @@ -465,7 +465,6 @@ static void sh_cmt_register_clockevent(struct sh_cmt_priv *p, | |||
| 465 | ced->set_mode = sh_cmt_clock_event_mode; | 465 | ced->set_mode = sh_cmt_clock_event_mode; |
| 466 | 466 | ||
| 467 | pr_info("sh_cmt: %s used for clock events\n", ced->name); | 467 | pr_info("sh_cmt: %s used for clock events\n", ced->name); |
| 468 | ced->mult = 1; /* work around misplaced WARN_ON() in clockevents.c */ | ||
| 469 | clockevents_register_device(ced); | 468 | clockevents_register_device(ced); |
| 470 | } | 469 | } |
| 471 | 470 | ||
| @@ -557,7 +556,7 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev) | |||
| 557 | cfg->clockevent_rating, | 556 | cfg->clockevent_rating, |
| 558 | cfg->clocksource_rating); | 557 | cfg->clocksource_rating); |
| 559 | err2: | 558 | err2: |
| 560 | free_irq(irq, p); | 559 | remove_irq(irq, &p->irqaction); |
| 561 | err1: | 560 | err1: |
| 562 | iounmap(p->mapbase); | 561 | iounmap(p->mapbase); |
| 563 | err0: | 562 | err0: |
diff --git a/drivers/input/keyboard/sh_keysc.c b/drivers/input/keyboard/sh_keysc.c index e1480fb11de3..cea70e6a1031 100644 --- a/drivers/input/keyboard/sh_keysc.c +++ b/drivers/input/keyboard/sh_keysc.c | |||
| @@ -259,12 +259,15 @@ static int sh_keysc_suspend(struct device *dev) | |||
| 259 | { | 259 | { |
| 260 | struct platform_device *pdev = to_platform_device(dev); | 260 | struct platform_device *pdev = to_platform_device(dev); |
| 261 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); | 261 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); |
| 262 | int irq = platform_get_irq(pdev, 0); | ||
| 262 | unsigned short value; | 263 | unsigned short value; |
| 263 | 264 | ||
| 264 | value = ioread16(priv->iomem_base + KYCR1_OFFS); | 265 | value = ioread16(priv->iomem_base + KYCR1_OFFS); |
| 265 | 266 | ||
| 266 | if (device_may_wakeup(dev)) | 267 | if (device_may_wakeup(dev)) { |
| 267 | value |= 0x80; | 268 | value |= 0x80; |
| 269 | enable_irq_wake(irq); | ||
| 270 | } | ||
| 268 | else | 271 | else |
| 269 | value &= ~0x80; | 272 | value &= ~0x80; |
| 270 | 273 | ||
| @@ -272,8 +275,20 @@ static int sh_keysc_suspend(struct device *dev) | |||
| 272 | return 0; | 275 | return 0; |
| 273 | } | 276 | } |
| 274 | 277 | ||
| 278 | static int sh_keysc_resume(struct device *dev) | ||
| 279 | { | ||
| 280 | struct platform_device *pdev = to_platform_device(dev); | ||
| 281 | int irq = platform_get_irq(pdev, 0); | ||
| 282 | |||
| 283 | if (device_may_wakeup(dev)) | ||
| 284 | disable_irq_wake(irq); | ||
| 285 | |||
| 286 | return 0; | ||
| 287 | } | ||
| 288 | |||
| 275 | static struct dev_pm_ops sh_keysc_dev_pm_ops = { | 289 | static struct dev_pm_ops sh_keysc_dev_pm_ops = { |
| 276 | .suspend = sh_keysc_suspend, | 290 | .suspend = sh_keysc_suspend, |
| 291 | .resume = sh_keysc_resume, | ||
| 277 | }; | 292 | }; |
| 278 | 293 | ||
| 279 | struct platform_driver sh_keysc_device_driver = { | 294 | struct platform_driver sh_keysc_device_driver = { |
diff --git a/drivers/input/touchscreen/migor_ts.c b/drivers/input/touchscreen/migor_ts.c index 504ca11749a1..141dd584330e 100644 --- a/drivers/input/touchscreen/migor_ts.c +++ b/drivers/input/touchscreen/migor_ts.c | |||
| @@ -198,6 +198,7 @@ static int migor_ts_probe(struct i2c_client *client, | |||
| 198 | goto err2; | 198 | goto err2; |
| 199 | } | 199 | } |
| 200 | 200 | ||
| 201 | device_init_wakeup(&client->dev, 1); | ||
| 201 | return 0; | 202 | return 0; |
| 202 | 203 | ||
| 203 | err2: | 204 | err2: |
| @@ -224,6 +225,26 @@ static int migor_ts_remove(struct i2c_client *client) | |||
| 224 | return 0; | 225 | return 0; |
| 225 | } | 226 | } |
| 226 | 227 | ||
| 228 | static int migor_ts_suspend(struct i2c_client *client, pm_message_t mesg) | ||
| 229 | { | ||
| 230 | struct migor_ts_priv *priv = dev_get_drvdata(&client->dev); | ||
| 231 | |||
| 232 | if (device_may_wakeup(&client->dev)) | ||
| 233 | enable_irq_wake(priv->irq); | ||
| 234 | |||
| 235 | return 0; | ||
| 236 | } | ||
| 237 | |||
| 238 | static int migor_ts_resume(struct i2c_client *client) | ||
| 239 | { | ||
| 240 | struct migor_ts_priv *priv = dev_get_drvdata(&client->dev); | ||
| 241 | |||
| 242 | if (device_may_wakeup(&client->dev)) | ||
| 243 | disable_irq_wake(priv->irq); | ||
| 244 | |||
| 245 | return 0; | ||
| 246 | } | ||
| 247 | |||
| 227 | static const struct i2c_device_id migor_ts_id[] = { | 248 | static const struct i2c_device_id migor_ts_id[] = { |
| 228 | { "migor_ts", 0 }, | 249 | { "migor_ts", 0 }, |
| 229 | { } | 250 | { } |
| @@ -236,6 +257,8 @@ static struct i2c_driver migor_ts_driver = { | |||
| 236 | }, | 257 | }, |
| 237 | .probe = migor_ts_probe, | 258 | .probe = migor_ts_probe, |
| 238 | .remove = migor_ts_remove, | 259 | .remove = migor_ts_remove, |
| 260 | .suspend = migor_ts_suspend, | ||
| 261 | .resume = migor_ts_resume, | ||
| 239 | .id_table = migor_ts_id, | 262 | .id_table = migor_ts_id, |
| 240 | }; | 263 | }; |
| 241 | 264 | ||
diff --git a/drivers/rtc/rtc-sh.c b/drivers/rtc/rtc-sh.c index 4898f7fe8518..9b1ff12bf947 100644 --- a/drivers/rtc/rtc-sh.c +++ b/drivers/rtc/rtc-sh.c | |||
| @@ -795,10 +795,46 @@ static int __devexit sh_rtc_remove(struct platform_device *pdev) | |||
| 795 | 795 | ||
| 796 | return 0; | 796 | return 0; |
| 797 | } | 797 | } |
| 798 | |||
| 799 | static void sh_rtc_set_irq_wake(struct device *dev, int enabled) | ||
| 800 | { | ||
| 801 | struct platform_device *pdev = to_platform_device(dev); | ||
| 802 | struct sh_rtc *rtc = platform_get_drvdata(pdev); | ||
| 803 | |||
| 804 | set_irq_wake(rtc->periodic_irq, enabled); | ||
| 805 | if (rtc->carry_irq > 0) { | ||
| 806 | set_irq_wake(rtc->carry_irq, enabled); | ||
| 807 | set_irq_wake(rtc->alarm_irq, enabled); | ||
| 808 | } | ||
| 809 | |||
| 810 | } | ||
| 811 | |||
| 812 | static int sh_rtc_suspend(struct device *dev) | ||
| 813 | { | ||
| 814 | if (device_may_wakeup(dev)) | ||
| 815 | sh_rtc_set_irq_wake(dev, 1); | ||
| 816 | |||
| 817 | return 0; | ||
| 818 | } | ||
| 819 | |||
| 820 | static int sh_rtc_resume(struct device *dev) | ||
| 821 | { | ||
| 822 | if (device_may_wakeup(dev)) | ||
| 823 | sh_rtc_set_irq_wake(dev, 0); | ||
| 824 | |||
| 825 | return 0; | ||
| 826 | } | ||
| 827 | |||
| 828 | static struct dev_pm_ops sh_rtc_dev_pm_ops = { | ||
| 829 | .suspend = sh_rtc_suspend, | ||
| 830 | .resume = sh_rtc_resume, | ||
| 831 | }; | ||
| 832 | |||
| 798 | static struct platform_driver sh_rtc_platform_driver = { | 833 | static struct platform_driver sh_rtc_platform_driver = { |
| 799 | .driver = { | 834 | .driver = { |
| 800 | .name = DRV_NAME, | 835 | .name = DRV_NAME, |
| 801 | .owner = THIS_MODULE, | 836 | .owner = THIS_MODULE, |
| 837 | .pm = &sh_rtc_dev_pm_ops, | ||
| 802 | }, | 838 | }, |
| 803 | .probe = sh_rtc_probe, | 839 | .probe = sh_rtc_probe, |
| 804 | .remove = __devexit_p(sh_rtc_remove), | 840 | .remove = __devexit_p(sh_rtc_remove), |
diff --git a/drivers/sh/intc.c b/drivers/sh/intc.c index 2269fbcaa182..7fb9b5c4669a 100644 --- a/drivers/sh/intc.c +++ b/drivers/sh/intc.c | |||
| @@ -22,6 +22,8 @@ | |||
| 22 | #include <linux/interrupt.h> | 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/bootmem.h> | 23 | #include <linux/bootmem.h> |
| 24 | #include <linux/sh_intc.h> | 24 | #include <linux/sh_intc.h> |
| 25 | #include <linux/sysdev.h> | ||
| 26 | #include <linux/list.h> | ||
| 25 | 27 | ||
| 26 | #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ | 28 | #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ |
| 27 | ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \ | 29 | ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \ |
| @@ -40,6 +42,8 @@ struct intc_handle_int { | |||
| 40 | }; | 42 | }; |
| 41 | 43 | ||
| 42 | struct intc_desc_int { | 44 | struct intc_desc_int { |
| 45 | struct list_head list; | ||
| 46 | struct sys_device sysdev; | ||
| 43 | unsigned long *reg; | 47 | unsigned long *reg; |
| 44 | #ifdef CONFIG_SMP | 48 | #ifdef CONFIG_SMP |
| 45 | unsigned long *smp; | 49 | unsigned long *smp; |
| @@ -52,6 +56,8 @@ struct intc_desc_int { | |||
| 52 | struct irq_chip chip; | 56 | struct irq_chip chip; |
| 53 | }; | 57 | }; |
| 54 | 58 | ||
| 59 | static LIST_HEAD(intc_list); | ||
| 60 | |||
| 55 | #ifdef CONFIG_SMP | 61 | #ifdef CONFIG_SMP |
| 56 | #define IS_SMP(x) x.smp | 62 | #define IS_SMP(x) x.smp |
| 57 | #define INTC_REG(d, x, c) (d->reg[(x)] + ((d->smp[(x)] & 0xff) * c)) | 63 | #define INTC_REG(d, x, c) (d->reg[(x)] + ((d->smp[(x)] & 0xff) * c)) |
| @@ -232,6 +238,11 @@ static void intc_disable(unsigned int irq) | |||
| 232 | } | 238 | } |
| 233 | } | 239 | } |
| 234 | 240 | ||
| 241 | static int intc_set_wake(unsigned int irq, unsigned int on) | ||
| 242 | { | ||
| 243 | return 0; /* allow wakeup, but setup hardware in intc_suspend() */ | ||
| 244 | } | ||
| 245 | |||
| 235 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) | 246 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
| 236 | static void intc_mask_ack(unsigned int irq) | 247 | static void intc_mask_ack(unsigned int irq) |
| 237 | { | 248 | { |
| @@ -664,6 +675,9 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
| 664 | 675 | ||
| 665 | d = alloc_bootmem(sizeof(*d)); | 676 | d = alloc_bootmem(sizeof(*d)); |
| 666 | 677 | ||
| 678 | INIT_LIST_HEAD(&d->list); | ||
| 679 | list_add(&d->list, &intc_list); | ||
| 680 | |||
| 667 | d->nr_reg = desc->mask_regs ? desc->nr_mask_regs * 2 : 0; | 681 | d->nr_reg = desc->mask_regs ? desc->nr_mask_regs * 2 : 0; |
| 668 | d->nr_reg += desc->prio_regs ? desc->nr_prio_regs * 2 : 0; | 682 | d->nr_reg += desc->prio_regs ? desc->nr_prio_regs * 2 : 0; |
| 669 | d->nr_reg += desc->sense_regs ? desc->nr_sense_regs : 0; | 683 | d->nr_reg += desc->sense_regs ? desc->nr_sense_regs : 0; |
| @@ -707,7 +721,11 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
| 707 | d->chip.mask = intc_disable; | 721 | d->chip.mask = intc_disable; |
| 708 | d->chip.unmask = intc_enable; | 722 | d->chip.unmask = intc_enable; |
| 709 | d->chip.mask_ack = intc_disable; | 723 | d->chip.mask_ack = intc_disable; |
| 724 | d->chip.enable = intc_enable; | ||
| 725 | d->chip.disable = intc_disable; | ||
| 726 | d->chip.shutdown = intc_disable; | ||
| 710 | d->chip.set_type = intc_set_sense; | 727 | d->chip.set_type = intc_set_sense; |
| 728 | d->chip.set_wake = intc_set_wake; | ||
| 711 | 729 | ||
| 712 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) | 730 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
| 713 | if (desc->ack_regs) { | 731 | if (desc->ack_regs) { |
| @@ -758,3 +776,53 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
| 758 | intc_register_irq(desc, d, vect->enum_id, evt2irq(vect->vect)); | 776 | intc_register_irq(desc, d, vect->enum_id, evt2irq(vect->vect)); |
| 759 | } | 777 | } |
| 760 | } | 778 | } |
| 779 | |||
| 780 | static int intc_suspend(struct sys_device *dev, pm_message_t state) | ||
| 781 | { | ||
| 782 | struct intc_desc_int *d; | ||
| 783 | struct irq_desc *desc; | ||
| 784 | int irq; | ||
| 785 | |||
| 786 | /* get intc controller associated with this sysdev */ | ||
| 787 | d = container_of(dev, struct intc_desc_int, sysdev); | ||
| 788 | |||
| 789 | /* enable wakeup irqs belonging to this intc controller */ | ||
| 790 | for_each_irq_desc(irq, desc) { | ||
| 791 | if ((desc->status & IRQ_WAKEUP) && (desc->chip == &d->chip)) | ||
| 792 | intc_enable(irq); | ||
| 793 | } | ||
| 794 | |||
| 795 | return 0; | ||
| 796 | } | ||
| 797 | |||
| 798 | static struct sysdev_class intc_sysdev_class = { | ||
| 799 | .name = "intc", | ||
| 800 | .suspend = intc_suspend, | ||
| 801 | }; | ||
| 802 | |||
| 803 | /* register this intc as sysdev to allow suspend/resume */ | ||
| 804 | static int __init register_intc_sysdevs(void) | ||
| 805 | { | ||
| 806 | struct intc_desc_int *d; | ||
| 807 | int error; | ||
| 808 | int id = 0; | ||
| 809 | |||
| 810 | error = sysdev_class_register(&intc_sysdev_class); | ||
| 811 | if (!error) { | ||
| 812 | list_for_each_entry(d, &intc_list, list) { | ||
| 813 | d->sysdev.id = id; | ||
| 814 | d->sysdev.cls = &intc_sysdev_class; | ||
| 815 | error = sysdev_register(&d->sysdev); | ||
| 816 | if (error) | ||
| 817 | break; | ||
| 818 | id++; | ||
| 819 | } | ||
| 820 | } | ||
| 821 | |||
| 822 | if (error) | ||
| 823 | pr_warning("intc: sysdev registration error\n"); | ||
| 824 | |||
| 825 | return error; | ||
| 826 | } | ||
| 827 | |||
| 828 | device_initcall(register_intc_sysdevs); | ||
