diff options
| -rw-r--r-- | arch/mips/bcm47xx/setup.c | 12 | ||||
| -rw-r--r-- | arch/mips/bcm47xx/wgt634u.c | 71 | ||||
| -rw-r--r-- | arch/mips/configs/bcm47xx_defconfig | 1939 | ||||
| -rw-r--r-- | arch/mips/configs/ip28_defconfig | 891 | ||||
| -rw-r--r-- | arch/mips/configs/qemu_defconfig | 800 | ||||
| -rw-r--r-- | arch/mips/kernel/irq-rm7000.c | 1 | ||||
| -rw-r--r-- | arch/mips/kernel/irq-rm9000.c | 1 | ||||
| -rw-r--r-- | arch/mips/kernel/mips-mt-fpaff.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/scall32-o32.S | 3 | ||||
| -rw-r--r-- | arch/mips/kernel/scall64-64.S | 3 | ||||
| -rw-r--r-- | arch/mips/kernel/scall64-n32.S | 3 | ||||
| -rw-r--r-- | arch/mips/kernel/scall64-o32.S | 3 | ||||
| -rw-r--r-- | arch/mips/kernel/sysirix.c | 2 | ||||
| -rw-r--r-- | arch/mips/mm/c-r4k.c | 9 | ||||
| -rw-r--r-- | arch/mips/mm/cache.c | 15 | ||||
| -rw-r--r-- | arch/mips/mm/init.c | 9 | ||||
| -rw-r--r-- | arch/mips/mm/pg-sb1.c | 14 | ||||
| -rw-r--r-- | arch/mips/pci/pci.c | 14 | ||||
| -rw-r--r-- | arch/mips/sibyte/bcm1480/smp.c | 1 | ||||
| -rw-r--r-- | include/asm-mips/mach-ip27/dma-coherence.h | 2 | ||||
| -rw-r--r-- | include/asm-mips/qemu.h | 30 | ||||
| -rw-r--r-- | include/asm-mips/sni.h | 7 | ||||
| -rw-r--r-- | include/asm-mips/unistd.h | 21 | 
23 files changed, 2981 insertions, 872 deletions
| diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c index 1b6b0fa5028f..8d36f186890e 100644 --- a/arch/mips/bcm47xx/setup.c +++ b/arch/mips/bcm47xx/setup.c | |||
| @@ -92,17 +92,17 @@ static int bcm47xx_get_invariants(struct ssb_bus *bus, | |||
| 92 | iv->sprom.revision = 3; | 92 | iv->sprom.revision = 3; | 
| 93 | 93 | ||
| 94 | if (cfe_getenv("et0macaddr", buf, sizeof(buf)) >= 0) | 94 | if (cfe_getenv("et0macaddr", buf, sizeof(buf)) >= 0) | 
| 95 | str2eaddr(buf, iv->sprom.r1.et0mac); | 95 | str2eaddr(buf, iv->sprom.et0mac); | 
| 96 | if (cfe_getenv("et1macaddr", buf, sizeof(buf)) >= 0) | 96 | if (cfe_getenv("et1macaddr", buf, sizeof(buf)) >= 0) | 
| 97 | str2eaddr(buf, iv->sprom.r1.et1mac); | 97 | str2eaddr(buf, iv->sprom.et1mac); | 
| 98 | if (cfe_getenv("et0phyaddr", buf, sizeof(buf)) >= 0) | 98 | if (cfe_getenv("et0phyaddr", buf, sizeof(buf)) >= 0) | 
| 99 | iv->sprom.r1.et0phyaddr = simple_strtoul(buf, NULL, 10); | 99 | iv->sprom.et0phyaddr = simple_strtoul(buf, NULL, 10); | 
| 100 | if (cfe_getenv("et1phyaddr", buf, sizeof(buf)) >= 0) | 100 | if (cfe_getenv("et1phyaddr", buf, sizeof(buf)) >= 0) | 
| 101 | iv->sprom.r1.et1phyaddr = simple_strtoul(buf, NULL, 10); | 101 | iv->sprom.et1phyaddr = simple_strtoul(buf, NULL, 10); | 
| 102 | if (cfe_getenv("et0mdcport", buf, sizeof(buf)) >= 0) | 102 | if (cfe_getenv("et0mdcport", buf, sizeof(buf)) >= 0) | 
| 103 | iv->sprom.r1.et0mdcport = simple_strtoul(buf, NULL, 10); | 103 | iv->sprom.et0mdcport = simple_strtoul(buf, NULL, 10); | 
| 104 | if (cfe_getenv("et1mdcport", buf, sizeof(buf)) >= 0) | 104 | if (cfe_getenv("et1mdcport", buf, sizeof(buf)) >= 0) | 
| 105 | iv->sprom.r1.et1mdcport = simple_strtoul(buf, NULL, 10); | 105 | iv->sprom.et1mdcport = simple_strtoul(buf, NULL, 10); | 
| 106 | 106 | ||
| 107 | return 0; | 107 | return 0; | 
| 108 | } | 108 | } | 
| diff --git a/arch/mips/bcm47xx/wgt634u.c b/arch/mips/bcm47xx/wgt634u.c index 5a017eaee712..d1d90c9ef2fa 100644 --- a/arch/mips/bcm47xx/wgt634u.c +++ b/arch/mips/bcm47xx/wgt634u.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <linux/platform_device.h> | 9 | #include <linux/platform_device.h> | 
| 10 | #include <linux/module.h> | 10 | #include <linux/module.h> | 
| 11 | #include <linux/leds.h> | 11 | #include <linux/leds.h> | 
| 12 | #include <linux/mtd/physmap.h> | ||
| 12 | #include <linux/ssb/ssb.h> | 13 | #include <linux/ssb/ssb.h> | 
| 13 | #include <asm/mach-bcm47xx/bcm47xx.h> | 14 | #include <asm/mach-bcm47xx/bcm47xx.h> | 
| 14 | 15 | ||
| @@ -43,6 +44,61 @@ static struct platform_device wgt634u_gpio_leds = { | |||
| 43 | } | 44 | } | 
| 44 | }; | 45 | }; | 
| 45 | 46 | ||
| 47 | |||
| 48 | /* 8MiB flash. The struct mtd_partition matches original Netgear WGT634U | ||
| 49 | firmware. */ | ||
| 50 | static struct mtd_partition wgt634u_partitions[] = { | ||
| 51 | { | ||
| 52 | .name = "cfe", | ||
| 53 | .offset = 0, | ||
| 54 | .size = 0x60000, /* 384k */ | ||
| 55 | .mask_flags = MTD_WRITEABLE /* force read-only */ | ||
| 56 | }, | ||
| 57 | { | ||
| 58 | .name = "config", | ||
| 59 | .offset = 0x60000, | ||
| 60 | .size = 0x20000 /* 128k */ | ||
| 61 | }, | ||
| 62 | { | ||
| 63 | .name = "linux", | ||
| 64 | .offset = 0x80000, | ||
| 65 | .size = 0x140000 /* 1280k */ | ||
| 66 | }, | ||
| 67 | { | ||
| 68 | .name = "jffs", | ||
| 69 | .offset = 0x1c0000, | ||
| 70 | .size = 0x620000 /* 6272k */ | ||
| 71 | }, | ||
| 72 | { | ||
| 73 | .name = "nvram", | ||
| 74 | .offset = 0x7e0000, | ||
| 75 | .size = 0x20000 /* 128k */ | ||
| 76 | }, | ||
| 77 | }; | ||
| 78 | |||
| 79 | static struct physmap_flash_data wgt634u_flash_data = { | ||
| 80 | .parts = wgt634u_partitions, | ||
| 81 | .nr_parts = ARRAY_SIZE(wgt634u_partitions) | ||
| 82 | }; | ||
| 83 | |||
| 84 | static struct resource wgt634u_flash_resource = { | ||
| 85 | .flags = IORESOURCE_MEM, | ||
| 86 | }; | ||
| 87 | |||
| 88 | static struct platform_device wgt634u_flash = { | ||
| 89 | .name = "physmap-flash", | ||
| 90 | .id = 0, | ||
| 91 | .dev = { .platform_data = &wgt634u_flash_data, }, | ||
| 92 | .resource = &wgt634u_flash_resource, | ||
| 93 | .num_resources = 1, | ||
| 94 | }; | ||
| 95 | |||
| 96 | /* Platform devices */ | ||
| 97 | static struct platform_device *wgt634u_devices[] __initdata = { | ||
| 98 | &wgt634u_flash, | ||
| 99 | &wgt634u_gpio_leds, | ||
| 100 | }; | ||
| 101 | |||
| 46 | static int __init wgt634u_init(void) | 102 | static int __init wgt634u_init(void) | 
| 47 | { | 103 | { | 
| 48 | /* There is no easy way to detect that we are running on a WGT634U | 104 | /* There is no easy way to detect that we are running on a WGT634U | 
| @@ -50,13 +106,20 @@ static int __init wgt634u_init(void) | |||
| 50 | * been allocated ranges 00:09:5b:xx:xx:xx and 00:0f:b5:xx:xx:xx. | 106 | * been allocated ranges 00:09:5b:xx:xx:xx and 00:0f:b5:xx:xx:xx. | 
| 51 | */ | 107 | */ | 
| 52 | 108 | ||
| 53 | u8 *et0mac = ssb_bcm47xx.sprom.r1.et0mac; | 109 | u8 *et0mac = ssb_bcm47xx.sprom.et0mac; | 
| 54 | 110 | ||
| 55 | if (et0mac[0] == 0x00 && | 111 | if (et0mac[0] == 0x00 && | 
| 56 | ((et0mac[1] == 0x09 && et0mac[2] == 0x5b) || | 112 | ((et0mac[1] == 0x09 && et0mac[2] == 0x5b) || | 
| 57 | (et0mac[1] == 0x0f && et0mac[2] == 0xb5))) | 113 | (et0mac[1] == 0x0f && et0mac[2] == 0xb5))) { | 
| 58 | return platform_device_register(&wgt634u_gpio_leds); | 114 | struct ssb_mipscore *mcore = &ssb_bcm47xx.mipscore; | 
| 59 | else | 115 | wgt634u_flash_data.width = mcore->flash_buswidth; | 
| 116 | wgt634u_flash_resource.start = mcore->flash_window; | ||
| 117 | wgt634u_flash_resource.end = mcore->flash_window | ||
| 118 | + mcore->flash_window_size | ||
| 119 | - 1; | ||
| 120 | return platform_add_devices(wgt634u_devices, | ||
| 121 | ARRAY_SIZE(wgt634u_devices)); | ||
| 122 | } else | ||
| 60 | return -ENODEV; | 123 | return -ENODEV; | 
| 61 | } | 124 | } | 
| 62 | 125 | ||
| diff --git a/arch/mips/configs/bcm47xx_defconfig b/arch/mips/configs/bcm47xx_defconfig new file mode 100644 index 000000000000..c0e42e74dfbd --- /dev/null +++ b/arch/mips/configs/bcm47xx_defconfig | |||
| @@ -0,0 +1,1939 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.25-rc2 | ||
| 4 | # Mon Feb 18 11:55:24 2008 | ||
| 5 | # | ||
| 6 | CONFIG_MIPS=y | ||
| 7 | |||
| 8 | # | ||
| 9 | # Machine selection | ||
| 10 | # | ||
| 11 | # CONFIG_MACH_ALCHEMY is not set | ||
| 12 | # CONFIG_BASLER_EXCITE is not set | ||
| 13 | CONFIG_BCM47XX=y | ||
| 14 | # CONFIG_MIPS_COBALT is not set | ||
| 15 | # CONFIG_MACH_DECSTATION is not set | ||
| 16 | # CONFIG_MACH_JAZZ is not set | ||
| 17 | # CONFIG_LASAT is not set | ||
| 18 | # CONFIG_LEMOTE_FULONG is not set | ||
| 19 | # CONFIG_MIPS_ATLAS is not set | ||
| 20 | # CONFIG_MIPS_MALTA is not set | ||
| 21 | # CONFIG_MIPS_SEAD is not set | ||
| 22 | # CONFIG_MIPS_SIM is not set | ||
| 23 | # CONFIG_MARKEINS is not set | ||
| 24 | # CONFIG_MACH_VR41XX is not set | ||
| 25 | # CONFIG_PNX8550_JBS is not set | ||
| 26 | # CONFIG_PNX8550_STB810 is not set | ||
| 27 | # CONFIG_PMC_MSP is not set | ||
| 28 | # CONFIG_PMC_YOSEMITE is not set | ||
| 29 | # CONFIG_SGI_IP22 is not set | ||
| 30 | # CONFIG_SGI_IP27 is not set | ||
| 31 | # CONFIG_SGI_IP28 is not set | ||
| 32 | # CONFIG_SGI_IP32 is not set | ||
| 33 | # CONFIG_SIBYTE_CRHINE is not set | ||
| 34 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 35 | # CONFIG_SIBYTE_CRHONE is not set | ||
| 36 | # CONFIG_SIBYTE_RHONE is not set | ||
| 37 | # CONFIG_SIBYTE_SWARM is not set | ||
| 38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 41 | # CONFIG_SNI_RM is not set | ||
| 42 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
| 43 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
| 44 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
| 45 | # CONFIG_WR_PPMC is not set | ||
| 46 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 47 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 48 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 49 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 50 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 51 | CONFIG_GENERIC_HWEIGHT=y | ||
| 52 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 53 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 54 | CONFIG_GENERIC_TIME=y | ||
| 55 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 56 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 57 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | ||
| 58 | CONFIG_CEVT_R4K=y | ||
| 59 | CONFIG_CSRC_R4K=y | ||
| 60 | CONFIG_CFE=y | ||
| 61 | CONFIG_DMA_NONCOHERENT=y | ||
| 62 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
| 63 | CONFIG_EARLY_PRINTK=y | ||
| 64 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
| 65 | # CONFIG_HOTPLUG_CPU is not set | ||
| 66 | # CONFIG_NO_IOPORT is not set | ||
| 67 | CONFIG_GENERIC_GPIO=y | ||
| 68 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
| 69 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
| 70 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | ||
| 71 | CONFIG_IRQ_CPU=y | ||
| 72 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
| 73 | |||
| 74 | # | ||
| 75 | # CPU selection | ||
| 76 | # | ||
| 77 | # CONFIG_CPU_LOONGSON2 is not set | ||
| 78 | CONFIG_CPU_MIPS32_R1=y | ||
| 79 | # CONFIG_CPU_MIPS32_R2 is not set | ||
| 80 | # CONFIG_CPU_MIPS64_R1 is not set | ||
| 81 | # CONFIG_CPU_MIPS64_R2 is not set | ||
| 82 | # CONFIG_CPU_R3000 is not set | ||
| 83 | # CONFIG_CPU_TX39XX is not set | ||
| 84 | # CONFIG_CPU_VR41XX is not set | ||
| 85 | # CONFIG_CPU_R4300 is not set | ||
| 86 | # CONFIG_CPU_R4X00 is not set | ||
| 87 | # CONFIG_CPU_TX49XX is not set | ||
| 88 | # CONFIG_CPU_R5000 is not set | ||
| 89 | # CONFIG_CPU_R5432 is not set | ||
| 90 | # CONFIG_CPU_R6000 is not set | ||
| 91 | # CONFIG_CPU_NEVADA is not set | ||
| 92 | # CONFIG_CPU_R8000 is not set | ||
| 93 | # CONFIG_CPU_R10000 is not set | ||
| 94 | # CONFIG_CPU_RM7000 is not set | ||
| 95 | # CONFIG_CPU_RM9000 is not set | ||
| 96 | # CONFIG_CPU_SB1 is not set | ||
| 97 | CONFIG_SYS_HAS_CPU_MIPS32_R1=y | ||
| 98 | CONFIG_CPU_MIPS32=y | ||
| 99 | CONFIG_CPU_MIPSR1=y | ||
| 100 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
| 101 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
| 102 | |||
| 103 | # | ||
| 104 | # Kernel type | ||
| 105 | # | ||
| 106 | CONFIG_32BIT=y | ||
| 107 | # CONFIG_64BIT is not set | ||
| 108 | CONFIG_PAGE_SIZE_4KB=y | ||
| 109 | # CONFIG_PAGE_SIZE_8KB is not set | ||
| 110 | # CONFIG_PAGE_SIZE_16KB is not set | ||
| 111 | # CONFIG_PAGE_SIZE_64KB is not set | ||
| 112 | CONFIG_CPU_HAS_PREFETCH=y | ||
| 113 | CONFIG_MIPS_MT_DISABLED=y | ||
| 114 | # CONFIG_MIPS_MT_SMP is not set | ||
| 115 | # CONFIG_MIPS_MT_SMTC is not set | ||
| 116 | CONFIG_CPU_HAS_LLSC=y | ||
| 117 | CONFIG_CPU_HAS_SYNC=y | ||
| 118 | CONFIG_GENERIC_HARDIRQS=y | ||
| 119 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 120 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
| 121 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 122 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 123 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 124 | CONFIG_FLATMEM_MANUAL=y | ||
| 125 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 126 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 127 | CONFIG_FLATMEM=y | ||
| 128 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 129 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 130 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 131 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 132 | # CONFIG_RESOURCES_64BIT is not set | ||
| 133 | CONFIG_ZONE_DMA_FLAG=0 | ||
| 134 | CONFIG_VIRT_TO_BUS=y | ||
| 135 | CONFIG_TICK_ONESHOT=y | ||
| 136 | CONFIG_NO_HZ=y | ||
| 137 | CONFIG_HIGH_RES_TIMERS=y | ||
| 138 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 139 | # CONFIG_HZ_48 is not set | ||
| 140 | # CONFIG_HZ_100 is not set | ||
| 141 | # CONFIG_HZ_128 is not set | ||
| 142 | CONFIG_HZ_250=y | ||
| 143 | # CONFIG_HZ_256 is not set | ||
| 144 | # CONFIG_HZ_1000 is not set | ||
| 145 | # CONFIG_HZ_1024 is not set | ||
| 146 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
| 147 | CONFIG_HZ=250 | ||
| 148 | CONFIG_PREEMPT_NONE=y | ||
| 149 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 150 | # CONFIG_PREEMPT is not set | ||
| 151 | CONFIG_RCU_TRACE=y | ||
| 152 | CONFIG_KEXEC=y | ||
| 153 | # CONFIG_SECCOMP is not set | ||
| 154 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 155 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 156 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 157 | |||
| 158 | # | ||
| 159 | # General setup | ||
| 160 | # | ||
| 161 | CONFIG_EXPERIMENTAL=y | ||
| 162 | CONFIG_BROKEN_ON_SMP=y | ||
| 163 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 164 | CONFIG_LOCALVERSION="" | ||
| 165 | # CONFIG_LOCALVERSION_AUTO is not set | ||
| 166 | CONFIG_SWAP=y | ||
| 167 | CONFIG_SYSVIPC=y | ||
| 168 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 169 | CONFIG_POSIX_MQUEUE=y | ||
| 170 | CONFIG_BSD_PROCESS_ACCT=y | ||
| 171 | CONFIG_BSD_PROCESS_ACCT_V3=y | ||
| 172 | CONFIG_TASKSTATS=y | ||
| 173 | CONFIG_TASK_DELAY_ACCT=y | ||
| 174 | CONFIG_TASK_XACCT=y | ||
| 175 | CONFIG_TASK_IO_ACCOUNTING=y | ||
| 176 | CONFIG_AUDIT=y | ||
| 177 | # CONFIG_IKCONFIG is not set | ||
| 178 | CONFIG_LOG_BUF_SHIFT=17 | ||
| 179 | CONFIG_CGROUPS=y | ||
| 180 | # CONFIG_CGROUP_DEBUG is not set | ||
| 181 | CONFIG_CGROUP_NS=y | ||
| 182 | CONFIG_GROUP_SCHED=y | ||
| 183 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 184 | # CONFIG_RT_GROUP_SCHED is not set | ||
| 185 | CONFIG_USER_SCHED=y | ||
| 186 | # CONFIG_CGROUP_SCHED is not set | ||
| 187 | CONFIG_CGROUP_CPUACCT=y | ||
| 188 | # CONFIG_RESOURCE_COUNTERS is not set | ||
| 189 | CONFIG_SYSFS_DEPRECATED=y | ||
| 190 | CONFIG_RELAY=y | ||
| 191 | # CONFIG_NAMESPACES is not set | ||
| 192 | CONFIG_BLK_DEV_INITRD=y | ||
| 193 | CONFIG_INITRAMFS_SOURCE="" | ||
| 194 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 195 | CONFIG_SYSCTL=y | ||
| 196 | CONFIG_EMBEDDED=y | ||
| 197 | CONFIG_SYSCTL_SYSCALL=y | ||
| 198 | CONFIG_KALLSYMS=y | ||
| 199 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 200 | CONFIG_HOTPLUG=y | ||
| 201 | CONFIG_PRINTK=y | ||
| 202 | CONFIG_BUG=y | ||
| 203 | CONFIG_ELF_CORE=y | ||
| 204 | CONFIG_COMPAT_BRK=y | ||
| 205 | CONFIG_BASE_FULL=y | ||
| 206 | CONFIG_FUTEX=y | ||
| 207 | CONFIG_ANON_INODES=y | ||
| 208 | CONFIG_EPOLL=y | ||
| 209 | CONFIG_SIGNALFD=y | ||
| 210 | CONFIG_TIMERFD=y | ||
| 211 | CONFIG_EVENTFD=y | ||
| 212 | CONFIG_SHMEM=y | ||
| 213 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 214 | CONFIG_SLAB=y | ||
| 215 | # CONFIG_SLUB is not set | ||
| 216 | # CONFIG_SLOB is not set | ||
| 217 | # CONFIG_PROFILING is not set | ||
| 218 | # CONFIG_MARKERS is not set | ||
| 219 | CONFIG_HAVE_OPROFILE=y | ||
| 220 | # CONFIG_HAVE_KPROBES is not set | ||
| 221 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 222 | CONFIG_SLABINFO=y | ||
| 223 | CONFIG_RT_MUTEXES=y | ||
| 224 | # CONFIG_TINY_SHMEM is not set | ||
| 225 | CONFIG_BASE_SMALL=0 | ||
| 226 | CONFIG_MODULES=y | ||
| 227 | CONFIG_MODULE_UNLOAD=y | ||
| 228 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
| 229 | CONFIG_MODVERSIONS=y | ||
| 230 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 231 | CONFIG_KMOD=y | ||
| 232 | CONFIG_BLOCK=y | ||
| 233 | CONFIG_LBD=y | ||
| 234 | CONFIG_BLK_DEV_IO_TRACE=y | ||
| 235 | CONFIG_LSF=y | ||
| 236 | # CONFIG_BLK_DEV_BSG is not set | ||
| 237 | |||
| 238 | # | ||
| 239 | # IO Schedulers | ||
| 240 | # | ||
| 241 | CONFIG_IOSCHED_NOOP=y | ||
| 242 | CONFIG_IOSCHED_AS=y | ||
| 243 | CONFIG_IOSCHED_DEADLINE=y | ||
| 244 | CONFIG_IOSCHED_CFQ=y | ||
| 245 | # CONFIG_DEFAULT_AS is not set | ||
| 246 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 247 | CONFIG_DEFAULT_CFQ=y | ||
| 248 | # CONFIG_DEFAULT_NOOP is not set | ||
| 249 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 250 | CONFIG_CLASSIC_RCU=y | ||
| 251 | # CONFIG_PREEMPT_RCU is not set | ||
| 252 | |||
| 253 | # | ||
| 254 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
| 255 | # | ||
| 256 | CONFIG_HW_HAS_PCI=y | ||
| 257 | CONFIG_PCI=y | ||
| 258 | CONFIG_PCI_DOMAINS=y | ||
| 259 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 260 | CONFIG_PCI_LEGACY=y | ||
| 261 | CONFIG_MMU=y | ||
| 262 | # CONFIG_PCCARD is not set | ||
| 263 | # CONFIG_HOTPLUG_PCI is not set | ||
| 264 | |||
| 265 | # | ||
| 266 | # Executable file formats | ||
| 267 | # | ||
| 268 | CONFIG_BINFMT_ELF=y | ||
| 269 | CONFIG_BINFMT_MISC=m | ||
| 270 | CONFIG_TRAD_SIGNALS=y | ||
| 271 | |||
| 272 | # | ||
| 273 | # Power management options | ||
| 274 | # | ||
| 275 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 276 | # CONFIG_PM is not set | ||
| 277 | |||
| 278 | # | ||
| 279 | # Networking | ||
| 280 | # | ||
| 281 | CONFIG_NET=y | ||
| 282 | |||
| 283 | # | ||
| 284 | # Networking options | ||
| 285 | # | ||
| 286 | CONFIG_PACKET=y | ||
| 287 | CONFIG_PACKET_MMAP=y | ||
| 288 | CONFIG_UNIX=y | ||
| 289 | CONFIG_XFRM=y | ||
| 290 | CONFIG_XFRM_USER=m | ||
| 291 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 292 | # CONFIG_XFRM_MIGRATE is not set | ||
| 293 | # CONFIG_XFRM_STATISTICS is not set | ||
| 294 | CONFIG_NET_KEY=m | ||
| 295 | # CONFIG_NET_KEY_MIGRATE is not set | ||
| 296 | CONFIG_INET=y | ||
| 297 | CONFIG_IP_MULTICAST=y | ||
| 298 | CONFIG_IP_ADVANCED_ROUTER=y | ||
| 299 | CONFIG_ASK_IP_FIB_HASH=y | ||
| 300 | # CONFIG_IP_FIB_TRIE is not set | ||
| 301 | CONFIG_IP_FIB_HASH=y | ||
| 302 | CONFIG_IP_MULTIPLE_TABLES=y | ||
| 303 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
| 304 | CONFIG_IP_ROUTE_VERBOSE=y | ||
| 305 | # CONFIG_IP_PNP is not set | ||
| 306 | CONFIG_NET_IPIP=m | ||
| 307 | CONFIG_NET_IPGRE=m | ||
| 308 | CONFIG_NET_IPGRE_BROADCAST=y | ||
| 309 | CONFIG_IP_MROUTE=y | ||
| 310 | CONFIG_IP_PIMSM_V1=y | ||
| 311 | CONFIG_IP_PIMSM_V2=y | ||
| 312 | # CONFIG_ARPD is not set | ||
| 313 | CONFIG_SYN_COOKIES=y | ||
| 314 | CONFIG_INET_AH=m | ||
| 315 | CONFIG_INET_ESP=m | ||
| 316 | CONFIG_INET_IPCOMP=m | ||
| 317 | CONFIG_INET_XFRM_TUNNEL=m | ||
| 318 | CONFIG_INET_TUNNEL=m | ||
| 319 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | ||
| 320 | CONFIG_INET_XFRM_MODE_TUNNEL=m | ||
| 321 | CONFIG_INET_XFRM_MODE_BEET=m | ||
| 322 | CONFIG_INET_LRO=m | ||
| 323 | CONFIG_INET_DIAG=m | ||
| 324 | CONFIG_INET_TCP_DIAG=m | ||
| 325 | CONFIG_TCP_CONG_ADVANCED=y | ||
| 326 | CONFIG_TCP_CONG_BIC=y | ||
| 327 | CONFIG_TCP_CONG_CUBIC=m | ||
| 328 | CONFIG_TCP_CONG_WESTWOOD=m | ||
| 329 | CONFIG_TCP_CONG_HTCP=m | ||
| 330 | CONFIG_TCP_CONG_HSTCP=m | ||
| 331 | CONFIG_TCP_CONG_HYBLA=m | ||
| 332 | CONFIG_TCP_CONG_VEGAS=m | ||
| 333 | CONFIG_TCP_CONG_SCALABLE=m | ||
| 334 | CONFIG_TCP_CONG_LP=m | ||
| 335 | CONFIG_TCP_CONG_VENO=m | ||
| 336 | CONFIG_TCP_CONG_YEAH=m | ||
| 337 | CONFIG_TCP_CONG_ILLINOIS=m | ||
| 338 | CONFIG_DEFAULT_BIC=y | ||
| 339 | # CONFIG_DEFAULT_CUBIC is not set | ||
| 340 | # CONFIG_DEFAULT_HTCP is not set | ||
| 341 | # CONFIG_DEFAULT_VEGAS is not set | ||
| 342 | # CONFIG_DEFAULT_WESTWOOD is not set | ||
| 343 | # CONFIG_DEFAULT_RENO is not set | ||
| 344 | CONFIG_DEFAULT_TCP_CONG="bic" | ||
| 345 | # CONFIG_TCP_MD5SIG is not set | ||
| 346 | CONFIG_IP_VS=m | ||
| 347 | # CONFIG_IP_VS_DEBUG is not set | ||
| 348 | CONFIG_IP_VS_TAB_BITS=12 | ||
| 349 | |||
| 350 | # | ||
| 351 | # IPVS transport protocol load balancing support | ||
| 352 | # | ||
| 353 | CONFIG_IP_VS_PROTO_TCP=y | ||
| 354 | CONFIG_IP_VS_PROTO_UDP=y | ||
| 355 | CONFIG_IP_VS_PROTO_ESP=y | ||
| 356 | CONFIG_IP_VS_PROTO_AH=y | ||
| 357 | |||
| 358 | # | ||
| 359 | # IPVS scheduler | ||
| 360 | # | ||
| 361 | CONFIG_IP_VS_RR=m | ||
| 362 | CONFIG_IP_VS_WRR=m | ||
| 363 | CONFIG_IP_VS_LC=m | ||
| 364 | CONFIG_IP_VS_WLC=m | ||
| 365 | CONFIG_IP_VS_LBLC=m | ||
| 366 | CONFIG_IP_VS_LBLCR=m | ||
| 367 | CONFIG_IP_VS_DH=m | ||
| 368 | CONFIG_IP_VS_SH=m | ||
| 369 | CONFIG_IP_VS_SED=m | ||
| 370 | CONFIG_IP_VS_NQ=m | ||
| 371 | |||
| 372 | # | ||
| 373 | # IPVS application helper | ||
| 374 | # | ||
| 375 | CONFIG_IP_VS_FTP=m | ||
| 376 | CONFIG_IPV6=m | ||
| 377 | CONFIG_IPV6_PRIVACY=y | ||
| 378 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
| 379 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | ||
| 380 | CONFIG_INET6_AH=m | ||
| 381 | CONFIG_INET6_ESP=m | ||
| 382 | CONFIG_INET6_IPCOMP=m | ||
| 383 | # CONFIG_IPV6_MIP6 is not set | ||
| 384 | CONFIG_INET6_XFRM_TUNNEL=m | ||
| 385 | CONFIG_INET6_TUNNEL=m | ||
| 386 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m | ||
| 387 | CONFIG_INET6_XFRM_MODE_TUNNEL=m | ||
| 388 | CONFIG_INET6_XFRM_MODE_BEET=m | ||
| 389 | CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m | ||
| 390 | CONFIG_IPV6_SIT=m | ||
| 391 | CONFIG_IPV6_TUNNEL=m | ||
| 392 | CONFIG_IPV6_MULTIPLE_TABLES=y | ||
| 393 | CONFIG_IPV6_SUBTREES=y | ||
| 394 | CONFIG_NETWORK_SECMARK=y | ||
| 395 | CONFIG_NETFILTER=y | ||
| 396 | # CONFIG_NETFILTER_DEBUG is not set | ||
| 397 | CONFIG_NETFILTER_ADVANCED=y | ||
| 398 | CONFIG_BRIDGE_NETFILTER=y | ||
| 399 | |||
| 400 | # | ||
| 401 | # Core Netfilter Configuration | ||
| 402 | # | ||
| 403 | CONFIG_NETFILTER_NETLINK=m | ||
| 404 | CONFIG_NETFILTER_NETLINK_QUEUE=m | ||
| 405 | CONFIG_NETFILTER_NETLINK_LOG=m | ||
| 406 | CONFIG_NF_CONNTRACK=m | ||
| 407 | CONFIG_NF_CT_ACCT=y | ||
| 408 | CONFIG_NF_CONNTRACK_MARK=y | ||
| 409 | CONFIG_NF_CONNTRACK_SECMARK=y | ||
| 410 | CONFIG_NF_CONNTRACK_EVENTS=y | ||
| 411 | CONFIG_NF_CT_PROTO_GRE=m | ||
| 412 | CONFIG_NF_CT_PROTO_SCTP=m | ||
| 413 | CONFIG_NF_CT_PROTO_UDPLITE=m | ||
| 414 | CONFIG_NF_CONNTRACK_AMANDA=m | ||
| 415 | CONFIG_NF_CONNTRACK_FTP=m | ||
| 416 | CONFIG_NF_CONNTRACK_H323=m | ||
| 417 | CONFIG_NF_CONNTRACK_IRC=m | ||
| 418 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m | ||
| 419 | CONFIG_NF_CONNTRACK_PPTP=m | ||
| 420 | CONFIG_NF_CONNTRACK_SANE=m | ||
| 421 | CONFIG_NF_CONNTRACK_SIP=m | ||
| 422 | CONFIG_NF_CONNTRACK_TFTP=m | ||
| 423 | CONFIG_NF_CT_NETLINK=m | ||
| 424 | CONFIG_NETFILTER_XTABLES=m | ||
| 425 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | ||
| 426 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | ||
| 427 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | ||
| 428 | CONFIG_NETFILTER_XT_TARGET_MARK=m | ||
| 429 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | ||
| 430 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | ||
| 431 | CONFIG_NETFILTER_XT_TARGET_NOTRACK=m | ||
| 432 | # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set | ||
| 433 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | ||
| 434 | CONFIG_NETFILTER_XT_TARGET_SECMARK=m | ||
| 435 | CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m | ||
| 436 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | ||
| 437 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set | ||
| 438 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | ||
| 439 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | ||
| 440 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | ||
| 441 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | ||
| 442 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m | ||
| 443 | CONFIG_NETFILTER_XT_MATCH_DCCP=m | ||
| 444 | CONFIG_NETFILTER_XT_MATCH_DSCP=m | ||
| 445 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
| 446 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
| 447 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | ||
| 448 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
| 449 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
| 450 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
| 451 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
| 452 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set | ||
| 453 | CONFIG_NETFILTER_XT_MATCH_POLICY=m | ||
| 454 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
| 455 | CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m | ||
| 456 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
| 457 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
| 458 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set | ||
| 459 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
| 460 | CONFIG_NETFILTER_XT_MATCH_SCTP=m | ||
| 461 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
| 462 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
| 463 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
| 464 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
| 465 | CONFIG_NETFILTER_XT_MATCH_TIME=m | ||
| 466 | CONFIG_NETFILTER_XT_MATCH_U32=m | ||
| 467 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | ||
| 468 | |||
| 469 | # | ||
| 470 | # IP: Netfilter Configuration | ||
| 471 | # | ||
| 472 | CONFIG_NF_CONNTRACK_IPV4=m | ||
| 473 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | ||
| 474 | CONFIG_IP_NF_QUEUE=m | ||
| 475 | CONFIG_IP_NF_IPTABLES=m | ||
| 476 | CONFIG_IP_NF_MATCH_RECENT=m | ||
| 477 | CONFIG_IP_NF_MATCH_ECN=m | ||
| 478 | CONFIG_IP_NF_MATCH_AH=m | ||
| 479 | CONFIG_IP_NF_MATCH_TTL=m | ||
| 480 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
| 481 | CONFIG_IP_NF_FILTER=m | ||
| 482 | CONFIG_IP_NF_TARGET_REJECT=m | ||
| 483 | CONFIG_IP_NF_TARGET_LOG=m | ||
| 484 | CONFIG_IP_NF_TARGET_ULOG=m | ||
| 485 | CONFIG_NF_NAT=m | ||
| 486 | CONFIG_NF_NAT_NEEDED=y | ||
| 487 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
| 488 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
| 489 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
| 490 | CONFIG_NF_NAT_SNMP_BASIC=m | ||
| 491 | CONFIG_NF_NAT_PROTO_GRE=m | ||
| 492 | CONFIG_NF_NAT_FTP=m | ||
| 493 | CONFIG_NF_NAT_IRC=m | ||
| 494 | CONFIG_NF_NAT_TFTP=m | ||
| 495 | CONFIG_NF_NAT_AMANDA=m | ||
| 496 | CONFIG_NF_NAT_PPTP=m | ||
| 497 | CONFIG_NF_NAT_H323=m | ||
| 498 | CONFIG_NF_NAT_SIP=m | ||
| 499 | CONFIG_IP_NF_MANGLE=m | ||
| 500 | CONFIG_IP_NF_TARGET_ECN=m | ||
| 501 | CONFIG_IP_NF_TARGET_TTL=m | ||
| 502 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
| 503 | CONFIG_IP_NF_RAW=m | ||
| 504 | CONFIG_IP_NF_ARPTABLES=m | ||
| 505 | CONFIG_IP_NF_ARPFILTER=m | ||
| 506 | CONFIG_IP_NF_ARP_MANGLE=m | ||
| 507 | |||
| 508 | # | ||
| 509 | # IPv6: Netfilter Configuration | ||
| 510 | # | ||
| 511 | CONFIG_NF_CONNTRACK_IPV6=m | ||
| 512 | CONFIG_IP6_NF_QUEUE=m | ||
| 513 | CONFIG_IP6_NF_IPTABLES=m | ||
| 514 | CONFIG_IP6_NF_MATCH_RT=m | ||
| 515 | CONFIG_IP6_NF_MATCH_OPTS=m | ||
| 516 | CONFIG_IP6_NF_MATCH_FRAG=m | ||
| 517 | CONFIG_IP6_NF_MATCH_HL=m | ||
| 518 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | ||
| 519 | CONFIG_IP6_NF_MATCH_AH=m | ||
| 520 | CONFIG_IP6_NF_MATCH_MH=m | ||
| 521 | CONFIG_IP6_NF_MATCH_EUI64=m | ||
| 522 | CONFIG_IP6_NF_FILTER=m | ||
| 523 | CONFIG_IP6_NF_TARGET_LOG=m | ||
| 524 | CONFIG_IP6_NF_TARGET_REJECT=m | ||
| 525 | CONFIG_IP6_NF_MANGLE=m | ||
| 526 | CONFIG_IP6_NF_TARGET_HL=m | ||
| 527 | CONFIG_IP6_NF_RAW=m | ||
| 528 | |||
| 529 | # | ||
| 530 | # Bridge: Netfilter Configuration | ||
| 531 | # | ||
| 532 | CONFIG_BRIDGE_NF_EBTABLES=m | ||
| 533 | CONFIG_BRIDGE_EBT_BROUTE=m | ||
| 534 | CONFIG_BRIDGE_EBT_T_FILTER=m | ||
| 535 | CONFIG_BRIDGE_EBT_T_NAT=m | ||
| 536 | CONFIG_BRIDGE_EBT_802_3=m | ||
| 537 | CONFIG_BRIDGE_EBT_AMONG=m | ||
| 538 | CONFIG_BRIDGE_EBT_ARP=m | ||
| 539 | CONFIG_BRIDGE_EBT_IP=m | ||
| 540 | CONFIG_BRIDGE_EBT_LIMIT=m | ||
| 541 | CONFIG_BRIDGE_EBT_MARK=m | ||
| 542 | CONFIG_BRIDGE_EBT_PKTTYPE=m | ||
| 543 | CONFIG_BRIDGE_EBT_STP=m | ||
| 544 | CONFIG_BRIDGE_EBT_VLAN=m | ||
| 545 | CONFIG_BRIDGE_EBT_ARPREPLY=m | ||
| 546 | CONFIG_BRIDGE_EBT_DNAT=m | ||
| 547 | CONFIG_BRIDGE_EBT_MARK_T=m | ||
| 548 | CONFIG_BRIDGE_EBT_REDIRECT=m | ||
| 549 | CONFIG_BRIDGE_EBT_SNAT=m | ||
| 550 | CONFIG_BRIDGE_EBT_LOG=m | ||
| 551 | CONFIG_BRIDGE_EBT_ULOG=m | ||
| 552 | CONFIG_IP_DCCP=m | ||
| 553 | CONFIG_INET_DCCP_DIAG=m | ||
| 554 | CONFIG_IP_DCCP_ACKVEC=y | ||
| 555 | |||
| 556 | # | ||
| 557 | # DCCP CCIDs Configuration (EXPERIMENTAL) | ||
| 558 | # | ||
| 559 | CONFIG_IP_DCCP_CCID2=m | ||
| 560 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | ||
| 561 | CONFIG_IP_DCCP_CCID3=m | ||
| 562 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
| 563 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
| 564 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
| 565 | CONFIG_IP_SCTP=m | ||
| 566 | # CONFIG_SCTP_DBG_MSG is not set | ||
| 567 | # CONFIG_SCTP_DBG_OBJCNT is not set | ||
| 568 | # CONFIG_SCTP_HMAC_NONE is not set | ||
| 569 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
| 570 | CONFIG_SCTP_HMAC_MD5=y | ||
| 571 | CONFIG_TIPC=m | ||
| 572 | CONFIG_TIPC_ADVANCED=y | ||
| 573 | CONFIG_TIPC_ZONES=3 | ||
| 574 | CONFIG_TIPC_CLUSTERS=1 | ||
| 575 | CONFIG_TIPC_NODES=255 | ||
| 576 | CONFIG_TIPC_SLAVE_NODES=0 | ||
| 577 | CONFIG_TIPC_PORTS=8191 | ||
| 578 | CONFIG_TIPC_LOG=0 | ||
| 579 | # CONFIG_TIPC_DEBUG is not set | ||
| 580 | CONFIG_ATM=m | ||
| 581 | CONFIG_ATM_CLIP=m | ||
| 582 | # CONFIG_ATM_CLIP_NO_ICMP is not set | ||
| 583 | CONFIG_ATM_LANE=m | ||
| 584 | CONFIG_ATM_MPOA=m | ||
| 585 | CONFIG_ATM_BR2684=m | ||
| 586 | # CONFIG_ATM_BR2684_IPFILTER is not set | ||
| 587 | CONFIG_BRIDGE=m | ||
| 588 | CONFIG_VLAN_8021Q=m | ||
| 589 | # CONFIG_DECNET is not set | ||
| 590 | CONFIG_LLC=m | ||
| 591 | # CONFIG_LLC2 is not set | ||
| 592 | # CONFIG_IPX is not set | ||
| 593 | # CONFIG_ATALK is not set | ||
| 594 | # CONFIG_X25 is not set | ||
| 595 | # CONFIG_LAPB is not set | ||
| 596 | # CONFIG_ECONET is not set | ||
| 597 | # CONFIG_WAN_ROUTER is not set | ||
| 598 | CONFIG_NET_SCHED=y | ||
| 599 | |||
| 600 | # | ||
| 601 | # Queueing/Scheduling | ||
| 602 | # | ||
| 603 | CONFIG_NET_SCH_CBQ=m | ||
| 604 | CONFIG_NET_SCH_HTB=m | ||
| 605 | CONFIG_NET_SCH_HFSC=m | ||
| 606 | CONFIG_NET_SCH_ATM=m | ||
| 607 | CONFIG_NET_SCH_PRIO=m | ||
| 608 | CONFIG_NET_SCH_RR=m | ||
| 609 | CONFIG_NET_SCH_RED=m | ||
| 610 | CONFIG_NET_SCH_SFQ=m | ||
| 611 | CONFIG_NET_SCH_TEQL=m | ||
| 612 | CONFIG_NET_SCH_TBF=m | ||
| 613 | CONFIG_NET_SCH_GRED=m | ||
| 614 | CONFIG_NET_SCH_DSMARK=m | ||
| 615 | CONFIG_NET_SCH_NETEM=m | ||
| 616 | CONFIG_NET_SCH_INGRESS=m | ||
| 617 | |||
| 618 | # | ||
| 619 | # Classification | ||
| 620 | # | ||
| 621 | CONFIG_NET_CLS=y | ||
| 622 | CONFIG_NET_CLS_BASIC=m | ||
| 623 | CONFIG_NET_CLS_TCINDEX=m | ||
| 624 | CONFIG_NET_CLS_ROUTE4=m | ||
| 625 | CONFIG_NET_CLS_ROUTE=y | ||
| 626 | CONFIG_NET_CLS_FW=m | ||
| 627 | CONFIG_NET_CLS_U32=m | ||
| 628 | CONFIG_CLS_U32_PERF=y | ||
| 629 | CONFIG_CLS_U32_MARK=y | ||
| 630 | CONFIG_NET_CLS_RSVP=m | ||
| 631 | CONFIG_NET_CLS_RSVP6=m | ||
| 632 | # CONFIG_NET_CLS_FLOW is not set | ||
| 633 | CONFIG_NET_EMATCH=y | ||
| 634 | CONFIG_NET_EMATCH_STACK=32 | ||
| 635 | CONFIG_NET_EMATCH_CMP=m | ||
| 636 | CONFIG_NET_EMATCH_NBYTE=m | ||
| 637 | CONFIG_NET_EMATCH_U32=m | ||
| 638 | CONFIG_NET_EMATCH_META=m | ||
| 639 | CONFIG_NET_EMATCH_TEXT=m | ||
| 640 | CONFIG_NET_CLS_ACT=y | ||
| 641 | CONFIG_NET_ACT_POLICE=m | ||
| 642 | CONFIG_NET_ACT_GACT=m | ||
| 643 | CONFIG_GACT_PROB=y | ||
| 644 | CONFIG_NET_ACT_MIRRED=m | ||
| 645 | CONFIG_NET_ACT_IPT=m | ||
| 646 | CONFIG_NET_ACT_NAT=m | ||
| 647 | CONFIG_NET_ACT_PEDIT=m | ||
| 648 | CONFIG_NET_ACT_SIMP=m | ||
| 649 | CONFIG_NET_CLS_IND=y | ||
| 650 | CONFIG_NET_SCH_FIFO=y | ||
| 651 | |||
| 652 | # | ||
| 653 | # Network testing | ||
| 654 | # | ||
| 655 | CONFIG_NET_PKTGEN=m | ||
| 656 | # CONFIG_HAMRADIO is not set | ||
| 657 | # CONFIG_CAN is not set | ||
| 658 | CONFIG_IRDA=m | ||
| 659 | |||
| 660 | # | ||
| 661 | # IrDA protocols | ||
| 662 | # | ||
| 663 | CONFIG_IRLAN=m | ||
| 664 | CONFIG_IRNET=m | ||
| 665 | CONFIG_IRCOMM=m | ||
| 666 | # CONFIG_IRDA_ULTRA is not set | ||
| 667 | |||
| 668 | # | ||
| 669 | # IrDA options | ||
| 670 | # | ||
| 671 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
| 672 | CONFIG_IRDA_FAST_RR=y | ||
| 673 | # CONFIG_IRDA_DEBUG is not set | ||
| 674 | |||
| 675 | # | ||
| 676 | # Infrared-port device drivers | ||
| 677 | # | ||
| 678 | |||
| 679 | # | ||
| 680 | # SIR device drivers | ||
| 681 | # | ||
| 682 | CONFIG_IRTTY_SIR=m | ||
| 683 | |||
| 684 | # | ||
| 685 | # Dongle support | ||
| 686 | # | ||
| 687 | CONFIG_DONGLE=y | ||
| 688 | CONFIG_ESI_DONGLE=m | ||
| 689 | CONFIG_ACTISYS_DONGLE=m | ||
| 690 | CONFIG_TEKRAM_DONGLE=m | ||
| 691 | CONFIG_TOIM3232_DONGLE=m | ||
| 692 | CONFIG_LITELINK_DONGLE=m | ||
| 693 | CONFIG_MA600_DONGLE=m | ||
| 694 | CONFIG_GIRBIL_DONGLE=m | ||
| 695 | CONFIG_MCP2120_DONGLE=m | ||
| 696 | CONFIG_OLD_BELKIN_DONGLE=m | ||
| 697 | CONFIG_ACT200L_DONGLE=m | ||
| 698 | CONFIG_KINGSUN_DONGLE=m | ||
| 699 | CONFIG_KSDAZZLE_DONGLE=m | ||
| 700 | CONFIG_KS959_DONGLE=m | ||
| 701 | |||
| 702 | # | ||
| 703 | # FIR device drivers | ||
| 704 | # | ||
| 705 | CONFIG_USB_IRDA=m | ||
| 706 | CONFIG_SIGMATEL_FIR=m | ||
| 707 | CONFIG_TOSHIBA_FIR=m | ||
| 708 | CONFIG_VLSI_FIR=m | ||
| 709 | CONFIG_MCS_FIR=m | ||
| 710 | CONFIG_BT=m | ||
| 711 | # CONFIG_BT_L2CAP is not set | ||
| 712 | # CONFIG_BT_SCO is not set | ||
| 713 | |||
| 714 | # | ||
| 715 | # Bluetooth device drivers | ||
| 716 | # | ||
| 717 | CONFIG_BT_HCIUSB=m | ||
| 718 | CONFIG_BT_HCIUSB_SCO=y | ||
| 719 | CONFIG_BT_HCIUART=m | ||
| 720 | CONFIG_BT_HCIUART_H4=y | ||
| 721 | CONFIG_BT_HCIUART_BCSP=y | ||
| 722 | CONFIG_BT_HCIUART_LL=y | ||
| 723 | CONFIG_BT_HCIBCM203X=m | ||
| 724 | CONFIG_BT_HCIBPA10X=m | ||
| 725 | CONFIG_BT_HCIBFUSB=m | ||
| 726 | CONFIG_BT_HCIVHCI=m | ||
| 727 | # CONFIG_AF_RXRPC is not set | ||
| 728 | CONFIG_FIB_RULES=y | ||
| 729 | |||
| 730 | # | ||
| 731 | # Wireless | ||
| 732 | # | ||
| 733 | CONFIG_CFG80211=m | ||
| 734 | CONFIG_NL80211=y | ||
| 735 | CONFIG_WIRELESS_EXT=y | ||
| 736 | CONFIG_MAC80211=m | ||
| 737 | |||
| 738 | # | ||
| 739 | # Rate control algorithm selection | ||
| 740 | # | ||
| 741 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
| 742 | # CONFIG_MAC80211_RC_DEFAULT_SIMPLE is not set | ||
| 743 | # CONFIG_MAC80211_RC_DEFAULT_NONE is not set | ||
| 744 | |||
| 745 | # | ||
| 746 | # Selecting 'y' for an algorithm will | ||
| 747 | # | ||
| 748 | |||
| 749 | # | ||
| 750 | # build the algorithm into mac80211. | ||
| 751 | # | ||
| 752 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
| 753 | CONFIG_MAC80211_RC_PID=y | ||
| 754 | # CONFIG_MAC80211_RC_SIMPLE is not set | ||
| 755 | CONFIG_MAC80211_LEDS=y | ||
| 756 | # CONFIG_MAC80211_DEBUGFS is not set | ||
| 757 | # CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT is not set | ||
| 758 | # CONFIG_MAC80211_DEBUG is not set | ||
| 759 | CONFIG_IEEE80211=m | ||
| 760 | # CONFIG_IEEE80211_DEBUG is not set | ||
| 761 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
| 762 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
| 763 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
| 764 | CONFIG_IEEE80211_SOFTMAC=m | ||
| 765 | # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set | ||
| 766 | CONFIG_RFKILL=m | ||
| 767 | CONFIG_RFKILL_INPUT=m | ||
| 768 | CONFIG_RFKILL_LEDS=y | ||
| 769 | CONFIG_NET_9P=m | ||
| 770 | CONFIG_NET_9P_FD=m | ||
| 771 | # CONFIG_NET_9P_DEBUG is not set | ||
| 772 | |||
| 773 | # | ||
| 774 | # Device Drivers | ||
| 775 | # | ||
| 776 | |||
| 777 | # | ||
| 778 | # Generic Driver Options | ||
| 779 | # | ||
| 780 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 781 | CONFIG_STANDALONE=y | ||
| 782 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 783 | CONFIG_FW_LOADER=m | ||
| 784 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 785 | CONFIG_CONNECTOR=m | ||
| 786 | CONFIG_MTD=y | ||
| 787 | # CONFIG_MTD_DEBUG is not set | ||
| 788 | CONFIG_MTD_CONCAT=y | ||
| 789 | CONFIG_MTD_PARTITIONS=y | ||
| 790 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 791 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # User Modules And Translation Layers | ||
| 795 | # | ||
| 796 | CONFIG_MTD_CHAR=y | ||
| 797 | CONFIG_MTD_BLKDEVS=y | ||
| 798 | CONFIG_MTD_BLOCK=y | ||
| 799 | # CONFIG_FTL is not set | ||
| 800 | # CONFIG_NFTL is not set | ||
| 801 | # CONFIG_INFTL is not set | ||
| 802 | # CONFIG_RFD_FTL is not set | ||
| 803 | # CONFIG_SSFDC is not set | ||
| 804 | # CONFIG_MTD_OOPS is not set | ||
| 805 | |||
| 806 | # | ||
| 807 | # RAM/ROM/Flash chip drivers | ||
| 808 | # | ||
| 809 | CONFIG_MTD_CFI=y | ||
| 810 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 811 | CONFIG_MTD_GEN_PROBE=y | ||
| 812 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 813 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 814 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 815 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 816 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 817 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 818 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 819 | CONFIG_MTD_CFI_I1=y | ||
| 820 | CONFIG_MTD_CFI_I2=y | ||
| 821 | # CONFIG_MTD_CFI_I4 is not set | ||
| 822 | # CONFIG_MTD_CFI_I8 is not set | ||
| 823 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 824 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 825 | CONFIG_MTD_CFI_STAA=y | ||
| 826 | CONFIG_MTD_CFI_UTIL=y | ||
| 827 | CONFIG_MTD_RAM=y | ||
| 828 | CONFIG_MTD_ROM=y | ||
| 829 | CONFIG_MTD_ABSENT=y | ||
| 830 | |||
| 831 | # | ||
| 832 | # Mapping drivers for chip access | ||
| 833 | # | ||
| 834 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 835 | CONFIG_MTD_PHYSMAP=y | ||
| 836 | CONFIG_MTD_PHYSMAP_START=0x8000000 | ||
| 837 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
| 838 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
| 839 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
| 840 | # CONFIG_MTD_PLATRAM is not set | ||
| 841 | |||
| 842 | # | ||
| 843 | # Self-contained MTD device drivers | ||
| 844 | # | ||
| 845 | # CONFIG_MTD_PMC551 is not set | ||
| 846 | # CONFIG_MTD_SLRAM is not set | ||
| 847 | # CONFIG_MTD_PHRAM is not set | ||
| 848 | # CONFIG_MTD_MTDRAM is not set | ||
| 849 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 850 | |||
| 851 | # | ||
| 852 | # Disk-On-Chip Device Drivers | ||
| 853 | # | ||
| 854 | # CONFIG_MTD_DOC2000 is not set | ||
| 855 | # CONFIG_MTD_DOC2001 is not set | ||
| 856 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 857 | # CONFIG_MTD_NAND is not set | ||
| 858 | # CONFIG_MTD_ONENAND is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # UBI - Unsorted block images | ||
| 862 | # | ||
| 863 | # CONFIG_MTD_UBI is not set | ||
| 864 | # CONFIG_PARPORT is not set | ||
| 865 | CONFIG_BLK_DEV=y | ||
| 866 | # CONFIG_BLK_CPQ_DA is not set | ||
| 867 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 868 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 869 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 870 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 871 | CONFIG_BLK_DEV_LOOP=m | ||
| 872 | CONFIG_BLK_DEV_CRYPTOLOOP=m | ||
| 873 | CONFIG_BLK_DEV_NBD=m | ||
| 874 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 875 | # CONFIG_BLK_DEV_UB is not set | ||
| 876 | CONFIG_BLK_DEV_RAM=y | ||
| 877 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 878 | CONFIG_BLK_DEV_RAM_SIZE=16384 | ||
| 879 | # CONFIG_BLK_DEV_XIP is not set | ||
| 880 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 881 | CONFIG_ATA_OVER_ETH=m | ||
| 882 | CONFIG_MISC_DEVICES=y | ||
| 883 | # CONFIG_PHANTOM is not set | ||
| 884 | # CONFIG_EEPROM_93CX6 is not set | ||
| 885 | # CONFIG_SGI_IOC4 is not set | ||
| 886 | # CONFIG_TIFM_CORE is not set | ||
| 887 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 888 | CONFIG_HAVE_IDE=y | ||
| 889 | # CONFIG_IDE is not set | ||
| 890 | |||
| 891 | # | ||
| 892 | # SCSI device support | ||
| 893 | # | ||
| 894 | CONFIG_RAID_ATTRS=m | ||
| 895 | CONFIG_SCSI=y | ||
| 896 | CONFIG_SCSI_DMA=y | ||
| 897 | CONFIG_SCSI_TGT=m | ||
| 898 | # CONFIG_SCSI_NETLINK is not set | ||
| 899 | CONFIG_SCSI_PROC_FS=y | ||
| 900 | |||
| 901 | # | ||
| 902 | # SCSI support type (disk, tape, CD-ROM) | ||
| 903 | # | ||
| 904 | CONFIG_BLK_DEV_SD=y | ||
| 905 | CONFIG_CHR_DEV_ST=m | ||
| 906 | CONFIG_CHR_DEV_OSST=m | ||
| 907 | CONFIG_BLK_DEV_SR=m | ||
| 908 | CONFIG_BLK_DEV_SR_VENDOR=y | ||
| 909 | CONFIG_CHR_DEV_SG=m | ||
| 910 | CONFIG_CHR_DEV_SCH=m | ||
| 911 | |||
| 912 | # | ||
| 913 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 914 | # | ||
| 915 | CONFIG_SCSI_MULTI_LUN=y | ||
| 916 | CONFIG_SCSI_CONSTANTS=y | ||
| 917 | CONFIG_SCSI_LOGGING=y | ||
| 918 | CONFIG_SCSI_SCAN_ASYNC=y | ||
| 919 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 920 | |||
| 921 | # | ||
| 922 | # SCSI Transports | ||
| 923 | # | ||
| 924 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 925 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 926 | CONFIG_SCSI_ISCSI_ATTRS=m | ||
| 927 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 928 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 929 | CONFIG_SCSI_LOWLEVEL=y | ||
| 930 | CONFIG_ISCSI_TCP=m | ||
| 931 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 932 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 933 | # CONFIG_SCSI_ACARD is not set | ||
| 934 | # CONFIG_SCSI_AACRAID is not set | ||
| 935 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 936 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 937 | # CONFIG_SCSI_AIC79XX is not set | ||
| 938 | # CONFIG_SCSI_AIC94XX is not set | ||
| 939 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 940 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 941 | # CONFIG_SCSI_ARCMSR is not set | ||
| 942 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 943 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 944 | # CONFIG_MEGARAID_SAS is not set | ||
| 945 | # CONFIG_SCSI_HPTIOP is not set | ||
| 946 | # CONFIG_SCSI_DMX3191D is not set | ||
| 947 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 948 | # CONFIG_SCSI_IPS is not set | ||
| 949 | # CONFIG_SCSI_INITIO is not set | ||
| 950 | # CONFIG_SCSI_INIA100 is not set | ||
| 951 | # CONFIG_SCSI_STEX is not set | ||
| 952 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 953 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 954 | # CONFIG_SCSI_QLA_FC is not set | ||
| 955 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
| 956 | # CONFIG_SCSI_LPFC is not set | ||
| 957 | # CONFIG_SCSI_DC395x is not set | ||
| 958 | # CONFIG_SCSI_DC390T is not set | ||
| 959 | # CONFIG_SCSI_NSP32 is not set | ||
| 960 | # CONFIG_SCSI_DEBUG is not set | ||
| 961 | # CONFIG_SCSI_SRP is not set | ||
| 962 | # CONFIG_ATA is not set | ||
| 963 | # CONFIG_MD is not set | ||
| 964 | # CONFIG_FUSION is not set | ||
| 965 | |||
| 966 | # | ||
| 967 | # IEEE 1394 (FireWire) support | ||
| 968 | # | ||
| 969 | # CONFIG_FIREWIRE is not set | ||
| 970 | # CONFIG_IEEE1394 is not set | ||
| 971 | # CONFIG_I2O is not set | ||
| 972 | CONFIG_NETDEVICES=y | ||
| 973 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 974 | # CONFIG_IFB is not set | ||
| 975 | CONFIG_DUMMY=m | ||
| 976 | # CONFIG_BONDING is not set | ||
| 977 | # CONFIG_MACVLAN is not set | ||
| 978 | CONFIG_EQUALIZER=m | ||
| 979 | CONFIG_TUN=m | ||
| 980 | CONFIG_VETH=m | ||
| 981 | # CONFIG_ARCNET is not set | ||
| 982 | CONFIG_PHYLIB=m | ||
| 983 | |||
| 984 | # | ||
| 985 | # MII PHY device drivers | ||
| 986 | # | ||
| 987 | CONFIG_MARVELL_PHY=m | ||
| 988 | CONFIG_DAVICOM_PHY=m | ||
| 989 | CONFIG_QSEMI_PHY=m | ||
| 990 | CONFIG_LXT_PHY=m | ||
| 991 | CONFIG_CICADA_PHY=m | ||
| 992 | CONFIG_VITESSE_PHY=m | ||
| 993 | CONFIG_SMSC_PHY=m | ||
| 994 | CONFIG_BROADCOM_PHY=m | ||
| 995 | CONFIG_ICPLUS_PHY=m | ||
| 996 | # CONFIG_REALTEK_PHY is not set | ||
| 997 | # CONFIG_FIXED_PHY is not set | ||
| 998 | CONFIG_MDIO_BITBANG=m | ||
| 999 | CONFIG_NET_ETHERNET=y | ||
| 1000 | CONFIG_MII=y | ||
| 1001 | # CONFIG_AX88796 is not set | ||
| 1002 | # CONFIG_HAPPYMEAL is not set | ||
| 1003 | # CONFIG_SUNGEM is not set | ||
| 1004 | # CONFIG_CASSINI is not set | ||
| 1005 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 1006 | # CONFIG_DM9000 is not set | ||
| 1007 | # CONFIG_NET_TULIP is not set | ||
| 1008 | # CONFIG_HP100 is not set | ||
| 1009 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 1010 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 1011 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 1012 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 1013 | CONFIG_NET_PCI=y | ||
| 1014 | # CONFIG_PCNET32 is not set | ||
| 1015 | # CONFIG_AMD8111_ETH is not set | ||
| 1016 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
| 1017 | CONFIG_B44=y | ||
| 1018 | CONFIG_B44_PCI_AUTOSELECT=y | ||
| 1019 | CONFIG_B44_PCICORE_AUTOSELECT=y | ||
| 1020 | CONFIG_B44_PCI=y | ||
| 1021 | # CONFIG_FORCEDETH is not set | ||
| 1022 | # CONFIG_TC35815 is not set | ||
| 1023 | # CONFIG_EEPRO100 is not set | ||
| 1024 | # CONFIG_E100 is not set | ||
| 1025 | # CONFIG_FEALNX is not set | ||
| 1026 | # CONFIG_NATSEMI is not set | ||
| 1027 | # CONFIG_NE2K_PCI is not set | ||
| 1028 | # CONFIG_8139CP is not set | ||
| 1029 | # CONFIG_8139TOO is not set | ||
| 1030 | # CONFIG_R6040 is not set | ||
| 1031 | # CONFIG_SIS900 is not set | ||
| 1032 | # CONFIG_EPIC100 is not set | ||
| 1033 | # CONFIG_SUNDANCE is not set | ||
| 1034 | # CONFIG_TLAN is not set | ||
| 1035 | # CONFIG_VIA_RHINE is not set | ||
| 1036 | # CONFIG_SC92031 is not set | ||
| 1037 | # CONFIG_NETDEV_1000 is not set | ||
| 1038 | # CONFIG_NETDEV_10000 is not set | ||
| 1039 | # CONFIG_TR is not set | ||
| 1040 | |||
| 1041 | # | ||
| 1042 | # Wireless LAN | ||
| 1043 | # | ||
| 1044 | # CONFIG_WLAN_PRE80211 is not set | ||
| 1045 | CONFIG_WLAN_80211=y | ||
| 1046 | # CONFIG_IPW2100 is not set | ||
| 1047 | # CONFIG_IPW2200 is not set | ||
| 1048 | # CONFIG_LIBERTAS is not set | ||
| 1049 | # CONFIG_HERMES is not set | ||
| 1050 | # CONFIG_ATMEL is not set | ||
| 1051 | # CONFIG_PRISM54 is not set | ||
| 1052 | # CONFIG_USB_ZD1201 is not set | ||
| 1053 | # CONFIG_USB_NET_RNDIS_WLAN is not set | ||
| 1054 | # CONFIG_RTL8180 is not set | ||
| 1055 | # CONFIG_RTL8187 is not set | ||
| 1056 | # CONFIG_ADM8211 is not set | ||
| 1057 | # CONFIG_P54_COMMON is not set | ||
| 1058 | CONFIG_ATH5K=m | ||
| 1059 | # CONFIG_IWL4965 is not set | ||
| 1060 | # CONFIG_IWL3945 is not set | ||
| 1061 | # CONFIG_HOSTAP is not set | ||
| 1062 | # CONFIG_BCM43XX is not set | ||
| 1063 | # CONFIG_B43 is not set | ||
| 1064 | # CONFIG_B43LEGACY is not set | ||
| 1065 | CONFIG_ZD1211RW=m | ||
| 1066 | # CONFIG_ZD1211RW_DEBUG is not set | ||
| 1067 | # CONFIG_RT2X00 is not set | ||
| 1068 | |||
| 1069 | # | ||
| 1070 | # USB Network Adapters | ||
| 1071 | # | ||
| 1072 | CONFIG_USB_CATC=m | ||
| 1073 | CONFIG_USB_KAWETH=m | ||
| 1074 | CONFIG_USB_PEGASUS=m | ||
| 1075 | CONFIG_USB_RTL8150=m | ||
| 1076 | CONFIG_USB_USBNET=m | ||
| 1077 | CONFIG_USB_NET_AX8817X=m | ||
| 1078 | CONFIG_USB_NET_CDCETHER=m | ||
| 1079 | CONFIG_USB_NET_DM9601=m | ||
| 1080 | CONFIG_USB_NET_GL620A=m | ||
| 1081 | CONFIG_USB_NET_NET1080=m | ||
| 1082 | CONFIG_USB_NET_PLUSB=m | ||
| 1083 | CONFIG_USB_NET_MCS7830=m | ||
| 1084 | CONFIG_USB_NET_RNDIS_HOST=m | ||
| 1085 | CONFIG_USB_NET_CDC_SUBSET=m | ||
| 1086 | CONFIG_USB_ALI_M5632=y | ||
| 1087 | CONFIG_USB_AN2720=y | ||
| 1088 | CONFIG_USB_BELKIN=y | ||
| 1089 | CONFIG_USB_ARMLINUX=y | ||
| 1090 | CONFIG_USB_EPSON2888=y | ||
| 1091 | CONFIG_USB_KC2190=y | ||
| 1092 | CONFIG_USB_NET_ZAURUS=m | ||
| 1093 | # CONFIG_WAN is not set | ||
| 1094 | CONFIG_ATM_DRIVERS=y | ||
| 1095 | CONFIG_ATM_DUMMY=m | ||
| 1096 | CONFIG_ATM_TCP=m | ||
| 1097 | # CONFIG_ATM_LANAI is not set | ||
| 1098 | # CONFIG_ATM_ENI is not set | ||
| 1099 | # CONFIG_ATM_FIRESTREAM is not set | ||
| 1100 | # CONFIG_ATM_ZATM is not set | ||
| 1101 | # CONFIG_ATM_NICSTAR is not set | ||
| 1102 | # CONFIG_ATM_IDT77252 is not set | ||
| 1103 | # CONFIG_ATM_AMBASSADOR is not set | ||
| 1104 | # CONFIG_ATM_HORIZON is not set | ||
| 1105 | # CONFIG_ATM_IA is not set | ||
| 1106 | # CONFIG_ATM_FORE200E_MAYBE is not set | ||
| 1107 | # CONFIG_ATM_HE is not set | ||
| 1108 | # CONFIG_FDDI is not set | ||
| 1109 | # CONFIG_HIPPI is not set | ||
| 1110 | CONFIG_PPP=m | ||
| 1111 | # CONFIG_PPP_MULTILINK is not set | ||
| 1112 | # CONFIG_PPP_FILTER is not set | ||
| 1113 | CONFIG_PPP_ASYNC=m | ||
| 1114 | # CONFIG_PPP_SYNC_TTY is not set | ||
| 1115 | CONFIG_PPP_DEFLATE=m | ||
| 1116 | CONFIG_PPP_BSDCOMP=m | ||
| 1117 | CONFIG_PPP_MPPE=m | ||
| 1118 | CONFIG_PPPOE=m | ||
| 1119 | CONFIG_PPPOATM=m | ||
| 1120 | # CONFIG_PPPOL2TP is not set | ||
| 1121 | CONFIG_SLIP=m | ||
| 1122 | # CONFIG_SLIP_COMPRESSED is not set | ||
| 1123 | CONFIG_SLHC=m | ||
| 1124 | # CONFIG_SLIP_SMART is not set | ||
| 1125 | # CONFIG_SLIP_MODE_SLIP6 is not set | ||
| 1126 | # CONFIG_NET_FC is not set | ||
| 1127 | CONFIG_NETCONSOLE=y | ||
| 1128 | # CONFIG_NETCONSOLE_DYNAMIC is not set | ||
| 1129 | CONFIG_NETPOLL=y | ||
| 1130 | # CONFIG_NETPOLL_TRAP is not set | ||
| 1131 | CONFIG_NET_POLL_CONTROLLER=y | ||
| 1132 | # CONFIG_ISDN is not set | ||
| 1133 | # CONFIG_PHONE is not set | ||
| 1134 | |||
| 1135 | # | ||
| 1136 | # Input device support | ||
| 1137 | # | ||
| 1138 | CONFIG_INPUT=y | ||
| 1139 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 1140 | # CONFIG_INPUT_POLLDEV is not set | ||
| 1141 | |||
| 1142 | # | ||
| 1143 | # Userland interfaces | ||
| 1144 | # | ||
| 1145 | CONFIG_INPUT_MOUSEDEV=y | ||
| 1146 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 1147 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 1148 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 1149 | # CONFIG_INPUT_JOYDEV is not set | ||
| 1150 | CONFIG_INPUT_EVDEV=m | ||
| 1151 | # CONFIG_INPUT_EVBUG is not set | ||
| 1152 | |||
| 1153 | # | ||
| 1154 | # Input Device Drivers | ||
| 1155 | # | ||
| 1156 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 1157 | # CONFIG_INPUT_MOUSE is not set | ||
| 1158 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 1159 | # CONFIG_INPUT_TABLET is not set | ||
| 1160 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 1161 | # CONFIG_INPUT_MISC is not set | ||
| 1162 | |||
| 1163 | # | ||
| 1164 | # Hardware I/O ports | ||
| 1165 | # | ||
| 1166 | # CONFIG_SERIO is not set | ||
| 1167 | # CONFIG_GAMEPORT is not set | ||
| 1168 | |||
| 1169 | # | ||
| 1170 | # Character devices | ||
| 1171 | # | ||
| 1172 | # CONFIG_VT is not set | ||
| 1173 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 1174 | # CONFIG_NOZOMI is not set | ||
| 1175 | |||
| 1176 | # | ||
| 1177 | # Serial drivers | ||
| 1178 | # | ||
| 1179 | CONFIG_SERIAL_8250=y | ||
| 1180 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 1181 | # CONFIG_SERIAL_8250_PCI is not set | ||
| 1182 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
| 1183 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
| 1184 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 1185 | |||
| 1186 | # | ||
| 1187 | # Non-8250 serial port support | ||
| 1188 | # | ||
| 1189 | CONFIG_SERIAL_CORE=y | ||
| 1190 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 1191 | # CONFIG_SERIAL_JSM is not set | ||
| 1192 | CONFIG_UNIX98_PTYS=y | ||
| 1193 | # CONFIG_LEGACY_PTYS is not set | ||
| 1194 | # CONFIG_IPMI_HANDLER is not set | ||
| 1195 | # CONFIG_HW_RANDOM is not set | ||
| 1196 | # CONFIG_RTC is not set | ||
| 1197 | # CONFIG_R3964 is not set | ||
| 1198 | # CONFIG_APPLICOM is not set | ||
| 1199 | # CONFIG_RAW_DRIVER is not set | ||
| 1200 | # CONFIG_TCG_TPM is not set | ||
| 1201 | CONFIG_DEVPORT=y | ||
| 1202 | # CONFIG_I2C is not set | ||
| 1203 | |||
| 1204 | # | ||
| 1205 | # SPI support | ||
| 1206 | # | ||
| 1207 | # CONFIG_SPI is not set | ||
| 1208 | # CONFIG_SPI_MASTER is not set | ||
| 1209 | CONFIG_W1=m | ||
| 1210 | CONFIG_W1_CON=y | ||
| 1211 | |||
| 1212 | # | ||
| 1213 | # 1-wire Bus Masters | ||
| 1214 | # | ||
| 1215 | CONFIG_W1_MASTER_MATROX=m | ||
| 1216 | CONFIG_W1_MASTER_DS2490=m | ||
| 1217 | # CONFIG_W1_MASTER_GPIO is not set | ||
| 1218 | |||
| 1219 | # | ||
| 1220 | # 1-wire Slaves | ||
| 1221 | # | ||
| 1222 | CONFIG_W1_SLAVE_THERM=m | ||
| 1223 | CONFIG_W1_SLAVE_SMEM=m | ||
| 1224 | CONFIG_W1_SLAVE_DS2433=m | ||
| 1225 | # CONFIG_W1_SLAVE_DS2433_CRC is not set | ||
| 1226 | CONFIG_W1_SLAVE_DS2760=m | ||
| 1227 | # CONFIG_POWER_SUPPLY is not set | ||
| 1228 | # CONFIG_HWMON is not set | ||
| 1229 | CONFIG_THERMAL=y | ||
| 1230 | # CONFIG_WATCHDOG is not set | ||
| 1231 | |||
| 1232 | # | ||
| 1233 | # Sonics Silicon Backplane | ||
| 1234 | # | ||
| 1235 | CONFIG_SSB_POSSIBLE=y | ||
| 1236 | CONFIG_SSB=y | ||
| 1237 | CONFIG_SSB_PCIHOST_POSSIBLE=y | ||
| 1238 | CONFIG_SSB_PCIHOST=y | ||
| 1239 | # CONFIG_SSB_SILENT is not set | ||
| 1240 | # CONFIG_SSB_DEBUG is not set | ||
| 1241 | CONFIG_SSB_SERIAL=y | ||
| 1242 | CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y | ||
| 1243 | CONFIG_SSB_DRIVER_PCICORE=y | ||
| 1244 | CONFIG_SSB_PCICORE_HOSTMODE=y | ||
| 1245 | CONFIG_SSB_DRIVER_MIPS=y | ||
| 1246 | CONFIG_SSB_DRIVER_EXTIF=y | ||
| 1247 | |||
| 1248 | # | ||
| 1249 | # Multifunction device drivers | ||
| 1250 | # | ||
| 1251 | # CONFIG_MFD_SM501 is not set | ||
| 1252 | |||
| 1253 | # | ||
| 1254 | # Multimedia devices | ||
| 1255 | # | ||
| 1256 | # CONFIG_VIDEO_DEV is not set | ||
| 1257 | # CONFIG_DVB_CORE is not set | ||
| 1258 | CONFIG_DAB=y | ||
| 1259 | CONFIG_USB_DABUSB=m | ||
| 1260 | |||
| 1261 | # | ||
| 1262 | # Graphics support | ||
| 1263 | # | ||
| 1264 | # CONFIG_DRM is not set | ||
| 1265 | # CONFIG_VGASTATE is not set | ||
| 1266 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 1267 | # CONFIG_FB is not set | ||
| 1268 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 1269 | |||
| 1270 | # | ||
| 1271 | # Display device support | ||
| 1272 | # | ||
| 1273 | CONFIG_DISPLAY_SUPPORT=m | ||
| 1274 | |||
| 1275 | # | ||
| 1276 | # Display hardware drivers | ||
| 1277 | # | ||
| 1278 | |||
| 1279 | # | ||
| 1280 | # Sound | ||
| 1281 | # | ||
| 1282 | CONFIG_SOUND=m | ||
| 1283 | |||
| 1284 | # | ||
| 1285 | # Advanced Linux Sound Architecture | ||
| 1286 | # | ||
| 1287 | CONFIG_SND=m | ||
| 1288 | CONFIG_SND_TIMER=m | ||
| 1289 | CONFIG_SND_PCM=m | ||
| 1290 | CONFIG_SND_HWDEP=m | ||
| 1291 | CONFIG_SND_RAWMIDI=m | ||
| 1292 | CONFIG_SND_SEQUENCER=m | ||
| 1293 | CONFIG_SND_SEQ_DUMMY=m | ||
| 1294 | CONFIG_SND_OSSEMUL=y | ||
| 1295 | CONFIG_SND_MIXER_OSS=m | ||
| 1296 | CONFIG_SND_PCM_OSS=m | ||
| 1297 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
| 1298 | CONFIG_SND_SEQUENCER_OSS=y | ||
| 1299 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
| 1300 | CONFIG_SND_SUPPORT_OLD_API=y | ||
| 1301 | CONFIG_SND_VERBOSE_PROCFS=y | ||
| 1302 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
| 1303 | # CONFIG_SND_DEBUG is not set | ||
| 1304 | |||
| 1305 | # | ||
| 1306 | # Generic devices | ||
| 1307 | # | ||
| 1308 | CONFIG_SND_DUMMY=m | ||
| 1309 | CONFIG_SND_VIRMIDI=m | ||
| 1310 | # CONFIG_SND_MTPAV is not set | ||
| 1311 | # CONFIG_SND_SERIAL_U16550 is not set | ||
| 1312 | # CONFIG_SND_MPU401 is not set | ||
| 1313 | |||
| 1314 | # | ||
| 1315 | # PCI devices | ||
| 1316 | # | ||
| 1317 | # CONFIG_SND_AD1889 is not set | ||
| 1318 | # CONFIG_SND_ALS300 is not set | ||
| 1319 | # CONFIG_SND_ALI5451 is not set | ||
| 1320 | # CONFIG_SND_ATIIXP is not set | ||
| 1321 | # CONFIG_SND_ATIIXP_MODEM is not set | ||
| 1322 | # CONFIG_SND_AU8810 is not set | ||
| 1323 | # CONFIG_SND_AU8820 is not set | ||
| 1324 | # CONFIG_SND_AU8830 is not set | ||
| 1325 | # CONFIG_SND_AZT3328 is not set | ||
| 1326 | # CONFIG_SND_BT87X is not set | ||
| 1327 | # CONFIG_SND_CA0106 is not set | ||
| 1328 | # CONFIG_SND_CMIPCI is not set | ||
| 1329 | # CONFIG_SND_OXYGEN is not set | ||
| 1330 | # CONFIG_SND_CS4281 is not set | ||
| 1331 | # CONFIG_SND_CS46XX is not set | ||
| 1332 | # CONFIG_SND_DARLA20 is not set | ||
| 1333 | # CONFIG_SND_GINA20 is not set | ||
| 1334 | # CONFIG_SND_LAYLA20 is not set | ||
| 1335 | # CONFIG_SND_DARLA24 is not set | ||
| 1336 | # CONFIG_SND_GINA24 is not set | ||
| 1337 | # CONFIG_SND_LAYLA24 is not set | ||
| 1338 | # CONFIG_SND_MONA is not set | ||
| 1339 | # CONFIG_SND_MIA is not set | ||
| 1340 | # CONFIG_SND_ECHO3G is not set | ||
| 1341 | # CONFIG_SND_INDIGO is not set | ||
| 1342 | # CONFIG_SND_INDIGOIO is not set | ||
| 1343 | # CONFIG_SND_INDIGODJ is not set | ||
| 1344 | # CONFIG_SND_EMU10K1 is not set | ||
| 1345 | # CONFIG_SND_EMU10K1X is not set | ||
| 1346 | # CONFIG_SND_ENS1370 is not set | ||
| 1347 | # CONFIG_SND_ENS1371 is not set | ||
| 1348 | # CONFIG_SND_ES1938 is not set | ||
| 1349 | # CONFIG_SND_ES1968 is not set | ||
| 1350 | # CONFIG_SND_FM801 is not set | ||
| 1351 | # CONFIG_SND_HDA_INTEL is not set | ||
| 1352 | # CONFIG_SND_HDSP is not set | ||
| 1353 | # CONFIG_SND_HDSPM is not set | ||
| 1354 | # CONFIG_SND_HIFIER is not set | ||
| 1355 | # CONFIG_SND_ICE1712 is not set | ||
| 1356 | # CONFIG_SND_ICE1724 is not set | ||
| 1357 | # CONFIG_SND_INTEL8X0 is not set | ||
| 1358 | # CONFIG_SND_INTEL8X0M is not set | ||
| 1359 | # CONFIG_SND_KORG1212 is not set | ||
| 1360 | # CONFIG_SND_MAESTRO3 is not set | ||
| 1361 | # CONFIG_SND_MIXART is not set | ||
| 1362 | # CONFIG_SND_NM256 is not set | ||
| 1363 | # CONFIG_SND_PCXHR is not set | ||
| 1364 | # CONFIG_SND_RIPTIDE is not set | ||
| 1365 | # CONFIG_SND_RME32 is not set | ||
| 1366 | # CONFIG_SND_RME96 is not set | ||
| 1367 | # CONFIG_SND_RME9652 is not set | ||
| 1368 | # CONFIG_SND_SONICVIBES is not set | ||
| 1369 | # CONFIG_SND_TRIDENT is not set | ||
| 1370 | # CONFIG_SND_VIA82XX is not set | ||
| 1371 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
| 1372 | # CONFIG_SND_VIRTUOSO is not set | ||
| 1373 | # CONFIG_SND_VX222 is not set | ||
| 1374 | # CONFIG_SND_YMFPCI is not set | ||
| 1375 | |||
| 1376 | # | ||
| 1377 | # ALSA MIPS devices | ||
| 1378 | # | ||
| 1379 | |||
| 1380 | # | ||
| 1381 | # USB devices | ||
| 1382 | # | ||
| 1383 | CONFIG_SND_USB_AUDIO=m | ||
| 1384 | # CONFIG_SND_USB_CAIAQ is not set | ||
| 1385 | |||
| 1386 | # | ||
| 1387 | # System on Chip audio support | ||
| 1388 | # | ||
| 1389 | # CONFIG_SND_SOC is not set | ||
| 1390 | |||
| 1391 | # | ||
| 1392 | # SoC Audio support for SuperH | ||
| 1393 | # | ||
| 1394 | |||
| 1395 | # | ||
| 1396 | # ALSA SoC audio for Freescale SOCs | ||
| 1397 | # | ||
| 1398 | |||
| 1399 | # | ||
| 1400 | # Open Sound System | ||
| 1401 | # | ||
| 1402 | # CONFIG_SOUND_PRIME is not set | ||
| 1403 | CONFIG_HID_SUPPORT=y | ||
| 1404 | CONFIG_HID=m | ||
| 1405 | # CONFIG_HID_DEBUG is not set | ||
| 1406 | # CONFIG_HIDRAW is not set | ||
| 1407 | |||
| 1408 | # | ||
| 1409 | # USB Input Devices | ||
| 1410 | # | ||
| 1411 | CONFIG_USB_HID=m | ||
| 1412 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 1413 | # CONFIG_HID_FF is not set | ||
| 1414 | CONFIG_USB_HIDDEV=y | ||
| 1415 | |||
| 1416 | # | ||
| 1417 | # USB HID Boot Protocol drivers | ||
| 1418 | # | ||
| 1419 | # CONFIG_USB_KBD is not set | ||
| 1420 | # CONFIG_USB_MOUSE is not set | ||
| 1421 | CONFIG_USB_SUPPORT=y | ||
| 1422 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 1423 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 1424 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
| 1425 | CONFIG_USB=y | ||
| 1426 | # CONFIG_USB_DEBUG is not set | ||
| 1427 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 1428 | |||
| 1429 | # | ||
| 1430 | # Miscellaneous USB options | ||
| 1431 | # | ||
| 1432 | CONFIG_USB_DEVICEFS=y | ||
| 1433 | # CONFIG_USB_DEVICE_CLASS is not set | ||
| 1434 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 1435 | # CONFIG_USB_OTG is not set | ||
| 1436 | |||
| 1437 | # | ||
| 1438 | # USB Host Controller Drivers | ||
| 1439 | # | ||
| 1440 | CONFIG_USB_EHCI_HCD=y | ||
| 1441 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
| 1442 | CONFIG_USB_EHCI_TT_NEWSCHED=y | ||
| 1443 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 1444 | CONFIG_USB_OHCI_HCD=y | ||
| 1445 | # CONFIG_USB_OHCI_HCD_SSB is not set | ||
| 1446 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 1447 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 1448 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 1449 | # CONFIG_USB_UHCI_HCD is not set | ||
| 1450 | CONFIG_USB_U132_HCD=m | ||
| 1451 | # CONFIG_USB_SL811_HCD is not set | ||
| 1452 | CONFIG_USB_R8A66597_HCD=m | ||
| 1453 | |||
| 1454 | # | ||
| 1455 | # USB Device Class drivers | ||
| 1456 | # | ||
| 1457 | CONFIG_USB_ACM=m | ||
| 1458 | CONFIG_USB_PRINTER=m | ||
| 1459 | |||
| 1460 | # | ||
| 1461 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 1462 | # | ||
| 1463 | |||
| 1464 | # | ||
| 1465 | # may also be needed; see USB_STORAGE Help for more information | ||
| 1466 | # | ||
| 1467 | CONFIG_USB_STORAGE=y | ||
| 1468 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 1469 | CONFIG_USB_STORAGE_DATAFAB=y | ||
| 1470 | CONFIG_USB_STORAGE_FREECOM=y | ||
| 1471 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 1472 | CONFIG_USB_STORAGE_DPCM=y | ||
| 1473 | CONFIG_USB_STORAGE_USBAT=y | ||
| 1474 | CONFIG_USB_STORAGE_SDDR09=y | ||
| 1475 | CONFIG_USB_STORAGE_SDDR55=y | ||
| 1476 | CONFIG_USB_STORAGE_JUMPSHOT=y | ||
| 1477 | CONFIG_USB_STORAGE_ALAUDA=y | ||
| 1478 | CONFIG_USB_STORAGE_ONETOUCH=y | ||
| 1479 | CONFIG_USB_STORAGE_KARMA=y | ||
| 1480 | # CONFIG_USB_LIBUSUAL is not set | ||
| 1481 | |||
| 1482 | # | ||
| 1483 | # USB Imaging devices | ||
| 1484 | # | ||
| 1485 | CONFIG_USB_MDC800=m | ||
| 1486 | CONFIG_USB_MICROTEK=m | ||
| 1487 | # CONFIG_USB_MON is not set | ||
| 1488 | |||
| 1489 | # | ||
| 1490 | # USB port drivers | ||
| 1491 | # | ||
| 1492 | CONFIG_USB_SERIAL=m | ||
| 1493 | CONFIG_USB_EZUSB=y | ||
| 1494 | CONFIG_USB_SERIAL_GENERIC=y | ||
| 1495 | CONFIG_USB_SERIAL_AIRCABLE=m | ||
| 1496 | CONFIG_USB_SERIAL_AIRPRIME=m | ||
| 1497 | CONFIG_USB_SERIAL_ARK3116=m | ||
| 1498 | CONFIG_USB_SERIAL_BELKIN=m | ||
| 1499 | CONFIG_USB_SERIAL_CH341=m | ||
| 1500 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | ||
| 1501 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | ||
| 1502 | CONFIG_USB_SERIAL_CP2101=m | ||
| 1503 | CONFIG_USB_SERIAL_CYPRESS_M8=m | ||
| 1504 | CONFIG_USB_SERIAL_EMPEG=m | ||
| 1505 | CONFIG_USB_SERIAL_FTDI_SIO=m | ||
| 1506 | CONFIG_USB_SERIAL_FUNSOFT=m | ||
| 1507 | CONFIG_USB_SERIAL_VISOR=m | ||
| 1508 | CONFIG_USB_SERIAL_IPAQ=m | ||
| 1509 | CONFIG_USB_SERIAL_IR=m | ||
| 1510 | # CONFIG_USB_SERIAL_EDGEPORT is not set | ||
| 1511 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | ||
| 1512 | CONFIG_USB_SERIAL_GARMIN=m | ||
| 1513 | CONFIG_USB_SERIAL_IPW=m | ||
| 1514 | # CONFIG_USB_SERIAL_IUU is not set | ||
| 1515 | CONFIG_USB_SERIAL_KEYSPAN_PDA=m | ||
| 1516 | # CONFIG_USB_SERIAL_KEYSPAN is not set | ||
| 1517 | CONFIG_USB_SERIAL_KLSI=m | ||
| 1518 | CONFIG_USB_SERIAL_KOBIL_SCT=m | ||
| 1519 | CONFIG_USB_SERIAL_MCT_U232=m | ||
| 1520 | CONFIG_USB_SERIAL_MOS7720=m | ||
| 1521 | CONFIG_USB_SERIAL_MOS7840=m | ||
| 1522 | CONFIG_USB_SERIAL_NAVMAN=m | ||
| 1523 | CONFIG_USB_SERIAL_PL2303=m | ||
| 1524 | CONFIG_USB_SERIAL_OTI6858=m | ||
| 1525 | CONFIG_USB_SERIAL_HP4X=m | ||
| 1526 | CONFIG_USB_SERIAL_SAFE=m | ||
| 1527 | # CONFIG_USB_SERIAL_SAFE_PADDED is not set | ||
| 1528 | CONFIG_USB_SERIAL_SIERRAWIRELESS=m | ||
| 1529 | # CONFIG_USB_SERIAL_TI is not set | ||
| 1530 | CONFIG_USB_SERIAL_CYBERJACK=m | ||
| 1531 | CONFIG_USB_SERIAL_XIRCOM=m | ||
| 1532 | CONFIG_USB_SERIAL_OPTION=m | ||
| 1533 | CONFIG_USB_SERIAL_OMNINET=m | ||
| 1534 | CONFIG_USB_SERIAL_DEBUG=m | ||
| 1535 | |||
| 1536 | # | ||
| 1537 | # USB Miscellaneous drivers | ||
| 1538 | # | ||
| 1539 | # CONFIG_USB_EMI62 is not set | ||
| 1540 | # CONFIG_USB_EMI26 is not set | ||
| 1541 | CONFIG_USB_ADUTUX=m | ||
| 1542 | CONFIG_USB_AUERSWALD=m | ||
| 1543 | CONFIG_USB_RIO500=m | ||
| 1544 | CONFIG_USB_LEGOTOWER=m | ||
| 1545 | CONFIG_USB_LCD=m | ||
| 1546 | CONFIG_USB_BERRY_CHARGE=m | ||
| 1547 | CONFIG_USB_LED=m | ||
| 1548 | CONFIG_USB_CYPRESS_CY7C63=m | ||
| 1549 | CONFIG_USB_CYTHERM=m | ||
| 1550 | CONFIG_USB_PHIDGET=m | ||
| 1551 | CONFIG_USB_PHIDGETKIT=m | ||
| 1552 | CONFIG_USB_PHIDGETMOTORCONTROL=m | ||
| 1553 | CONFIG_USB_PHIDGETSERVO=m | ||
| 1554 | CONFIG_USB_IDMOUSE=m | ||
| 1555 | CONFIG_USB_FTDI_ELAN=m | ||
| 1556 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 1557 | CONFIG_USB_SISUSBVGA=m | ||
| 1558 | CONFIG_USB_LD=m | ||
| 1559 | CONFIG_USB_TRANCEVIBRATOR=m | ||
| 1560 | CONFIG_USB_IOWARRIOR=m | ||
| 1561 | CONFIG_USB_TEST=m | ||
| 1562 | CONFIG_USB_ATM=m | ||
| 1563 | CONFIG_USB_SPEEDTOUCH=m | ||
| 1564 | CONFIG_USB_CXACRU=m | ||
| 1565 | CONFIG_USB_UEAGLEATM=m | ||
| 1566 | CONFIG_USB_XUSBATM=m | ||
| 1567 | CONFIG_USB_GADGET=m | ||
| 1568 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
| 1569 | # CONFIG_USB_GADGET_DEBUG_FS is not set | ||
| 1570 | CONFIG_USB_GADGET_SELECTED=y | ||
| 1571 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
| 1572 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | ||
| 1573 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
| 1574 | CONFIG_USB_GADGET_NET2280=y | ||
| 1575 | CONFIG_USB_NET2280=m | ||
| 1576 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
| 1577 | # CONFIG_USB_GADGET_M66592 is not set | ||
| 1578 | # CONFIG_USB_GADGET_GOKU is not set | ||
| 1579 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
| 1580 | # CONFIG_USB_GADGET_OMAP is not set | ||
| 1581 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
| 1582 | # CONFIG_USB_GADGET_AT91 is not set | ||
| 1583 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
| 1584 | CONFIG_USB_GADGET_DUALSPEED=y | ||
| 1585 | CONFIG_USB_ZERO=m | ||
| 1586 | CONFIG_USB_ETH=m | ||
| 1587 | CONFIG_USB_ETH_RNDIS=y | ||
| 1588 | CONFIG_USB_GADGETFS=m | ||
| 1589 | CONFIG_USB_FILE_STORAGE=m | ||
| 1590 | # CONFIG_USB_FILE_STORAGE_TEST is not set | ||
| 1591 | CONFIG_USB_G_SERIAL=m | ||
| 1592 | CONFIG_USB_MIDI_GADGET=m | ||
| 1593 | # CONFIG_USB_G_PRINTER is not set | ||
| 1594 | # CONFIG_MMC is not set | ||
| 1595 | # CONFIG_MEMSTICK is not set | ||
| 1596 | CONFIG_NEW_LEDS=y | ||
| 1597 | CONFIG_LEDS_CLASS=y | ||
| 1598 | |||
| 1599 | # | ||
| 1600 | # LED drivers | ||
| 1601 | # | ||
| 1602 | CONFIG_LEDS_GPIO=y | ||
| 1603 | |||
| 1604 | # | ||
| 1605 | # LED Triggers | ||
| 1606 | # | ||
| 1607 | CONFIG_LEDS_TRIGGERS=y | ||
| 1608 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
| 1609 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
| 1610 | # CONFIG_INFINIBAND is not set | ||
| 1611 | CONFIG_RTC_LIB=y | ||
| 1612 | # CONFIG_RTC_CLASS is not set | ||
| 1613 | |||
| 1614 | # | ||
| 1615 | # Userspace I/O | ||
| 1616 | # | ||
| 1617 | # CONFIG_UIO is not set | ||
| 1618 | |||
| 1619 | # | ||
| 1620 | # File systems | ||
| 1621 | # | ||
| 1622 | CONFIG_EXT2_FS=y | ||
| 1623 | CONFIG_EXT2_FS_XATTR=y | ||
| 1624 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
| 1625 | CONFIG_EXT2_FS_SECURITY=y | ||
| 1626 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1627 | CONFIG_EXT3_FS=y | ||
| 1628 | CONFIG_EXT3_FS_XATTR=y | ||
| 1629 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
| 1630 | CONFIG_EXT3_FS_SECURITY=y | ||
| 1631 | # CONFIG_EXT4DEV_FS is not set | ||
| 1632 | CONFIG_JBD=y | ||
| 1633 | # CONFIG_JBD_DEBUG is not set | ||
| 1634 | CONFIG_FS_MBCACHE=y | ||
| 1635 | CONFIG_REISERFS_FS=m | ||
| 1636 | # CONFIG_REISERFS_CHECK is not set | ||
| 1637 | # CONFIG_REISERFS_PROC_INFO is not set | ||
| 1638 | CONFIG_REISERFS_FS_XATTR=y | ||
| 1639 | CONFIG_REISERFS_FS_POSIX_ACL=y | ||
| 1640 | CONFIG_REISERFS_FS_SECURITY=y | ||
| 1641 | CONFIG_JFS_FS=m | ||
| 1642 | CONFIG_JFS_POSIX_ACL=y | ||
| 1643 | CONFIG_JFS_SECURITY=y | ||
| 1644 | # CONFIG_JFS_DEBUG is not set | ||
| 1645 | # CONFIG_JFS_STATISTICS is not set | ||
| 1646 | CONFIG_FS_POSIX_ACL=y | ||
| 1647 | CONFIG_XFS_FS=m | ||
| 1648 | CONFIG_XFS_QUOTA=y | ||
| 1649 | CONFIG_XFS_SECURITY=y | ||
| 1650 | CONFIG_XFS_POSIX_ACL=y | ||
| 1651 | CONFIG_XFS_RT=y | ||
| 1652 | CONFIG_GFS2_FS=m | ||
| 1653 | CONFIG_GFS2_FS_LOCKING_NOLOCK=m | ||
| 1654 | CONFIG_GFS2_FS_LOCKING_DLM=m | ||
| 1655 | # CONFIG_OCFS2_FS is not set | ||
| 1656 | CONFIG_DNOTIFY=y | ||
| 1657 | CONFIG_INOTIFY=y | ||
| 1658 | CONFIG_INOTIFY_USER=y | ||
| 1659 | CONFIG_QUOTA=y | ||
| 1660 | CONFIG_QUOTA_NETLINK_INTERFACE=y | ||
| 1661 | CONFIG_PRINT_QUOTA_WARNING=y | ||
| 1662 | CONFIG_QFMT_V1=m | ||
| 1663 | CONFIG_QFMT_V2=m | ||
| 1664 | CONFIG_QUOTACTL=y | ||
| 1665 | CONFIG_AUTOFS_FS=m | ||
| 1666 | CONFIG_AUTOFS4_FS=m | ||
| 1667 | CONFIG_FUSE_FS=m | ||
| 1668 | CONFIG_GENERIC_ACL=y | ||
| 1669 | |||
| 1670 | # | ||
| 1671 | # CD-ROM/DVD Filesystems | ||
| 1672 | # | ||
| 1673 | CONFIG_ISO9660_FS=m | ||
| 1674 | CONFIG_JOLIET=y | ||
| 1675 | CONFIG_ZISOFS=y | ||
| 1676 | CONFIG_UDF_FS=m | ||
| 1677 | CONFIG_UDF_NLS=y | ||
| 1678 | |||
| 1679 | # | ||
| 1680 | # DOS/FAT/NT Filesystems | ||
| 1681 | # | ||
| 1682 | CONFIG_FAT_FS=m | ||
| 1683 | CONFIG_MSDOS_FS=m | ||
| 1684 | CONFIG_VFAT_FS=m | ||
| 1685 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
| 1686 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
| 1687 | CONFIG_NTFS_FS=m | ||
| 1688 | # CONFIG_NTFS_DEBUG is not set | ||
| 1689 | CONFIG_NTFS_RW=y | ||
| 1690 | |||
| 1691 | # | ||
| 1692 | # Pseudo filesystems | ||
| 1693 | # | ||
| 1694 | CONFIG_PROC_FS=y | ||
| 1695 | CONFIG_PROC_KCORE=y | ||
| 1696 | CONFIG_PROC_SYSCTL=y | ||
| 1697 | CONFIG_SYSFS=y | ||
| 1698 | CONFIG_TMPFS=y | ||
| 1699 | CONFIG_TMPFS_POSIX_ACL=y | ||
| 1700 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1701 | CONFIG_CONFIGFS_FS=m | ||
| 1702 | |||
| 1703 | # | ||
| 1704 | # Miscellaneous filesystems | ||
| 1705 | # | ||
| 1706 | CONFIG_ADFS_FS=m | ||
| 1707 | # CONFIG_ADFS_FS_RW is not set | ||
| 1708 | CONFIG_AFFS_FS=m | ||
| 1709 | CONFIG_HFS_FS=m | ||
| 1710 | CONFIG_HFSPLUS_FS=m | ||
| 1711 | CONFIG_BEFS_FS=m | ||
| 1712 | # CONFIG_BEFS_DEBUG is not set | ||
| 1713 | CONFIG_BFS_FS=m | ||
| 1714 | CONFIG_EFS_FS=m | ||
| 1715 | CONFIG_JFFS2_FS=m | ||
| 1716 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1717 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1718 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 1719 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 1720 | CONFIG_JFFS2_FS_XATTR=y | ||
| 1721 | CONFIG_JFFS2_FS_POSIX_ACL=y | ||
| 1722 | CONFIG_JFFS2_FS_SECURITY=y | ||
| 1723 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 1724 | CONFIG_JFFS2_ZLIB=y | ||
| 1725 | # CONFIG_JFFS2_LZO is not set | ||
| 1726 | CONFIG_JFFS2_RTIME=y | ||
| 1727 | # CONFIG_JFFS2_RUBIN is not set | ||
| 1728 | CONFIG_CRAMFS=m | ||
| 1729 | CONFIG_VXFS_FS=m | ||
| 1730 | CONFIG_MINIX_FS=m | ||
| 1731 | CONFIG_HPFS_FS=m | ||
| 1732 | CONFIG_QNX4FS_FS=m | ||
| 1733 | CONFIG_ROMFS_FS=m | ||
| 1734 | CONFIG_SYSV_FS=m | ||
| 1735 | CONFIG_UFS_FS=m | ||
| 1736 | # CONFIG_UFS_FS_WRITE is not set | ||
| 1737 | # CONFIG_UFS_DEBUG is not set | ||
| 1738 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 1739 | CONFIG_NFS_FS=m | ||
| 1740 | CONFIG_NFS_V3=y | ||
| 1741 | CONFIG_NFS_V3_ACL=y | ||
| 1742 | CONFIG_NFS_V4=y | ||
| 1743 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1744 | CONFIG_NFSD=m | ||
| 1745 | CONFIG_NFSD_V2_ACL=y | ||
| 1746 | CONFIG_NFSD_V3=y | ||
| 1747 | CONFIG_NFSD_V3_ACL=y | ||
| 1748 | CONFIG_NFSD_V4=y | ||
| 1749 | CONFIG_NFSD_TCP=y | ||
| 1750 | CONFIG_LOCKD=m | ||
| 1751 | CONFIG_LOCKD_V4=y | ||
| 1752 | CONFIG_EXPORTFS=m | ||
| 1753 | CONFIG_NFS_ACL_SUPPORT=m | ||
| 1754 | CONFIG_NFS_COMMON=y | ||
| 1755 | CONFIG_SUNRPC=m | ||
| 1756 | CONFIG_SUNRPC_GSS=m | ||
| 1757 | CONFIG_SUNRPC_BIND34=y | ||
| 1758 | CONFIG_RPCSEC_GSS_KRB5=m | ||
| 1759 | CONFIG_RPCSEC_GSS_SPKM3=m | ||
| 1760 | # CONFIG_SMB_FS is not set | ||
| 1761 | CONFIG_CIFS=m | ||
| 1762 | # CONFIG_CIFS_STATS is not set | ||
| 1763 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
| 1764 | CONFIG_CIFS_XATTR=y | ||
| 1765 | CONFIG_CIFS_POSIX=y | ||
| 1766 | # CONFIG_CIFS_DEBUG2 is not set | ||
| 1767 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
| 1768 | CONFIG_NCP_FS=m | ||
| 1769 | # CONFIG_NCPFS_PACKET_SIGNING is not set | ||
| 1770 | # CONFIG_NCPFS_IOCTL_LOCKING is not set | ||
| 1771 | # CONFIG_NCPFS_STRONG is not set | ||
| 1772 | CONFIG_NCPFS_NFS_NS=y | ||
| 1773 | CONFIG_NCPFS_OS2_NS=y | ||
| 1774 | # CONFIG_NCPFS_SMALLDOS is not set | ||
| 1775 | CONFIG_NCPFS_NLS=y | ||
| 1776 | CONFIG_NCPFS_EXTRAS=y | ||
| 1777 | CONFIG_CODA_FS=m | ||
| 1778 | # CONFIG_CODA_FS_OLD_API is not set | ||
| 1779 | # CONFIG_AFS_FS is not set | ||
| 1780 | CONFIG_9P_FS=m | ||
| 1781 | |||
| 1782 | # | ||
| 1783 | # Partition Types | ||
| 1784 | # | ||
| 1785 | CONFIG_PARTITION_ADVANCED=y | ||
| 1786 | # CONFIG_ACORN_PARTITION is not set | ||
| 1787 | # CONFIG_OSF_PARTITION is not set | ||
| 1788 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1789 | # CONFIG_ATARI_PARTITION is not set | ||
| 1790 | # CONFIG_MAC_PARTITION is not set | ||
| 1791 | CONFIG_MSDOS_PARTITION=y | ||
| 1792 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1793 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1794 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1795 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1796 | # CONFIG_LDM_PARTITION is not set | ||
| 1797 | # CONFIG_SGI_PARTITION is not set | ||
| 1798 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1799 | # CONFIG_SUN_PARTITION is not set | ||
| 1800 | CONFIG_KARMA_PARTITION=y | ||
| 1801 | # CONFIG_EFI_PARTITION is not set | ||
| 1802 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1803 | CONFIG_NLS=y | ||
| 1804 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
| 1805 | CONFIG_NLS_CODEPAGE_437=m | ||
| 1806 | CONFIG_NLS_CODEPAGE_737=m | ||
| 1807 | CONFIG_NLS_CODEPAGE_775=m | ||
| 1808 | CONFIG_NLS_CODEPAGE_850=m | ||
| 1809 | CONFIG_NLS_CODEPAGE_852=m | ||
| 1810 | CONFIG_NLS_CODEPAGE_855=m | ||
| 1811 | CONFIG_NLS_CODEPAGE_857=m | ||
| 1812 | CONFIG_NLS_CODEPAGE_860=m | ||
| 1813 | CONFIG_NLS_CODEPAGE_861=m | ||
| 1814 | CONFIG_NLS_CODEPAGE_862=m | ||
| 1815 | CONFIG_NLS_CODEPAGE_863=m | ||
| 1816 | CONFIG_NLS_CODEPAGE_864=m | ||
| 1817 | CONFIG_NLS_CODEPAGE_865=m | ||
| 1818 | CONFIG_NLS_CODEPAGE_866=m | ||
| 1819 | CONFIG_NLS_CODEPAGE_869=m | ||
| 1820 | CONFIG_NLS_CODEPAGE_936=m | ||
| 1821 | CONFIG_NLS_CODEPAGE_950=m | ||
| 1822 | CONFIG_NLS_CODEPAGE_932=m | ||
| 1823 | CONFIG_NLS_CODEPAGE_949=m | ||
| 1824 | CONFIG_NLS_CODEPAGE_874=m | ||
| 1825 | CONFIG_NLS_ISO8859_8=m | ||
| 1826 | CONFIG_NLS_CODEPAGE_1250=m | ||
| 1827 | CONFIG_NLS_CODEPAGE_1251=m | ||
| 1828 | CONFIG_NLS_ASCII=m | ||
| 1829 | CONFIG_NLS_ISO8859_1=m | ||
| 1830 | CONFIG_NLS_ISO8859_2=m | ||
| 1831 | CONFIG_NLS_ISO8859_3=m | ||
| 1832 | CONFIG_NLS_ISO8859_4=m | ||
| 1833 | CONFIG_NLS_ISO8859_5=m | ||
| 1834 | CONFIG_NLS_ISO8859_6=m | ||
| 1835 | CONFIG_NLS_ISO8859_7=m | ||
| 1836 | CONFIG_NLS_ISO8859_9=m | ||
| 1837 | CONFIG_NLS_ISO8859_13=m | ||
| 1838 | CONFIG_NLS_ISO8859_14=m | ||
| 1839 | CONFIG_NLS_ISO8859_15=m | ||
| 1840 | CONFIG_NLS_KOI8_R=m | ||
| 1841 | CONFIG_NLS_KOI8_U=m | ||
| 1842 | CONFIG_NLS_UTF8=m | ||
| 1843 | CONFIG_DLM=m | ||
| 1844 | CONFIG_DLM_DEBUG=y | ||
| 1845 | |||
| 1846 | # | ||
| 1847 | # Kernel hacking | ||
| 1848 | # | ||
| 1849 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 1850 | # CONFIG_PRINTK_TIME is not set | ||
| 1851 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1852 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1853 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 1854 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1855 | CONFIG_DEBUG_FS=y | ||
| 1856 | # CONFIG_HEADERS_CHECK is not set | ||
| 1857 | # CONFIG_DEBUG_KERNEL is not set | ||
| 1858 | # CONFIG_SAMPLES is not set | ||
| 1859 | CONFIG_CMDLINE="" | ||
| 1860 | |||
| 1861 | # | ||
| 1862 | # Security options | ||
| 1863 | # | ||
| 1864 | # CONFIG_KEYS is not set | ||
| 1865 | # CONFIG_SECURITY is not set | ||
| 1866 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1867 | CONFIG_CRYPTO=y | ||
| 1868 | CONFIG_CRYPTO_ALGAPI=y | ||
| 1869 | CONFIG_CRYPTO_AEAD=m | ||
| 1870 | CONFIG_CRYPTO_BLKCIPHER=m | ||
| 1871 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1872 | CONFIG_CRYPTO_HASH=y | ||
| 1873 | CONFIG_CRYPTO_MANAGER=y | ||
| 1874 | CONFIG_CRYPTO_HMAC=y | ||
| 1875 | CONFIG_CRYPTO_XCBC=m | ||
| 1876 | CONFIG_CRYPTO_NULL=m | ||
| 1877 | CONFIG_CRYPTO_MD4=m | ||
| 1878 | CONFIG_CRYPTO_MD5=y | ||
| 1879 | CONFIG_CRYPTO_SHA1=m | ||
| 1880 | CONFIG_CRYPTO_SHA256=m | ||
| 1881 | CONFIG_CRYPTO_SHA512=m | ||
| 1882 | CONFIG_CRYPTO_WP512=m | ||
| 1883 | CONFIG_CRYPTO_TGR192=m | ||
| 1884 | CONFIG_CRYPTO_GF128MUL=m | ||
| 1885 | CONFIG_CRYPTO_ECB=m | ||
| 1886 | CONFIG_CRYPTO_CBC=m | ||
| 1887 | CONFIG_CRYPTO_PCBC=m | ||
| 1888 | CONFIG_CRYPTO_LRW=m | ||
| 1889 | CONFIG_CRYPTO_XTS=m | ||
| 1890 | # CONFIG_CRYPTO_CTR is not set | ||
| 1891 | # CONFIG_CRYPTO_GCM is not set | ||
| 1892 | # CONFIG_CRYPTO_CCM is not set | ||
| 1893 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1894 | CONFIG_CRYPTO_DES=m | ||
| 1895 | CONFIG_CRYPTO_FCRYPT=m | ||
| 1896 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1897 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1898 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1899 | CONFIG_CRYPTO_SERPENT=m | ||
| 1900 | CONFIG_CRYPTO_AES=m | ||
| 1901 | CONFIG_CRYPTO_CAST5=m | ||
| 1902 | CONFIG_CRYPTO_CAST6=m | ||
| 1903 | CONFIG_CRYPTO_TEA=m | ||
| 1904 | CONFIG_CRYPTO_ARC4=m | ||
| 1905 | CONFIG_CRYPTO_KHAZAD=m | ||
| 1906 | CONFIG_CRYPTO_ANUBIS=m | ||
| 1907 | CONFIG_CRYPTO_SEED=m | ||
| 1908 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1909 | CONFIG_CRYPTO_DEFLATE=m | ||
| 1910 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1911 | CONFIG_CRYPTO_CRC32C=m | ||
| 1912 | CONFIG_CRYPTO_CAMELLIA=m | ||
| 1913 | CONFIG_CRYPTO_TEST=m | ||
| 1914 | CONFIG_CRYPTO_AUTHENC=m | ||
| 1915 | # CONFIG_CRYPTO_LZO is not set | ||
| 1916 | CONFIG_CRYPTO_HW=y | ||
| 1917 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1918 | |||
| 1919 | # | ||
| 1920 | # Library routines | ||
| 1921 | # | ||
| 1922 | CONFIG_BITREVERSE=y | ||
| 1923 | CONFIG_CRC_CCITT=m | ||
| 1924 | CONFIG_CRC16=m | ||
| 1925 | CONFIG_CRC_ITU_T=m | ||
| 1926 | CONFIG_CRC32=y | ||
| 1927 | CONFIG_CRC7=m | ||
| 1928 | CONFIG_LIBCRC32C=m | ||
| 1929 | CONFIG_AUDIT_GENERIC=y | ||
| 1930 | CONFIG_ZLIB_INFLATE=m | ||
| 1931 | CONFIG_ZLIB_DEFLATE=m | ||
| 1932 | CONFIG_TEXTSEARCH=y | ||
| 1933 | CONFIG_TEXTSEARCH_KMP=m | ||
| 1934 | CONFIG_TEXTSEARCH_BM=m | ||
| 1935 | CONFIG_TEXTSEARCH_FSM=m | ||
| 1936 | CONFIG_PLIST=y | ||
| 1937 | CONFIG_HAS_IOMEM=y | ||
| 1938 | CONFIG_HAS_IOPORT=y | ||
| 1939 | CONFIG_HAS_DMA=y | ||
| diff --git a/arch/mips/configs/ip28_defconfig b/arch/mips/configs/ip28_defconfig new file mode 100644 index 000000000000..ec188be9a67a --- /dev/null +++ b/arch/mips/configs/ip28_defconfig | |||
| @@ -0,0 +1,891 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.25-rc1 | ||
| 4 | # Mon Feb 11 15:58:54 2008 | ||
| 5 | # | ||
| 6 | CONFIG_MIPS=y | ||
| 7 | |||
| 8 | # | ||
| 9 | # Machine selection | ||
| 10 | # | ||
| 11 | # CONFIG_MACH_ALCHEMY is not set | ||
| 12 | # CONFIG_BASLER_EXCITE is not set | ||
| 13 | # CONFIG_BCM47XX is not set | ||
| 14 | # CONFIG_MIPS_COBALT is not set | ||
| 15 | # CONFIG_MACH_DECSTATION is not set | ||
| 16 | # CONFIG_MACH_JAZZ is not set | ||
| 17 | # CONFIG_LASAT is not set | ||
| 18 | # CONFIG_LEMOTE_FULONG is not set | ||
| 19 | # CONFIG_MIPS_ATLAS is not set | ||
| 20 | # CONFIG_MIPS_MALTA is not set | ||
| 21 | # CONFIG_MIPS_SEAD is not set | ||
| 22 | # CONFIG_MIPS_SIM is not set | ||
| 23 | # CONFIG_MARKEINS is not set | ||
| 24 | # CONFIG_MACH_VR41XX is not set | ||
| 25 | # CONFIG_PNX8550_JBS is not set | ||
| 26 | # CONFIG_PNX8550_STB810 is not set | ||
| 27 | # CONFIG_PMC_MSP is not set | ||
| 28 | # CONFIG_PMC_YOSEMITE is not set | ||
| 29 | # CONFIG_SGI_IP22 is not set | ||
| 30 | # CONFIG_SGI_IP27 is not set | ||
| 31 | CONFIG_SGI_IP28=y | ||
| 32 | # CONFIG_SGI_IP32 is not set | ||
| 33 | # CONFIG_SIBYTE_CRHINE is not set | ||
| 34 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 35 | # CONFIG_SIBYTE_CRHONE is not set | ||
| 36 | # CONFIG_SIBYTE_RHONE is not set | ||
| 37 | # CONFIG_SIBYTE_SWARM is not set | ||
| 38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 41 | # CONFIG_SNI_RM is not set | ||
| 42 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
| 43 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
| 44 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
| 45 | # CONFIG_WR_PPMC is not set | ||
| 46 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 47 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 48 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 49 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 50 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 51 | CONFIG_GENERIC_HWEIGHT=y | ||
| 52 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 53 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 54 | CONFIG_GENERIC_TIME=y | ||
| 55 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 56 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 57 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | ||
| 58 | CONFIG_ARC=y | ||
| 59 | CONFIG_CEVT_R4K=y | ||
| 60 | CONFIG_CSRC_R4K=y | ||
| 61 | CONFIG_DMA_NONCOHERENT=y | ||
| 62 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
| 63 | CONFIG_EARLY_PRINTK=y | ||
| 64 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
| 65 | # CONFIG_HOTPLUG_CPU is not set | ||
| 66 | CONFIG_I8259=y | ||
| 67 | # CONFIG_NO_IOPORT is not set | ||
| 68 | CONFIG_GENERIC_ISA_DMA=y | ||
| 69 | CONFIG_GENERIC_ISA_DMA_SUPPORT_BROKEN=y | ||
| 70 | CONFIG_CPU_BIG_ENDIAN=y | ||
| 71 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
| 72 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | ||
| 73 | CONFIG_IRQ_CPU=y | ||
| 74 | CONFIG_SWAP_IO_SPACE=y | ||
| 75 | CONFIG_SGI_HAS_DS1286=y | ||
| 76 | CONFIG_SGI_HAS_INDYDOG=y | ||
| 77 | CONFIG_SGI_HAS_SEEQ=y | ||
| 78 | CONFIG_SGI_HAS_WD93=y | ||
| 79 | CONFIG_SGI_HAS_ZILOG=y | ||
| 80 | CONFIG_SGI_HAS_I8042=y | ||
| 81 | CONFIG_DEFAULT_SGI_PARTITION=y | ||
| 82 | CONFIG_MIPS_L1_CACHE_SHIFT=7 | ||
| 83 | CONFIG_ARC_CONSOLE=y | ||
| 84 | CONFIG_ARC_PROMLIB=y | ||
| 85 | CONFIG_ARC64=y | ||
| 86 | CONFIG_BOOT_ELF64=y | ||
| 87 | |||
| 88 | # | ||
| 89 | # CPU selection | ||
| 90 | # | ||
| 91 | # CONFIG_CPU_LOONGSON2 is not set | ||
| 92 | # CONFIG_CPU_MIPS32_R1 is not set | ||
| 93 | # CONFIG_CPU_MIPS32_R2 is not set | ||
| 94 | # CONFIG_CPU_MIPS64_R1 is not set | ||
| 95 | # CONFIG_CPU_MIPS64_R2 is not set | ||
| 96 | # CONFIG_CPU_R3000 is not set | ||
| 97 | # CONFIG_CPU_TX39XX is not set | ||
| 98 | # CONFIG_CPU_VR41XX is not set | ||
| 99 | # CONFIG_CPU_R4300 is not set | ||
| 100 | # CONFIG_CPU_R4X00 is not set | ||
| 101 | # CONFIG_CPU_TX49XX is not set | ||
| 102 | # CONFIG_CPU_R5000 is not set | ||
| 103 | # CONFIG_CPU_R5432 is not set | ||
| 104 | # CONFIG_CPU_R6000 is not set | ||
| 105 | # CONFIG_CPU_NEVADA is not set | ||
| 106 | # CONFIG_CPU_R8000 is not set | ||
| 107 | CONFIG_CPU_R10000=y | ||
| 108 | # CONFIG_CPU_RM7000 is not set | ||
| 109 | # CONFIG_CPU_RM9000 is not set | ||
| 110 | # CONFIG_CPU_SB1 is not set | ||
| 111 | CONFIG_SYS_HAS_CPU_R10000=y | ||
| 112 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y | ||
| 113 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
| 114 | CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y | ||
| 115 | |||
| 116 | # | ||
| 117 | # Kernel type | ||
| 118 | # | ||
| 119 | # CONFIG_32BIT is not set | ||
| 120 | CONFIG_64BIT=y | ||
| 121 | CONFIG_PAGE_SIZE_4KB=y | ||
| 122 | # CONFIG_PAGE_SIZE_8KB is not set | ||
| 123 | # CONFIG_PAGE_SIZE_16KB is not set | ||
| 124 | # CONFIG_PAGE_SIZE_64KB is not set | ||
| 125 | CONFIG_CPU_HAS_PREFETCH=y | ||
| 126 | CONFIG_MIPS_MT_DISABLED=y | ||
| 127 | # CONFIG_MIPS_MT_SMP is not set | ||
| 128 | # CONFIG_MIPS_MT_SMTC is not set | ||
| 129 | CONFIG_CPU_HAS_LLSC=y | ||
| 130 | CONFIG_CPU_HAS_SYNC=y | ||
| 131 | CONFIG_GENERIC_HARDIRQS=y | ||
| 132 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 133 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
| 134 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 135 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 136 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 137 | CONFIG_FLATMEM_MANUAL=y | ||
| 138 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 139 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 140 | CONFIG_FLATMEM=y | ||
| 141 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 142 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 143 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 144 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 145 | CONFIG_RESOURCES_64BIT=y | ||
| 146 | CONFIG_ZONE_DMA_FLAG=0 | ||
| 147 | CONFIG_VIRT_TO_BUS=y | ||
| 148 | # CONFIG_TICK_ONESHOT is not set | ||
| 149 | # CONFIG_NO_HZ is not set | ||
| 150 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 151 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 152 | # CONFIG_HZ_48 is not set | ||
| 153 | # CONFIG_HZ_100 is not set | ||
| 154 | # CONFIG_HZ_128 is not set | ||
| 155 | CONFIG_HZ_250=y | ||
| 156 | # CONFIG_HZ_256 is not set | ||
| 157 | # CONFIG_HZ_1000 is not set | ||
| 158 | # CONFIG_HZ_1024 is not set | ||
| 159 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
| 160 | CONFIG_HZ=250 | ||
| 161 | # CONFIG_PREEMPT_NONE is not set | ||
| 162 | CONFIG_PREEMPT_VOLUNTARY=y | ||
| 163 | # CONFIG_PREEMPT is not set | ||
| 164 | # CONFIG_RCU_TRACE is not set | ||
| 165 | # CONFIG_MIPS_INSANE_LARGE is not set | ||
| 166 | # CONFIG_KEXEC is not set | ||
| 167 | CONFIG_SECCOMP=y | ||
| 168 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 169 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 170 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 171 | |||
| 172 | # | ||
| 173 | # General setup | ||
| 174 | # | ||
| 175 | CONFIG_EXPERIMENTAL=y | ||
| 176 | CONFIG_BROKEN_ON_SMP=y | ||
| 177 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 178 | CONFIG_LOCALVERSION="" | ||
| 179 | CONFIG_LOCALVERSION_AUTO=y | ||
| 180 | CONFIG_SWAP=y | ||
| 181 | CONFIG_SYSVIPC=y | ||
| 182 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 183 | # CONFIG_POSIX_MQUEUE is not set | ||
| 184 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 185 | # CONFIG_TASKSTATS is not set | ||
| 186 | # CONFIG_AUDIT is not set | ||
| 187 | CONFIG_IKCONFIG=y | ||
| 188 | CONFIG_IKCONFIG_PROC=y | ||
| 189 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 190 | # CONFIG_CGROUPS is not set | ||
| 191 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 192 | CONFIG_FAIR_USER_SCHED=y | ||
| 193 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
| 194 | CONFIG_SYSFS_DEPRECATED=y | ||
| 195 | CONFIG_RELAY=y | ||
| 196 | # CONFIG_NAMESPACES is not set | ||
| 197 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 198 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 199 | CONFIG_SYSCTL=y | ||
| 200 | CONFIG_EMBEDDED=y | ||
| 201 | CONFIG_SYSCTL_SYSCALL=y | ||
| 202 | CONFIG_KALLSYMS=y | ||
| 203 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 204 | # CONFIG_HOTPLUG is not set | ||
| 205 | CONFIG_PRINTK=y | ||
| 206 | CONFIG_BUG=y | ||
| 207 | CONFIG_ELF_CORE=y | ||
| 208 | CONFIG_COMPAT_BRK=y | ||
| 209 | CONFIG_BASE_FULL=y | ||
| 210 | CONFIG_FUTEX=y | ||
| 211 | CONFIG_ANON_INODES=y | ||
| 212 | CONFIG_EPOLL=y | ||
| 213 | CONFIG_SIGNALFD=y | ||
| 214 | CONFIG_TIMERFD=y | ||
| 215 | CONFIG_EVENTFD=y | ||
| 216 | CONFIG_SHMEM=y | ||
| 217 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 218 | CONFIG_SLAB=y | ||
| 219 | # CONFIG_SLUB is not set | ||
| 220 | # CONFIG_SLOB is not set | ||
| 221 | # CONFIG_PROFILING is not set | ||
| 222 | # CONFIG_MARKERS is not set | ||
| 223 | CONFIG_HAVE_OPROFILE=y | ||
| 224 | # CONFIG_HAVE_KPROBES is not set | ||
| 225 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
| 226 | CONFIG_SLABINFO=y | ||
| 227 | CONFIG_RT_MUTEXES=y | ||
| 228 | # CONFIG_TINY_SHMEM is not set | ||
| 229 | CONFIG_BASE_SMALL=0 | ||
| 230 | CONFIG_MODULES=y | ||
| 231 | CONFIG_MODULE_UNLOAD=y | ||
| 232 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 233 | CONFIG_MODVERSIONS=y | ||
| 234 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
| 235 | CONFIG_KMOD=y | ||
| 236 | CONFIG_BLOCK=y | ||
| 237 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 238 | # CONFIG_BLK_DEV_BSG is not set | ||
| 239 | CONFIG_BLOCK_COMPAT=y | ||
| 240 | |||
| 241 | # | ||
| 242 | # IO Schedulers | ||
| 243 | # | ||
| 244 | CONFIG_IOSCHED_NOOP=y | ||
| 245 | CONFIG_IOSCHED_AS=y | ||
| 246 | CONFIG_IOSCHED_DEADLINE=y | ||
| 247 | CONFIG_IOSCHED_CFQ=y | ||
| 248 | CONFIG_DEFAULT_AS=y | ||
| 249 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 250 | # CONFIG_DEFAULT_CFQ is not set | ||
| 251 | # CONFIG_DEFAULT_NOOP is not set | ||
| 252 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 253 | CONFIG_CLASSIC_RCU=y | ||
| 254 | # CONFIG_PREEMPT_RCU is not set | ||
| 255 | |||
| 256 | # | ||
| 257 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
| 258 | # | ||
| 259 | CONFIG_HW_HAS_EISA=y | ||
| 260 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 261 | CONFIG_ISA=y | ||
| 262 | CONFIG_EISA=y | ||
| 263 | CONFIG_EISA_NAMES=y | ||
| 264 | CONFIG_MMU=y | ||
| 265 | CONFIG_I8253=y | ||
| 266 | |||
| 267 | # | ||
| 268 | # Executable file formats | ||
| 269 | # | ||
| 270 | CONFIG_BINFMT_ELF=y | ||
| 271 | # CONFIG_BINFMT_MISC is not set | ||
| 272 | CONFIG_MIPS32_COMPAT=y | ||
| 273 | CONFIG_COMPAT=y | ||
| 274 | CONFIG_SYSVIPC_COMPAT=y | ||
| 275 | CONFIG_MIPS32_O32=y | ||
| 276 | CONFIG_MIPS32_N32=y | ||
| 277 | CONFIG_BINFMT_ELF32=y | ||
| 278 | |||
| 279 | # | ||
| 280 | # Power management options | ||
| 281 | # | ||
| 282 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 283 | CONFIG_PM=y | ||
| 284 | # CONFIG_PM_LEGACY is not set | ||
| 285 | # CONFIG_PM_DEBUG is not set | ||
| 286 | # CONFIG_SUSPEND is not set | ||
| 287 | |||
| 288 | # | ||
| 289 | # Networking | ||
| 290 | # | ||
| 291 | CONFIG_NET=y | ||
| 292 | |||
| 293 | # | ||
| 294 | # Networking options | ||
| 295 | # | ||
| 296 | CONFIG_PACKET=y | ||
| 297 | CONFIG_PACKET_MMAP=y | ||
| 298 | CONFIG_UNIX=y | ||
| 299 | CONFIG_XFRM=y | ||
| 300 | # CONFIG_XFRM_USER is not set | ||
| 301 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 302 | CONFIG_XFRM_MIGRATE=y | ||
| 303 | # CONFIG_XFRM_STATISTICS is not set | ||
| 304 | CONFIG_NET_KEY=y | ||
| 305 | CONFIG_NET_KEY_MIGRATE=y | ||
| 306 | CONFIG_INET=y | ||
| 307 | CONFIG_IP_MULTICAST=y | ||
| 308 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 309 | CONFIG_IP_FIB_HASH=y | ||
| 310 | CONFIG_IP_PNP=y | ||
| 311 | CONFIG_IP_PNP_DHCP=y | ||
| 312 | CONFIG_IP_PNP_BOOTP=y | ||
| 313 | # CONFIG_IP_PNP_RARP is not set | ||
| 314 | # CONFIG_NET_IPIP is not set | ||
| 315 | # CONFIG_NET_IPGRE is not set | ||
| 316 | # CONFIG_IP_MROUTE is not set | ||
| 317 | # CONFIG_ARPD is not set | ||
| 318 | # CONFIG_SYN_COOKIES is not set | ||
| 319 | # CONFIG_INET_AH is not set | ||
| 320 | # CONFIG_INET_ESP is not set | ||
| 321 | # CONFIG_INET_IPCOMP is not set | ||
| 322 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 323 | # CONFIG_INET_TUNNEL is not set | ||
| 324 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 325 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 326 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 327 | # CONFIG_INET_LRO is not set | ||
| 328 | CONFIG_INET_DIAG=y | ||
| 329 | CONFIG_INET_TCP_DIAG=y | ||
| 330 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 331 | CONFIG_TCP_CONG_CUBIC=y | ||
| 332 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 333 | CONFIG_TCP_MD5SIG=y | ||
| 334 | # CONFIG_IPV6 is not set | ||
| 335 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 336 | # CONFIG_INET6_TUNNEL is not set | ||
| 337 | # CONFIG_NETWORK_SECMARK is not set | ||
| 338 | # CONFIG_NETFILTER is not set | ||
| 339 | # CONFIG_IP_DCCP is not set | ||
| 340 | # CONFIG_IP_SCTP is not set | ||
| 341 | # CONFIG_TIPC is not set | ||
| 342 | # CONFIG_ATM is not set | ||
| 343 | # CONFIG_BRIDGE is not set | ||
| 344 | # CONFIG_VLAN_8021Q is not set | ||
| 345 | # CONFIG_DECNET is not set | ||
| 346 | # CONFIG_LLC2 is not set | ||
| 347 | # CONFIG_IPX is not set | ||
| 348 | # CONFIG_ATALK is not set | ||
| 349 | # CONFIG_X25 is not set | ||
| 350 | # CONFIG_LAPB is not set | ||
| 351 | # CONFIG_ECONET is not set | ||
| 352 | # CONFIG_WAN_ROUTER is not set | ||
| 353 | # CONFIG_NET_SCHED is not set | ||
| 354 | |||
| 355 | # | ||
| 356 | # Network testing | ||
| 357 | # | ||
| 358 | # CONFIG_NET_PKTGEN is not set | ||
| 359 | # CONFIG_HAMRADIO is not set | ||
| 360 | # CONFIG_CAN is not set | ||
| 361 | # CONFIG_IRDA is not set | ||
| 362 | # CONFIG_BT is not set | ||
| 363 | # CONFIG_AF_RXRPC is not set | ||
| 364 | |||
| 365 | # | ||
| 366 | # Wireless | ||
| 367 | # | ||
| 368 | # CONFIG_CFG80211 is not set | ||
| 369 | # CONFIG_WIRELESS_EXT is not set | ||
| 370 | # CONFIG_MAC80211 is not set | ||
| 371 | # CONFIG_IEEE80211 is not set | ||
| 372 | # CONFIG_RFKILL is not set | ||
| 373 | # CONFIG_NET_9P is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # Device Drivers | ||
| 377 | # | ||
| 378 | |||
| 379 | # | ||
| 380 | # Generic Driver Options | ||
| 381 | # | ||
| 382 | CONFIG_STANDALONE=y | ||
| 383 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 384 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 385 | # CONFIG_CONNECTOR is not set | ||
| 386 | # CONFIG_MTD is not set | ||
| 387 | # CONFIG_PARPORT is not set | ||
| 388 | # CONFIG_PNP is not set | ||
| 389 | CONFIG_BLK_DEV=y | ||
| 390 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 391 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 392 | # CONFIG_BLK_DEV_NBD is not set | ||
| 393 | # CONFIG_BLK_DEV_RAM is not set | ||
| 394 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 395 | # CONFIG_ATA_OVER_ETH is not set | ||
| 396 | # CONFIG_MISC_DEVICES is not set | ||
| 397 | CONFIG_HAVE_IDE=y | ||
| 398 | # CONFIG_IDE is not set | ||
| 399 | |||
| 400 | # | ||
| 401 | # SCSI device support | ||
| 402 | # | ||
| 403 | # CONFIG_RAID_ATTRS is not set | ||
| 404 | CONFIG_SCSI=y | ||
| 405 | CONFIG_SCSI_DMA=y | ||
| 406 | # CONFIG_SCSI_TGT is not set | ||
| 407 | # CONFIG_SCSI_NETLINK is not set | ||
| 408 | CONFIG_SCSI_PROC_FS=y | ||
| 409 | |||
| 410 | # | ||
| 411 | # SCSI support type (disk, tape, CD-ROM) | ||
| 412 | # | ||
| 413 | CONFIG_BLK_DEV_SD=y | ||
| 414 | # CONFIG_CHR_DEV_ST is not set | ||
| 415 | # CONFIG_CHR_DEV_OSST is not set | ||
| 416 | CONFIG_BLK_DEV_SR=y | ||
| 417 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
| 418 | # CONFIG_CHR_DEV_SG is not set | ||
| 419 | # CONFIG_CHR_DEV_SCH is not set | ||
| 420 | |||
| 421 | # | ||
| 422 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 423 | # | ||
| 424 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 425 | CONFIG_SCSI_CONSTANTS=y | ||
| 426 | # CONFIG_SCSI_LOGGING is not set | ||
| 427 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 428 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 429 | |||
| 430 | # | ||
| 431 | # SCSI Transports | ||
| 432 | # | ||
| 433 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 434 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 435 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 436 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 437 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 438 | CONFIG_SCSI_LOWLEVEL=y | ||
| 439 | # CONFIG_ISCSI_TCP is not set | ||
| 440 | CONFIG_SGIWD93_SCSI=y | ||
| 441 | # CONFIG_SCSI_AHA1740 is not set | ||
| 442 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 443 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 444 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 445 | # CONFIG_SCSI_IN2000 is not set | ||
| 446 | # CONFIG_SCSI_DTC3280 is not set | ||
| 447 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 448 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | ||
| 449 | # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set | ||
| 450 | # CONFIG_SCSI_NCR53C406A is not set | ||
| 451 | # CONFIG_SCSI_PAS16 is not set | ||
| 452 | # CONFIG_SCSI_QLOGIC_FAS is not set | ||
| 453 | # CONFIG_SCSI_SIM710 is not set | ||
| 454 | # CONFIG_SCSI_SYM53C416 is not set | ||
| 455 | # CONFIG_SCSI_T128 is not set | ||
| 456 | # CONFIG_SCSI_DEBUG is not set | ||
| 457 | # CONFIG_ATA is not set | ||
| 458 | # CONFIG_MD is not set | ||
| 459 | CONFIG_NETDEVICES=y | ||
| 460 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 461 | CONFIG_DUMMY=m | ||
| 462 | # CONFIG_BONDING is not set | ||
| 463 | # CONFIG_MACVLAN is not set | ||
| 464 | # CONFIG_EQUALIZER is not set | ||
| 465 | # CONFIG_TUN is not set | ||
| 466 | # CONFIG_VETH is not set | ||
| 467 | # CONFIG_ARCNET is not set | ||
| 468 | # CONFIG_PHYLIB is not set | ||
| 469 | CONFIG_NET_ETHERNET=y | ||
| 470 | # CONFIG_MII is not set | ||
| 471 | # CONFIG_AX88796 is not set | ||
| 472 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 473 | # CONFIG_NET_VENDOR_SMC is not set | ||
| 474 | # CONFIG_DM9000 is not set | ||
| 475 | # CONFIG_NET_VENDOR_RACAL is not set | ||
| 476 | # CONFIG_NET_TULIP is not set | ||
| 477 | # CONFIG_AT1700 is not set | ||
| 478 | # CONFIG_DEPCA is not set | ||
| 479 | # CONFIG_HP100 is not set | ||
| 480 | # CONFIG_NET_ISA is not set | ||
| 481 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 482 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 483 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 484 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 485 | # CONFIG_NET_PCI is not set | ||
| 486 | # CONFIG_B44 is not set | ||
| 487 | CONFIG_SGISEEQ=y | ||
| 488 | # CONFIG_NETDEV_1000 is not set | ||
| 489 | # CONFIG_NETDEV_10000 is not set | ||
| 490 | # CONFIG_TR is not set | ||
| 491 | |||
| 492 | # | ||
| 493 | # Wireless LAN | ||
| 494 | # | ||
| 495 | # CONFIG_WLAN_PRE80211 is not set | ||
| 496 | # CONFIG_WLAN_80211 is not set | ||
| 497 | # CONFIG_WAN is not set | ||
| 498 | # CONFIG_FDDI is not set | ||
| 499 | # CONFIG_PPP is not set | ||
| 500 | # CONFIG_SLIP is not set | ||
| 501 | # CONFIG_NETCONSOLE is not set | ||
| 502 | # CONFIG_NETPOLL is not set | ||
| 503 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 504 | # CONFIG_ISDN is not set | ||
| 505 | # CONFIG_PHONE is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # Input device support | ||
| 509 | # | ||
| 510 | CONFIG_INPUT=y | ||
| 511 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 512 | # CONFIG_INPUT_POLLDEV is not set | ||
| 513 | |||
| 514 | # | ||
| 515 | # Userland interfaces | ||
| 516 | # | ||
| 517 | CONFIG_INPUT_MOUSEDEV=y | ||
| 518 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 519 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 520 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 521 | # CONFIG_INPUT_JOYDEV is not set | ||
| 522 | # CONFIG_INPUT_EVDEV is not set | ||
| 523 | # CONFIG_INPUT_EVBUG is not set | ||
| 524 | |||
| 525 | # | ||
| 526 | # Input Device Drivers | ||
| 527 | # | ||
| 528 | CONFIG_INPUT_KEYBOARD=y | ||
| 529 | CONFIG_KEYBOARD_ATKBD=y | ||
| 530 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
| 531 | # CONFIG_KEYBOARD_LKKBD is not set | ||
| 532 | # CONFIG_KEYBOARD_XTKBD is not set | ||
| 533 | # CONFIG_KEYBOARD_NEWTON is not set | ||
| 534 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
| 535 | CONFIG_INPUT_MOUSE=y | ||
| 536 | CONFIG_MOUSE_PS2=y | ||
| 537 | # CONFIG_MOUSE_PS2_ALPS is not set | ||
| 538 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | ||
| 539 | # CONFIG_MOUSE_PS2_SYNAPTICS is not set | ||
| 540 | # CONFIG_MOUSE_PS2_LIFEBOOK is not set | ||
| 541 | CONFIG_MOUSE_PS2_TRACKPOINT=y | ||
| 542 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | ||
| 543 | # CONFIG_MOUSE_SERIAL is not set | ||
| 544 | # CONFIG_MOUSE_INPORT is not set | ||
| 545 | # CONFIG_MOUSE_LOGIBM is not set | ||
| 546 | # CONFIG_MOUSE_PC110PAD is not set | ||
| 547 | # CONFIG_MOUSE_VSXXXAA is not set | ||
| 548 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 549 | # CONFIG_INPUT_TABLET is not set | ||
| 550 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 551 | # CONFIG_INPUT_MISC is not set | ||
| 552 | |||
| 553 | # | ||
| 554 | # Hardware I/O ports | ||
| 555 | # | ||
| 556 | CONFIG_SERIO=y | ||
| 557 | CONFIG_SERIO_I8042=y | ||
| 558 | CONFIG_SERIO_SERPORT=y | ||
| 559 | CONFIG_SERIO_LIBPS2=y | ||
| 560 | # CONFIG_SERIO_RAW is not set | ||
| 561 | # CONFIG_GAMEPORT is not set | ||
| 562 | |||
| 563 | # | ||
| 564 | # Character devices | ||
| 565 | # | ||
| 566 | CONFIG_VT=y | ||
| 567 | CONFIG_VT_CONSOLE=y | ||
| 568 | CONFIG_HW_CONSOLE=y | ||
| 569 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
| 570 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 571 | |||
| 572 | # | ||
| 573 | # Serial drivers | ||
| 574 | # | ||
| 575 | # CONFIG_SERIAL_8250 is not set | ||
| 576 | |||
| 577 | # | ||
| 578 | # Non-8250 serial port support | ||
| 579 | # | ||
| 580 | CONFIG_SERIAL_IP22_ZILOG=y | ||
| 581 | CONFIG_SERIAL_IP22_ZILOG_CONSOLE=y | ||
| 582 | CONFIG_SERIAL_CORE=y | ||
| 583 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 584 | CONFIG_UNIX98_PTYS=y | ||
| 585 | CONFIG_LEGACY_PTYS=y | ||
| 586 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 587 | # CONFIG_IPMI_HANDLER is not set | ||
| 588 | # CONFIG_HW_RANDOM is not set | ||
| 589 | # CONFIG_RTC is not set | ||
| 590 | CONFIG_SGI_DS1286=y | ||
| 591 | # CONFIG_DTLK is not set | ||
| 592 | # CONFIG_R3964 is not set | ||
| 593 | # CONFIG_RAW_DRIVER is not set | ||
| 594 | # CONFIG_TCG_TPM is not set | ||
| 595 | CONFIG_DEVPORT=y | ||
| 596 | # CONFIG_I2C is not set | ||
| 597 | |||
| 598 | # | ||
| 599 | # SPI support | ||
| 600 | # | ||
| 601 | # CONFIG_SPI is not set | ||
| 602 | # CONFIG_SPI_MASTER is not set | ||
| 603 | # CONFIG_W1 is not set | ||
| 604 | # CONFIG_POWER_SUPPLY is not set | ||
| 605 | # CONFIG_HWMON is not set | ||
| 606 | # CONFIG_THERMAL is not set | ||
| 607 | CONFIG_WATCHDOG=y | ||
| 608 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
| 609 | |||
| 610 | # | ||
| 611 | # Watchdog Device Drivers | ||
| 612 | # | ||
| 613 | # CONFIG_SOFT_WATCHDOG is not set | ||
| 614 | CONFIG_INDYDOG=y | ||
| 615 | |||
| 616 | # | ||
| 617 | # ISA-based Watchdog Cards | ||
| 618 | # | ||
| 619 | # CONFIG_PCWATCHDOG is not set | ||
| 620 | # CONFIG_MIXCOMWD is not set | ||
| 621 | # CONFIG_WDT is not set | ||
| 622 | |||
| 623 | # | ||
| 624 | # Sonics Silicon Backplane | ||
| 625 | # | ||
| 626 | CONFIG_SSB_POSSIBLE=y | ||
| 627 | # CONFIG_SSB is not set | ||
| 628 | |||
| 629 | # | ||
| 630 | # Multifunction device drivers | ||
| 631 | # | ||
| 632 | # CONFIG_MFD_SM501 is not set | ||
| 633 | |||
| 634 | # | ||
| 635 | # Multimedia devices | ||
| 636 | # | ||
| 637 | # CONFIG_VIDEO_DEV is not set | ||
| 638 | # CONFIG_DVB_CORE is not set | ||
| 639 | # CONFIG_DAB is not set | ||
| 640 | |||
| 641 | # | ||
| 642 | # Graphics support | ||
| 643 | # | ||
| 644 | # CONFIG_VGASTATE is not set | ||
| 645 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 646 | # CONFIG_FB is not set | ||
| 647 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 648 | |||
| 649 | # | ||
| 650 | # Display device support | ||
| 651 | # | ||
| 652 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 653 | |||
| 654 | # | ||
| 655 | # Console display driver support | ||
| 656 | # | ||
| 657 | # CONFIG_VGA_CONSOLE is not set | ||
| 658 | # CONFIG_MDA_CONSOLE is not set | ||
| 659 | CONFIG_DUMMY_CONSOLE=y | ||
| 660 | |||
| 661 | # | ||
| 662 | # Sound | ||
| 663 | # | ||
| 664 | # CONFIG_SOUND is not set | ||
| 665 | CONFIG_HID_SUPPORT=y | ||
| 666 | CONFIG_HID=y | ||
| 667 | # CONFIG_HID_DEBUG is not set | ||
| 668 | # CONFIG_HIDRAW is not set | ||
| 669 | CONFIG_USB_SUPPORT=y | ||
| 670 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
| 671 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
| 672 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 673 | |||
| 674 | # | ||
| 675 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 676 | # | ||
| 677 | # CONFIG_USB_GADGET is not set | ||
| 678 | # CONFIG_MMC is not set | ||
| 679 | # CONFIG_MEMSTICK is not set | ||
| 680 | # CONFIG_NEW_LEDS is not set | ||
| 681 | CONFIG_RTC_LIB=y | ||
| 682 | # CONFIG_RTC_CLASS is not set | ||
| 683 | |||
| 684 | # | ||
| 685 | # Userspace I/O | ||
| 686 | # | ||
| 687 | # CONFIG_UIO is not set | ||
| 688 | |||
| 689 | # | ||
| 690 | # File systems | ||
| 691 | # | ||
| 692 | CONFIG_EXT2_FS=y | ||
| 693 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 694 | # CONFIG_EXT2_FS_XIP is not set | ||
| 695 | CONFIG_EXT3_FS=y | ||
| 696 | CONFIG_EXT3_FS_XATTR=y | ||
| 697 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
| 698 | CONFIG_EXT3_FS_SECURITY=y | ||
| 699 | # CONFIG_EXT4DEV_FS is not set | ||
| 700 | CONFIG_JBD=y | ||
| 701 | CONFIG_FS_MBCACHE=y | ||
| 702 | # CONFIG_REISERFS_FS is not set | ||
| 703 | # CONFIG_JFS_FS is not set | ||
| 704 | CONFIG_FS_POSIX_ACL=y | ||
| 705 | # CONFIG_XFS_FS is not set | ||
| 706 | # CONFIG_GFS2_FS is not set | ||
| 707 | # CONFIG_OCFS2_FS is not set | ||
| 708 | CONFIG_DNOTIFY=y | ||
| 709 | CONFIG_INOTIFY=y | ||
| 710 | CONFIG_INOTIFY_USER=y | ||
| 711 | CONFIG_QUOTA=y | ||
| 712 | # CONFIG_QUOTA_NETLINK_INTERFACE is not set | ||
| 713 | CONFIG_PRINT_QUOTA_WARNING=y | ||
| 714 | # CONFIG_QFMT_V1 is not set | ||
| 715 | # CONFIG_QFMT_V2 is not set | ||
| 716 | CONFIG_QUOTACTL=y | ||
| 717 | # CONFIG_AUTOFS_FS is not set | ||
| 718 | # CONFIG_AUTOFS4_FS is not set | ||
| 719 | # CONFIG_FUSE_FS is not set | ||
| 720 | CONFIG_GENERIC_ACL=y | ||
| 721 | |||
| 722 | # | ||
| 723 | # CD-ROM/DVD Filesystems | ||
| 724 | # | ||
| 725 | # CONFIG_ISO9660_FS is not set | ||
| 726 | # CONFIG_UDF_FS is not set | ||
| 727 | |||
| 728 | # | ||
| 729 | # DOS/FAT/NT Filesystems | ||
| 730 | # | ||
| 731 | # CONFIG_MSDOS_FS is not set | ||
| 732 | # CONFIG_VFAT_FS is not set | ||
| 733 | # CONFIG_NTFS_FS is not set | ||
| 734 | |||
| 735 | # | ||
| 736 | # Pseudo filesystems | ||
| 737 | # | ||
| 738 | CONFIG_PROC_FS=y | ||
| 739 | CONFIG_PROC_KCORE=y | ||
| 740 | CONFIG_PROC_SYSCTL=y | ||
| 741 | CONFIG_SYSFS=y | ||
| 742 | CONFIG_TMPFS=y | ||
| 743 | CONFIG_TMPFS_POSIX_ACL=y | ||
| 744 | # CONFIG_HUGETLB_PAGE is not set | ||
| 745 | # CONFIG_CONFIGFS_FS is not set | ||
| 746 | |||
| 747 | # | ||
| 748 | # Miscellaneous filesystems | ||
| 749 | # | ||
| 750 | # CONFIG_ADFS_FS is not set | ||
| 751 | # CONFIG_AFFS_FS is not set | ||
| 752 | # CONFIG_HFS_FS is not set | ||
| 753 | # CONFIG_HFSPLUS_FS is not set | ||
| 754 | # CONFIG_BEFS_FS is not set | ||
| 755 | # CONFIG_BFS_FS is not set | ||
| 756 | # CONFIG_EFS_FS is not set | ||
| 757 | # CONFIG_CRAMFS is not set | ||
| 758 | # CONFIG_VXFS_FS is not set | ||
| 759 | # CONFIG_MINIX_FS is not set | ||
| 760 | # CONFIG_HPFS_FS is not set | ||
| 761 | # CONFIG_QNX4FS_FS is not set | ||
| 762 | # CONFIG_ROMFS_FS is not set | ||
| 763 | # CONFIG_SYSV_FS is not set | ||
| 764 | # CONFIG_UFS_FS is not set | ||
| 765 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 766 | CONFIG_NFS_FS=y | ||
| 767 | CONFIG_NFS_V3=y | ||
| 768 | CONFIG_NFS_V3_ACL=y | ||
| 769 | # CONFIG_NFS_V4 is not set | ||
| 770 | # CONFIG_NFS_DIRECTIO is not set | ||
| 771 | # CONFIG_NFSD is not set | ||
| 772 | CONFIG_ROOT_NFS=y | ||
| 773 | CONFIG_LOCKD=y | ||
| 774 | CONFIG_LOCKD_V4=y | ||
| 775 | CONFIG_NFS_ACL_SUPPORT=y | ||
| 776 | CONFIG_NFS_COMMON=y | ||
| 777 | CONFIG_SUNRPC=y | ||
| 778 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 779 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 780 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 781 | # CONFIG_SMB_FS is not set | ||
| 782 | # CONFIG_CIFS is not set | ||
| 783 | # CONFIG_NCP_FS is not set | ||
| 784 | # CONFIG_CODA_FS is not set | ||
| 785 | # CONFIG_AFS_FS is not set | ||
| 786 | |||
| 787 | # | ||
| 788 | # Partition Types | ||
| 789 | # | ||
| 790 | CONFIG_PARTITION_ADVANCED=y | ||
| 791 | # CONFIG_ACORN_PARTITION is not set | ||
| 792 | # CONFIG_OSF_PARTITION is not set | ||
| 793 | # CONFIG_AMIGA_PARTITION is not set | ||
| 794 | # CONFIG_ATARI_PARTITION is not set | ||
| 795 | # CONFIG_MAC_PARTITION is not set | ||
| 796 | CONFIG_MSDOS_PARTITION=y | ||
| 797 | # CONFIG_BSD_DISKLABEL is not set | ||
| 798 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 799 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 800 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 801 | # CONFIG_LDM_PARTITION is not set | ||
| 802 | CONFIG_SGI_PARTITION=y | ||
| 803 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 804 | # CONFIG_SUN_PARTITION is not set | ||
| 805 | # CONFIG_KARMA_PARTITION is not set | ||
| 806 | # CONFIG_EFI_PARTITION is not set | ||
| 807 | # CONFIG_SYSV68_PARTITION is not set | ||
| 808 | # CONFIG_NLS is not set | ||
| 809 | # CONFIG_DLM is not set | ||
| 810 | |||
| 811 | # | ||
| 812 | # Kernel hacking | ||
| 813 | # | ||
| 814 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 815 | # CONFIG_PRINTK_TIME is not set | ||
| 816 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 817 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 818 | CONFIG_MAGIC_SYSRQ=y | ||
| 819 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 820 | # CONFIG_DEBUG_FS is not set | ||
| 821 | # CONFIG_HEADERS_CHECK is not set | ||
| 822 | # CONFIG_DEBUG_KERNEL is not set | ||
| 823 | # CONFIG_SAMPLES is not set | ||
| 824 | CONFIG_CMDLINE="" | ||
| 825 | |||
| 826 | # | ||
| 827 | # Security options | ||
| 828 | # | ||
| 829 | # CONFIG_KEYS is not set | ||
| 830 | # CONFIG_SECURITY is not set | ||
| 831 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 832 | CONFIG_CRYPTO=y | ||
| 833 | CONFIG_CRYPTO_ALGAPI=y | ||
| 834 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 835 | CONFIG_CRYPTO_MANAGER=y | ||
| 836 | # CONFIG_CRYPTO_HMAC is not set | ||
| 837 | # CONFIG_CRYPTO_XCBC is not set | ||
| 838 | # CONFIG_CRYPTO_NULL is not set | ||
| 839 | # CONFIG_CRYPTO_MD4 is not set | ||
| 840 | CONFIG_CRYPTO_MD5=y | ||
| 841 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 842 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 843 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 844 | # CONFIG_CRYPTO_WP512 is not set | ||
| 845 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 846 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 847 | # CONFIG_CRYPTO_ECB is not set | ||
| 848 | # CONFIG_CRYPTO_CBC is not set | ||
| 849 | # CONFIG_CRYPTO_PCBC is not set | ||
| 850 | # CONFIG_CRYPTO_LRW is not set | ||
| 851 | # CONFIG_CRYPTO_XTS is not set | ||
| 852 | # CONFIG_CRYPTO_CTR is not set | ||
| 853 | # CONFIG_CRYPTO_GCM is not set | ||
| 854 | # CONFIG_CRYPTO_CCM is not set | ||
| 855 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 856 | # CONFIG_CRYPTO_DES is not set | ||
| 857 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 858 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 859 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 860 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 861 | # CONFIG_CRYPTO_AES is not set | ||
| 862 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 863 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 864 | # CONFIG_CRYPTO_TEA is not set | ||
| 865 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 866 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 867 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 868 | # CONFIG_CRYPTO_SEED is not set | ||
| 869 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 870 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 871 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 872 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 873 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 874 | # CONFIG_CRYPTO_TEST is not set | ||
| 875 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 876 | # CONFIG_CRYPTO_LZO is not set | ||
| 877 | # CONFIG_CRYPTO_HW is not set | ||
| 878 | |||
| 879 | # | ||
| 880 | # Library routines | ||
| 881 | # | ||
| 882 | # CONFIG_CRC_CCITT is not set | ||
| 883 | # CONFIG_CRC16 is not set | ||
| 884 | # CONFIG_CRC_ITU_T is not set | ||
| 885 | # CONFIG_CRC32 is not set | ||
| 886 | # CONFIG_CRC7 is not set | ||
| 887 | # CONFIG_LIBCRC32C is not set | ||
| 888 | CONFIG_PLIST=y | ||
| 889 | CONFIG_HAS_IOMEM=y | ||
| 890 | CONFIG_HAS_IOPORT=y | ||
| 891 | CONFIG_HAS_DMA=y | ||
| diff --git a/arch/mips/configs/qemu_defconfig b/arch/mips/configs/qemu_defconfig deleted file mode 100644 index 72ca147f9422..000000000000 --- a/arch/mips/configs/qemu_defconfig +++ /dev/null | |||
| @@ -1,800 +0,0 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.20 | ||
| 4 | # Tue Feb 20 21:47:39 2007 | ||
| 5 | # | ||
| 6 | CONFIG_MIPS=y | ||
| 7 | |||
| 8 | # | ||
| 9 | # Machine selection | ||
| 10 | # | ||
| 11 | CONFIG_ZONE_DMA=y | ||
| 12 | # CONFIG_MIPS_MTX1 is not set | ||
| 13 | # CONFIG_MIPS_BOSPORUS is not set | ||
| 14 | # CONFIG_MIPS_PB1000 is not set | ||
| 15 | # CONFIG_MIPS_PB1100 is not set | ||
| 16 | # CONFIG_MIPS_PB1500 is not set | ||
| 17 | # CONFIG_MIPS_PB1550 is not set | ||
| 18 | # CONFIG_MIPS_PB1200 is not set | ||
| 19 | # CONFIG_MIPS_DB1000 is not set | ||
| 20 | # CONFIG_MIPS_DB1100 is not set | ||
| 21 | # CONFIG_MIPS_DB1500 is not set | ||
| 22 | # CONFIG_MIPS_DB1550 is not set | ||
| 23 | # CONFIG_MIPS_DB1200 is not set | ||
| 24 | # CONFIG_MIPS_MIRAGE is not set | ||
| 25 | # CONFIG_BASLER_EXCITE is not set | ||
| 26 | # CONFIG_MIPS_COBALT is not set | ||
| 27 | # CONFIG_MACH_DECSTATION is not set | ||
| 28 | # CONFIG_MACH_JAZZ is not set | ||
| 29 | # CONFIG_MIPS_ATLAS is not set | ||
| 30 | # CONFIG_MIPS_MALTA is not set | ||
| 31 | # CONFIG_MIPS_SEAD is not set | ||
| 32 | # CONFIG_WR_PPMC is not set | ||
| 33 | # CONFIG_MIPS_SIM is not set | ||
| 34 | # CONFIG_MOMENCO_JAGUAR_ATX is not set | ||
| 35 | # CONFIG_MIPS_XXS1500 is not set | ||
| 36 | # CONFIG_PNX8550_JBS is not set | ||
| 37 | # CONFIG_PNX8550_STB810 is not set | ||
| 38 | # CONFIG_MACH_VR41XX is not set | ||
| 39 | # CONFIG_PMC_YOSEMITE is not set | ||
| 40 | # CONFIG_MARKEINS is not set | ||
| 41 | # CONFIG_SGI_IP22 is not set | ||
| 42 | # CONFIG_SGI_IP27 is not set | ||
| 43 | # CONFIG_SGI_IP32 is not set | ||
| 44 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 45 | # CONFIG_SIBYTE_SWARM is not set | ||
| 46 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 47 | # CONFIG_SIBYTE_RHONE is not set | ||
| 48 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 49 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 50 | # CONFIG_SIBYTE_CRHINE is not set | ||
| 51 | # CONFIG_SIBYTE_CRHONE is not set | ||
| 52 | # CONFIG_SNI_RM is not set | ||
| 53 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
| 54 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
| 55 | # CONFIG_TOSHIBA_RBTX4938 is not set | ||
| 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 59 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 60 | CONFIG_GENERIC_HWEIGHT=y | ||
| 61 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 62 | CONFIG_GENERIC_TIME=y | ||
| 63 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 64 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
| 65 | CONFIG_DMA_COHERENT=y | ||
| 66 | CONFIG_GENERIC_ISA_DMA=y | ||
| 67 | CONFIG_I8259=y | ||
| 68 | CONFIG_CPU_BIG_ENDIAN=y | ||
| 69 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
| 70 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | ||
| 71 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | ||
| 72 | CONFIG_SWAP_IO_SPACE=y | ||
| 73 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
| 74 | CONFIG_HAVE_STD_PC_SERIAL_PORT=y | ||
| 75 | |||
| 76 | # | ||
| 77 | # CPU selection | ||
| 78 | # | ||
| 79 | CONFIG_CPU_MIPS32_R1=y | ||
| 80 | # CONFIG_CPU_MIPS32_R2 is not set | ||
| 81 | # CONFIG_CPU_MIPS64_R1 is not set | ||
| 82 | # CONFIG_CPU_MIPS64_R2 is not set | ||
| 83 | # CONFIG_CPU_R3000 is not set | ||
| 84 | # CONFIG_CPU_TX39XX is not set | ||
| 85 | # CONFIG_CPU_VR41XX is not set | ||
| 86 | # CONFIG_CPU_R4300 is not set | ||
| 87 | # CONFIG_CPU_R4X00 is not set | ||
| 88 | # CONFIG_CPU_TX49XX is not set | ||
| 89 | # CONFIG_CPU_R5000 is not set | ||
| 90 | # CONFIG_CPU_R5432 is not set | ||
| 91 | # CONFIG_CPU_R6000 is not set | ||
| 92 | # CONFIG_CPU_NEVADA is not set | ||
| 93 | # CONFIG_CPU_R8000 is not set | ||
| 94 | # CONFIG_CPU_R10000 is not set | ||
| 95 | # CONFIG_CPU_RM7000 is not set | ||
| 96 | # CONFIG_CPU_RM9000 is not set | ||
| 97 | # CONFIG_CPU_SB1 is not set | ||
| 98 | CONFIG_SYS_HAS_CPU_MIPS32_R1=y | ||
| 99 | CONFIG_CPU_MIPS32=y | ||
| 100 | CONFIG_CPU_MIPSR1=y | ||
| 101 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
| 102 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
| 103 | |||
| 104 | # | ||
| 105 | # Kernel type | ||
| 106 | # | ||
| 107 | CONFIG_32BIT=y | ||
| 108 | # CONFIG_64BIT is not set | ||
| 109 | CONFIG_PAGE_SIZE_4KB=y | ||
| 110 | # CONFIG_PAGE_SIZE_8KB is not set | ||
| 111 | # CONFIG_PAGE_SIZE_16KB is not set | ||
| 112 | # CONFIG_PAGE_SIZE_64KB is not set | ||
| 113 | CONFIG_CPU_HAS_PREFETCH=y | ||
| 114 | CONFIG_MIPS_MT_DISABLED=y | ||
| 115 | # CONFIG_MIPS_MT_SMP is not set | ||
| 116 | # CONFIG_MIPS_MT_SMTC is not set | ||
| 117 | # CONFIG_MIPS_VPE_LOADER is not set | ||
| 118 | # CONFIG_64BIT_PHYS_ADDR is not set | ||
| 119 | CONFIG_CPU_HAS_LLSC=y | ||
| 120 | CONFIG_CPU_HAS_SYNC=y | ||
| 121 | CONFIG_GENERIC_HARDIRQS=y | ||
| 122 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 123 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | ||
| 124 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 125 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
| 126 | CONFIG_FLATMEM=y | ||
| 127 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 128 | CONFIG_SPARSEMEM_STATIC=y | ||
| 129 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 130 | # CONFIG_RESOURCES_64BIT is not set | ||
| 131 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 132 | # CONFIG_HZ_48 is not set | ||
| 133 | CONFIG_HZ_100=y | ||
| 134 | # CONFIG_HZ_128 is not set | ||
| 135 | # CONFIG_HZ_250 is not set | ||
| 136 | # CONFIG_HZ_256 is not set | ||
| 137 | # CONFIG_HZ_1000 is not set | ||
| 138 | # CONFIG_HZ_1024 is not set | ||
| 139 | CONFIG_SYS_SUPPORTS_ARBIT_HZ=y | ||
| 140 | CONFIG_HZ=100 | ||
| 141 | CONFIG_PREEMPT_NONE=y | ||
| 142 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 143 | # CONFIG_PREEMPT is not set | ||
| 144 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 145 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 146 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 147 | |||
| 148 | # | ||
| 149 | # Code maturity level options | ||
| 150 | # | ||
| 151 | # CONFIG_EXPERIMENTAL is not set | ||
| 152 | CONFIG_BROKEN_ON_SMP=y | ||
| 153 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 154 | |||
| 155 | # | ||
| 156 | # General setup | ||
| 157 | # | ||
| 158 | CONFIG_LOCALVERSION="" | ||
| 159 | CONFIG_LOCALVERSION_AUTO=y | ||
| 160 | # CONFIG_SWAP is not set | ||
| 161 | # CONFIG_SYSVIPC is not set | ||
| 162 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 163 | # CONFIG_TASKSTATS is not set | ||
| 164 | # CONFIG_UTS_NS is not set | ||
| 165 | # CONFIG_AUDIT is not set | ||
| 166 | # CONFIG_IKCONFIG is not set | ||
| 167 | CONFIG_SYSFS_DEPRECATED=y | ||
| 168 | CONFIG_RELAY=y | ||
| 169 | CONFIG_SYSCTL=y | ||
| 170 | CONFIG_EMBEDDED=y | ||
| 171 | CONFIG_SYSCTL_SYSCALL=y | ||
| 172 | CONFIG_KALLSYMS=y | ||
| 173 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 174 | # CONFIG_HOTPLUG is not set | ||
| 175 | CONFIG_PRINTK=y | ||
| 176 | # CONFIG_BUG is not set | ||
| 177 | CONFIG_ELF_CORE=y | ||
| 178 | # CONFIG_BASE_FULL is not set | ||
| 179 | # CONFIG_FUTEX is not set | ||
| 180 | # CONFIG_EPOLL is not set | ||
| 181 | # CONFIG_SHMEM is not set | ||
| 182 | CONFIG_SLAB=y | ||
| 183 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 184 | CONFIG_TINY_SHMEM=y | ||
| 185 | CONFIG_BASE_SMALL=1 | ||
| 186 | # CONFIG_SLOB is not set | ||
| 187 | |||
| 188 | # | ||
| 189 | # Loadable module support | ||
| 190 | # | ||
| 191 | # CONFIG_MODULES is not set | ||
| 192 | |||
| 193 | # | ||
| 194 | # Block layer | ||
| 195 | # | ||
| 196 | CONFIG_BLOCK=y | ||
| 197 | # CONFIG_LBD is not set | ||
| 198 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 199 | # CONFIG_LSF is not set | ||
| 200 | |||
| 201 | # | ||
| 202 | # IO Schedulers | ||
| 203 | # | ||
| 204 | CONFIG_IOSCHED_NOOP=y | ||
| 205 | # CONFIG_IOSCHED_AS is not set | ||
| 206 | # CONFIG_IOSCHED_DEADLINE is not set | ||
| 207 | # CONFIG_IOSCHED_CFQ is not set | ||
| 208 | # CONFIG_DEFAULT_AS is not set | ||
| 209 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 210 | # CONFIG_DEFAULT_CFQ is not set | ||
| 211 | CONFIG_DEFAULT_NOOP=y | ||
| 212 | CONFIG_DEFAULT_IOSCHED="noop" | ||
| 213 | |||
| 214 | # | ||
| 215 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
| 216 | # | ||
| 217 | CONFIG_ISA=y | ||
| 218 | CONFIG_MMU=y | ||
| 219 | CONFIG_PCSPEAKER=y | ||
| 220 | |||
| 221 | # | ||
| 222 | # PCCARD (PCMCIA/CardBus) support | ||
| 223 | # | ||
| 224 | |||
| 225 | # | ||
| 226 | # PCI Hotplug Support | ||
| 227 | # | ||
| 228 | |||
| 229 | # | ||
| 230 | # Executable file formats | ||
| 231 | # | ||
| 232 | CONFIG_BINFMT_ELF=y | ||
| 233 | # CONFIG_BINFMT_MISC is not set | ||
| 234 | CONFIG_TRAD_SIGNALS=y | ||
| 235 | |||
| 236 | # | ||
| 237 | # Power management options | ||
| 238 | # | ||
| 239 | CONFIG_PM=y | ||
| 240 | # CONFIG_PM_LEGACY is not set | ||
| 241 | # CONFIG_PM_DEBUG is not set | ||
| 242 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
| 243 | |||
| 244 | # | ||
| 245 | # Networking | ||
| 246 | # | ||
| 247 | CONFIG_NET=y | ||
| 248 | |||
| 249 | # | ||
| 250 | # Networking options | ||
| 251 | # | ||
| 252 | # CONFIG_NETDEBUG is not set | ||
| 253 | CONFIG_PACKET=y | ||
| 254 | CONFIG_PACKET_MMAP=y | ||
| 255 | CONFIG_UNIX=y | ||
| 256 | CONFIG_XFRM=y | ||
| 257 | # CONFIG_XFRM_USER is not set | ||
| 258 | # CONFIG_NET_KEY is not set | ||
| 259 | CONFIG_INET=y | ||
| 260 | CONFIG_IP_MULTICAST=y | ||
| 261 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 262 | CONFIG_IP_FIB_HASH=y | ||
| 263 | CONFIG_IP_PNP=y | ||
| 264 | CONFIG_IP_PNP_DHCP=y | ||
| 265 | CONFIG_IP_PNP_BOOTP=y | ||
| 266 | # CONFIG_IP_PNP_RARP is not set | ||
| 267 | # CONFIG_NET_IPIP is not set | ||
| 268 | # CONFIG_NET_IPGRE is not set | ||
| 269 | # CONFIG_IP_MROUTE is not set | ||
| 270 | # CONFIG_SYN_COOKIES is not set | ||
| 271 | # CONFIG_INET_AH is not set | ||
| 272 | # CONFIG_INET_ESP is not set | ||
| 273 | # CONFIG_INET_IPCOMP is not set | ||
| 274 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 275 | # CONFIG_INET_TUNNEL is not set | ||
| 276 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 277 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 278 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 279 | CONFIG_INET_DIAG=y | ||
| 280 | CONFIG_INET_TCP_DIAG=y | ||
| 281 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 282 | CONFIG_TCP_CONG_CUBIC=y | ||
| 283 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 284 | # CONFIG_IPV6 is not set | ||
| 285 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 286 | # CONFIG_INET6_TUNNEL is not set | ||
| 287 | CONFIG_NETWORK_SECMARK=y | ||
| 288 | # CONFIG_NETFILTER is not set | ||
| 289 | # CONFIG_BRIDGE is not set | ||
| 290 | # CONFIG_VLAN_8021Q is not set | ||
| 291 | # CONFIG_DECNET is not set | ||
| 292 | # CONFIG_LLC2 is not set | ||
| 293 | # CONFIG_IPX is not set | ||
| 294 | # CONFIG_ATALK is not set | ||
| 295 | |||
| 296 | # | ||
| 297 | # QoS and/or fair queueing | ||
| 298 | # | ||
| 299 | # CONFIG_NET_SCHED is not set | ||
| 300 | |||
| 301 | # | ||
| 302 | # Network testing | ||
| 303 | # | ||
| 304 | # CONFIG_NET_PKTGEN is not set | ||
| 305 | # CONFIG_HAMRADIO is not set | ||
| 306 | # CONFIG_IRDA is not set | ||
| 307 | # CONFIG_BT is not set | ||
| 308 | # CONFIG_IEEE80211 is not set | ||
| 309 | |||
| 310 | # | ||
| 311 | # Device Drivers | ||
| 312 | # | ||
| 313 | |||
| 314 | # | ||
| 315 | # Generic Driver Options | ||
| 316 | # | ||
| 317 | CONFIG_STANDALONE=y | ||
| 318 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
| 319 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 320 | |||
| 321 | # | ||
| 322 | # Connector - unified userspace <-> kernelspace linker | ||
| 323 | # | ||
| 324 | CONFIG_CONNECTOR=y | ||
| 325 | CONFIG_PROC_EVENTS=y | ||
| 326 | |||
| 327 | # | ||
| 328 | # Memory Technology Devices (MTD) | ||
| 329 | # | ||
| 330 | # CONFIG_MTD is not set | ||
| 331 | |||
| 332 | # | ||
| 333 | # Parallel port support | ||
| 334 | # | ||
| 335 | # CONFIG_PARPORT is not set | ||
| 336 | |||
| 337 | # | ||
| 338 | # Plug and Play support | ||
| 339 | # | ||
| 340 | # CONFIG_PNP is not set | ||
| 341 | # CONFIG_PNPACPI is not set | ||
| 342 | |||
| 343 | # | ||
| 344 | # Block devices | ||
| 345 | # | ||
| 346 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 347 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 348 | # CONFIG_BLK_DEV_NBD is not set | ||
| 349 | # CONFIG_BLK_DEV_RAM is not set | ||
| 350 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 351 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 352 | # CONFIG_ATA_OVER_ETH is not set | ||
| 353 | |||
| 354 | # | ||
| 355 | # Misc devices | ||
| 356 | # | ||
| 357 | |||
| 358 | # | ||
| 359 | # ATA/ATAPI/MFM/RLL support | ||
| 360 | # | ||
| 361 | # CONFIG_IDE is not set | ||
| 362 | |||
| 363 | # | ||
| 364 | # SCSI device support | ||
| 365 | # | ||
| 366 | # CONFIG_RAID_ATTRS is not set | ||
| 367 | # CONFIG_SCSI is not set | ||
| 368 | # CONFIG_SCSI_NETLINK is not set | ||
| 369 | |||
| 370 | # | ||
| 371 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
| 372 | # | ||
| 373 | # CONFIG_ATA is not set | ||
| 374 | |||
| 375 | # | ||
| 376 | # Old CD-ROM drivers (not SCSI, not IDE) | ||
| 377 | # | ||
| 378 | # CONFIG_CD_NO_IDESCSI is not set | ||
| 379 | |||
| 380 | # | ||
| 381 | # Multi-device support (RAID and LVM) | ||
| 382 | # | ||
| 383 | # CONFIG_MD is not set | ||
| 384 | |||
| 385 | # | ||
| 386 | # Fusion MPT device support | ||
| 387 | # | ||
| 388 | # CONFIG_FUSION is not set | ||
| 389 | |||
| 390 | # | ||
| 391 | # IEEE 1394 (FireWire) support | ||
| 392 | # | ||
| 393 | |||
| 394 | # | ||
| 395 | # I2O device support | ||
| 396 | # | ||
| 397 | |||
| 398 | # | ||
| 399 | # Network device support | ||
| 400 | # | ||
| 401 | CONFIG_NETDEVICES=y | ||
| 402 | # CONFIG_DUMMY is not set | ||
| 403 | # CONFIG_BONDING is not set | ||
| 404 | # CONFIG_EQUALIZER is not set | ||
| 405 | # CONFIG_TUN is not set | ||
| 406 | |||
| 407 | # | ||
| 408 | # ARCnet devices | ||
| 409 | # | ||
| 410 | # CONFIG_ARCNET is not set | ||
| 411 | |||
| 412 | # | ||
| 413 | # PHY device support | ||
| 414 | # | ||
| 415 | # CONFIG_PHYLIB is not set | ||
| 416 | |||
| 417 | # | ||
| 418 | # Ethernet (10 or 100Mbit) | ||
| 419 | # | ||
| 420 | CONFIG_NET_ETHERNET=y | ||
| 421 | # CONFIG_MII is not set | ||
| 422 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 423 | # CONFIG_NET_VENDOR_SMC is not set | ||
| 424 | # CONFIG_DM9000 is not set | ||
| 425 | # CONFIG_NET_VENDOR_RACAL is not set | ||
| 426 | # CONFIG_DEPCA is not set | ||
| 427 | # CONFIG_HP100 is not set | ||
| 428 | CONFIG_NET_ISA=y | ||
| 429 | # CONFIG_E2100 is not set | ||
| 430 | # CONFIG_EWRK3 is not set | ||
| 431 | # CONFIG_EEXPRESS is not set | ||
| 432 | # CONFIG_EEXPRESS_PRO is not set | ||
| 433 | # CONFIG_HPLAN_PLUS is not set | ||
| 434 | # CONFIG_HPLAN is not set | ||
| 435 | # CONFIG_LP486E is not set | ||
| 436 | # CONFIG_ETH16I is not set | ||
| 437 | CONFIG_NE2000=y | ||
| 438 | # CONFIG_NET_PCI is not set | ||
| 439 | |||
| 440 | # | ||
| 441 | # Ethernet (1000 Mbit) | ||
| 442 | # | ||
| 443 | |||
| 444 | # | ||
| 445 | # Ethernet (10000 Mbit) | ||
| 446 | # | ||
| 447 | |||
| 448 | # | ||
| 449 | # Token Ring devices | ||
| 450 | # | ||
| 451 | # CONFIG_TR is not set | ||
| 452 | |||
| 453 | # | ||
| 454 | # Wireless LAN (non-hamradio) | ||
| 455 | # | ||
| 456 | # CONFIG_NET_RADIO is not set | ||
| 457 | |||
| 458 | # | ||
| 459 | # Wan interfaces | ||
| 460 | # | ||
| 461 | # CONFIG_WAN is not set | ||
| 462 | # CONFIG_PPP is not set | ||
| 463 | # CONFIG_SLIP is not set | ||
| 464 | # CONFIG_NETPOLL is not set | ||
| 465 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 466 | |||
| 467 | # | ||
| 468 | # ISDN subsystem | ||
| 469 | # | ||
| 470 | # CONFIG_ISDN is not set | ||
| 471 | |||
| 472 | # | ||
| 473 | # Telephony Support | ||
| 474 | # | ||
| 475 | # CONFIG_PHONE is not set | ||
| 476 | |||
| 477 | # | ||
| 478 | # Input device support | ||
| 479 | # | ||
| 480 | CONFIG_INPUT=y | ||
| 481 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 482 | |||
| 483 | # | ||
| 484 | # Userland interfaces | ||
| 485 | # | ||
| 486 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 487 | # CONFIG_INPUT_JOYDEV is not set | ||
| 488 | # CONFIG_INPUT_TSDEV is not set | ||
| 489 | # CONFIG_INPUT_EVDEV is not set | ||
| 490 | # CONFIG_INPUT_EVBUG is not set | ||
| 491 | |||
| 492 | # | ||
| 493 | # Input Device Drivers | ||
| 494 | # | ||
| 495 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 496 | # CONFIG_INPUT_MOUSE is not set | ||
| 497 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 498 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 499 | # CONFIG_INPUT_MISC is not set | ||
| 500 | |||
| 501 | # | ||
| 502 | # Hardware I/O ports | ||
| 503 | # | ||
| 504 | # CONFIG_SERIO is not set | ||
| 505 | # CONFIG_GAMEPORT is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # Character devices | ||
| 509 | # | ||
| 510 | CONFIG_VT=y | ||
| 511 | CONFIG_VT_CONSOLE=y | ||
| 512 | CONFIG_HW_CONSOLE=y | ||
| 513 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
| 514 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 515 | |||
| 516 | # | ||
| 517 | # Serial drivers | ||
| 518 | # | ||
| 519 | CONFIG_SERIAL_8250=y | ||
| 520 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 521 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 522 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 523 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 524 | |||
| 525 | # | ||
| 526 | # Non-8250 serial port support | ||
| 527 | # | ||
| 528 | CONFIG_SERIAL_CORE=y | ||
| 529 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 530 | CONFIG_UNIX98_PTYS=y | ||
| 531 | CONFIG_LEGACY_PTYS=y | ||
| 532 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 533 | |||
| 534 | # | ||
| 535 | # IPMI | ||
| 536 | # | ||
| 537 | # CONFIG_IPMI_HANDLER is not set | ||
| 538 | |||
| 539 | # | ||
| 540 | # Watchdog Cards | ||
| 541 | # | ||
| 542 | # CONFIG_WATCHDOG is not set | ||
| 543 | # CONFIG_HW_RANDOM is not set | ||
| 544 | # CONFIG_RTC is not set | ||
| 545 | # CONFIG_GEN_RTC is not set | ||
| 546 | # CONFIG_DTLK is not set | ||
| 547 | # CONFIG_R3964 is not set | ||
| 548 | # CONFIG_RAW_DRIVER is not set | ||
| 549 | |||
| 550 | # | ||
| 551 | # TPM devices | ||
| 552 | # | ||
| 553 | |||
| 554 | # | ||
| 555 | # I2C support | ||
| 556 | # | ||
| 557 | # CONFIG_I2C is not set | ||
| 558 | |||
| 559 | # | ||
| 560 | # SPI support | ||
| 561 | # | ||
| 562 | # CONFIG_SPI is not set | ||
| 563 | # CONFIG_SPI_MASTER is not set | ||
| 564 | |||
| 565 | # | ||
| 566 | # Dallas's 1-wire bus | ||
| 567 | # | ||
| 568 | # CONFIG_W1 is not set | ||
| 569 | |||
| 570 | # | ||
| 571 | # Hardware Monitoring support | ||
| 572 | # | ||
| 573 | # CONFIG_HWMON is not set | ||
| 574 | # CONFIG_HWMON_VID is not set | ||
| 575 | |||
| 576 | # | ||
| 577 | # Multimedia devices | ||
| 578 | # | ||
| 579 | # CONFIG_VIDEO_DEV is not set | ||
| 580 | |||
| 581 | # | ||
| 582 | # Digital Video Broadcasting Devices | ||
| 583 | # | ||
| 584 | # CONFIG_DVB is not set | ||
| 585 | |||
| 586 | # | ||
| 587 | # Graphics support | ||
| 588 | # | ||
| 589 | # CONFIG_FIRMWARE_EDID is not set | ||
| 590 | # CONFIG_FB is not set | ||
| 591 | |||
| 592 | # | ||
| 593 | # Console display driver support | ||
| 594 | # | ||
| 595 | CONFIG_VGA_CONSOLE=y | ||
| 596 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | ||
| 597 | # CONFIG_MDA_CONSOLE is not set | ||
| 598 | CONFIG_DUMMY_CONSOLE=y | ||
| 599 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 600 | |||
| 601 | # | ||
| 602 | # Sound | ||
| 603 | # | ||
| 604 | # CONFIG_SOUND is not set | ||
| 605 | |||
| 606 | # | ||
| 607 | # HID Devices | ||
| 608 | # | ||
| 609 | CONFIG_HID=y | ||
| 610 | # CONFIG_HID_DEBUG is not set | ||
| 611 | |||
| 612 | # | ||
| 613 | # USB support | ||
| 614 | # | ||
| 615 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
| 616 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
| 617 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
| 618 | |||
| 619 | # | ||
| 620 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 621 | # | ||
| 622 | |||
| 623 | # | ||
| 624 | # USB Gadget Support | ||
| 625 | # | ||
| 626 | # CONFIG_USB_GADGET is not set | ||
| 627 | |||
| 628 | # | ||
| 629 | # MMC/SD Card support | ||
| 630 | # | ||
| 631 | # CONFIG_MMC is not set | ||
| 632 | |||
| 633 | # | ||
| 634 | # LED devices | ||
| 635 | # | ||
| 636 | # CONFIG_NEW_LEDS is not set | ||
| 637 | |||
| 638 | # | ||
| 639 | # LED drivers | ||
| 640 | # | ||
| 641 | |||
| 642 | # | ||
| 643 | # LED Triggers | ||
| 644 | # | ||
| 645 | |||
| 646 | # | ||
| 647 | # InfiniBand support | ||
| 648 | # | ||
| 649 | |||
| 650 | # | ||
| 651 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
| 652 | # | ||
| 653 | |||
| 654 | # | ||
| 655 | # Real Time Clock | ||
| 656 | # | ||
| 657 | |||
| 658 | # | ||
| 659 | # DMA Engine support | ||
| 660 | # | ||
| 661 | # CONFIG_DMA_ENGINE is not set | ||
| 662 | |||
| 663 | # | ||
| 664 | # DMA Clients | ||
| 665 | # | ||
| 666 | |||
| 667 | # | ||
| 668 | # DMA Devices | ||
| 669 | # | ||
| 670 | |||
| 671 | # | ||
| 672 | # Auxiliary Display support | ||
| 673 | # | ||
| 674 | |||
| 675 | # | ||
| 676 | # Virtualization | ||
| 677 | # | ||
| 678 | |||
| 679 | # | ||
| 680 | # File systems | ||
| 681 | # | ||
| 682 | # CONFIG_EXT2_FS is not set | ||
| 683 | # CONFIG_EXT3_FS is not set | ||
| 684 | # CONFIG_REISERFS_FS is not set | ||
| 685 | # CONFIG_JFS_FS is not set | ||
| 686 | CONFIG_FS_POSIX_ACL=y | ||
| 687 | # CONFIG_XFS_FS is not set | ||
| 688 | # CONFIG_OCFS2_FS is not set | ||
| 689 | # CONFIG_MINIX_FS is not set | ||
| 690 | # CONFIG_ROMFS_FS is not set | ||
| 691 | CONFIG_INOTIFY=y | ||
| 692 | CONFIG_INOTIFY_USER=y | ||
| 693 | # CONFIG_QUOTA is not set | ||
| 694 | # CONFIG_DNOTIFY is not set | ||
| 695 | # CONFIG_AUTOFS_FS is not set | ||
| 696 | # CONFIG_AUTOFS4_FS is not set | ||
| 697 | CONFIG_FUSE_FS=y | ||
| 698 | CONFIG_GENERIC_ACL=y | ||
| 699 | |||
| 700 | # | ||
| 701 | # CD-ROM/DVD Filesystems | ||
| 702 | # | ||
| 703 | # CONFIG_ISO9660_FS is not set | ||
| 704 | # CONFIG_UDF_FS is not set | ||
| 705 | |||
| 706 | # | ||
| 707 | # DOS/FAT/NT Filesystems | ||
| 708 | # | ||
| 709 | # CONFIG_MSDOS_FS is not set | ||
| 710 | # CONFIG_VFAT_FS is not set | ||
| 711 | # CONFIG_NTFS_FS is not set | ||
| 712 | |||
| 713 | # | ||
| 714 | # Pseudo filesystems | ||
| 715 | # | ||
| 716 | CONFIG_PROC_FS=y | ||
| 717 | CONFIG_PROC_KCORE=y | ||
| 718 | CONFIG_PROC_SYSCTL=y | ||
| 719 | CONFIG_SYSFS=y | ||
| 720 | CONFIG_TMPFS=y | ||
| 721 | CONFIG_TMPFS_POSIX_ACL=y | ||
| 722 | # CONFIG_HUGETLB_PAGE is not set | ||
| 723 | CONFIG_RAMFS=y | ||
| 724 | |||
| 725 | # | ||
| 726 | # Miscellaneous filesystems | ||
| 727 | # | ||
| 728 | # CONFIG_HFSPLUS_FS is not set | ||
| 729 | # CONFIG_CRAMFS is not set | ||
| 730 | # CONFIG_VXFS_FS is not set | ||
| 731 | # CONFIG_HPFS_FS is not set | ||
| 732 | # CONFIG_QNX4FS_FS is not set | ||
| 733 | # CONFIG_SYSV_FS is not set | ||
| 734 | # CONFIG_UFS_FS is not set | ||
| 735 | |||
| 736 | # | ||
| 737 | # Network File Systems | ||
| 738 | # | ||
| 739 | CONFIG_NFS_FS=y | ||
| 740 | CONFIG_NFS_V3=y | ||
| 741 | # CONFIG_NFS_V3_ACL is not set | ||
| 742 | CONFIG_NFS_DIRECTIO=y | ||
| 743 | # CONFIG_NFSD is not set | ||
| 744 | CONFIG_ROOT_NFS=y | ||
| 745 | CONFIG_LOCKD=y | ||
| 746 | CONFIG_LOCKD_V4=y | ||
| 747 | CONFIG_NFS_COMMON=y | ||
| 748 | CONFIG_SUNRPC=y | ||
| 749 | # CONFIG_SMB_FS is not set | ||
| 750 | # CONFIG_CIFS is not set | ||
| 751 | # CONFIG_NCP_FS is not set | ||
| 752 | # CONFIG_CODA_FS is not set | ||
| 753 | |||
| 754 | # | ||
| 755 | # Partition Types | ||
| 756 | # | ||
| 757 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 758 | CONFIG_MSDOS_PARTITION=y | ||
| 759 | |||
| 760 | # | ||
| 761 | # Native Language Support | ||
| 762 | # | ||
| 763 | # CONFIG_NLS is not set | ||
| 764 | |||
| 765 | # | ||
| 766 | # Kernel hacking | ||
| 767 | # | ||
| 768 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 769 | # CONFIG_PRINTK_TIME is not set | ||
| 770 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 771 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 772 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 773 | # CONFIG_DEBUG_FS is not set | ||
| 774 | # CONFIG_HEADERS_CHECK is not set | ||
| 775 | # CONFIG_DEBUG_KERNEL is not set | ||
| 776 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 777 | CONFIG_CROSSCOMPILE=y | ||
| 778 | CONFIG_CMDLINE="" | ||
| 779 | |||
| 780 | # | ||
| 781 | # Security options | ||
| 782 | # | ||
| 783 | # CONFIG_KEYS is not set | ||
| 784 | # CONFIG_SECURITY is not set | ||
| 785 | |||
| 786 | # | ||
| 787 | # Cryptographic options | ||
| 788 | # | ||
| 789 | # CONFIG_CRYPTO is not set | ||
| 790 | |||
| 791 | # | ||
| 792 | # Library routines | ||
| 793 | # | ||
| 794 | CONFIG_BITREVERSE=y | ||
| 795 | # CONFIG_CRC_CCITT is not set | ||
| 796 | # CONFIG_CRC16 is not set | ||
| 797 | CONFIG_CRC32=y | ||
| 798 | # CONFIG_LIBCRC32C is not set | ||
| 799 | CONFIG_HAS_IOMEM=y | ||
| 800 | CONFIG_HAS_IOPORT=y | ||
| diff --git a/arch/mips/kernel/irq-rm7000.c b/arch/mips/kernel/irq-rm7000.c index 971adf6ef4f4..fb50cc78b28b 100644 --- a/arch/mips/kernel/irq-rm7000.c +++ b/arch/mips/kernel/irq-rm7000.c | |||
| @@ -33,6 +33,7 @@ static struct irq_chip rm7k_irq_controller = { | |||
| 33 | .mask = mask_rm7k_irq, | 33 | .mask = mask_rm7k_irq, | 
| 34 | .mask_ack = mask_rm7k_irq, | 34 | .mask_ack = mask_rm7k_irq, | 
| 35 | .unmask = unmask_rm7k_irq, | 35 | .unmask = unmask_rm7k_irq, | 
| 36 | .eoi = unmask_rm7k_irq | ||
| 36 | }; | 37 | }; | 
| 37 | 38 | ||
| 38 | void __init rm7k_cpu_irq_init(void) | 39 | void __init rm7k_cpu_irq_init(void) | 
| diff --git a/arch/mips/kernel/irq-rm9000.c b/arch/mips/kernel/irq-rm9000.c index 7b04583bd800..ed9febe63d72 100644 --- a/arch/mips/kernel/irq-rm9000.c +++ b/arch/mips/kernel/irq-rm9000.c | |||
| @@ -75,6 +75,7 @@ static struct irq_chip rm9k_irq_controller = { | |||
| 75 | .mask = mask_rm9k_irq, | 75 | .mask = mask_rm9k_irq, | 
| 76 | .mask_ack = mask_rm9k_irq, | 76 | .mask_ack = mask_rm9k_irq, | 
| 77 | .unmask = unmask_rm9k_irq, | 77 | .unmask = unmask_rm9k_irq, | 
| 78 | .eoi = unmask_rm9k_irq | ||
| 78 | }; | 79 | }; | 
| 79 | 80 | ||
| 80 | static struct irq_chip rm9k_perfcounter_irq = { | 81 | static struct irq_chip rm9k_perfcounter_irq = { | 
| diff --git a/arch/mips/kernel/mips-mt-fpaff.c b/arch/mips/kernel/mips-mt-fpaff.c index bb4f00c0cbe9..df4d3f2f740c 100644 --- a/arch/mips/kernel/mips-mt-fpaff.c +++ b/arch/mips/kernel/mips-mt-fpaff.c | |||
| @@ -36,7 +36,7 @@ unsigned long mt_fpemul_threshold = 0; | |||
| 36 | */ | 36 | */ | 
| 37 | static inline struct task_struct *find_process_by_pid(pid_t pid) | 37 | static inline struct task_struct *find_process_by_pid(pid_t pid) | 
| 38 | { | 38 | { | 
| 39 | return pid ? find_task_by_pid(pid) : current; | 39 | return pid ? find_task_by_vpid(pid) : current; | 
| 40 | } | 40 | } | 
| 41 | 41 | ||
| 42 | 42 | ||
| diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index f798139e888e..08a9c5070ea8 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
| @@ -663,6 +663,9 @@ einval: li v0, -EINVAL | |||
| 663 | sys sys_ni_syscall 0 | 663 | sys sys_ni_syscall 0 | 
| 664 | sys sys_eventfd 1 | 664 | sys sys_eventfd 1 | 
| 665 | sys sys_fallocate 6 /* 4320 */ | 665 | sys sys_fallocate 6 /* 4320 */ | 
| 666 | sys sys_timerfd_create 2 | ||
| 667 | sys sys_timerfd_gettime 2 | ||
| 668 | sys sys_timerfd_settime 4 | ||
| 666 | .endm | 669 | .endm | 
| 667 | 670 | ||
| 668 | /* We pre-compute the number of _instruction_ bytes needed to | 671 | /* We pre-compute the number of _instruction_ bytes needed to | 
| diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index a626be6baea3..dc597b600c68 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
| @@ -478,4 +478,7 @@ sys_call_table: | |||
| 478 | PTR sys_ni_syscall | 478 | PTR sys_ni_syscall | 
| 479 | PTR sys_eventfd | 479 | PTR sys_eventfd | 
| 480 | PTR sys_fallocate | 480 | PTR sys_fallocate | 
| 481 | PTR sys_timerfd_create /* 5280 */ | ||
| 482 | PTR sys_timerfd_gettime | ||
| 483 | PTR sys_timerfd_settime | ||
| 481 | .size sys_call_table,.-sys_call_table | 484 | .size sys_call_table,.-sys_call_table | 
| diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 9d5bcaf1b389..12940eca7893 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
| @@ -404,4 +404,7 @@ EXPORT(sysn32_call_table) | |||
| 404 | PTR sys_ni_syscall | 404 | PTR sys_ni_syscall | 
| 405 | PTR sys_eventfd | 405 | PTR sys_eventfd | 
| 406 | PTR sys_fallocate | 406 | PTR sys_fallocate | 
| 407 | PTR sys_timerfd_create | ||
| 408 | PTR sys_timerfd_gettime /* 5285 */ | ||
| 409 | PTR sys_timerfd_settime | ||
| 407 | .size sysn32_call_table,.-sysn32_call_table | 410 | .size sysn32_call_table,.-sysn32_call_table | 
| diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index fd2019c1ec2d..9a275efb4f04 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
| @@ -526,4 +526,7 @@ sys_call_table: | |||
| 526 | PTR sys_ni_syscall | 526 | PTR sys_ni_syscall | 
| 527 | PTR sys_eventfd | 527 | PTR sys_eventfd | 
| 528 | PTR sys32_fallocate /* 4320 */ | 528 | PTR sys32_fallocate /* 4320 */ | 
| 529 | PTR sys_timerfd_create | ||
| 530 | PTR sys_timerfd_gettime | ||
| 531 | PTR sys_timerfd_settime | ||
| 529 | .size sys_call_table,.-sys_call_table | 532 | .size sys_call_table,.-sys_call_table | 
| diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c index 672fba84b2cc..c357762b8012 100644 --- a/arch/mips/kernel/sysirix.c +++ b/arch/mips/kernel/sysirix.c | |||
| @@ -111,7 +111,7 @@ asmlinkage int irix_prctl(unsigned option, ...) | |||
| 111 | printk("irix_prctl[%s:%d]: Wants PR_ISBLOCKED\n", | 111 | printk("irix_prctl[%s:%d]: Wants PR_ISBLOCKED\n", | 
| 112 | current->comm, current->pid); | 112 | current->comm, current->pid); | 
| 113 | read_lock(&tasklist_lock); | 113 | read_lock(&tasklist_lock); | 
| 114 | task = find_task_by_pid(va_arg(args, pid_t)); | 114 | task = find_task_by_vpid(va_arg(args, pid_t)); | 
| 115 | error = -ESRCH; | 115 | error = -ESRCH; | 
| 116 | if (error) | 116 | if (error) | 
| 117 | error = (task->run_list.next != NULL); | 117 | error = (task->run_list.next != NULL); | 
| diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 53ec05267a98..2c4f7e11f0d5 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
| @@ -364,20 +364,23 @@ static inline int has_valid_asid(const struct mm_struct *mm) | |||
| 364 | static inline void local_r4k_flush_cache_range(void * args) | 364 | static inline void local_r4k_flush_cache_range(void * args) | 
| 365 | { | 365 | { | 
| 366 | struct vm_area_struct *vma = args; | 366 | struct vm_area_struct *vma = args; | 
| 367 | int exec = vma->vm_flags & VM_EXEC; | ||
| 367 | 368 | ||
| 368 | if (!(has_valid_asid(vma->vm_mm))) | 369 | if (!(has_valid_asid(vma->vm_mm))) | 
| 369 | return; | 370 | return; | 
| 370 | 371 | ||
| 371 | r4k_blast_dcache(); | 372 | r4k_blast_dcache(); | 
| 373 | if (exec) | ||
| 374 | r4k_blast_icache(); | ||
| 372 | } | 375 | } | 
| 373 | 376 | ||
| 374 | static void r4k_flush_cache_range(struct vm_area_struct *vma, | 377 | static void r4k_flush_cache_range(struct vm_area_struct *vma, | 
| 375 | unsigned long start, unsigned long end) | 378 | unsigned long start, unsigned long end) | 
| 376 | { | 379 | { | 
| 377 | if (!cpu_has_dc_aliases) | 380 | int exec = vma->vm_flags & VM_EXEC; | 
| 378 | return; | ||
| 379 | 381 | ||
| 380 | r4k_on_each_cpu(local_r4k_flush_cache_range, vma, 1, 1); | 382 | if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) | 
| 383 | r4k_on_each_cpu(local_r4k_flush_cache_range, vma, 1, 1); | ||
| 381 | } | 384 | } | 
| 382 | 385 | ||
| 383 | static inline void local_r4k_flush_cache_mm(void * args) | 386 | static inline void local_r4k_flush_cache_mm(void * args) | 
| diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 81f30ac2bff9..6a24651971df 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
| @@ -92,12 +92,17 @@ EXPORT_SYMBOL(__flush_dcache_page); | |||
| 92 | 92 | ||
| 93 | void __flush_anon_page(struct page *page, unsigned long vmaddr) | 93 | void __flush_anon_page(struct page *page, unsigned long vmaddr) | 
| 94 | { | 94 | { | 
| 95 | if (pages_do_alias((unsigned long)page_address(page), vmaddr)) { | 95 | unsigned long addr = (unsigned long) page_address(page); | 
| 96 | void *kaddr; | ||
| 97 | 96 | ||
| 98 | kaddr = kmap_coherent(page, vmaddr); | 97 | if (pages_do_alias(addr, vmaddr)) { | 
| 99 | flush_data_cache_page((unsigned long)kaddr); | 98 | if (page_mapped(page) && !Page_dcache_dirty(page)) { | 
| 100 | kunmap_coherent(); | 99 | void *kaddr; | 
| 100 | |||
| 101 | kaddr = kmap_coherent(page, vmaddr); | ||
| 102 | flush_data_cache_page((unsigned long)kaddr); | ||
| 103 | kunmap_coherent(); | ||
| 104 | } else | ||
| 105 | flush_data_cache_page(addr); | ||
| 101 | } | 106 | } | 
| 102 | } | 107 | } | 
| 103 | 108 | ||
| diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 480dec04f552..c7aed133d11d 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
| @@ -211,7 +211,8 @@ void copy_user_highpage(struct page *to, struct page *from, | |||
| 211 | void *vfrom, *vto; | 211 | void *vfrom, *vto; | 
| 212 | 212 | ||
| 213 | vto = kmap_atomic(to, KM_USER1); | 213 | vto = kmap_atomic(to, KM_USER1); | 
| 214 | if (cpu_has_dc_aliases && page_mapped(from)) { | 214 | if (cpu_has_dc_aliases && | 
| 215 | page_mapped(from) && !Page_dcache_dirty(from)) { | ||
| 215 | vfrom = kmap_coherent(from, vaddr); | 216 | vfrom = kmap_coherent(from, vaddr); | 
| 216 | copy_page(vto, vfrom); | 217 | copy_page(vto, vfrom); | 
| 217 | kunmap_coherent(); | 218 | kunmap_coherent(); | 
| @@ -234,7 +235,8 @@ void copy_to_user_page(struct vm_area_struct *vma, | |||
| 234 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 235 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 
| 235 | unsigned long len) | 236 | unsigned long len) | 
| 236 | { | 237 | { | 
| 237 | if (cpu_has_dc_aliases && page_mapped(page)) { | 238 | if (cpu_has_dc_aliases && | 
| 239 | page_mapped(page) && !Page_dcache_dirty(page)) { | ||
| 238 | void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 240 | void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 
| 239 | memcpy(vto, src, len); | 241 | memcpy(vto, src, len); | 
| 240 | kunmap_coherent(); | 242 | kunmap_coherent(); | 
| @@ -253,7 +255,8 @@ void copy_from_user_page(struct vm_area_struct *vma, | |||
| 253 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 255 | struct page *page, unsigned long vaddr, void *dst, const void *src, | 
| 254 | unsigned long len) | 256 | unsigned long len) | 
| 255 | { | 257 | { | 
| 256 | if (cpu_has_dc_aliases && page_mapped(page)) { | 258 | if (cpu_has_dc_aliases && | 
| 259 | page_mapped(page) && !Page_dcache_dirty(page)) { | ||
| 257 | void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 260 | void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 
| 258 | memcpy(dst, vfrom, len); | 261 | memcpy(dst, vfrom, len); | 
| 259 | kunmap_coherent(); | 262 | kunmap_coherent(); | 
| diff --git a/arch/mips/mm/pg-sb1.c b/arch/mips/mm/pg-sb1.c index a3e98c243a89..89925ec57d6a 100644 --- a/arch/mips/mm/pg-sb1.c +++ b/arch/mips/mm/pg-sb1.c | |||
| @@ -216,7 +216,7 @@ void sb1_dma_init(void) | |||
| 216 | int i; | 216 | int i; | 
| 217 | 217 | ||
| 218 | for (i = 0; i < DM_NUM_CHANNELS; i++) { | 218 | for (i = 0; i < DM_NUM_CHANNELS; i++) { | 
| 219 | const u64 base_val = CPHYSADDR(&page_descr[i]) | | 219 | const u64 base_val = CPHYSADDR((unsigned long)&page_descr[i]) | | 
| 220 | V_DM_DSCR_BASE_RINGSZ(1); | 220 | V_DM_DSCR_BASE_RINGSZ(1); | 
| 221 | void *base_reg = IOADDR(A_DM_REGISTER(i, R_DM_DSCR_BASE)); | 221 | void *base_reg = IOADDR(A_DM_REGISTER(i, R_DM_DSCR_BASE)); | 
| 222 | 222 | ||
| @@ -228,11 +228,11 @@ void sb1_dma_init(void) | |||
| 228 | 228 | ||
| 229 | void clear_page(void *page) | 229 | void clear_page(void *page) | 
| 230 | { | 230 | { | 
| 231 | u64 to_phys = CPHYSADDR(page); | 231 | u64 to_phys = CPHYSADDR((unsigned long)page); | 
| 232 | unsigned int cpu = smp_processor_id(); | 232 | unsigned int cpu = smp_processor_id(); | 
| 233 | 233 | ||
| 234 | /* if the page is not in KSEG0, use old way */ | 234 | /* if the page is not in KSEG0, use old way */ | 
| 235 | if ((long)KSEGX(page) != (long)CKSEG0) | 235 | if ((long)KSEGX((unsigned long)page) != (long)CKSEG0) | 
| 236 | return clear_page_cpu(page); | 236 | return clear_page_cpu(page); | 
| 237 | 237 | ||
| 238 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_ZERO_MEM | | 238 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_ZERO_MEM | | 
| @@ -252,13 +252,13 @@ void clear_page(void *page) | |||
| 252 | 252 | ||
| 253 | void copy_page(void *to, void *from) | 253 | void copy_page(void *to, void *from) | 
| 254 | { | 254 | { | 
| 255 | u64 from_phys = CPHYSADDR(from); | 255 | u64 from_phys = CPHYSADDR((unsigned long)from); | 
| 256 | u64 to_phys = CPHYSADDR(to); | 256 | u64 to_phys = CPHYSADDR((unsigned long)to); | 
| 257 | unsigned int cpu = smp_processor_id(); | 257 | unsigned int cpu = smp_processor_id(); | 
| 258 | 258 | ||
| 259 | /* if any page is not in KSEG0, use old way */ | 259 | /* if any page is not in KSEG0, use old way */ | 
| 260 | if ((long)KSEGX(to) != (long)CKSEG0 | 260 | if ((long)KSEGX((unsigned long)to) != (long)CKSEG0 | 
| 261 | || (long)KSEGX(from) != (long)CKSEG0) | 261 | || (long)KSEGX((unsigned long)from) != (long)CKSEG0) | 
| 262 | return copy_page_cpu(to, from); | 262 | return copy_page_cpu(to, from); | 
| 263 | 263 | ||
| 264 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_L2C_DEST | | 264 | page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_L2C_DEST | | 
| diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 6e6981fd7934..f9471d77c096 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
| @@ -177,8 +177,15 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) | |||
| 177 | continue; | 177 | continue; | 
| 178 | 178 | ||
| 179 | r = &dev->resource[idx]; | 179 | r = &dev->resource[idx]; | 
| 180 | if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM))) | ||
| 181 | continue; | ||
| 182 | if ((idx == PCI_ROM_RESOURCE) && | ||
| 183 | (!(r->flags & IORESOURCE_ROM_ENABLE))) | ||
| 184 | continue; | ||
| 180 | if (!r->start && r->end) { | 185 | if (!r->start && r->end) { | 
| 181 | printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", pci_name(dev)); | 186 | printk(KERN_ERR "PCI: Device %s not available " | 
| 187 | "because of resource collisions\n", | ||
| 188 | pci_name(dev)); | ||
| 182 | return -EINVAL; | 189 | return -EINVAL; | 
| 183 | } | 190 | } | 
| 184 | if (r->flags & IORESOURCE_IO) | 191 | if (r->flags & IORESOURCE_IO) | 
| @@ -186,10 +193,9 @@ static int pcibios_enable_resources(struct pci_dev *dev, int mask) | |||
| 186 | if (r->flags & IORESOURCE_MEM) | 193 | if (r->flags & IORESOURCE_MEM) | 
| 187 | cmd |= PCI_COMMAND_MEMORY; | 194 | cmd |= PCI_COMMAND_MEMORY; | 
| 188 | } | 195 | } | 
| 189 | if (dev->resource[PCI_ROM_RESOURCE].start) | ||
| 190 | cmd |= PCI_COMMAND_MEMORY; | ||
| 191 | if (cmd != old_cmd) { | 196 | if (cmd != old_cmd) { | 
| 192 | printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd); | 197 | printk("PCI: Enabling device %s (%04x -> %04x)\n", | 
| 198 | pci_name(dev), old_cmd, cmd); | ||
| 193 | pci_write_config_word(dev, PCI_COMMAND, cmd); | 199 | pci_write_config_word(dev, PCI_COMMAND, cmd); | 
| 194 | } | 200 | } | 
| 195 | return 0; | 201 | return 0; | 
| diff --git a/arch/mips/sibyte/bcm1480/smp.c b/arch/mips/sibyte/bcm1480/smp.c index 183c460b9ca1..bd9eeb43ed0e 100644 --- a/arch/mips/sibyte/bcm1480/smp.c +++ b/arch/mips/sibyte/bcm1480/smp.c | |||
| @@ -110,7 +110,6 @@ static void __cpuinit bcm1480_smp_finish(void) | |||
| 110 | 110 | ||
| 111 | sb1480_clockevent_init(); | 111 | sb1480_clockevent_init(); | 
| 112 | local_irq_enable(); | 112 | local_irq_enable(); | 
| 113 | bcm1480_smp_finish(); | ||
| 114 | } | 113 | } | 
| 115 | 114 | ||
| 116 | /* | 115 | /* | 
| diff --git a/include/asm-mips/mach-ip27/dma-coherence.h b/include/asm-mips/mach-ip27/dma-coherence.h index 3fdbbf68e952..ed7e6222dc15 100644 --- a/include/asm-mips/mach-ip27/dma-coherence.h +++ b/include/asm-mips/mach-ip27/dma-coherence.h | |||
| @@ -35,7 +35,7 @@ static dma_addr_t plat_map_dma_mem_page(struct device *dev, struct page *page) | |||
| 35 | 35 | ||
| 36 | static unsigned long plat_dma_addr_to_phys(dma_addr_t dma_addr) | 36 | static unsigned long plat_dma_addr_to_phys(dma_addr_t dma_addr) | 
| 37 | { | 37 | { | 
| 38 | return dma_addr & (0xffUL << 56); | 38 | return dma_addr & ~(0xffUL << 56); | 
| 39 | } | 39 | } | 
| 40 | 40 | ||
| 41 | static inline void plat_unmap_dma_mem(dma_addr_t dma_addr) | 41 | static inline void plat_unmap_dma_mem(dma_addr_t dma_addr) | 
| diff --git a/include/asm-mips/qemu.h b/include/asm-mips/qemu.h deleted file mode 100644 index 487ced4a40de..000000000000 --- a/include/asm-mips/qemu.h +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2005 by Ralf Baechle (ralf@linux-mips.org) | ||
| 7 | */ | ||
| 8 | #ifndef __ASM_QEMU_H | ||
| 9 | #define __ASM_QEMU_H | ||
| 10 | |||
| 11 | /* | ||
| 12 | * Interrupt numbers | ||
| 13 | */ | ||
| 14 | #define Q_PIC_IRQ_BASE 0 | ||
| 15 | #define Q_COUNT_COMPARE_IRQ 23 | ||
| 16 | |||
| 17 | /* | ||
| 18 | * Qemu clock rate. Unlike on real MIPS this has no relation to the | ||
| 19 | * instruction issue rate, so the choosen value is pure fiction, just needs | ||
| 20 | * to match the value in Qemu itself. | ||
| 21 | */ | ||
| 22 | #define QEMU_C0_COUNTER_CLOCK 100000000 | ||
| 23 | |||
| 24 | /* | ||
| 25 | * Magic qemu system control location. | ||
| 26 | */ | ||
| 27 | #define QEMU_RESTART_REG 0xBFBF0000 | ||
| 28 | #define QEMU_HALT_REG 0xBFBF0004 | ||
| 29 | |||
| 30 | #endif /* __ASM_QEMU_H */ | ||
| diff --git a/include/asm-mips/sni.h b/include/asm-mips/sni.h index e716447e5e03..8c1eb02c6d16 100644 --- a/include/asm-mips/sni.h +++ b/include/asm-mips/sni.h | |||
| @@ -228,7 +228,14 @@ extern void sni_pcimt_irq_init(void); | |||
| 228 | extern void sni_cpu_time_init(void); | 228 | extern void sni_cpu_time_init(void); | 
| 229 | 229 | ||
| 230 | /* eisa init for RM200/400 */ | 230 | /* eisa init for RM200/400 */ | 
| 231 | #ifdef CONFIG_EISA | ||
| 231 | extern int sni_eisa_root_init(void); | 232 | extern int sni_eisa_root_init(void); | 
| 233 | #else | ||
| 234 | static inline int sni_eisa_root_init(void) | ||
| 235 | { | ||
| 236 | return 0; | ||
| 237 | } | ||
| 238 | #endif | ||
| 232 | 239 | ||
| 233 | /* common irq stuff */ | 240 | /* common irq stuff */ | 
| 234 | extern void (*sni_hwint)(void); | 241 | extern void (*sni_hwint)(void); | 
| diff --git a/include/asm-mips/unistd.h b/include/asm-mips/unistd.h index fa9a587b3bf1..4964c82f85f9 100644 --- a/include/asm-mips/unistd.h +++ b/include/asm-mips/unistd.h | |||
| @@ -341,16 +341,19 @@ | |||
| 341 | #define __NR_timerfd (__NR_Linux + 318) | 341 | #define __NR_timerfd (__NR_Linux + 318) | 
| 342 | #define __NR_eventfd (__NR_Linux + 319) | 342 | #define __NR_eventfd (__NR_Linux + 319) | 
| 343 | #define __NR_fallocate (__NR_Linux + 320) | 343 | #define __NR_fallocate (__NR_Linux + 320) | 
| 344 | #define __NR_timerfd_create (__NR_Linux + 321) | ||
| 345 | #define __NR_timerfd_gettime (__NR_Linux + 322) | ||
| 346 | #define __NR_timerfd_settime (__NR_Linux + 323) | ||
| 344 | 347 | ||
| 345 | /* | 348 | /* | 
| 346 | * Offset of the last Linux o32 flavoured syscall | 349 | * Offset of the last Linux o32 flavoured syscall | 
| 347 | */ | 350 | */ | 
| 348 | #define __NR_Linux_syscalls 320 | 351 | #define __NR_Linux_syscalls 323 | 
| 349 | 352 | ||
| 350 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ | 353 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ | 
| 351 | 354 | ||
| 352 | #define __NR_O32_Linux 4000 | 355 | #define __NR_O32_Linux 4000 | 
| 353 | #define __NR_O32_Linux_syscalls 320 | 356 | #define __NR_O32_Linux_syscalls 323 | 
| 354 | 357 | ||
| 355 | #if _MIPS_SIM == _MIPS_SIM_ABI64 | 358 | #if _MIPS_SIM == _MIPS_SIM_ABI64 | 
| 356 | 359 | ||
| @@ -638,16 +641,19 @@ | |||
| 638 | #define __NR_timerfd (__NR_Linux + 277) | 641 | #define __NR_timerfd (__NR_Linux + 277) | 
| 639 | #define __NR_eventfd (__NR_Linux + 278) | 642 | #define __NR_eventfd (__NR_Linux + 278) | 
| 640 | #define __NR_fallocate (__NR_Linux + 279) | 643 | #define __NR_fallocate (__NR_Linux + 279) | 
| 644 | #define __NR_timerfd_create (__NR_Linux + 280) | ||
| 645 | #define __NR_timerfd_gettime (__NR_Linux + 281) | ||
| 646 | #define __NR_timerfd_settime (__NR_Linux + 282) | ||
| 641 | 647 | ||
| 642 | /* | 648 | /* | 
| 643 | * Offset of the last Linux 64-bit flavoured syscall | 649 | * Offset of the last Linux 64-bit flavoured syscall | 
| 644 | */ | 650 | */ | 
| 645 | #define __NR_Linux_syscalls 279 | 651 | #define __NR_Linux_syscalls 282 | 
| 646 | 652 | ||
| 647 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ | 653 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ | 
| 648 | 654 | ||
| 649 | #define __NR_64_Linux 5000 | 655 | #define __NR_64_Linux 5000 | 
| 650 | #define __NR_64_Linux_syscalls 279 | 656 | #define __NR_64_Linux_syscalls 282 | 
| 651 | 657 | ||
| 652 | #if _MIPS_SIM == _MIPS_SIM_NABI32 | 658 | #if _MIPS_SIM == _MIPS_SIM_NABI32 | 
| 653 | 659 | ||
| @@ -939,16 +945,19 @@ | |||
| 939 | #define __NR_timerfd (__NR_Linux + 281) | 945 | #define __NR_timerfd (__NR_Linux + 281) | 
| 940 | #define __NR_eventfd (__NR_Linux + 282) | 946 | #define __NR_eventfd (__NR_Linux + 282) | 
| 941 | #define __NR_fallocate (__NR_Linux + 283) | 947 | #define __NR_fallocate (__NR_Linux + 283) | 
| 948 | #define __NR_timerfd_create (__NR_Linux + 284) | ||
| 949 | #define __NR_timerfd_gettime (__NR_Linux + 285) | ||
| 950 | #define __NR_timerfd_settime (__NR_Linux + 286) | ||
| 942 | 951 | ||
| 943 | /* | 952 | /* | 
| 944 | * Offset of the last N32 flavoured syscall | 953 | * Offset of the last N32 flavoured syscall | 
| 945 | */ | 954 | */ | 
| 946 | #define __NR_Linux_syscalls 283 | 955 | #define __NR_Linux_syscalls 286 | 
| 947 | 956 | ||
| 948 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ | 957 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ | 
| 949 | 958 | ||
| 950 | #define __NR_N32_Linux 6000 | 959 | #define __NR_N32_Linux 6000 | 
| 951 | #define __NR_N32_Linux_syscalls 283 | 960 | #define __NR_N32_Linux_syscalls 286 | 
| 952 | 961 | ||
| 953 | #ifdef __KERNEL__ | 962 | #ifdef __KERNEL__ | 
| 954 | 963 | ||
