diff options
27 files changed, 803 insertions, 809 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 69648d01acc0..ad36c946ff96 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -538,19 +538,19 @@ cflags-$(CONFIG_SIBYTE_BCM1x80) += -Iinclude/asm-mips/mach-sibyte \ | |||
538 | # Sibyte SWARM board | 538 | # Sibyte SWARM board |
539 | # Sibyte BCM91x80 (BigSur) board | 539 | # Sibyte BCM91x80 (BigSur) board |
540 | # | 540 | # |
541 | libs-$(CONFIG_SIBYTE_CARMEL) += arch/mips/sibyte/swarm/ | 541 | core-$(CONFIG_SIBYTE_CARMEL) += arch/mips/sibyte/swarm/ |
542 | load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000 | 542 | load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000 |
543 | libs-$(CONFIG_SIBYTE_CRHINE) += arch/mips/sibyte/swarm/ | 543 | core-$(CONFIG_SIBYTE_CRHINE) += arch/mips/sibyte/swarm/ |
544 | load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000 | 544 | load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000 |
545 | libs-$(CONFIG_SIBYTE_CRHONE) += arch/mips/sibyte/swarm/ | 545 | core-$(CONFIG_SIBYTE_CRHONE) += arch/mips/sibyte/swarm/ |
546 | load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 | 546 | load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 |
547 | libs-$(CONFIG_SIBYTE_RHONE) += arch/mips/sibyte/swarm/ | 547 | core-$(CONFIG_SIBYTE_RHONE) += arch/mips/sibyte/swarm/ |
548 | load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 | 548 | load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 |
549 | libs-$(CONFIG_SIBYTE_SENTOSA) += arch/mips/sibyte/swarm/ | 549 | core-$(CONFIG_SIBYTE_SENTOSA) += arch/mips/sibyte/swarm/ |
550 | load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 | 550 | load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 |
551 | libs-$(CONFIG_SIBYTE_SWARM) += arch/mips/sibyte/swarm/ | 551 | core-$(CONFIG_SIBYTE_SWARM) += arch/mips/sibyte/swarm/ |
552 | load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 | 552 | load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 |
553 | libs-$(CONFIG_SIBYTE_BIGSUR) += arch/mips/sibyte/swarm/ | 553 | core-$(CONFIG_SIBYTE_BIGSUR) += arch/mips/sibyte/swarm/ |
554 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 | 554 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 |
555 | 555 | ||
556 | # | 556 | # |
@@ -565,7 +565,11 @@ load-$(CONFIG_BCM47XX) := 0xffffffff80001000 | |||
565 | # | 565 | # |
566 | core-$(CONFIG_SNI_RM) += arch/mips/sni/ | 566 | core-$(CONFIG_SNI_RM) += arch/mips/sni/ |
567 | cflags-$(CONFIG_SNI_RM) += -Iinclude/asm-mips/mach-rm | 567 | cflags-$(CONFIG_SNI_RM) += -Iinclude/asm-mips/mach-rm |
568 | ifdef CONFIG_CPU_LITTLE_ENDIAN | ||
568 | load-$(CONFIG_SNI_RM) += 0xffffffff80600000 | 569 | load-$(CONFIG_SNI_RM) += 0xffffffff80600000 |
570 | else | ||
571 | load-$(CONFIG_SNI_RM) += 0xffffffff80030000 | ||
572 | endif | ||
569 | all-$(CONFIG_SNI_RM) := vmlinux.ecoff | 573 | all-$(CONFIG_SNI_RM) := vmlinux.ecoff |
570 | 574 | ||
571 | # | 575 | # |
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index 8cae7753ef79..74d6d4a593be 100644 --- a/arch/mips/au1000/common/platform.c +++ b/arch/mips/au1000/common/platform.c | |||
@@ -165,12 +165,12 @@ static struct resource au1xxx_usb_gdt_resources[] = { | |||
165 | static struct resource au1xxx_mmc_resources[] = { | 165 | static struct resource au1xxx_mmc_resources[] = { |
166 | [0] = { | 166 | [0] = { |
167 | .start = SD0_PHYS_ADDR, | 167 | .start = SD0_PHYS_ADDR, |
168 | .end = SD0_PHYS_ADDR + 0x40, | 168 | .end = SD0_PHYS_ADDR + 0x7ffff, |
169 | .flags = IORESOURCE_MEM, | 169 | .flags = IORESOURCE_MEM, |
170 | }, | 170 | }, |
171 | [1] = { | 171 | [1] = { |
172 | .start = SD1_PHYS_ADDR, | 172 | .start = SD1_PHYS_ADDR, |
173 | .end = SD1_PHYS_ADDR + 0x40, | 173 | .end = SD1_PHYS_ADDR + 0x7ffff, |
174 | .flags = IORESOURCE_MEM, | 174 | .flags = IORESOURCE_MEM, |
175 | }, | 175 | }, |
176 | [2] = { | 176 | [2] = { |
diff --git a/arch/mips/configs/sb1250-swarm_defconfig b/arch/mips/configs/sb1250-swarm_defconfig index 117470b60e34..4b8799802788 100644 --- a/arch/mips/configs/sb1250-swarm_defconfig +++ b/arch/mips/configs/sb1250-swarm_defconfig | |||
@@ -1,67 +1,58 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.20 | 3 | # Linux kernel version: 2.6.25 |
4 | # Tue Feb 20 21:47:40 2007 | 4 | # Sat May 3 00:38:11 2008 |
5 | # | 5 | # |
6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
7 | 7 | ||
8 | # | 8 | # |
9 | # Machine selection | 9 | # Machine selection |
10 | # | 10 | # |
11 | CONFIG_ZONE_DMA=y | 11 | # CONFIG_MACH_ALCHEMY is not set |
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 | 12 | # CONFIG_BASLER_EXCITE is not set |
13 | # CONFIG_BCM47XX is not set | ||
26 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
27 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
28 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
17 | # CONFIG_LASAT is not set | ||
18 | # CONFIG_LEMOTE_FULONG is not set | ||
29 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
30 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
31 | # CONFIG_MIPS_SEAD is not set | 21 | # CONFIG_MIPS_SEAD is not set |
32 | # CONFIG_WR_PPMC is not set | ||
33 | # CONFIG_MIPS_SIM is not set | 22 | # CONFIG_MIPS_SIM is not set |
34 | # CONFIG_MOMENCO_JAGUAR_ATX is not set | 23 | # CONFIG_MARKEINS is not set |
35 | # CONFIG_MIPS_XXS1500 is not set | 24 | # CONFIG_MACH_VR41XX is not set |
36 | # CONFIG_PNX8550_JBS is not set | 25 | # CONFIG_PNX8550_JBS is not set |
37 | # CONFIG_PNX8550_STB810 is not set | 26 | # CONFIG_PNX8550_STB810 is not set |
38 | # CONFIG_MACH_VR41XX is not set | 27 | # CONFIG_PMC_MSP is not set |
39 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
40 | # CONFIG_MARKEINS is not set | ||
41 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
42 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
31 | # CONFIG_SGI_IP28 is not set | ||
43 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
44 | # CONFIG_SIBYTE_BIGSUR is not set | ||
45 | CONFIG_SIBYTE_SWARM=y | ||
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 | 33 | # CONFIG_SIBYTE_CRHINE is not set |
34 | # CONFIG_SIBYTE_CARMEL is not set | ||
51 | # CONFIG_SIBYTE_CRHONE is not set | 35 | # CONFIG_SIBYTE_CRHONE is not set |
36 | # CONFIG_SIBYTE_RHONE is not set | ||
37 | CONFIG_SIBYTE_SWARM=y | ||
38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
52 | # CONFIG_SNI_RM is not set | 41 | # CONFIG_SNI_RM is not set |
53 | # CONFIG_TOSHIBA_JMR3927 is not set | 42 | # CONFIG_TOSHIBA_JMR3927 is not set |
54 | # CONFIG_TOSHIBA_RBTX4927 is not set | 43 | # CONFIG_TOSHIBA_RBTX4927 is not set |
55 | # CONFIG_TOSHIBA_RBTX4938 is not set | 44 | # CONFIG_TOSHIBA_RBTX4938 is not set |
45 | # CONFIG_WR_PPMC is not set | ||
56 | CONFIG_SIBYTE_SB1250=y | 46 | CONFIG_SIBYTE_SB1250=y |
57 | CONFIG_SIBYTE_SB1xxx_SOC=y | 47 | CONFIG_SIBYTE_SB1xxx_SOC=y |
58 | CONFIG_CPU_SB1_PASS_1=y | 48 | # CONFIG_CPU_SB1_PASS_1 is not set |
59 | # CONFIG_CPU_SB1_PASS_2_1250 is not set | 49 | # CONFIG_CPU_SB1_PASS_2_1250 is not set |
60 | # CONFIG_CPU_SB1_PASS_2_2 is not set | 50 | CONFIG_CPU_SB1_PASS_2_2=y |
61 | # CONFIG_CPU_SB1_PASS_4 is not set | 51 | # CONFIG_CPU_SB1_PASS_4 is not set |
62 | # CONFIG_CPU_SB1_PASS_2_112x is not set | 52 | # CONFIG_CPU_SB1_PASS_2_112x is not set |
63 | # CONFIG_CPU_SB1_PASS_3 is not set | 53 | # CONFIG_CPU_SB1_PASS_3 is not set |
64 | CONFIG_SIBYTE_HAS_LDT=y | 54 | CONFIG_SIBYTE_HAS_LDT=y |
55 | CONFIG_SIBYTE_ENABLE_LDT_IF_PCI=y | ||
65 | # CONFIG_SIMULATION is not set | 56 | # CONFIG_SIMULATION is not set |
66 | # CONFIG_SB1_CEX_ALWAYS_FATAL is not set | 57 | # CONFIG_SB1_CEX_ALWAYS_FATAL is not set |
67 | # CONFIG_SB1_CERR_STALL is not set | 58 | # CONFIG_SB1_CERR_STALL is not set |
@@ -69,20 +60,32 @@ CONFIG_SIBYTE_CFE=y | |||
69 | # CONFIG_SIBYTE_CFE_CONSOLE is not set | 60 | # CONFIG_SIBYTE_CFE_CONSOLE is not set |
70 | # CONFIG_SIBYTE_BUS_WATCHER is not set | 61 | # CONFIG_SIBYTE_BUS_WATCHER is not set |
71 | # CONFIG_SIBYTE_TBPROF is not set | 62 | # CONFIG_SIBYTE_TBPROF is not set |
63 | CONFIG_SIBYTE_HAS_ZBUS_PROFILING=y | ||
72 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 64 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
73 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 65 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
74 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 66 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
67 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
75 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 68 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
76 | CONFIG_GENERIC_HWEIGHT=y | 69 | CONFIG_GENERIC_HWEIGHT=y |
77 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 70 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
71 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
78 | CONFIG_GENERIC_TIME=y | 72 | CONFIG_GENERIC_TIME=y |
73 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
79 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 74 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
80 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | 75 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set |
76 | CONFIG_CEVT_SB1250=y | ||
77 | CONFIG_CSRC_SB1250=y | ||
78 | CONFIG_CFE=y | ||
81 | CONFIG_DMA_COHERENT=y | 79 | CONFIG_DMA_COHERENT=y |
80 | CONFIG_EARLY_PRINTK=y | ||
81 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
82 | # CONFIG_HOTPLUG_CPU is not set | ||
83 | # CONFIG_NO_IOPORT is not set | ||
82 | CONFIG_CPU_BIG_ENDIAN=y | 84 | CONFIG_CPU_BIG_ENDIAN=y |
83 | # CONFIG_CPU_LITTLE_ENDIAN is not set | 85 | # CONFIG_CPU_LITTLE_ENDIAN is not set |
84 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | 86 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y |
85 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | 87 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y |
88 | CONFIG_IRQ_CPU=y | ||
86 | CONFIG_SWAP_IO_SPACE=y | 89 | CONFIG_SWAP_IO_SPACE=y |
87 | CONFIG_BOOT_ELF32=y | 90 | CONFIG_BOOT_ELF32=y |
88 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | 91 | CONFIG_MIPS_L1_CACHE_SHIFT=5 |
@@ -90,6 +93,7 @@ CONFIG_MIPS_L1_CACHE_SHIFT=5 | |||
90 | # | 93 | # |
91 | # CPU selection | 94 | # CPU selection |
92 | # | 95 | # |
96 | # CONFIG_CPU_LOONGSON2 is not set | ||
93 | # CONFIG_CPU_MIPS32_R1 is not set | 97 | # CONFIG_CPU_MIPS32_R1 is not set |
94 | # CONFIG_CPU_MIPS32_R2 is not set | 98 | # CONFIG_CPU_MIPS32_R2 is not set |
95 | # CONFIG_CPU_MIPS64_R1 is not set | 99 | # CONFIG_CPU_MIPS64_R1 is not set |
@@ -130,8 +134,7 @@ CONFIG_CPU_HAS_PREFETCH=y | |||
130 | CONFIG_MIPS_MT_DISABLED=y | 134 | CONFIG_MIPS_MT_DISABLED=y |
131 | # CONFIG_MIPS_MT_SMP is not set | 135 | # CONFIG_MIPS_MT_SMP is not set |
132 | # CONFIG_MIPS_MT_SMTC is not set | 136 | # CONFIG_MIPS_MT_SMTC is not set |
133 | # CONFIG_MIPS_VPE_LOADER is not set | 137 | CONFIG_SB1_PASS_2_WORKAROUNDS=y |
134 | CONFIG_SB1_PASS_1_WORKAROUNDS=y | ||
135 | CONFIG_CPU_HAS_LLSC=y | 138 | CONFIG_CPU_HAS_LLSC=y |
136 | CONFIG_CPU_HAS_SYNC=y | 139 | CONFIG_CPU_HAS_SYNC=y |
137 | CONFIG_GENERIC_HARDIRQS=y | 140 | CONFIG_GENERIC_HARDIRQS=y |
@@ -140,6 +143,7 @@ CONFIG_IRQ_PER_CPU=y | |||
140 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | 143 | CONFIG_CPU_SUPPORTS_HIGHMEM=y |
141 | CONFIG_SYS_SUPPORTS_HIGHMEM=y | 144 | CONFIG_SYS_SUPPORTS_HIGHMEM=y |
142 | CONFIG_ARCH_FLATMEM_ENABLE=y | 145 | CONFIG_ARCH_FLATMEM_ENABLE=y |
146 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
143 | CONFIG_SELECT_MEMORY_MODEL=y | 147 | CONFIG_SELECT_MEMORY_MODEL=y |
144 | CONFIG_FLATMEM_MANUAL=y | 148 | CONFIG_FLATMEM_MANUAL=y |
145 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 149 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
@@ -147,13 +151,19 @@ CONFIG_FLATMEM_MANUAL=y | |||
147 | CONFIG_FLATMEM=y | 151 | CONFIG_FLATMEM=y |
148 | CONFIG_FLAT_NODE_MEM_MAP=y | 152 | CONFIG_FLAT_NODE_MEM_MAP=y |
149 | # CONFIG_SPARSEMEM_STATIC is not set | 153 | # CONFIG_SPARSEMEM_STATIC is not set |
154 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
150 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 155 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
151 | CONFIG_RESOURCES_64BIT=y | 156 | CONFIG_RESOURCES_64BIT=y |
152 | CONFIG_ZONE_DMA_FLAG=1 | 157 | CONFIG_ZONE_DMA_FLAG=0 |
158 | CONFIG_VIRT_TO_BUS=y | ||
153 | CONFIG_SMP=y | 159 | CONFIG_SMP=y |
154 | CONFIG_SYS_SUPPORTS_SMP=y | 160 | CONFIG_SYS_SUPPORTS_SMP=y |
155 | CONFIG_NR_CPUS_DEFAULT_2=y | 161 | CONFIG_NR_CPUS_DEFAULT_2=y |
156 | CONFIG_NR_CPUS=2 | 162 | CONFIG_NR_CPUS=2 |
163 | CONFIG_TICK_ONESHOT=y | ||
164 | # CONFIG_NO_HZ is not set | ||
165 | CONFIG_HIGH_RES_TIMERS=y | ||
166 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
157 | # CONFIG_HZ_48 is not set | 167 | # CONFIG_HZ_48 is not set |
158 | # CONFIG_HZ_100 is not set | 168 | # CONFIG_HZ_100 is not set |
159 | # CONFIG_HZ_128 is not set | 169 | # CONFIG_HZ_128 is not set |
@@ -166,38 +176,49 @@ CONFIG_HZ=1000 | |||
166 | CONFIG_PREEMPT_NONE=y | 176 | CONFIG_PREEMPT_NONE=y |
167 | # CONFIG_PREEMPT_VOLUNTARY is not set | 177 | # CONFIG_PREEMPT_VOLUNTARY is not set |
168 | # CONFIG_PREEMPT is not set | 178 | # CONFIG_PREEMPT is not set |
169 | CONFIG_PREEMPT_BKL=y | ||
170 | # CONFIG_KEXEC is not set | 179 | # CONFIG_KEXEC is not set |
180 | CONFIG_SECCOMP=y | ||
171 | CONFIG_LOCKDEP_SUPPORT=y | 181 | CONFIG_LOCKDEP_SUPPORT=y |
172 | CONFIG_STACKTRACE_SUPPORT=y | 182 | CONFIG_STACKTRACE_SUPPORT=y |
173 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 183 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
174 | 184 | ||
175 | # | 185 | # |
176 | # Code maturity level options | 186 | # General setup |
177 | # | 187 | # |
178 | CONFIG_EXPERIMENTAL=y | 188 | CONFIG_EXPERIMENTAL=y |
179 | CONFIG_LOCK_KERNEL=y | 189 | CONFIG_LOCK_KERNEL=y |
180 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 190 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
181 | |||
182 | # | ||
183 | # General setup | ||
184 | # | ||
185 | CONFIG_LOCALVERSION="" | 191 | CONFIG_LOCALVERSION="" |
186 | CONFIG_LOCALVERSION_AUTO=y | 192 | CONFIG_LOCALVERSION_AUTO=y |
187 | CONFIG_SWAP=y | 193 | CONFIG_SWAP=y |
188 | CONFIG_SYSVIPC=y | 194 | CONFIG_SYSVIPC=y |
189 | # CONFIG_IPC_NS is not set | ||
190 | CONFIG_SYSVIPC_SYSCTL=y | 195 | CONFIG_SYSVIPC_SYSCTL=y |
191 | # CONFIG_POSIX_MQUEUE is not set | 196 | # CONFIG_POSIX_MQUEUE is not set |
192 | # CONFIG_BSD_PROCESS_ACCT is not set | 197 | # CONFIG_BSD_PROCESS_ACCT is not set |
193 | # CONFIG_TASKSTATS is not set | 198 | # CONFIG_TASKSTATS is not set |
194 | # CONFIG_UTS_NS is not set | ||
195 | # CONFIG_AUDIT is not set | 199 | # CONFIG_AUDIT is not set |
196 | # CONFIG_IKCONFIG is not set | 200 | # CONFIG_IKCONFIG is not set |
201 | CONFIG_LOG_BUF_SHIFT=15 | ||
197 | CONFIG_CGROUPS=y | 202 | CONFIG_CGROUPS=y |
203 | # CONFIG_CGROUP_DEBUG is not set | ||
204 | # CONFIG_CGROUP_NS is not set | ||
198 | CONFIG_CPUSETS=y | 205 | CONFIG_CPUSETS=y |
199 | CONFIG_SYSFS_DEPRECATED=y | 206 | CONFIG_GROUP_SCHED=y |
207 | CONFIG_FAIR_GROUP_SCHED=y | ||
208 | # CONFIG_RT_GROUP_SCHED is not set | ||
209 | CONFIG_USER_SCHED=y | ||
210 | # CONFIG_CGROUP_SCHED is not set | ||
211 | CONFIG_CGROUP_CPUACCT=y | ||
212 | # CONFIG_RESOURCE_COUNTERS is not set | ||
213 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | ||
214 | # CONFIG_PROC_PID_CPUSET is not set | ||
200 | CONFIG_RELAY=y | 215 | CONFIG_RELAY=y |
216 | CONFIG_NAMESPACES=y | ||
217 | # CONFIG_UTS_NS is not set | ||
218 | # CONFIG_IPC_NS is not set | ||
219 | # CONFIG_USER_NS is not set | ||
220 | # CONFIG_PID_NS is not set | ||
221 | CONFIG_BLK_DEV_INITRD=y | ||
201 | CONFIG_INITRAMFS_SOURCE="" | 222 | CONFIG_INITRAMFS_SOURCE="" |
202 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 223 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
203 | CONFIG_SYSCTL=y | 224 | CONFIG_SYSCTL=y |
@@ -209,20 +230,29 @@ CONFIG_HOTPLUG=y | |||
209 | CONFIG_PRINTK=y | 230 | CONFIG_PRINTK=y |
210 | CONFIG_BUG=y | 231 | CONFIG_BUG=y |
211 | CONFIG_ELF_CORE=y | 232 | CONFIG_ELF_CORE=y |
233 | # CONFIG_COMPAT_BRK is not set | ||
212 | CONFIG_BASE_FULL=y | 234 | CONFIG_BASE_FULL=y |
213 | CONFIG_FUTEX=y | 235 | CONFIG_FUTEX=y |
236 | CONFIG_ANON_INODES=y | ||
214 | CONFIG_EPOLL=y | 237 | CONFIG_EPOLL=y |
238 | CONFIG_SIGNALFD=y | ||
239 | CONFIG_TIMERFD=y | ||
240 | CONFIG_EVENTFD=y | ||
215 | CONFIG_SHMEM=y | 241 | CONFIG_SHMEM=y |
216 | CONFIG_SLAB=y | ||
217 | CONFIG_VM_EVENT_COUNTERS=y | 242 | CONFIG_VM_EVENT_COUNTERS=y |
243 | CONFIG_SLAB=y | ||
244 | # CONFIG_SLUB is not set | ||
245 | # CONFIG_SLOB is not set | ||
246 | # CONFIG_PROFILING is not set | ||
247 | # CONFIG_MARKERS is not set | ||
248 | CONFIG_HAVE_OPROFILE=y | ||
249 | # CONFIG_HAVE_KPROBES is not set | ||
250 | # CONFIG_HAVE_KRETPROBES is not set | ||
251 | CONFIG_PROC_PAGE_MONITOR=y | ||
252 | CONFIG_SLABINFO=y | ||
218 | CONFIG_RT_MUTEXES=y | 253 | CONFIG_RT_MUTEXES=y |
219 | # CONFIG_TINY_SHMEM is not set | 254 | # CONFIG_TINY_SHMEM is not set |
220 | CONFIG_BASE_SMALL=0 | 255 | CONFIG_BASE_SMALL=0 |
221 | # CONFIG_SLOB is not set | ||
222 | |||
223 | # | ||
224 | # Loadable module support | ||
225 | # | ||
226 | CONFIG_MODULES=y | 256 | CONFIG_MODULES=y |
227 | CONFIG_MODULE_UNLOAD=y | 257 | CONFIG_MODULE_UNLOAD=y |
228 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 258 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
@@ -230,12 +260,10 @@ CONFIG_MODVERSIONS=y | |||
230 | CONFIG_MODULE_SRCVERSION_ALL=y | 260 | CONFIG_MODULE_SRCVERSION_ALL=y |
231 | CONFIG_KMOD=y | 261 | CONFIG_KMOD=y |
232 | CONFIG_STOP_MACHINE=y | 262 | CONFIG_STOP_MACHINE=y |
233 | |||
234 | # | ||
235 | # Block layer | ||
236 | # | ||
237 | CONFIG_BLOCK=y | 263 | CONFIG_BLOCK=y |
238 | # CONFIG_BLK_DEV_IO_TRACE is not set | 264 | # CONFIG_BLK_DEV_IO_TRACE is not set |
265 | CONFIG_BLK_DEV_BSG=y | ||
266 | CONFIG_BLOCK_COMPAT=y | ||
239 | 267 | ||
240 | # | 268 | # |
241 | # IO Schedulers | 269 | # IO Schedulers |
@@ -249,22 +277,19 @@ CONFIG_DEFAULT_AS=y | |||
249 | # CONFIG_DEFAULT_CFQ is not set | 277 | # CONFIG_DEFAULT_CFQ is not set |
250 | # CONFIG_DEFAULT_NOOP is not set | 278 | # CONFIG_DEFAULT_NOOP is not set |
251 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 279 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
280 | CONFIG_CLASSIC_RCU=y | ||
252 | 281 | ||
253 | # | 282 | # |
254 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 283 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
255 | # | 284 | # |
256 | CONFIG_HW_HAS_PCI=y | 285 | CONFIG_HW_HAS_PCI=y |
257 | CONFIG_PCI=y | 286 | CONFIG_PCI=y |
287 | CONFIG_PCI_DOMAINS=y | ||
288 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
289 | # CONFIG_PCI_LEGACY is not set | ||
258 | CONFIG_MMU=y | 290 | CONFIG_MMU=y |
259 | 291 | CONFIG_ZONE_DMA32=y | |
260 | # | ||
261 | # PCCARD (PCMCIA/CardBus) support | ||
262 | # | ||
263 | # CONFIG_PCCARD is not set | 292 | # CONFIG_PCCARD is not set |
264 | |||
265 | # | ||
266 | # PCI Hotplug Support | ||
267 | # | ||
268 | # CONFIG_HOTPLUG_PCI is not set | 293 | # CONFIG_HOTPLUG_PCI is not set |
269 | 294 | ||
270 | # | 295 | # |
@@ -272,7 +297,6 @@ CONFIG_MMU=y | |||
272 | # | 297 | # |
273 | CONFIG_BINFMT_ELF=y | 298 | CONFIG_BINFMT_ELF=y |
274 | # CONFIG_BINFMT_MISC is not set | 299 | # CONFIG_BINFMT_MISC is not set |
275 | # CONFIG_BUILD_ELF64 is not set | ||
276 | CONFIG_MIPS32_COMPAT=y | 300 | CONFIG_MIPS32_COMPAT=y |
277 | CONFIG_COMPAT=y | 301 | CONFIG_COMPAT=y |
278 | CONFIG_SYSVIPC_COMPAT=y | 302 | CONFIG_SYSVIPC_COMPAT=y |
@@ -286,7 +310,6 @@ CONFIG_BINFMT_ELF32=y | |||
286 | CONFIG_PM=y | 310 | CONFIG_PM=y |
287 | # CONFIG_PM_LEGACY is not set | 311 | # CONFIG_PM_LEGACY is not set |
288 | # CONFIG_PM_DEBUG is not set | 312 | # CONFIG_PM_DEBUG is not set |
289 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
290 | 313 | ||
291 | # | 314 | # |
292 | # Networking | 315 | # Networking |
@@ -296,7 +319,6 @@ CONFIG_NET=y | |||
296 | # | 319 | # |
297 | # Networking options | 320 | # Networking options |
298 | # | 321 | # |
299 | # CONFIG_NETDEBUG is not set | ||
300 | CONFIG_PACKET=y | 322 | CONFIG_PACKET=y |
301 | CONFIG_PACKET_MMAP=y | 323 | CONFIG_PACKET_MMAP=y |
302 | CONFIG_UNIX=y | 324 | CONFIG_UNIX=y |
@@ -304,6 +326,7 @@ CONFIG_XFRM=y | |||
304 | CONFIG_XFRM_USER=m | 326 | CONFIG_XFRM_USER=m |
305 | # CONFIG_XFRM_SUB_POLICY is not set | 327 | # CONFIG_XFRM_SUB_POLICY is not set |
306 | CONFIG_XFRM_MIGRATE=y | 328 | CONFIG_XFRM_MIGRATE=y |
329 | # CONFIG_XFRM_STATISTICS is not set | ||
307 | CONFIG_NET_KEY=y | 330 | CONFIG_NET_KEY=y |
308 | CONFIG_NET_KEY_MIGRATE=y | 331 | CONFIG_NET_KEY_MIGRATE=y |
309 | CONFIG_INET=y | 332 | CONFIG_INET=y |
@@ -326,6 +349,7 @@ CONFIG_IP_PNP_BOOTP=y | |||
326 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | 349 | CONFIG_INET_XFRM_MODE_TRANSPORT=m |
327 | CONFIG_INET_XFRM_MODE_TUNNEL=m | 350 | CONFIG_INET_XFRM_MODE_TUNNEL=m |
328 | CONFIG_INET_XFRM_MODE_BEET=m | 351 | CONFIG_INET_XFRM_MODE_BEET=m |
352 | CONFIG_INET_LRO=m | ||
329 | CONFIG_INET_DIAG=y | 353 | CONFIG_INET_DIAG=y |
330 | CONFIG_INET_TCP_DIAG=y | 354 | CONFIG_INET_TCP_DIAG=y |
331 | # CONFIG_TCP_CONG_ADVANCED is not set | 355 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -333,24 +357,15 @@ CONFIG_TCP_CONG_CUBIC=y | |||
333 | CONFIG_DEFAULT_TCP_CONG="cubic" | 357 | CONFIG_DEFAULT_TCP_CONG="cubic" |
334 | CONFIG_TCP_MD5SIG=y | 358 | CONFIG_TCP_MD5SIG=y |
335 | # CONFIG_IPV6 is not set | 359 | # CONFIG_IPV6 is not set |
336 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
337 | # CONFIG_INET6_TUNNEL is not set | ||
338 | CONFIG_NETWORK_SECMARK=y | 360 | CONFIG_NETWORK_SECMARK=y |
339 | # CONFIG_NETFILTER is not set | 361 | # CONFIG_NETFILTER is not set |
340 | |||
341 | # | ||
342 | # DCCP Configuration (EXPERIMENTAL) | ||
343 | # | ||
344 | # CONFIG_IP_DCCP is not set | 362 | # CONFIG_IP_DCCP is not set |
345 | 363 | CONFIG_IP_SCTP=m | |
346 | # | 364 | # CONFIG_SCTP_DBG_MSG is not set |
347 | # SCTP Configuration (EXPERIMENTAL) | 365 | # CONFIG_SCTP_DBG_OBJCNT is not set |
348 | # | 366 | # CONFIG_SCTP_HMAC_NONE is not set |
349 | # CONFIG_IP_SCTP is not set | 367 | # CONFIG_SCTP_HMAC_SHA1 is not set |
350 | 368 | CONFIG_SCTP_HMAC_MD5=y | |
351 | # | ||
352 | # TIPC Configuration (EXPERIMENTAL) | ||
353 | # | ||
354 | # CONFIG_TIPC is not set | 369 | # CONFIG_TIPC is not set |
355 | # CONFIG_ATM is not set | 370 | # CONFIG_ATM is not set |
356 | # CONFIG_BRIDGE is not set | 371 | # CONFIG_BRIDGE is not set |
@@ -363,26 +378,52 @@ CONFIG_NETWORK_SECMARK=y | |||
363 | # CONFIG_LAPB is not set | 378 | # CONFIG_LAPB is not set |
364 | # CONFIG_ECONET is not set | 379 | # CONFIG_ECONET is not set |
365 | # CONFIG_WAN_ROUTER is not set | 380 | # CONFIG_WAN_ROUTER is not set |
366 | |||
367 | # | ||
368 | # QoS and/or fair queueing | ||
369 | # | ||
370 | # CONFIG_NET_SCHED is not set | 381 | # CONFIG_NET_SCHED is not set |
382 | CONFIG_NET_SCH_FIFO=y | ||
371 | 383 | ||
372 | # | 384 | # |
373 | # Network testing | 385 | # Network testing |
374 | # | 386 | # |
375 | # CONFIG_NET_PKTGEN is not set | 387 | # CONFIG_NET_PKTGEN is not set |
376 | # CONFIG_HAMRADIO is not set | 388 | # CONFIG_HAMRADIO is not set |
389 | # CONFIG_CAN is not set | ||
377 | # CONFIG_IRDA is not set | 390 | # CONFIG_IRDA is not set |
378 | # CONFIG_BT is not set | 391 | # CONFIG_BT is not set |
392 | # CONFIG_AF_RXRPC is not set | ||
393 | |||
394 | # | ||
395 | # Wireless | ||
396 | # | ||
397 | CONFIG_CFG80211=m | ||
398 | CONFIG_NL80211=y | ||
399 | CONFIG_WIRELESS_EXT=y | ||
400 | CONFIG_MAC80211=m | ||
401 | |||
402 | # | ||
403 | # Rate control algorithm selection | ||
404 | # | ||
405 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
406 | # CONFIG_MAC80211_RC_DEFAULT_NONE is not set | ||
407 | |||
408 | # | ||
409 | # Selecting 'y' for an algorithm will | ||
410 | # | ||
411 | |||
412 | # | ||
413 | # build the algorithm into mac80211. | ||
414 | # | ||
415 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
416 | CONFIG_MAC80211_RC_PID=y | ||
417 | # CONFIG_MAC80211_MESH is not set | ||
418 | # CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT is not set | ||
419 | # CONFIG_MAC80211_DEBUG is not set | ||
379 | CONFIG_IEEE80211=m | 420 | CONFIG_IEEE80211=m |
380 | # CONFIG_IEEE80211_DEBUG is not set | 421 | # CONFIG_IEEE80211_DEBUG is not set |
381 | CONFIG_IEEE80211_CRYPT_WEP=m | 422 | CONFIG_IEEE80211_CRYPT_WEP=m |
382 | CONFIG_IEEE80211_CRYPT_CCMP=m | 423 | CONFIG_IEEE80211_CRYPT_CCMP=m |
383 | CONFIG_IEEE80211_SOFTMAC=m | 424 | CONFIG_IEEE80211_CRYPT_TKIP=m |
384 | # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set | 425 | CONFIG_RFKILL=m |
385 | CONFIG_WIRELESS_EXT=y | 426 | # CONFIG_NET_9P is not set |
386 | 427 | ||
387 | # | 428 | # |
388 | # Device Drivers | 429 | # Device Drivers |
@@ -391,34 +432,15 @@ CONFIG_WIRELESS_EXT=y | |||
391 | # | 432 | # |
392 | # Generic Driver Options | 433 | # Generic Driver Options |
393 | # | 434 | # |
435 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
394 | CONFIG_STANDALONE=y | 436 | CONFIG_STANDALONE=y |
395 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 437 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
396 | CONFIG_FW_LOADER=m | 438 | CONFIG_FW_LOADER=m |
397 | # CONFIG_SYS_HYPERVISOR is not set | 439 | # CONFIG_SYS_HYPERVISOR is not set |
398 | |||
399 | # | ||
400 | # Connector - unified userspace <-> kernelspace linker | ||
401 | # | ||
402 | CONFIG_CONNECTOR=m | 440 | CONFIG_CONNECTOR=m |
403 | |||
404 | # | ||
405 | # Memory Technology Devices (MTD) | ||
406 | # | ||
407 | # CONFIG_MTD is not set | 441 | # CONFIG_MTD is not set |
408 | |||
409 | # | ||
410 | # Parallel port support | ||
411 | # | ||
412 | # CONFIG_PARPORT is not set | 442 | # CONFIG_PARPORT is not set |
413 | 443 | CONFIG_BLK_DEV=y | |
414 | # | ||
415 | # Plug and Play support | ||
416 | # | ||
417 | # CONFIG_PNPACPI is not set | ||
418 | |||
419 | # | ||
420 | # Block devices | ||
421 | # | ||
422 | # CONFIG_BLK_CPQ_DA is not set | 444 | # CONFIG_BLK_CPQ_DA is not set |
423 | # CONFIG_BLK_CPQ_CISS_DA is not set | 445 | # CONFIG_BLK_CPQ_CISS_DA is not set |
424 | # CONFIG_BLK_DEV_DAC960 is not set | 446 | # CONFIG_BLK_DEV_DAC960 is not set |
@@ -427,49 +449,77 @@ CONFIG_CONNECTOR=m | |||
427 | # CONFIG_BLK_DEV_LOOP is not set | 449 | # CONFIG_BLK_DEV_LOOP is not set |
428 | # CONFIG_BLK_DEV_NBD is not set | 450 | # CONFIG_BLK_DEV_NBD is not set |
429 | # CONFIG_BLK_DEV_SX8 is not set | 451 | # CONFIG_BLK_DEV_SX8 is not set |
452 | # CONFIG_BLK_DEV_UB is not set | ||
430 | CONFIG_BLK_DEV_RAM=y | 453 | CONFIG_BLK_DEV_RAM=y |
431 | CONFIG_BLK_DEV_RAM_COUNT=16 | 454 | CONFIG_BLK_DEV_RAM_COUNT=16 |
432 | CONFIG_BLK_DEV_RAM_SIZE=9220 | 455 | CONFIG_BLK_DEV_RAM_SIZE=9220 |
433 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 456 | # CONFIG_BLK_DEV_XIP is not set |
434 | CONFIG_BLK_DEV_INITRD=y | ||
435 | CONFIG_CDROM_PKTCDVD=m | 457 | CONFIG_CDROM_PKTCDVD=m |
436 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | 458 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 |
437 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | 459 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set |
438 | CONFIG_ATA_OVER_ETH=m | 460 | CONFIG_ATA_OVER_ETH=m |
439 | 461 | CONFIG_MISC_DEVICES=y | |
440 | # | 462 | # CONFIG_PHANTOM is not set |
441 | # Misc devices | 463 | # CONFIG_EEPROM_93CX6 is not set |
442 | # | ||
443 | CONFIG_SGI_IOC4=m | 464 | CONFIG_SGI_IOC4=m |
444 | # CONFIG_TIFM_CORE is not set | 465 | # CONFIG_TIFM_CORE is not set |
445 | 466 | # CONFIG_ENCLOSURE_SERVICES is not set | |
446 | # | 467 | CONFIG_HAVE_IDE=y |
447 | # ATA/ATAPI/MFM/RLL support | ||
448 | # | ||
449 | CONFIG_IDE=y | 468 | CONFIG_IDE=y |
450 | CONFIG_IDE_MAX_HWIFS=4 | 469 | CONFIG_IDE_MAX_HWIFS=4 |
451 | CONFIG_BLK_DEV_IDE=y | 470 | CONFIG_BLK_DEV_IDE=y |
452 | 471 | ||
453 | # | 472 | # |
454 | # Please see Documentation/ide.txt for help/info on IDE drives | 473 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
455 | # | 474 | # |
456 | # CONFIG_BLK_DEV_IDE_SATA is not set | 475 | # CONFIG_BLK_DEV_IDE_SATA is not set |
457 | CONFIG_BLK_DEV_IDEDISK=y | 476 | CONFIG_BLK_DEV_IDEDISK=y |
458 | # CONFIG_IDEDISK_MULTI_MODE is not set | 477 | # CONFIG_IDEDISK_MULTI_MODE is not set |
459 | CONFIG_BLK_DEV_IDECD=y | 478 | CONFIG_BLK_DEV_IDECD=y |
479 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | ||
460 | CONFIG_BLK_DEV_IDETAPE=y | 480 | CONFIG_BLK_DEV_IDETAPE=y |
461 | CONFIG_BLK_DEV_IDEFLOPPY=y | 481 | CONFIG_BLK_DEV_IDEFLOPPY=y |
462 | # CONFIG_IDE_TASK_IOCTL is not set | 482 | # CONFIG_IDE_TASK_IOCTL is not set |
483 | CONFIG_IDE_PROC_FS=y | ||
463 | 484 | ||
464 | # | 485 | # |
465 | # IDE chipset support/bugfixes | 486 | # IDE chipset support/bugfixes |
466 | # | 487 | # |
467 | CONFIG_IDE_GENERIC=y | 488 | # CONFIG_IDE_GENERIC is not set |
468 | # CONFIG_BLK_DEV_IDEPCI is not set | 489 | # CONFIG_BLK_DEV_PLATFORM is not set |
490 | |||
491 | # | ||
492 | # PCI IDE chipsets support | ||
493 | # | ||
494 | # CONFIG_BLK_DEV_GENERIC is not set | ||
495 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
496 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
497 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
498 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
499 | # CONFIG_BLK_DEV_CMD64X is not set | ||
500 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
501 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
502 | # CONFIG_BLK_DEV_CS5520 is not set | ||
503 | # CONFIG_BLK_DEV_CS5530 is not set | ||
504 | # CONFIG_BLK_DEV_HPT34X is not set | ||
505 | # CONFIG_BLK_DEV_HPT366 is not set | ||
506 | # CONFIG_BLK_DEV_JMICRON is not set | ||
507 | # CONFIG_BLK_DEV_SC1200 is not set | ||
508 | # CONFIG_BLK_DEV_PIIX is not set | ||
509 | # CONFIG_BLK_DEV_IT8213 is not set | ||
510 | # CONFIG_BLK_DEV_IT821X is not set | ||
511 | # CONFIG_BLK_DEV_NS87415 is not set | ||
512 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
513 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
514 | # CONFIG_BLK_DEV_SVWKS is not set | ||
515 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
516 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
517 | # CONFIG_BLK_DEV_TRM290 is not set | ||
518 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
519 | # CONFIG_BLK_DEV_TC86C001 is not set | ||
469 | CONFIG_BLK_DEV_IDE_SWARM=y | 520 | CONFIG_BLK_DEV_IDE_SWARM=y |
470 | # CONFIG_IDE_ARM is not set | ||
471 | # CONFIG_BLK_DEV_IDEDMA is not set | 521 | # CONFIG_BLK_DEV_IDEDMA is not set |
472 | # CONFIG_IDEDMA_AUTO is not set | 522 | # CONFIG_BLK_DEV_HD_ONLY is not set |
473 | # CONFIG_BLK_DEV_HD is not set | 523 | # CONFIG_BLK_DEV_HD is not set |
474 | 524 | ||
475 | # | 525 | # |
@@ -477,89 +527,68 @@ CONFIG_BLK_DEV_IDE_SWARM=y | |||
477 | # | 527 | # |
478 | CONFIG_RAID_ATTRS=m | 528 | CONFIG_RAID_ATTRS=m |
479 | # CONFIG_SCSI is not set | 529 | # CONFIG_SCSI is not set |
530 | # CONFIG_SCSI_DMA is not set | ||
480 | # CONFIG_SCSI_NETLINK is not set | 531 | # CONFIG_SCSI_NETLINK is not set |
481 | |||
482 | # | ||
483 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
484 | # | ||
485 | # CONFIG_ATA is not set | 532 | # CONFIG_ATA is not set |
486 | |||
487 | # | ||
488 | # Multi-device support (RAID and LVM) | ||
489 | # | ||
490 | # CONFIG_MD is not set | 533 | # CONFIG_MD is not set |
491 | |||
492 | # | ||
493 | # Fusion MPT device support | ||
494 | # | ||
495 | # CONFIG_FUSION is not set | 534 | # CONFIG_FUSION is not set |
496 | 535 | ||
497 | # | 536 | # |
498 | # IEEE 1394 (FireWire) support | 537 | # IEEE 1394 (FireWire) support |
499 | # | 538 | # |
539 | # CONFIG_FIREWIRE is not set | ||
500 | # CONFIG_IEEE1394 is not set | 540 | # CONFIG_IEEE1394 is not set |
501 | |||
502 | # | ||
503 | # I2O device support | ||
504 | # | ||
505 | # CONFIG_I2O is not set | 541 | # CONFIG_I2O is not set |
506 | |||
507 | # | ||
508 | # Network device support | ||
509 | # | ||
510 | CONFIG_NETDEVICES=y | 542 | CONFIG_NETDEVICES=y |
543 | CONFIG_NETDEVICES_MULTIQUEUE=y | ||
511 | # CONFIG_DUMMY is not set | 544 | # CONFIG_DUMMY is not set |
512 | # CONFIG_BONDING is not set | 545 | # CONFIG_BONDING is not set |
546 | CONFIG_MACVLAN=m | ||
513 | # CONFIG_EQUALIZER is not set | 547 | # CONFIG_EQUALIZER is not set |
514 | # CONFIG_TUN is not set | 548 | # CONFIG_TUN is not set |
515 | 549 | # CONFIG_VETH is not set | |
516 | # | ||
517 | # ARCnet devices | ||
518 | # | ||
519 | # CONFIG_ARCNET is not set | 550 | # CONFIG_ARCNET is not set |
520 | 551 | CONFIG_PHYLIB=y | |
521 | # | ||
522 | # PHY device support | ||
523 | # | ||
524 | CONFIG_PHYLIB=m | ||
525 | 552 | ||
526 | # | 553 | # |
527 | # MII PHY device drivers | 554 | # MII PHY device drivers |
528 | # | 555 | # |
529 | CONFIG_MARVELL_PHY=m | 556 | # CONFIG_MARVELL_PHY is not set |
530 | CONFIG_DAVICOM_PHY=m | 557 | # CONFIG_DAVICOM_PHY is not set |
531 | CONFIG_QSEMI_PHY=m | 558 | # CONFIG_QSEMI_PHY is not set |
532 | CONFIG_LXT_PHY=m | 559 | # CONFIG_LXT_PHY is not set |
533 | CONFIG_CICADA_PHY=m | 560 | # CONFIG_CICADA_PHY is not set |
534 | CONFIG_VITESSE_PHY=m | 561 | # CONFIG_VITESSE_PHY is not set |
535 | CONFIG_SMSC_PHY=m | 562 | # CONFIG_SMSC_PHY is not set |
536 | # CONFIG_BROADCOM_PHY is not set | 563 | CONFIG_BROADCOM_PHY=y |
564 | # CONFIG_ICPLUS_PHY is not set | ||
565 | # CONFIG_REALTEK_PHY is not set | ||
537 | # CONFIG_FIXED_PHY is not set | 566 | # CONFIG_FIXED_PHY is not set |
538 | 567 | # CONFIG_MDIO_BITBANG is not set | |
539 | # | ||
540 | # Ethernet (10 or 100Mbit) | ||
541 | # | ||
542 | CONFIG_NET_ETHERNET=y | 568 | CONFIG_NET_ETHERNET=y |
543 | CONFIG_MII=y | 569 | CONFIG_MII=y |
570 | # CONFIG_AX88796 is not set | ||
544 | # CONFIG_HAPPYMEAL is not set | 571 | # CONFIG_HAPPYMEAL is not set |
545 | # CONFIG_SUNGEM is not set | 572 | # CONFIG_SUNGEM is not set |
546 | # CONFIG_CASSINI is not set | 573 | # CONFIG_CASSINI is not set |
547 | # CONFIG_NET_VENDOR_3COM is not set | 574 | # CONFIG_NET_VENDOR_3COM is not set |
548 | # CONFIG_DM9000 is not set | 575 | # CONFIG_DM9000 is not set |
549 | |||
550 | # | ||
551 | # Tulip family network device support | ||
552 | # | ||
553 | # CONFIG_NET_TULIP is not set | 576 | # CONFIG_NET_TULIP is not set |
554 | # CONFIG_HP100 is not set | 577 | # CONFIG_HP100 is not set |
578 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
579 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
580 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
581 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
555 | # CONFIG_NET_PCI is not set | 582 | # CONFIG_NET_PCI is not set |
556 | 583 | # CONFIG_B44 is not set | |
557 | # | 584 | CONFIG_NETDEV_1000=y |
558 | # Ethernet (1000 Mbit) | ||
559 | # | ||
560 | # CONFIG_ACENIC is not set | 585 | # CONFIG_ACENIC is not set |
561 | # CONFIG_DL2K is not set | 586 | # CONFIG_DL2K is not set |
562 | # CONFIG_E1000 is not set | 587 | # CONFIG_E1000 is not set |
588 | # CONFIG_E1000E is not set | ||
589 | # CONFIG_E1000E_ENABLED is not set | ||
590 | # CONFIG_IP1000 is not set | ||
591 | # CONFIG_IGB is not set | ||
563 | # CONFIG_NS83820 is not set | 592 | # CONFIG_NS83820 is not set |
564 | # CONFIG_HAMACHI is not set | 593 | # CONFIG_HAMACHI is not set |
565 | # CONFIG_YELLOWFIN is not set | 594 | # CONFIG_YELLOWFIN is not set |
@@ -568,53 +597,70 @@ CONFIG_SB1250_MAC=y | |||
568 | # CONFIG_SIS190 is not set | 597 | # CONFIG_SIS190 is not set |
569 | # CONFIG_SKGE is not set | 598 | # CONFIG_SKGE is not set |
570 | # CONFIG_SKY2 is not set | 599 | # CONFIG_SKY2 is not set |
571 | # CONFIG_SK98LIN is not set | 600 | # CONFIG_VIA_VELOCITY is not set |
572 | # CONFIG_TIGON3 is not set | 601 | # CONFIG_TIGON3 is not set |
573 | # CONFIG_BNX2 is not set | 602 | # CONFIG_BNX2 is not set |
574 | CONFIG_QLA3XXX=m | 603 | # CONFIG_QLA3XXX is not set |
575 | # CONFIG_ATL1 is not set | 604 | # CONFIG_ATL1 is not set |
576 | 605 | CONFIG_NETDEV_10000=y | |
577 | # | ||
578 | # Ethernet (10000 Mbit) | ||
579 | # | ||
580 | # CONFIG_CHELSIO_T1 is not set | 606 | # CONFIG_CHELSIO_T1 is not set |
581 | CONFIG_CHELSIO_T3=m | 607 | # CONFIG_CHELSIO_T3 is not set |
608 | # CONFIG_IXGBE is not set | ||
582 | # CONFIG_IXGB is not set | 609 | # CONFIG_IXGB is not set |
583 | # CONFIG_S2IO is not set | 610 | # CONFIG_S2IO is not set |
584 | # CONFIG_MYRI10GE is not set | 611 | # CONFIG_MYRI10GE is not set |
585 | CONFIG_NETXEN_NIC=m | 612 | # CONFIG_NETXEN_NIC is not set |
586 | 613 | # CONFIG_NIU is not set | |
587 | # | 614 | # CONFIG_MLX4_CORE is not set |
588 | # Token Ring devices | 615 | # CONFIG_TEHUTI is not set |
589 | # | 616 | # CONFIG_BNX2X is not set |
590 | # CONFIG_TR is not set | 617 | # CONFIG_TR is not set |
591 | 618 | ||
592 | # | 619 | # |
593 | # Wireless LAN (non-hamradio) | 620 | # Wireless LAN |
594 | # | 621 | # |
595 | # CONFIG_NET_RADIO is not set | 622 | # CONFIG_WLAN_PRE80211 is not set |
596 | 623 | CONFIG_WLAN_80211=y | |
597 | # | 624 | # CONFIG_IPW2100 is not set |
598 | # Wan interfaces | 625 | # CONFIG_IPW2200 is not set |
599 | # | 626 | # CONFIG_LIBERTAS is not set |
627 | # CONFIG_HERMES is not set | ||
628 | # CONFIG_ATMEL is not set | ||
629 | # CONFIG_PRISM54 is not set | ||
630 | # CONFIG_USB_ZD1201 is not set | ||
631 | # CONFIG_USB_NET_RNDIS_WLAN is not set | ||
632 | # CONFIG_RTL8180 is not set | ||
633 | # CONFIG_RTL8187 is not set | ||
634 | # CONFIG_ADM8211 is not set | ||
635 | # CONFIG_P54_COMMON is not set | ||
636 | # CONFIG_ATH5K is not set | ||
637 | # CONFIG_IWLCORE is not set | ||
638 | # CONFIG_IWLWIFI_LEDS is not set | ||
639 | # CONFIG_IWL4965 is not set | ||
640 | # CONFIG_IWL3945 is not set | ||
641 | # CONFIG_HOSTAP is not set | ||
642 | # CONFIG_B43 is not set | ||
643 | # CONFIG_B43LEGACY is not set | ||
644 | # CONFIG_ZD1211RW is not set | ||
645 | # CONFIG_RT2X00 is not set | ||
646 | |||
647 | # | ||
648 | # USB Network Adapters | ||
649 | # | ||
650 | # CONFIG_USB_CATC is not set | ||
651 | # CONFIG_USB_KAWETH is not set | ||
652 | # CONFIG_USB_PEGASUS is not set | ||
653 | # CONFIG_USB_RTL8150 is not set | ||
654 | # CONFIG_USB_USBNET is not set | ||
600 | # CONFIG_WAN is not set | 655 | # CONFIG_WAN is not set |
601 | # CONFIG_FDDI is not set | 656 | # CONFIG_FDDI is not set |
602 | # CONFIG_HIPPI is not set | 657 | # CONFIG_HIPPI is not set |
603 | # CONFIG_PPP is not set | 658 | # CONFIG_PPP is not set |
604 | # CONFIG_SLIP is not set | 659 | # CONFIG_SLIP is not set |
605 | # CONFIG_SHAPER is not set | ||
606 | # CONFIG_NETCONSOLE is not set | 660 | # CONFIG_NETCONSOLE is not set |
607 | # CONFIG_NETPOLL is not set | 661 | # CONFIG_NETPOLL is not set |
608 | # CONFIG_NET_POLL_CONTROLLER is not set | 662 | # CONFIG_NET_POLL_CONTROLLER is not set |
609 | |||
610 | # | ||
611 | # ISDN subsystem | ||
612 | # | ||
613 | # CONFIG_ISDN is not set | 663 | # CONFIG_ISDN is not set |
614 | |||
615 | # | ||
616 | # Telephony Support | ||
617 | # | ||
618 | # CONFIG_PHONE is not set | 664 | # CONFIG_PHONE is not set |
619 | 665 | ||
620 | # | 666 | # |
@@ -637,24 +683,8 @@ CONFIG_SERIO_RAW=m | |||
637 | # Character devices | 683 | # Character devices |
638 | # | 684 | # |
639 | # CONFIG_VT is not set | 685 | # CONFIG_VT is not set |
640 | CONFIG_SERIAL_NONSTANDARD=y | 686 | # CONFIG_SERIAL_NONSTANDARD is not set |
641 | # CONFIG_COMPUTONE is not set | 687 | # CONFIG_NOZOMI is not set |
642 | # CONFIG_ROCKETPORT is not set | ||
643 | # CONFIG_CYCLADES is not set | ||
644 | # CONFIG_DIGIEPCA is not set | ||
645 | # CONFIG_MOXA_INTELLIO is not set | ||
646 | # CONFIG_MOXA_SMARTIO is not set | ||
647 | CONFIG_MOXA_SMARTIO_NEW=m | ||
648 | # CONFIG_ISI is not set | ||
649 | # CONFIG_SYNCLINKMP is not set | ||
650 | # CONFIG_SYNCLINK_GT is not set | ||
651 | # CONFIG_N_HDLC is not set | ||
652 | # CONFIG_SPECIALIX is not set | ||
653 | # CONFIG_SX is not set | ||
654 | # CONFIG_RIO is not set | ||
655 | # CONFIG_STALDRV is not set | ||
656 | CONFIG_SERIAL_SB1250_DUART=y | ||
657 | CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | ||
658 | 688 | ||
659 | # | 689 | # |
660 | # Serial drivers | 690 | # Serial drivers |
@@ -664,37 +694,22 @@ CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | |||
664 | # | 694 | # |
665 | # Non-8250 serial port support | 695 | # Non-8250 serial port support |
666 | # | 696 | # |
697 | CONFIG_SERIAL_SB1250_DUART=y | ||
698 | CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | ||
699 | CONFIG_SERIAL_CORE=y | ||
700 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
667 | # CONFIG_SERIAL_JSM is not set | 701 | # CONFIG_SERIAL_JSM is not set |
668 | CONFIG_UNIX98_PTYS=y | 702 | CONFIG_UNIX98_PTYS=y |
669 | CONFIG_LEGACY_PTYS=y | 703 | CONFIG_LEGACY_PTYS=y |
670 | CONFIG_LEGACY_PTY_COUNT=256 | 704 | CONFIG_LEGACY_PTY_COUNT=256 |
671 | |||
672 | # | ||
673 | # IPMI | ||
674 | # | ||
675 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
676 | |||
677 | # | ||
678 | # Watchdog Cards | ||
679 | # | ||
680 | # CONFIG_WATCHDOG is not set | ||
681 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
682 | # CONFIG_RTC is not set | 707 | # CONFIG_RTC is not set |
683 | # CONFIG_GEN_RTC is not set | ||
684 | # CONFIG_DTLK is not set | ||
685 | # CONFIG_R3964 is not set | 708 | # CONFIG_R3964 is not set |
686 | # CONFIG_APPLICOM is not set | 709 | # CONFIG_APPLICOM is not set |
687 | # CONFIG_DRM is not set | ||
688 | # CONFIG_RAW_DRIVER is not set | 710 | # CONFIG_RAW_DRIVER is not set |
689 | |||
690 | # | ||
691 | # TPM devices | ||
692 | # | ||
693 | # CONFIG_TCG_TPM is not set | 711 | # CONFIG_TCG_TPM is not set |
694 | 712 | CONFIG_DEVPORT=y | |
695 | # | ||
696 | # I2C support | ||
697 | # | ||
698 | # CONFIG_I2C is not set | 713 | # CONFIG_I2C is not set |
699 | 714 | ||
700 | # | 715 | # |
@@ -702,109 +717,139 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
702 | # | 717 | # |
703 | # CONFIG_SPI is not set | 718 | # CONFIG_SPI is not set |
704 | # CONFIG_SPI_MASTER is not set | 719 | # CONFIG_SPI_MASTER is not set |
720 | # CONFIG_W1 is not set | ||
721 | # CONFIG_POWER_SUPPLY is not set | ||
722 | # CONFIG_HWMON is not set | ||
723 | # CONFIG_THERMAL is not set | ||
724 | # CONFIG_WATCHDOG is not set | ||
705 | 725 | ||
706 | # | 726 | # |
707 | # Dallas's 1-wire bus | 727 | # Sonics Silicon Backplane |
708 | # | 728 | # |
709 | # CONFIG_W1 is not set | 729 | CONFIG_SSB_POSSIBLE=y |
730 | # CONFIG_SSB is not set | ||
710 | 731 | ||
711 | # | 732 | # |
712 | # Hardware Monitoring support | 733 | # Multifunction device drivers |
713 | # | 734 | # |
714 | # CONFIG_HWMON is not set | 735 | # CONFIG_MFD_SM501 is not set |
715 | # CONFIG_HWMON_VID is not set | ||
716 | 736 | ||
717 | # | 737 | # |
718 | # Multimedia devices | 738 | # Multimedia devices |
719 | # | 739 | # |
720 | # CONFIG_VIDEO_DEV is not set | 740 | # CONFIG_VIDEO_DEV is not set |
721 | 741 | # CONFIG_DVB_CORE is not set | |
722 | # | 742 | # CONFIG_DAB is not set |
723 | # Digital Video Broadcasting Devices | ||
724 | # | ||
725 | # CONFIG_DVB is not set | ||
726 | 743 | ||
727 | # | 744 | # |
728 | # Graphics support | 745 | # Graphics support |
729 | # | 746 | # |
730 | # CONFIG_FIRMWARE_EDID is not set | 747 | # CONFIG_DRM is not set |
748 | # CONFIG_VGASTATE is not set | ||
749 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
731 | # CONFIG_FB is not set | 750 | # CONFIG_FB is not set |
732 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 751 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
733 | 752 | ||
734 | # | 753 | # |
735 | # Sound | 754 | # Display device support |
736 | # | 755 | # |
737 | # CONFIG_SOUND is not set | 756 | # CONFIG_DISPLAY_SUPPORT is not set |
738 | 757 | ||
739 | # | 758 | # |
740 | # USB support | 759 | # Sound |
741 | # | 760 | # |
761 | # CONFIG_SOUND is not set | ||
762 | CONFIG_USB_SUPPORT=y | ||
742 | CONFIG_USB_ARCH_HAS_HCD=y | 763 | CONFIG_USB_ARCH_HAS_HCD=y |
743 | CONFIG_USB_ARCH_HAS_OHCI=y | 764 | CONFIG_USB_ARCH_HAS_OHCI=y |
744 | CONFIG_USB_ARCH_HAS_EHCI=y | 765 | CONFIG_USB_ARCH_HAS_EHCI=y |
745 | # CONFIG_USB is not set | 766 | CONFIG_USB=y |
746 | 767 | # CONFIG_USB_DEBUG is not set | |
747 | # | 768 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set |
748 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
749 | # | ||
750 | 769 | ||
751 | # | 770 | # |
752 | # USB Gadget Support | 771 | # Miscellaneous USB options |
753 | # | 772 | # |
754 | # CONFIG_USB_GADGET is not set | 773 | CONFIG_USB_DEVICEFS=y |
774 | CONFIG_USB_DEVICE_CLASS=y | ||
775 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
776 | # CONFIG_USB_SUSPEND is not set | ||
777 | # CONFIG_USB_PERSIST is not set | ||
778 | # CONFIG_USB_OTG is not set | ||
755 | 779 | ||
756 | # | 780 | # |
757 | # MMC/SD Card support | 781 | # USB Host Controller Drivers |
758 | # | 782 | # |
759 | # CONFIG_MMC is not set | 783 | # CONFIG_USB_EHCI_HCD is not set |
784 | # CONFIG_USB_ISP116X_HCD is not set | ||
785 | CONFIG_USB_OHCI_HCD=y | ||
786 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
787 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
788 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
789 | # CONFIG_USB_UHCI_HCD is not set | ||
790 | # CONFIG_USB_SL811_HCD is not set | ||
791 | # CONFIG_USB_R8A66597_HCD is not set | ||
760 | 792 | ||
761 | # | 793 | # |
762 | # LED devices | 794 | # USB Device Class drivers |
763 | # | 795 | # |
764 | # CONFIG_NEW_LEDS is not set | 796 | # CONFIG_USB_ACM is not set |
797 | # CONFIG_USB_PRINTER is not set | ||
765 | 798 | ||
766 | # | 799 | # |
767 | # LED drivers | 800 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
768 | # | 801 | # |
769 | 802 | ||
770 | # | 803 | # |
771 | # LED Triggers | 804 | # may also be needed; see USB_STORAGE Help for more information |
772 | # | 805 | # |
806 | # CONFIG_USB_LIBUSUAL is not set | ||
773 | 807 | ||
774 | # | 808 | # |
775 | # InfiniBand support | 809 | # USB Imaging devices |
776 | # | 810 | # |
777 | # CONFIG_INFINIBAND is not set | 811 | # CONFIG_USB_MDC800 is not set |
812 | CONFIG_USB_MON=y | ||
778 | 813 | ||
779 | # | 814 | # |
780 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | 815 | # USB port drivers |
781 | # | 816 | # |
817 | # CONFIG_USB_SERIAL is not set | ||
782 | 818 | ||
783 | # | 819 | # |
784 | # Real Time Clock | 820 | # USB Miscellaneous drivers |
785 | # | 821 | # |
822 | # CONFIG_USB_EMI62 is not set | ||
823 | # CONFIG_USB_EMI26 is not set | ||
824 | # CONFIG_USB_ADUTUX is not set | ||
825 | # CONFIG_USB_AUERSWALD is not set | ||
826 | # CONFIG_USB_RIO500 is not set | ||
827 | # CONFIG_USB_LEGOTOWER is not set | ||
828 | # CONFIG_USB_LCD is not set | ||
829 | # CONFIG_USB_BERRY_CHARGE is not set | ||
830 | # CONFIG_USB_LED is not set | ||
831 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
832 | # CONFIG_USB_CYTHERM is not set | ||
833 | # CONFIG_USB_PHIDGET is not set | ||
834 | # CONFIG_USB_IDMOUSE is not set | ||
835 | # CONFIG_USB_FTDI_ELAN is not set | ||
836 | # CONFIG_USB_APPLEDISPLAY is not set | ||
837 | # CONFIG_USB_LD is not set | ||
838 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
839 | # CONFIG_USB_IOWARRIOR is not set | ||
840 | # CONFIG_USB_TEST is not set | ||
841 | # CONFIG_USB_GADGET is not set | ||
842 | # CONFIG_MMC is not set | ||
843 | # CONFIG_MEMSTICK is not set | ||
844 | # CONFIG_NEW_LEDS is not set | ||
845 | # CONFIG_INFINIBAND is not set | ||
846 | CONFIG_RTC_LIB=y | ||
786 | # CONFIG_RTC_CLASS is not set | 847 | # CONFIG_RTC_CLASS is not set |
787 | 848 | ||
788 | # | 849 | # |
789 | # DMA Engine support | 850 | # Userspace I/O |
790 | # | ||
791 | # CONFIG_DMA_ENGINE is not set | ||
792 | |||
793 | # | ||
794 | # DMA Clients | ||
795 | # | ||
796 | |||
797 | # | ||
798 | # DMA Devices | ||
799 | # | ||
800 | |||
801 | # | ||
802 | # Auxiliary Display support | ||
803 | # | ||
804 | |||
805 | # | ||
806 | # Virtualization | ||
807 | # | 851 | # |
852 | # CONFIG_UIO is not set | ||
808 | 853 | ||
809 | # | 854 | # |
810 | # File systems | 855 | # File systems |
@@ -823,15 +868,14 @@ CONFIG_FS_POSIX_ACL=y | |||
823 | # CONFIG_XFS_FS is not set | 868 | # CONFIG_XFS_FS is not set |
824 | # CONFIG_GFS2_FS is not set | 869 | # CONFIG_GFS2_FS is not set |
825 | # CONFIG_OCFS2_FS is not set | 870 | # CONFIG_OCFS2_FS is not set |
826 | # CONFIG_MINIX_FS is not set | 871 | CONFIG_DNOTIFY=y |
827 | # CONFIG_ROMFS_FS is not set | ||
828 | CONFIG_INOTIFY=y | 872 | CONFIG_INOTIFY=y |
829 | CONFIG_INOTIFY_USER=y | 873 | CONFIG_INOTIFY_USER=y |
830 | # CONFIG_QUOTA is not set | 874 | # CONFIG_QUOTA is not set |
831 | CONFIG_DNOTIFY=y | ||
832 | # CONFIG_AUTOFS_FS is not set | 875 | # CONFIG_AUTOFS_FS is not set |
833 | # CONFIG_AUTOFS4_FS is not set | 876 | # CONFIG_AUTOFS4_FS is not set |
834 | CONFIG_FUSE_FS=m | 877 | CONFIG_FUSE_FS=m |
878 | CONFIG_GENERIC_ACL=y | ||
835 | 879 | ||
836 | # | 880 | # |
837 | # CD-ROM/DVD Filesystems | 881 | # CD-ROM/DVD Filesystems |
@@ -853,9 +897,9 @@ CONFIG_PROC_FS=y | |||
853 | CONFIG_PROC_KCORE=y | 897 | CONFIG_PROC_KCORE=y |
854 | CONFIG_PROC_SYSCTL=y | 898 | CONFIG_PROC_SYSCTL=y |
855 | CONFIG_SYSFS=y | 899 | CONFIG_SYSFS=y |
856 | # CONFIG_TMPFS is not set | 900 | CONFIG_TMPFS=y |
901 | CONFIG_TMPFS_POSIX_ACL=y | ||
857 | # CONFIG_HUGETLB_PAGE is not set | 902 | # CONFIG_HUGETLB_PAGE is not set |
858 | CONFIG_RAMFS=y | ||
859 | CONFIG_CONFIGFS_FS=m | 903 | CONFIG_CONFIGFS_FS=m |
860 | 904 | ||
861 | # | 905 | # |
@@ -871,14 +915,13 @@ CONFIG_CONFIGFS_FS=m | |||
871 | # CONFIG_EFS_FS is not set | 915 | # CONFIG_EFS_FS is not set |
872 | # CONFIG_CRAMFS is not set | 916 | # CONFIG_CRAMFS is not set |
873 | # CONFIG_VXFS_FS is not set | 917 | # CONFIG_VXFS_FS is not set |
918 | # CONFIG_MINIX_FS is not set | ||
874 | # CONFIG_HPFS_FS is not set | 919 | # CONFIG_HPFS_FS is not set |
875 | # CONFIG_QNX4FS_FS is not set | 920 | # CONFIG_QNX4FS_FS is not set |
921 | # CONFIG_ROMFS_FS is not set | ||
876 | # CONFIG_SYSV_FS is not set | 922 | # CONFIG_SYSV_FS is not set |
877 | # CONFIG_UFS_FS is not set | 923 | # CONFIG_UFS_FS is not set |
878 | 924 | CONFIG_NETWORK_FILESYSTEMS=y | |
879 | # | ||
880 | # Network File Systems | ||
881 | # | ||
882 | CONFIG_NFS_FS=y | 925 | CONFIG_NFS_FS=y |
883 | CONFIG_NFS_V3=y | 926 | CONFIG_NFS_V3=y |
884 | # CONFIG_NFS_V3_ACL is not set | 927 | # CONFIG_NFS_V3_ACL is not set |
@@ -890,6 +933,7 @@ CONFIG_LOCKD=y | |||
890 | CONFIG_LOCKD_V4=y | 933 | CONFIG_LOCKD_V4=y |
891 | CONFIG_NFS_COMMON=y | 934 | CONFIG_NFS_COMMON=y |
892 | CONFIG_SUNRPC=y | 935 | CONFIG_SUNRPC=y |
936 | # CONFIG_SUNRPC_BIND34 is not set | ||
893 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 937 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
894 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 938 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
895 | # CONFIG_SMB_FS is not set | 939 | # CONFIG_SMB_FS is not set |
@@ -897,45 +941,29 @@ CONFIG_SUNRPC=y | |||
897 | # CONFIG_NCP_FS is not set | 941 | # CONFIG_NCP_FS is not set |
898 | # CONFIG_CODA_FS is not set | 942 | # CONFIG_CODA_FS is not set |
899 | # CONFIG_AFS_FS is not set | 943 | # CONFIG_AFS_FS is not set |
900 | # CONFIG_9P_FS is not set | ||
901 | 944 | ||
902 | # | 945 | # |
903 | # Partition Types | 946 | # Partition Types |
904 | # | 947 | # |
905 | # CONFIG_PARTITION_ADVANCED is not set | 948 | # CONFIG_PARTITION_ADVANCED is not set |
906 | CONFIG_MSDOS_PARTITION=y | 949 | CONFIG_MSDOS_PARTITION=y |
907 | |||
908 | # | ||
909 | # Native Language Support | ||
910 | # | ||
911 | # CONFIG_NLS is not set | 950 | # CONFIG_NLS is not set |
912 | |||
913 | # | ||
914 | # Distributed Lock Manager | ||
915 | # | ||
916 | CONFIG_DLM=m | 951 | CONFIG_DLM=m |
917 | CONFIG_DLM_TCP=y | ||
918 | # CONFIG_DLM_SCTP is not set | ||
919 | # CONFIG_DLM_DEBUG is not set | 952 | # CONFIG_DLM_DEBUG is not set |
920 | 953 | ||
921 | # | 954 | # |
922 | # Profiling support | ||
923 | # | ||
924 | # CONFIG_PROFILING is not set | ||
925 | |||
926 | # | ||
927 | # Kernel hacking | 955 | # Kernel hacking |
928 | # | 956 | # |
929 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 957 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
930 | # CONFIG_PRINTK_TIME is not set | 958 | # CONFIG_PRINTK_TIME is not set |
959 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
931 | CONFIG_ENABLE_MUST_CHECK=y | 960 | CONFIG_ENABLE_MUST_CHECK=y |
932 | # CONFIG_MAGIC_SYSRQ is not set | 961 | # CONFIG_MAGIC_SYSRQ is not set |
933 | # CONFIG_UNUSED_SYMBOLS is not set | 962 | # CONFIG_UNUSED_SYMBOLS is not set |
934 | # CONFIG_DEBUG_FS is not set | 963 | # CONFIG_DEBUG_FS is not set |
935 | # CONFIG_HEADERS_CHECK is not set | 964 | # CONFIG_HEADERS_CHECK is not set |
936 | # CONFIG_DEBUG_KERNEL is not set | 965 | # CONFIG_DEBUG_KERNEL is not set |
937 | CONFIG_LOG_BUF_SHIFT=15 | 966 | # CONFIG_SAMPLES is not set |
938 | CONFIG_CROSSCOMPILE=y | ||
939 | CONFIG_CMDLINE="" | 967 | CONFIG_CMDLINE="" |
940 | CONFIG_SYS_SUPPORTS_KGDB=y | 968 | CONFIG_SYS_SUPPORTS_KGDB=y |
941 | # CONFIG_SB1XXX_CORELIS is not set | 969 | # CONFIG_SB1XXX_CORELIS is not set |
@@ -946,13 +974,12 @@ CONFIG_SYS_SUPPORTS_KGDB=y | |||
946 | CONFIG_KEYS=y | 974 | CONFIG_KEYS=y |
947 | CONFIG_KEYS_DEBUG_PROC_KEYS=y | 975 | CONFIG_KEYS_DEBUG_PROC_KEYS=y |
948 | # CONFIG_SECURITY is not set | 976 | # CONFIG_SECURITY is not set |
949 | 977 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | |
950 | # | ||
951 | # Cryptographic options | ||
952 | # | ||
953 | CONFIG_CRYPTO=y | 978 | CONFIG_CRYPTO=y |
954 | CONFIG_CRYPTO_ALGAPI=y | 979 | CONFIG_CRYPTO_ALGAPI=y |
980 | CONFIG_CRYPTO_AEAD=m | ||
955 | CONFIG_CRYPTO_BLKCIPHER=m | 981 | CONFIG_CRYPTO_BLKCIPHER=m |
982 | CONFIG_CRYPTO_SEQIV=m | ||
956 | CONFIG_CRYPTO_HASH=y | 983 | CONFIG_CRYPTO_HASH=y |
957 | CONFIG_CRYPTO_MANAGER=y | 984 | CONFIG_CRYPTO_MANAGER=y |
958 | CONFIG_CRYPTO_HMAC=y | 985 | CONFIG_CRYPTO_HMAC=y |
@@ -970,6 +997,11 @@ CONFIG_CRYPTO_ECB=m | |||
970 | CONFIG_CRYPTO_CBC=m | 997 | CONFIG_CRYPTO_CBC=m |
971 | CONFIG_CRYPTO_PCBC=m | 998 | CONFIG_CRYPTO_PCBC=m |
972 | CONFIG_CRYPTO_LRW=m | 999 | CONFIG_CRYPTO_LRW=m |
1000 | CONFIG_CRYPTO_XTS=m | ||
1001 | CONFIG_CRYPTO_CTR=m | ||
1002 | CONFIG_CRYPTO_GCM=m | ||
1003 | CONFIG_CRYPTO_CCM=m | ||
1004 | CONFIG_CRYPTO_CRYPTD=m | ||
973 | CONFIG_CRYPTO_DES=m | 1005 | CONFIG_CRYPTO_DES=m |
974 | CONFIG_CRYPTO_FCRYPT=m | 1006 | CONFIG_CRYPTO_FCRYPT=m |
975 | CONFIG_CRYPTO_BLOWFISH=m | 1007 | CONFIG_CRYPTO_BLOWFISH=m |
@@ -983,15 +1015,16 @@ CONFIG_CRYPTO_TEA=m | |||
983 | CONFIG_CRYPTO_ARC4=m | 1015 | CONFIG_CRYPTO_ARC4=m |
984 | CONFIG_CRYPTO_KHAZAD=m | 1016 | CONFIG_CRYPTO_KHAZAD=m |
985 | CONFIG_CRYPTO_ANUBIS=m | 1017 | CONFIG_CRYPTO_ANUBIS=m |
1018 | CONFIG_CRYPTO_SEED=m | ||
1019 | CONFIG_CRYPTO_SALSA20=m | ||
986 | CONFIG_CRYPTO_DEFLATE=m | 1020 | CONFIG_CRYPTO_DEFLATE=m |
987 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1021 | CONFIG_CRYPTO_MICHAEL_MIC=m |
988 | CONFIG_CRYPTO_CRC32C=m | 1022 | CONFIG_CRYPTO_CRC32C=m |
989 | CONFIG_CRYPTO_CAMELLIA=m | 1023 | CONFIG_CRYPTO_CAMELLIA=m |
990 | # CONFIG_CRYPTO_TEST is not set | 1024 | # CONFIG_CRYPTO_TEST is not set |
991 | 1025 | CONFIG_CRYPTO_AUTHENC=m | |
992 | # | 1026 | CONFIG_CRYPTO_LZO=m |
993 | # Hardware crypto devices | 1027 | # CONFIG_CRYPTO_HW is not set |
994 | # | ||
995 | 1028 | ||
996 | # | 1029 | # |
997 | # Library routines | 1030 | # Library routines |
@@ -999,10 +1032,15 @@ CONFIG_CRYPTO_CAMELLIA=m | |||
999 | CONFIG_BITREVERSE=y | 1032 | CONFIG_BITREVERSE=y |
1000 | # CONFIG_CRC_CCITT is not set | 1033 | # CONFIG_CRC_CCITT is not set |
1001 | CONFIG_CRC16=m | 1034 | CONFIG_CRC16=m |
1035 | # CONFIG_CRC_ITU_T is not set | ||
1002 | CONFIG_CRC32=y | 1036 | CONFIG_CRC32=y |
1037 | # CONFIG_CRC7 is not set | ||
1003 | CONFIG_LIBCRC32C=m | 1038 | CONFIG_LIBCRC32C=m |
1004 | CONFIG_ZLIB_INFLATE=m | 1039 | CONFIG_ZLIB_INFLATE=m |
1005 | CONFIG_ZLIB_DEFLATE=m | 1040 | CONFIG_ZLIB_DEFLATE=m |
1041 | CONFIG_LZO_COMPRESS=m | ||
1042 | CONFIG_LZO_DECOMPRESS=m | ||
1006 | CONFIG_PLIST=y | 1043 | CONFIG_PLIST=y |
1007 | CONFIG_HAS_IOMEM=y | 1044 | CONFIG_HAS_IOMEM=y |
1008 | CONFIG_HAS_IOPORT=y | 1045 | CONFIG_HAS_IOPORT=y |
1046 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/mips/configs/tb0219_defconfig b/arch/mips/configs/tb0219_defconfig index af82e1a1823c..8dd3ae39bcad 100644 --- a/arch/mips/configs/tb0219_defconfig +++ b/arch/mips/configs/tb0219_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
4 | # Wed Aug 8 16:11:47 2007 | 4 | # Mon May 12 11:54:51 2008 |
5 | # | 5 | # |
6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
7 | 7 | ||
@@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
10 | # | 10 | # |
11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
13 | # CONFIG_BCM47XX is not set | ||
13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
17 | # CONFIG_LASAT is not set | ||
16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
@@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
31 | # CONFIG_SGI_IP28 is not set | ||
29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
@@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
68 | CONFIG_CEVT_R4K=y | ||
69 | CONFIG_CSRC_R4K=y | ||
62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
@@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
@@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
138 | # CONFIG_TICK_ONESHOT is not set | ||
139 | # CONFIG_NO_HZ is not set | ||
140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
@@ -156,23 +171,29 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
159 | # CONFIG_USER_NS is not set | ||
160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
177 | # CONFIG_CGROUPS is not set | ||
178 | # CONFIG_GROUP_SCHED is not set | ||
163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
182 | # CONFIG_NAMESPACES is not set | ||
165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
168 | CONFIG_EMBEDDED=y | 186 | CONFIG_EMBEDDED=y |
169 | CONFIG_SYSCTL_SYSCALL=y | 187 | CONFIG_SYSCTL_SYSCALL=y |
188 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
170 | CONFIG_KALLSYMS=y | 189 | CONFIG_KALLSYMS=y |
171 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 190 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
172 | CONFIG_HOTPLUG=y | 191 | CONFIG_HOTPLUG=y |
173 | CONFIG_PRINTK=y | 192 | CONFIG_PRINTK=y |
174 | CONFIG_BUG=y | 193 | CONFIG_BUG=y |
175 | CONFIG_ELF_CORE=y | 194 | CONFIG_ELF_CORE=y |
195 | # CONFIG_PCSPKR_PLATFORM is not set | ||
196 | CONFIG_COMPAT_BRK=y | ||
176 | CONFIG_BASE_FULL=y | 197 | CONFIG_BASE_FULL=y |
177 | CONFIG_FUTEX=y | 198 | CONFIG_FUTEX=y |
178 | CONFIG_ANON_INODES=y | 199 | CONFIG_ANON_INODES=y |
@@ -185,10 +206,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
185 | CONFIG_SLAB=y | 206 | CONFIG_SLAB=y |
186 | # CONFIG_SLUB is not set | 207 | # CONFIG_SLUB is not set |
187 | # CONFIG_SLOB is not set | 208 | # CONFIG_SLOB is not set |
209 | # CONFIG_PROFILING is not set | ||
210 | # CONFIG_MARKERS is not set | ||
211 | CONFIG_HAVE_OPROFILE=y | ||
212 | # CONFIG_HAVE_KPROBES is not set | ||
213 | # CONFIG_HAVE_KRETPROBES is not set | ||
214 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
215 | CONFIG_PROC_PAGE_MONITOR=y | ||
216 | CONFIG_SLABINFO=y | ||
188 | CONFIG_RT_MUTEXES=y | 217 | CONFIG_RT_MUTEXES=y |
189 | # CONFIG_TINY_SHMEM is not set | 218 | # CONFIG_TINY_SHMEM is not set |
190 | CONFIG_BASE_SMALL=0 | 219 | CONFIG_BASE_SMALL=0 |
191 | CONFIG_MODULES=y | 220 | CONFIG_MODULES=y |
221 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
192 | CONFIG_MODULE_UNLOAD=y | 222 | CONFIG_MODULE_UNLOAD=y |
193 | CONFIG_MODULE_FORCE_UNLOAD=y | 223 | CONFIG_MODULE_FORCE_UNLOAD=y |
194 | CONFIG_MODVERSIONS=y | 224 | CONFIG_MODVERSIONS=y |
@@ -212,18 +242,17 @@ CONFIG_DEFAULT_AS=y | |||
212 | # CONFIG_DEFAULT_CFQ is not set | 242 | # CONFIG_DEFAULT_CFQ is not set |
213 | # CONFIG_DEFAULT_NOOP is not set | 243 | # CONFIG_DEFAULT_NOOP is not set |
214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 244 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
245 | CONFIG_CLASSIC_RCU=y | ||
215 | 246 | ||
216 | # | 247 | # |
217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 248 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
218 | # | 249 | # |
219 | CONFIG_HW_HAS_PCI=y | 250 | CONFIG_HW_HAS_PCI=y |
220 | CONFIG_PCI=y | 251 | CONFIG_PCI=y |
252 | CONFIG_PCI_DOMAINS=y | ||
221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 253 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
254 | CONFIG_PCI_LEGACY=y | ||
222 | CONFIG_MMU=y | 255 | CONFIG_MMU=y |
223 | |||
224 | # | ||
225 | # PCCARD (PCMCIA/CardBus) support | ||
226 | # | ||
227 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
228 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
229 | 258 | ||
@@ -237,6 +266,7 @@ CONFIG_TRAD_SIGNALS=y | |||
237 | # | 266 | # |
238 | # Power management options | 267 | # Power management options |
239 | # | 268 | # |
269 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
240 | # CONFIG_PM is not set | 270 | # CONFIG_PM is not set |
241 | 271 | ||
242 | # | 272 | # |
@@ -278,6 +308,7 @@ CONFIG_INET_TUNNEL=m | |||
278 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 308 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
279 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 309 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
280 | # CONFIG_INET_XFRM_MODE_BEET is not set | 310 | # CONFIG_INET_XFRM_MODE_BEET is not set |
311 | # CONFIG_INET_LRO is not set | ||
281 | CONFIG_INET_DIAG=y | 312 | CONFIG_INET_DIAG=y |
282 | CONFIG_INET_TCP_DIAG=y | 313 | CONFIG_INET_TCP_DIAG=y |
283 | # CONFIG_TCP_CONG_ADVANCED is not set | 314 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -285,15 +316,10 @@ CONFIG_TCP_CONG_CUBIC=y | |||
285 | CONFIG_DEFAULT_TCP_CONG="cubic" | 316 | CONFIG_DEFAULT_TCP_CONG="cubic" |
286 | # CONFIG_TCP_MD5SIG is not set | 317 | # CONFIG_TCP_MD5SIG is not set |
287 | # CONFIG_IPV6 is not set | 318 | # CONFIG_IPV6 is not set |
288 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
289 | # CONFIG_INET6_TUNNEL is not set | ||
290 | CONFIG_NETWORK_SECMARK=y | 319 | CONFIG_NETWORK_SECMARK=y |
291 | # CONFIG_NETFILTER is not set | 320 | # CONFIG_NETFILTER is not set |
292 | # CONFIG_IP_DCCP is not set | 321 | # CONFIG_IP_DCCP is not set |
293 | # CONFIG_IP_SCTP is not set | 322 | # CONFIG_IP_SCTP is not set |
294 | # CONFIG_SCTP_HMAC_NONE is not set | ||
295 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
296 | # CONFIG_SCTP_HMAC_MD5 is not set | ||
297 | # CONFIG_TIPC is not set | 323 | # CONFIG_TIPC is not set |
298 | # CONFIG_ATM is not set | 324 | # CONFIG_ATM is not set |
299 | # CONFIG_BRIDGE is not set | 325 | # CONFIG_BRIDGE is not set |
@@ -306,10 +332,6 @@ CONFIG_NETWORK_SECMARK=y | |||
306 | # CONFIG_LAPB is not set | 332 | # CONFIG_LAPB is not set |
307 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
308 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
309 | |||
310 | # | ||
311 | # QoS and/or fair queueing | ||
312 | # | ||
313 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
314 | 336 | ||
315 | # | 337 | # |
@@ -317,6 +339,7 @@ CONFIG_NETWORK_SECMARK=y | |||
317 | # | 339 | # |
318 | # CONFIG_NET_PKTGEN is not set | 340 | # CONFIG_NET_PKTGEN is not set |
319 | # CONFIG_HAMRADIO is not set | 341 | # CONFIG_HAMRADIO is not set |
342 | # CONFIG_CAN is not set | ||
320 | # CONFIG_IRDA is not set | 343 | # CONFIG_IRDA is not set |
321 | # CONFIG_BT is not set | 344 | # CONFIG_BT is not set |
322 | # CONFIG_AF_RXRPC is not set | 345 | # CONFIG_AF_RXRPC is not set |
@@ -339,6 +362,7 @@ CONFIG_FIB_RULES=y | |||
339 | # | 362 | # |
340 | # Generic Driver Options | 363 | # Generic Driver Options |
341 | # | 364 | # |
365 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
342 | CONFIG_STANDALONE=y | 366 | CONFIG_STANDALONE=y |
343 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 367 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
344 | CONFIG_FW_LOADER=m | 368 | CONFIG_FW_LOADER=m |
@@ -360,10 +384,11 @@ CONFIG_BLK_DEV_NBD=m | |||
360 | CONFIG_BLK_DEV_RAM=y | 384 | CONFIG_BLK_DEV_RAM=y |
361 | CONFIG_BLK_DEV_RAM_COUNT=16 | 385 | CONFIG_BLK_DEV_RAM_COUNT=16 |
362 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 386 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
363 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 387 | CONFIG_BLK_DEV_XIP=y |
364 | # CONFIG_CDROM_PKTCDVD is not set | 388 | # CONFIG_CDROM_PKTCDVD is not set |
365 | # CONFIG_ATA_OVER_ETH is not set | 389 | # CONFIG_ATA_OVER_ETH is not set |
366 | # CONFIG_MISC_DEVICES is not set | 390 | # CONFIG_MISC_DEVICES is not set |
391 | CONFIG_HAVE_IDE=y | ||
367 | # CONFIG_IDE is not set | 392 | # CONFIG_IDE is not set |
368 | 393 | ||
369 | # | 394 | # |
@@ -375,10 +400,6 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | |||
375 | # CONFIG_SCSI_NETLINK is not set | 400 | # CONFIG_SCSI_NETLINK is not set |
376 | # CONFIG_ATA is not set | 401 | # CONFIG_ATA is not set |
377 | # CONFIG_MD is not set | 402 | # CONFIG_MD is not set |
378 | |||
379 | # | ||
380 | # Fusion MPT device support | ||
381 | # | ||
382 | # CONFIG_FUSION is not set | 403 | # CONFIG_FUSION is not set |
383 | 404 | ||
384 | # | 405 | # |
@@ -394,6 +415,7 @@ CONFIG_NETDEVICES=y | |||
394 | # CONFIG_MACVLAN is not set | 415 | # CONFIG_MACVLAN is not set |
395 | # CONFIG_EQUALIZER is not set | 416 | # CONFIG_EQUALIZER is not set |
396 | # CONFIG_TUN is not set | 417 | # CONFIG_TUN is not set |
418 | # CONFIG_VETH is not set | ||
397 | # CONFIG_ARCNET is not set | 419 | # CONFIG_ARCNET is not set |
398 | CONFIG_PHYLIB=m | 420 | CONFIG_PHYLIB=m |
399 | 421 | ||
@@ -409,7 +431,8 @@ CONFIG_VITESSE_PHY=m | |||
409 | CONFIG_SMSC_PHY=m | 431 | CONFIG_SMSC_PHY=m |
410 | # CONFIG_BROADCOM_PHY is not set | 432 | # CONFIG_BROADCOM_PHY is not set |
411 | # CONFIG_ICPLUS_PHY is not set | 433 | # CONFIG_ICPLUS_PHY is not set |
412 | # CONFIG_FIXED_PHY is not set | 434 | # CONFIG_REALTEK_PHY is not set |
435 | # CONFIG_MDIO_BITBANG is not set | ||
413 | CONFIG_NET_ETHERNET=y | 436 | CONFIG_NET_ETHERNET=y |
414 | CONFIG_MII=y | 437 | CONFIG_MII=y |
415 | # CONFIG_AX88796 is not set | 438 | # CONFIG_AX88796 is not set |
@@ -420,6 +443,10 @@ CONFIG_MII=y | |||
420 | # CONFIG_DM9000 is not set | 443 | # CONFIG_DM9000 is not set |
421 | # CONFIG_NET_TULIP is not set | 444 | # CONFIG_NET_TULIP is not set |
422 | # CONFIG_HP100 is not set | 445 | # CONFIG_HP100 is not set |
446 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
447 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
448 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
449 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
423 | CONFIG_NET_PCI=y | 450 | CONFIG_NET_PCI=y |
424 | # CONFIG_PCNET32 is not set | 451 | # CONFIG_PCNET32 is not set |
425 | # CONFIG_AMD8111_ETH is not set | 452 | # CONFIG_AMD8111_ETH is not set |
@@ -427,7 +454,6 @@ CONFIG_NET_PCI=y | |||
427 | # CONFIG_B44 is not set | 454 | # CONFIG_B44 is not set |
428 | # CONFIG_FORCEDETH is not set | 455 | # CONFIG_FORCEDETH is not set |
429 | # CONFIG_TC35815 is not set | 456 | # CONFIG_TC35815 is not set |
430 | # CONFIG_DGRS is not set | ||
431 | # CONFIG_EEPRO100 is not set | 457 | # CONFIG_EEPRO100 is not set |
432 | # CONFIG_E100 is not set | 458 | # CONFIG_E100 is not set |
433 | # CONFIG_FEALNX is not set | 459 | # CONFIG_FEALNX is not set |
@@ -439,6 +465,7 @@ CONFIG_8139TOO_PIO=y | |||
439 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 465 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
440 | # CONFIG_8139TOO_8129 is not set | 466 | # CONFIG_8139TOO_8129 is not set |
441 | # CONFIG_8139_OLD_RX_RESET is not set | 467 | # CONFIG_8139_OLD_RX_RESET is not set |
468 | # CONFIG_R6040 is not set | ||
442 | # CONFIG_SIS900 is not set | 469 | # CONFIG_SIS900 is not set |
443 | # CONFIG_EPIC100 is not set | 470 | # CONFIG_EPIC100 is not set |
444 | # CONFIG_SUNDANCE is not set | 471 | # CONFIG_SUNDANCE is not set |
@@ -451,6 +478,10 @@ CONFIG_NETDEV_1000=y | |||
451 | # CONFIG_ACENIC is not set | 478 | # CONFIG_ACENIC is not set |
452 | # CONFIG_DL2K is not set | 479 | # CONFIG_DL2K is not set |
453 | # CONFIG_E1000 is not set | 480 | # CONFIG_E1000 is not set |
481 | # CONFIG_E1000E is not set | ||
482 | # CONFIG_E1000E_ENABLED is not set | ||
483 | # CONFIG_IP1000 is not set | ||
484 | # CONFIG_IGB is not set | ||
454 | # CONFIG_NS83820 is not set | 485 | # CONFIG_NS83820 is not set |
455 | # CONFIG_HAMACHI is not set | 486 | # CONFIG_HAMACHI is not set |
456 | # CONFIG_YELLOWFIN is not set | 487 | # CONFIG_YELLOWFIN is not set |
@@ -472,6 +503,7 @@ CONFIG_VIA_VELOCITY=y | |||
472 | # | 503 | # |
473 | # CONFIG_WLAN_PRE80211 is not set | 504 | # CONFIG_WLAN_PRE80211 is not set |
474 | # CONFIG_WLAN_80211 is not set | 505 | # CONFIG_WLAN_80211 is not set |
506 | # CONFIG_IWLWIFI_LEDS is not set | ||
475 | 507 | ||
476 | # | 508 | # |
477 | # USB Network Adapters | 509 | # USB Network Adapters |
@@ -480,14 +512,12 @@ CONFIG_VIA_VELOCITY=y | |||
480 | # CONFIG_USB_KAWETH is not set | 512 | # CONFIG_USB_KAWETH is not set |
481 | # CONFIG_USB_PEGASUS is not set | 513 | # CONFIG_USB_PEGASUS is not set |
482 | # CONFIG_USB_RTL8150 is not set | 514 | # CONFIG_USB_RTL8150 is not set |
483 | # CONFIG_USB_USBNET_MII is not set | ||
484 | # CONFIG_USB_USBNET is not set | 515 | # CONFIG_USB_USBNET is not set |
485 | # CONFIG_WAN is not set | 516 | # CONFIG_WAN is not set |
486 | # CONFIG_FDDI is not set | 517 | # CONFIG_FDDI is not set |
487 | # CONFIG_HIPPI is not set | 518 | # CONFIG_HIPPI is not set |
488 | # CONFIG_PPP is not set | 519 | # CONFIG_PPP is not set |
489 | # CONFIG_SLIP is not set | 520 | # CONFIG_SLIP is not set |
490 | # CONFIG_SHAPER is not set | ||
491 | # CONFIG_NETCONSOLE is not set | 521 | # CONFIG_NETCONSOLE is not set |
492 | # CONFIG_NETPOLL is not set | 522 | # CONFIG_NETPOLL is not set |
493 | # CONFIG_NET_POLL_CONTROLLER is not set | 523 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -506,7 +536,6 @@ CONFIG_INPUT=y | |||
506 | # | 536 | # |
507 | # CONFIG_INPUT_MOUSEDEV is not set | 537 | # CONFIG_INPUT_MOUSEDEV is not set |
508 | # CONFIG_INPUT_JOYDEV is not set | 538 | # CONFIG_INPUT_JOYDEV is not set |
509 | # CONFIG_INPUT_TSDEV is not set | ||
510 | # CONFIG_INPUT_EVDEV is not set | 539 | # CONFIG_INPUT_EVDEV is not set |
511 | # CONFIG_INPUT_EVBUG is not set | 540 | # CONFIG_INPUT_EVBUG is not set |
512 | 541 | ||
@@ -533,7 +562,9 @@ CONFIG_VT=y | |||
533 | CONFIG_VT_CONSOLE=y | 562 | CONFIG_VT_CONSOLE=y |
534 | CONFIG_HW_CONSOLE=y | 563 | CONFIG_HW_CONSOLE=y |
535 | CONFIG_VT_HW_CONSOLE_BINDING=y | 564 | CONFIG_VT_HW_CONSOLE_BINDING=y |
565 | # CONFIG_DEVKMEM is not set | ||
536 | # CONFIG_SERIAL_NONSTANDARD is not set | 566 | # CONFIG_SERIAL_NONSTANDARD is not set |
567 | # CONFIG_NOZOMI is not set | ||
537 | 568 | ||
538 | # | 569 | # |
539 | # Serial drivers | 570 | # Serial drivers |
@@ -552,52 +583,62 @@ CONFIG_UNIX98_PTYS=y | |||
552 | CONFIG_LEGACY_PTYS=y | 583 | CONFIG_LEGACY_PTYS=y |
553 | CONFIG_LEGACY_PTY_COUNT=256 | 584 | CONFIG_LEGACY_PTY_COUNT=256 |
554 | # CONFIG_IPMI_HANDLER is not set | 585 | # CONFIG_IPMI_HANDLER is not set |
555 | # CONFIG_WATCHDOG is not set | ||
556 | # CONFIG_HW_RANDOM is not set | 586 | # CONFIG_HW_RANDOM is not set |
557 | # CONFIG_RTC is not set | ||
558 | # CONFIG_R3964 is not set | 587 | # CONFIG_R3964 is not set |
559 | # CONFIG_APPLICOM is not set | 588 | # CONFIG_APPLICOM is not set |
560 | CONFIG_GPIO_TB0219=y | 589 | CONFIG_GPIO_TB0219=y |
561 | # CONFIG_DRM is not set | ||
562 | CONFIG_GPIO_VR41XX=y | 590 | CONFIG_GPIO_VR41XX=y |
563 | # CONFIG_RAW_DRIVER is not set | 591 | # CONFIG_RAW_DRIVER is not set |
564 | # CONFIG_TCG_TPM is not set | 592 | # CONFIG_TCG_TPM is not set |
565 | CONFIG_DEVPORT=y | 593 | CONFIG_DEVPORT=y |
566 | # CONFIG_I2C is not set | 594 | # CONFIG_I2C is not set |
567 | |||
568 | # | ||
569 | # SPI support | ||
570 | # | ||
571 | # CONFIG_SPI is not set | 595 | # CONFIG_SPI is not set |
572 | # CONFIG_SPI_MASTER is not set | ||
573 | # CONFIG_W1 is not set | 596 | # CONFIG_W1 is not set |
574 | # CONFIG_POWER_SUPPLY is not set | 597 | # CONFIG_POWER_SUPPLY is not set |
575 | # CONFIG_HWMON is not set | 598 | # CONFIG_HWMON is not set |
599 | # CONFIG_THERMAL is not set | ||
600 | # CONFIG_WATCHDOG is not set | ||
601 | |||
602 | # | ||
603 | # Sonics Silicon Backplane | ||
604 | # | ||
605 | CONFIG_SSB_POSSIBLE=y | ||
606 | # CONFIG_SSB is not set | ||
576 | 607 | ||
577 | # | 608 | # |
578 | # Multifunction device drivers | 609 | # Multifunction device drivers |
579 | # | 610 | # |
580 | # CONFIG_MFD_SM501 is not set | 611 | # CONFIG_MFD_SM501 is not set |
612 | # CONFIG_HTC_PASIC3 is not set | ||
581 | 613 | ||
582 | # | 614 | # |
583 | # Multimedia devices | 615 | # Multimedia devices |
584 | # | 616 | # |
617 | |||
618 | # | ||
619 | # Multimedia core support | ||
620 | # | ||
585 | # CONFIG_VIDEO_DEV is not set | 621 | # CONFIG_VIDEO_DEV is not set |
586 | # CONFIG_DVB_CORE is not set | 622 | # CONFIG_DVB_CORE is not set |
623 | |||
624 | # | ||
625 | # Multimedia drivers | ||
626 | # | ||
587 | # CONFIG_DAB is not set | 627 | # CONFIG_DAB is not set |
588 | 628 | ||
589 | # | 629 | # |
590 | # Graphics support | 630 | # Graphics support |
591 | # | 631 | # |
632 | # CONFIG_DRM is not set | ||
633 | # CONFIG_VGASTATE is not set | ||
634 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
635 | # CONFIG_FB is not set | ||
592 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 636 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
593 | 637 | ||
594 | # | 638 | # |
595 | # Display device support | 639 | # Display device support |
596 | # | 640 | # |
597 | # CONFIG_DISPLAY_SUPPORT is not set | 641 | # CONFIG_DISPLAY_SUPPORT is not set |
598 | # CONFIG_VGASTATE is not set | ||
599 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
600 | # CONFIG_FB is not set | ||
601 | 642 | ||
602 | # | 643 | # |
603 | # Console display driver support | 644 | # Console display driver support |
@@ -616,6 +657,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
616 | CONFIG_USB_ARCH_HAS_EHCI=y | 657 | CONFIG_USB_ARCH_HAS_EHCI=y |
617 | CONFIG_USB=m | 658 | CONFIG_USB=m |
618 | # CONFIG_USB_DEBUG is not set | 659 | # CONFIG_USB_DEBUG is not set |
660 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
619 | 661 | ||
620 | # | 662 | # |
621 | # Miscellaneous USB options | 663 | # Miscellaneous USB options |
@@ -624,15 +666,18 @@ CONFIG_USB_DEVICEFS=y | |||
624 | CONFIG_USB_DEVICE_CLASS=y | 666 | CONFIG_USB_DEVICE_CLASS=y |
625 | # CONFIG_USB_DYNAMIC_MINORS is not set | 667 | # CONFIG_USB_DYNAMIC_MINORS is not set |
626 | # CONFIG_USB_OTG is not set | 668 | # CONFIG_USB_OTG is not set |
669 | # CONFIG_USB_OTG_WHITELIST is not set | ||
670 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
627 | 671 | ||
628 | # | 672 | # |
629 | # USB Host Controller Drivers | 673 | # USB Host Controller Drivers |
630 | # | 674 | # |
675 | # CONFIG_USB_C67X00_HCD is not set | ||
631 | CONFIG_USB_EHCI_HCD=m | 676 | CONFIG_USB_EHCI_HCD=m |
632 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
633 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 677 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
634 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 678 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
635 | # CONFIG_USB_ISP116X_HCD is not set | 679 | # CONFIG_USB_ISP116X_HCD is not set |
680 | # CONFIG_USB_ISP1760_HCD is not set | ||
636 | CONFIG_USB_OHCI_HCD=m | 681 | CONFIG_USB_OHCI_HCD=m |
637 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 682 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
638 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 683 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
@@ -665,10 +710,6 @@ CONFIG_USB_MON=y | |||
665 | # | 710 | # |
666 | # USB port drivers | 711 | # USB port drivers |
667 | # | 712 | # |
668 | |||
669 | # | ||
670 | # USB Serial Converter support | ||
671 | # | ||
672 | # CONFIG_USB_SERIAL is not set | 713 | # CONFIG_USB_SERIAL is not set |
673 | 714 | ||
674 | # | 715 | # |
@@ -694,17 +735,11 @@ CONFIG_USB_MON=y | |||
694 | # CONFIG_USB_TRANCEVIBRATOR is not set | 735 | # CONFIG_USB_TRANCEVIBRATOR is not set |
695 | # CONFIG_USB_IOWARRIOR is not set | 736 | # CONFIG_USB_IOWARRIOR is not set |
696 | # CONFIG_USB_TEST is not set | 737 | # CONFIG_USB_TEST is not set |
697 | |||
698 | # | ||
699 | # USB DSL modem support | ||
700 | # | ||
701 | |||
702 | # | ||
703 | # USB Gadget Support | ||
704 | # | ||
705 | # CONFIG_USB_GADGET is not set | 738 | # CONFIG_USB_GADGET is not set |
706 | # CONFIG_MMC is not set | 739 | # CONFIG_MMC is not set |
740 | # CONFIG_MEMSTICK is not set | ||
707 | # CONFIG_NEW_LEDS is not set | 741 | # CONFIG_NEW_LEDS is not set |
742 | # CONFIG_ACCESSIBILITY is not set | ||
708 | # CONFIG_INFINIBAND is not set | 743 | # CONFIG_INFINIBAND is not set |
709 | CONFIG_RTC_LIB=y | 744 | CONFIG_RTC_LIB=y |
710 | CONFIG_RTC_CLASS=y | 745 | CONFIG_RTC_CLASS=y |
@@ -729,9 +764,10 @@ CONFIG_RTC_INTF_DEV=y | |||
729 | # Platform RTC drivers | 764 | # Platform RTC drivers |
730 | # | 765 | # |
731 | # CONFIG_RTC_DRV_CMOS is not set | 766 | # CONFIG_RTC_DRV_CMOS is not set |
767 | # CONFIG_RTC_DRV_DS1511 is not set | ||
732 | # CONFIG_RTC_DRV_DS1553 is not set | 768 | # CONFIG_RTC_DRV_DS1553 is not set |
733 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
734 | # CONFIG_RTC_DRV_DS1742 is not set | 769 | # CONFIG_RTC_DRV_DS1742 is not set |
770 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
735 | # CONFIG_RTC_DRV_M48T86 is not set | 771 | # CONFIG_RTC_DRV_M48T86 is not set |
736 | # CONFIG_RTC_DRV_M48T59 is not set | 772 | # CONFIG_RTC_DRV_M48T59 is not set |
737 | # CONFIG_RTC_DRV_V3020 is not set | 773 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -740,23 +776,6 @@ CONFIG_RTC_INTF_DEV=y | |||
740 | # on-CPU RTC drivers | 776 | # on-CPU RTC drivers |
741 | # | 777 | # |
742 | CONFIG_RTC_DRV_VR41XX=y | 778 | CONFIG_RTC_DRV_VR41XX=y |
743 | |||
744 | # | ||
745 | # DMA Engine support | ||
746 | # | ||
747 | # CONFIG_DMA_ENGINE is not set | ||
748 | |||
749 | # | ||
750 | # DMA Clients | ||
751 | # | ||
752 | |||
753 | # | ||
754 | # DMA Devices | ||
755 | # | ||
756 | |||
757 | # | ||
758 | # Userspace I/O | ||
759 | # | ||
760 | # CONFIG_UIO is not set | 779 | # CONFIG_UIO is not set |
761 | 780 | ||
762 | # | 781 | # |
@@ -771,20 +790,16 @@ CONFIG_EXT3_FS_XATTR=y | |||
771 | # CONFIG_EXT3_FS_SECURITY is not set | 790 | # CONFIG_EXT3_FS_SECURITY is not set |
772 | # CONFIG_EXT4DEV_FS is not set | 791 | # CONFIG_EXT4DEV_FS is not set |
773 | CONFIG_JBD=y | 792 | CONFIG_JBD=y |
774 | # CONFIG_JBD_DEBUG is not set | ||
775 | CONFIG_FS_MBCACHE=y | 793 | CONFIG_FS_MBCACHE=y |
776 | # CONFIG_REISERFS_FS is not set | 794 | # CONFIG_REISERFS_FS is not set |
777 | # CONFIG_JFS_FS is not set | 795 | # CONFIG_JFS_FS is not set |
778 | CONFIG_FS_POSIX_ACL=y | 796 | CONFIG_FS_POSIX_ACL=y |
779 | # CONFIG_XFS_FS is not set | 797 | # CONFIG_XFS_FS is not set |
780 | # CONFIG_GFS2_FS is not set | ||
781 | # CONFIG_OCFS2_FS is not set | 798 | # CONFIG_OCFS2_FS is not set |
782 | # CONFIG_MINIX_FS is not set | 799 | CONFIG_DNOTIFY=y |
783 | CONFIG_ROMFS_FS=m | ||
784 | CONFIG_INOTIFY=y | 800 | CONFIG_INOTIFY=y |
785 | CONFIG_INOTIFY_USER=y | 801 | CONFIG_INOTIFY_USER=y |
786 | # CONFIG_QUOTA is not set | 802 | # CONFIG_QUOTA is not set |
787 | CONFIG_DNOTIFY=y | ||
788 | # CONFIG_AUTOFS_FS is not set | 803 | # CONFIG_AUTOFS_FS is not set |
789 | CONFIG_AUTOFS4_FS=y | 804 | CONFIG_AUTOFS4_FS=y |
790 | # CONFIG_FUSE_FS is not set | 805 | # CONFIG_FUSE_FS is not set |
@@ -813,7 +828,6 @@ CONFIG_SYSFS=y | |||
813 | CONFIG_TMPFS=y | 828 | CONFIG_TMPFS=y |
814 | CONFIG_TMPFS_POSIX_ACL=y | 829 | CONFIG_TMPFS_POSIX_ACL=y |
815 | # CONFIG_HUGETLB_PAGE is not set | 830 | # CONFIG_HUGETLB_PAGE is not set |
816 | CONFIG_RAMFS=y | ||
817 | # CONFIG_CONFIGFS_FS is not set | 831 | # CONFIG_CONFIGFS_FS is not set |
818 | 832 | ||
819 | # | 833 | # |
@@ -828,24 +842,21 @@ CONFIG_RAMFS=y | |||
828 | # CONFIG_EFS_FS is not set | 842 | # CONFIG_EFS_FS is not set |
829 | CONFIG_CRAMFS=m | 843 | CONFIG_CRAMFS=m |
830 | # CONFIG_VXFS_FS is not set | 844 | # CONFIG_VXFS_FS is not set |
845 | # CONFIG_MINIX_FS is not set | ||
831 | # CONFIG_HPFS_FS is not set | 846 | # CONFIG_HPFS_FS is not set |
832 | # CONFIG_QNX4FS_FS is not set | 847 | # CONFIG_QNX4FS_FS is not set |
848 | CONFIG_ROMFS_FS=m | ||
833 | # CONFIG_SYSV_FS is not set | 849 | # CONFIG_SYSV_FS is not set |
834 | # CONFIG_UFS_FS is not set | 850 | # CONFIG_UFS_FS is not set |
835 | 851 | CONFIG_NETWORK_FILESYSTEMS=y | |
836 | # | ||
837 | # Network File Systems | ||
838 | # | ||
839 | CONFIG_NFS_FS=y | 852 | CONFIG_NFS_FS=y |
840 | CONFIG_NFS_V3=y | 853 | CONFIG_NFS_V3=y |
841 | # CONFIG_NFS_V3_ACL is not set | 854 | # CONFIG_NFS_V3_ACL is not set |
842 | # CONFIG_NFS_V4 is not set | 855 | # CONFIG_NFS_V4 is not set |
843 | # CONFIG_NFS_DIRECTIO is not set | ||
844 | CONFIG_NFSD=y | 856 | CONFIG_NFSD=y |
845 | CONFIG_NFSD_V3=y | 857 | CONFIG_NFSD_V3=y |
846 | # CONFIG_NFSD_V3_ACL is not set | 858 | # CONFIG_NFSD_V3_ACL is not set |
847 | # CONFIG_NFSD_V4 is not set | 859 | # CONFIG_NFSD_V4 is not set |
848 | CONFIG_NFSD_TCP=y | ||
849 | CONFIG_ROOT_NFS=y | 860 | CONFIG_ROOT_NFS=y |
850 | CONFIG_LOCKD=y | 861 | CONFIG_LOCKD=y |
851 | CONFIG_LOCKD_V4=y | 862 | CONFIG_LOCKD_V4=y |
@@ -866,47 +877,38 @@ CONFIG_SUNRPC=y | |||
866 | # | 877 | # |
867 | # CONFIG_PARTITION_ADVANCED is not set | 878 | # CONFIG_PARTITION_ADVANCED is not set |
868 | CONFIG_MSDOS_PARTITION=y | 879 | CONFIG_MSDOS_PARTITION=y |
869 | |||
870 | # | ||
871 | # Native Language Support | ||
872 | # | ||
873 | # CONFIG_NLS is not set | 880 | # CONFIG_NLS is not set |
874 | |||
875 | # | ||
876 | # Distributed Lock Manager | ||
877 | # | ||
878 | # CONFIG_DLM is not set | 881 | # CONFIG_DLM is not set |
879 | 882 | ||
880 | # | 883 | # |
881 | # Profiling support | ||
882 | # | ||
883 | # CONFIG_PROFILING is not set | ||
884 | |||
885 | # | ||
886 | # Kernel hacking | 884 | # Kernel hacking |
887 | # | 885 | # |
888 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 886 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
889 | # CONFIG_PRINTK_TIME is not set | 887 | # CONFIG_PRINTK_TIME is not set |
888 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
890 | CONFIG_ENABLE_MUST_CHECK=y | 889 | CONFIG_ENABLE_MUST_CHECK=y |
890 | CONFIG_FRAME_WARN=1024 | ||
891 | # CONFIG_MAGIC_SYSRQ is not set | 891 | # CONFIG_MAGIC_SYSRQ is not set |
892 | # CONFIG_UNUSED_SYMBOLS is not set | 892 | # CONFIG_UNUSED_SYMBOLS is not set |
893 | # CONFIG_DEBUG_FS is not set | 893 | # CONFIG_DEBUG_FS is not set |
894 | # CONFIG_HEADERS_CHECK is not set | 894 | # CONFIG_HEADERS_CHECK is not set |
895 | # CONFIG_DEBUG_KERNEL is not set | 895 | # CONFIG_DEBUG_KERNEL is not set |
896 | CONFIG_CROSSCOMPILE=y | 896 | # CONFIG_SAMPLES is not set |
897 | CONFIG_CMDLINE="mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" | 897 | CONFIG_CMDLINE="cca=3 mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" |
898 | 898 | ||
899 | # | 899 | # |
900 | # Security options | 900 | # Security options |
901 | # | 901 | # |
902 | # CONFIG_KEYS is not set | 902 | # CONFIG_KEYS is not set |
903 | # CONFIG_SECURITY is not set | 903 | # CONFIG_SECURITY is not set |
904 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
904 | # CONFIG_CRYPTO is not set | 905 | # CONFIG_CRYPTO is not set |
905 | 906 | ||
906 | # | 907 | # |
907 | # Library routines | 908 | # Library routines |
908 | # | 909 | # |
909 | CONFIG_BITREVERSE=y | 910 | CONFIG_BITREVERSE=y |
911 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
910 | CONFIG_CRC_CCITT=y | 912 | CONFIG_CRC_CCITT=y |
911 | # CONFIG_CRC16 is not set | 913 | # CONFIG_CRC16 is not set |
912 | # CONFIG_CRC_ITU_T is not set | 914 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/configs/tb0226_defconfig b/arch/mips/configs/tb0226_defconfig index a95385b24546..2ba240e897c6 100644 --- a/arch/mips/configs/tb0226_defconfig +++ b/arch/mips/configs/tb0226_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
4 | # Thu Aug 9 11:16:55 2007 | 4 | # Mon May 12 11:53:54 2008 |
5 | # | 5 | # |
6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
7 | 7 | ||
@@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
10 | # | 10 | # |
11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
13 | # CONFIG_BCM47XX is not set | ||
13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
17 | # CONFIG_LASAT is not set | ||
16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
@@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
31 | # CONFIG_SGI_IP28 is not set | ||
29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
@@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
68 | CONFIG_CEVT_R4K=y | ||
69 | CONFIG_CSRC_R4K=y | ||
62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
@@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
@@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
138 | # CONFIG_TICK_ONESHOT is not set | ||
139 | # CONFIG_NO_HZ is not set | ||
140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
@@ -156,23 +171,29 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
159 | # CONFIG_USER_NS is not set | ||
160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
177 | # CONFIG_CGROUPS is not set | ||
178 | # CONFIG_GROUP_SCHED is not set | ||
163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
182 | # CONFIG_NAMESPACES is not set | ||
165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
168 | CONFIG_EMBEDDED=y | 186 | CONFIG_EMBEDDED=y |
169 | CONFIG_SYSCTL_SYSCALL=y | 187 | CONFIG_SYSCTL_SYSCALL=y |
188 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
170 | CONFIG_KALLSYMS=y | 189 | CONFIG_KALLSYMS=y |
171 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 190 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
172 | CONFIG_HOTPLUG=y | 191 | CONFIG_HOTPLUG=y |
173 | CONFIG_PRINTK=y | 192 | CONFIG_PRINTK=y |
174 | CONFIG_BUG=y | 193 | CONFIG_BUG=y |
175 | CONFIG_ELF_CORE=y | 194 | CONFIG_ELF_CORE=y |
195 | # CONFIG_PCSPKR_PLATFORM is not set | ||
196 | CONFIG_COMPAT_BRK=y | ||
176 | CONFIG_BASE_FULL=y | 197 | CONFIG_BASE_FULL=y |
177 | CONFIG_FUTEX=y | 198 | CONFIG_FUTEX=y |
178 | CONFIG_ANON_INODES=y | 199 | CONFIG_ANON_INODES=y |
@@ -185,10 +206,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
185 | CONFIG_SLAB=y | 206 | CONFIG_SLAB=y |
186 | # CONFIG_SLUB is not set | 207 | # CONFIG_SLUB is not set |
187 | # CONFIG_SLOB is not set | 208 | # CONFIG_SLOB is not set |
209 | # CONFIG_PROFILING is not set | ||
210 | # CONFIG_MARKERS is not set | ||
211 | CONFIG_HAVE_OPROFILE=y | ||
212 | # CONFIG_HAVE_KPROBES is not set | ||
213 | # CONFIG_HAVE_KRETPROBES is not set | ||
214 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
215 | CONFIG_PROC_PAGE_MONITOR=y | ||
216 | CONFIG_SLABINFO=y | ||
188 | CONFIG_RT_MUTEXES=y | 217 | CONFIG_RT_MUTEXES=y |
189 | # CONFIG_TINY_SHMEM is not set | 218 | # CONFIG_TINY_SHMEM is not set |
190 | CONFIG_BASE_SMALL=0 | 219 | CONFIG_BASE_SMALL=0 |
191 | CONFIG_MODULES=y | 220 | CONFIG_MODULES=y |
221 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
192 | CONFIG_MODULE_UNLOAD=y | 222 | CONFIG_MODULE_UNLOAD=y |
193 | CONFIG_MODULE_FORCE_UNLOAD=y | 223 | CONFIG_MODULE_FORCE_UNLOAD=y |
194 | CONFIG_MODVERSIONS=y | 224 | CONFIG_MODVERSIONS=y |
@@ -212,18 +242,17 @@ CONFIG_DEFAULT_AS=y | |||
212 | # CONFIG_DEFAULT_CFQ is not set | 242 | # CONFIG_DEFAULT_CFQ is not set |
213 | # CONFIG_DEFAULT_NOOP is not set | 243 | # CONFIG_DEFAULT_NOOP is not set |
214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 244 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
245 | CONFIG_CLASSIC_RCU=y | ||
215 | 246 | ||
216 | # | 247 | # |
217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 248 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
218 | # | 249 | # |
219 | CONFIG_HW_HAS_PCI=y | 250 | CONFIG_HW_HAS_PCI=y |
220 | CONFIG_PCI=y | 251 | CONFIG_PCI=y |
252 | CONFIG_PCI_DOMAINS=y | ||
221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 253 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
254 | CONFIG_PCI_LEGACY=y | ||
222 | CONFIG_MMU=y | 255 | CONFIG_MMU=y |
223 | |||
224 | # | ||
225 | # PCCARD (PCMCIA/CardBus) support | ||
226 | # | ||
227 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
228 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
229 | 258 | ||
@@ -237,6 +266,7 @@ CONFIG_TRAD_SIGNALS=y | |||
237 | # | 266 | # |
238 | # Power management options | 267 | # Power management options |
239 | # | 268 | # |
269 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
240 | # CONFIG_PM is not set | 270 | # CONFIG_PM is not set |
241 | 271 | ||
242 | # | 272 | # |
@@ -277,6 +307,7 @@ CONFIG_SYN_COOKIES=y | |||
277 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 307 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
278 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 308 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
279 | # CONFIG_INET_XFRM_MODE_BEET is not set | 309 | # CONFIG_INET_XFRM_MODE_BEET is not set |
310 | # CONFIG_INET_LRO is not set | ||
280 | CONFIG_INET_DIAG=y | 311 | CONFIG_INET_DIAG=y |
281 | CONFIG_INET_TCP_DIAG=y | 312 | CONFIG_INET_TCP_DIAG=y |
282 | # CONFIG_TCP_CONG_ADVANCED is not set | 313 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -284,15 +315,10 @@ CONFIG_TCP_CONG_CUBIC=y | |||
284 | CONFIG_DEFAULT_TCP_CONG="cubic" | 315 | CONFIG_DEFAULT_TCP_CONG="cubic" |
285 | # CONFIG_TCP_MD5SIG is not set | 316 | # CONFIG_TCP_MD5SIG is not set |
286 | # CONFIG_IPV6 is not set | 317 | # CONFIG_IPV6 is not set |
287 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
288 | # CONFIG_INET6_TUNNEL is not set | ||
289 | CONFIG_NETWORK_SECMARK=y | 318 | CONFIG_NETWORK_SECMARK=y |
290 | # CONFIG_NETFILTER is not set | 319 | # CONFIG_NETFILTER is not set |
291 | # CONFIG_IP_DCCP is not set | 320 | # CONFIG_IP_DCCP is not set |
292 | # CONFIG_IP_SCTP is not set | 321 | # CONFIG_IP_SCTP is not set |
293 | # CONFIG_SCTP_HMAC_NONE is not set | ||
294 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
295 | # CONFIG_SCTP_HMAC_MD5 is not set | ||
296 | # CONFIG_TIPC is not set | 322 | # CONFIG_TIPC is not set |
297 | # CONFIG_ATM is not set | 323 | # CONFIG_ATM is not set |
298 | # CONFIG_BRIDGE is not set | 324 | # CONFIG_BRIDGE is not set |
@@ -305,10 +331,6 @@ CONFIG_NETWORK_SECMARK=y | |||
305 | # CONFIG_LAPB is not set | 331 | # CONFIG_LAPB is not set |
306 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
307 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
308 | |||
309 | # | ||
310 | # QoS and/or fair queueing | ||
311 | # | ||
312 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
313 | 335 | ||
314 | # | 336 | # |
@@ -316,6 +338,7 @@ CONFIG_NETWORK_SECMARK=y | |||
316 | # | 338 | # |
317 | # CONFIG_NET_PKTGEN is not set | 339 | # CONFIG_NET_PKTGEN is not set |
318 | # CONFIG_HAMRADIO is not set | 340 | # CONFIG_HAMRADIO is not set |
341 | # CONFIG_CAN is not set | ||
319 | # CONFIG_IRDA is not set | 342 | # CONFIG_IRDA is not set |
320 | # CONFIG_BT is not set | 343 | # CONFIG_BT is not set |
321 | # CONFIG_AF_RXRPC is not set | 344 | # CONFIG_AF_RXRPC is not set |
@@ -338,6 +361,7 @@ CONFIG_FIB_RULES=y | |||
338 | # | 361 | # |
339 | # Generic Driver Options | 362 | # Generic Driver Options |
340 | # | 363 | # |
364 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
341 | CONFIG_STANDALONE=y | 365 | CONFIG_STANDALONE=y |
342 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 366 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
343 | CONFIG_FW_LOADER=y | 367 | CONFIG_FW_LOADER=y |
@@ -359,10 +383,11 @@ CONFIG_BLK_DEV_NBD=m | |||
359 | CONFIG_BLK_DEV_RAM=y | 383 | CONFIG_BLK_DEV_RAM=y |
360 | CONFIG_BLK_DEV_RAM_COUNT=16 | 384 | CONFIG_BLK_DEV_RAM_COUNT=16 |
361 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 385 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
362 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 386 | CONFIG_BLK_DEV_XIP=y |
363 | # CONFIG_CDROM_PKTCDVD is not set | 387 | # CONFIG_CDROM_PKTCDVD is not set |
364 | # CONFIG_ATA_OVER_ETH is not set | 388 | # CONFIG_ATA_OVER_ETH is not set |
365 | # CONFIG_MISC_DEVICES is not set | 389 | # CONFIG_MISC_DEVICES is not set |
390 | CONFIG_HAVE_IDE=y | ||
366 | # CONFIG_IDE is not set | 391 | # CONFIG_IDE is not set |
367 | 392 | ||
368 | # | 393 | # |
@@ -402,18 +427,13 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
402 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 427 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
403 | CONFIG_SCSI_SAS_ATTRS=m | 428 | CONFIG_SCSI_SAS_ATTRS=m |
404 | CONFIG_SCSI_SAS_LIBSAS=m | 429 | CONFIG_SCSI_SAS_LIBSAS=m |
430 | CONFIG_SCSI_SAS_HOST_SMP=y | ||
405 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set | 431 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set |
432 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
406 | # CONFIG_SCSI_LOWLEVEL is not set | 433 | # CONFIG_SCSI_LOWLEVEL is not set |
407 | # CONFIG_ATA is not set | 434 | # CONFIG_ATA is not set |
408 | # CONFIG_MD is not set | 435 | # CONFIG_MD is not set |
409 | |||
410 | # | ||
411 | # Fusion MPT device support | ||
412 | # | ||
413 | # CONFIG_FUSION is not set | 436 | # CONFIG_FUSION is not set |
414 | # CONFIG_FUSION_SPI is not set | ||
415 | # CONFIG_FUSION_FC is not set | ||
416 | # CONFIG_FUSION_SAS is not set | ||
417 | 437 | ||
418 | # | 438 | # |
419 | # IEEE 1394 (FireWire) support | 439 | # IEEE 1394 (FireWire) support |
@@ -428,6 +448,7 @@ CONFIG_NETDEVICES=y | |||
428 | # CONFIG_MACVLAN is not set | 448 | # CONFIG_MACVLAN is not set |
429 | # CONFIG_EQUALIZER is not set | 449 | # CONFIG_EQUALIZER is not set |
430 | # CONFIG_TUN is not set | 450 | # CONFIG_TUN is not set |
451 | # CONFIG_VETH is not set | ||
431 | # CONFIG_ARCNET is not set | 452 | # CONFIG_ARCNET is not set |
432 | # CONFIG_PHYLIB is not set | 453 | # CONFIG_PHYLIB is not set |
433 | CONFIG_NET_ETHERNET=y | 454 | CONFIG_NET_ETHERNET=y |
@@ -440,6 +461,10 @@ CONFIG_MII=y | |||
440 | # CONFIG_DM9000 is not set | 461 | # CONFIG_DM9000 is not set |
441 | # CONFIG_NET_TULIP is not set | 462 | # CONFIG_NET_TULIP is not set |
442 | # CONFIG_HP100 is not set | 463 | # CONFIG_HP100 is not set |
464 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
465 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
466 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
467 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
443 | CONFIG_NET_PCI=y | 468 | CONFIG_NET_PCI=y |
444 | # CONFIG_PCNET32 is not set | 469 | # CONFIG_PCNET32 is not set |
445 | # CONFIG_AMD8111_ETH is not set | 470 | # CONFIG_AMD8111_ETH is not set |
@@ -447,7 +472,6 @@ CONFIG_NET_PCI=y | |||
447 | # CONFIG_B44 is not set | 472 | # CONFIG_B44 is not set |
448 | # CONFIG_FORCEDETH is not set | 473 | # CONFIG_FORCEDETH is not set |
449 | # CONFIG_TC35815 is not set | 474 | # CONFIG_TC35815 is not set |
450 | # CONFIG_DGRS is not set | ||
451 | # CONFIG_EEPRO100 is not set | 475 | # CONFIG_EEPRO100 is not set |
452 | CONFIG_E100=y | 476 | CONFIG_E100=y |
453 | # CONFIG_FEALNX is not set | 477 | # CONFIG_FEALNX is not set |
@@ -455,6 +479,7 @@ CONFIG_E100=y | |||
455 | # CONFIG_NE2K_PCI is not set | 479 | # CONFIG_NE2K_PCI is not set |
456 | # CONFIG_8139CP is not set | 480 | # CONFIG_8139CP is not set |
457 | # CONFIG_8139TOO is not set | 481 | # CONFIG_8139TOO is not set |
482 | # CONFIG_R6040 is not set | ||
458 | # CONFIG_SIS900 is not set | 483 | # CONFIG_SIS900 is not set |
459 | # CONFIG_EPIC100 is not set | 484 | # CONFIG_EPIC100 is not set |
460 | # CONFIG_SUNDANCE is not set | 485 | # CONFIG_SUNDANCE is not set |
@@ -470,6 +495,7 @@ CONFIG_E100=y | |||
470 | # | 495 | # |
471 | # CONFIG_WLAN_PRE80211 is not set | 496 | # CONFIG_WLAN_PRE80211 is not set |
472 | # CONFIG_WLAN_80211 is not set | 497 | # CONFIG_WLAN_80211 is not set |
498 | # CONFIG_IWLWIFI_LEDS is not set | ||
473 | 499 | ||
474 | # | 500 | # |
475 | # USB Network Adapters | 501 | # USB Network Adapters |
@@ -478,7 +504,6 @@ CONFIG_USB_CATC=m | |||
478 | CONFIG_USB_KAWETH=m | 504 | CONFIG_USB_KAWETH=m |
479 | CONFIG_USB_PEGASUS=m | 505 | CONFIG_USB_PEGASUS=m |
480 | CONFIG_USB_RTL8150=m | 506 | CONFIG_USB_RTL8150=m |
481 | # CONFIG_USB_USBNET_MII is not set | ||
482 | # CONFIG_USB_USBNET is not set | 507 | # CONFIG_USB_USBNET is not set |
483 | # CONFIG_WAN is not set | 508 | # CONFIG_WAN is not set |
484 | # CONFIG_FDDI is not set | 509 | # CONFIG_FDDI is not set |
@@ -486,7 +511,6 @@ CONFIG_USB_RTL8150=m | |||
486 | # CONFIG_PPP is not set | 511 | # CONFIG_PPP is not set |
487 | # CONFIG_SLIP is not set | 512 | # CONFIG_SLIP is not set |
488 | # CONFIG_NET_FC is not set | 513 | # CONFIG_NET_FC is not set |
489 | # CONFIG_SHAPER is not set | ||
490 | # CONFIG_NETCONSOLE is not set | 514 | # CONFIG_NETCONSOLE is not set |
491 | # CONFIG_NETPOLL is not set | 515 | # CONFIG_NETPOLL is not set |
492 | # CONFIG_NET_POLL_CONTROLLER is not set | 516 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -505,7 +529,6 @@ CONFIG_INPUT=y | |||
505 | # | 529 | # |
506 | # CONFIG_INPUT_MOUSEDEV is not set | 530 | # CONFIG_INPUT_MOUSEDEV is not set |
507 | # CONFIG_INPUT_JOYDEV is not set | 531 | # CONFIG_INPUT_JOYDEV is not set |
508 | # CONFIG_INPUT_TSDEV is not set | ||
509 | # CONFIG_INPUT_EVDEV is not set | 532 | # CONFIG_INPUT_EVDEV is not set |
510 | # CONFIG_INPUT_EVBUG is not set | 533 | # CONFIG_INPUT_EVBUG is not set |
511 | 534 | ||
@@ -532,7 +555,9 @@ CONFIG_VT=y | |||
532 | CONFIG_VT_CONSOLE=y | 555 | CONFIG_VT_CONSOLE=y |
533 | CONFIG_HW_CONSOLE=y | 556 | CONFIG_HW_CONSOLE=y |
534 | CONFIG_VT_HW_CONSOLE_BINDING=y | 557 | CONFIG_VT_HW_CONSOLE_BINDING=y |
558 | # CONFIG_DEVKMEM is not set | ||
535 | # CONFIG_SERIAL_NONSTANDARD is not set | 559 | # CONFIG_SERIAL_NONSTANDARD is not set |
560 | # CONFIG_NOZOMI is not set | ||
536 | 561 | ||
537 | # | 562 | # |
538 | # Serial drivers | 563 | # Serial drivers |
@@ -551,52 +576,62 @@ CONFIG_UNIX98_PTYS=y | |||
551 | CONFIG_LEGACY_PTYS=y | 576 | CONFIG_LEGACY_PTYS=y |
552 | CONFIG_LEGACY_PTY_COUNT=256 | 577 | CONFIG_LEGACY_PTY_COUNT=256 |
553 | # CONFIG_IPMI_HANDLER is not set | 578 | # CONFIG_IPMI_HANDLER is not set |
554 | # CONFIG_WATCHDOG is not set | ||
555 | # CONFIG_HW_RANDOM is not set | 579 | # CONFIG_HW_RANDOM is not set |
556 | # CONFIG_RTC is not set | ||
557 | # CONFIG_R3964 is not set | 580 | # CONFIG_R3964 is not set |
558 | # CONFIG_APPLICOM is not set | 581 | # CONFIG_APPLICOM is not set |
559 | # CONFIG_GPIO_TB0219 is not set | 582 | # CONFIG_GPIO_TB0219 is not set |
560 | # CONFIG_DRM is not set | ||
561 | CONFIG_GPIO_VR41XX=y | 583 | CONFIG_GPIO_VR41XX=y |
562 | # CONFIG_RAW_DRIVER is not set | 584 | # CONFIG_RAW_DRIVER is not set |
563 | # CONFIG_TCG_TPM is not set | 585 | # CONFIG_TCG_TPM is not set |
564 | CONFIG_DEVPORT=y | 586 | CONFIG_DEVPORT=y |
565 | # CONFIG_I2C is not set | 587 | # CONFIG_I2C is not set |
566 | |||
567 | # | ||
568 | # SPI support | ||
569 | # | ||
570 | # CONFIG_SPI is not set | 588 | # CONFIG_SPI is not set |
571 | # CONFIG_SPI_MASTER is not set | ||
572 | # CONFIG_W1 is not set | 589 | # CONFIG_W1 is not set |
573 | # CONFIG_POWER_SUPPLY is not set | 590 | # CONFIG_POWER_SUPPLY is not set |
574 | # CONFIG_HWMON is not set | 591 | # CONFIG_HWMON is not set |
592 | # CONFIG_THERMAL is not set | ||
593 | # CONFIG_WATCHDOG is not set | ||
594 | |||
595 | # | ||
596 | # Sonics Silicon Backplane | ||
597 | # | ||
598 | CONFIG_SSB_POSSIBLE=y | ||
599 | # CONFIG_SSB is not set | ||
575 | 600 | ||
576 | # | 601 | # |
577 | # Multifunction device drivers | 602 | # Multifunction device drivers |
578 | # | 603 | # |
579 | # CONFIG_MFD_SM501 is not set | 604 | # CONFIG_MFD_SM501 is not set |
605 | # CONFIG_HTC_PASIC3 is not set | ||
580 | 606 | ||
581 | # | 607 | # |
582 | # Multimedia devices | 608 | # Multimedia devices |
583 | # | 609 | # |
610 | |||
611 | # | ||
612 | # Multimedia core support | ||
613 | # | ||
584 | # CONFIG_VIDEO_DEV is not set | 614 | # CONFIG_VIDEO_DEV is not set |
585 | # CONFIG_DVB_CORE is not set | 615 | # CONFIG_DVB_CORE is not set |
616 | |||
617 | # | ||
618 | # Multimedia drivers | ||
619 | # | ||
586 | # CONFIG_DAB is not set | 620 | # CONFIG_DAB is not set |
587 | 621 | ||
588 | # | 622 | # |
589 | # Graphics support | 623 | # Graphics support |
590 | # | 624 | # |
625 | # CONFIG_DRM is not set | ||
626 | # CONFIG_VGASTATE is not set | ||
627 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
628 | # CONFIG_FB is not set | ||
591 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 629 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
592 | 630 | ||
593 | # | 631 | # |
594 | # Display device support | 632 | # Display device support |
595 | # | 633 | # |
596 | # CONFIG_DISPLAY_SUPPORT is not set | 634 | # CONFIG_DISPLAY_SUPPORT is not set |
597 | # CONFIG_VGASTATE is not set | ||
598 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
599 | # CONFIG_FB is not set | ||
600 | 635 | ||
601 | # | 636 | # |
602 | # Console display driver support | 637 | # Console display driver support |
@@ -615,6 +650,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
615 | CONFIG_USB_ARCH_HAS_EHCI=y | 650 | CONFIG_USB_ARCH_HAS_EHCI=y |
616 | CONFIG_USB=y | 651 | CONFIG_USB=y |
617 | # CONFIG_USB_DEBUG is not set | 652 | # CONFIG_USB_DEBUG is not set |
653 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
618 | 654 | ||
619 | # | 655 | # |
620 | # Miscellaneous USB options | 656 | # Miscellaneous USB options |
@@ -623,15 +659,18 @@ CONFIG_USB_DEVICEFS=y | |||
623 | CONFIG_USB_DEVICE_CLASS=y | 659 | CONFIG_USB_DEVICE_CLASS=y |
624 | # CONFIG_USB_DYNAMIC_MINORS is not set | 660 | # CONFIG_USB_DYNAMIC_MINORS is not set |
625 | # CONFIG_USB_OTG is not set | 661 | # CONFIG_USB_OTG is not set |
662 | # CONFIG_USB_OTG_WHITELIST is not set | ||
663 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
626 | 664 | ||
627 | # | 665 | # |
628 | # USB Host Controller Drivers | 666 | # USB Host Controller Drivers |
629 | # | 667 | # |
668 | # CONFIG_USB_C67X00_HCD is not set | ||
630 | CONFIG_USB_EHCI_HCD=y | 669 | CONFIG_USB_EHCI_HCD=y |
631 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
632 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 670 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
633 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 671 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
634 | # CONFIG_USB_ISP116X_HCD is not set | 672 | # CONFIG_USB_ISP116X_HCD is not set |
673 | # CONFIG_USB_ISP1760_HCD is not set | ||
635 | CONFIG_USB_OHCI_HCD=y | 674 | CONFIG_USB_OHCI_HCD=y |
636 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 675 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
637 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 676 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
@@ -657,13 +696,16 @@ CONFIG_USB_STORAGE=y | |||
657 | # CONFIG_USB_STORAGE_DEBUG is not set | 696 | # CONFIG_USB_STORAGE_DEBUG is not set |
658 | # CONFIG_USB_STORAGE_DATAFAB is not set | 697 | # CONFIG_USB_STORAGE_DATAFAB is not set |
659 | # CONFIG_USB_STORAGE_FREECOM is not set | 698 | # CONFIG_USB_STORAGE_FREECOM is not set |
699 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
660 | # CONFIG_USB_STORAGE_DPCM is not set | 700 | # CONFIG_USB_STORAGE_DPCM is not set |
661 | # CONFIG_USB_STORAGE_USBAT is not set | 701 | # CONFIG_USB_STORAGE_USBAT is not set |
662 | # CONFIG_USB_STORAGE_SDDR09 is not set | 702 | # CONFIG_USB_STORAGE_SDDR09 is not set |
663 | # CONFIG_USB_STORAGE_SDDR55 is not set | 703 | # CONFIG_USB_STORAGE_SDDR55 is not set |
664 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 704 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
665 | # CONFIG_USB_STORAGE_ALAUDA is not set | 705 | # CONFIG_USB_STORAGE_ALAUDA is not set |
706 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
666 | # CONFIG_USB_STORAGE_KARMA is not set | 707 | # CONFIG_USB_STORAGE_KARMA is not set |
708 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
667 | # CONFIG_USB_LIBUSUAL is not set | 709 | # CONFIG_USB_LIBUSUAL is not set |
668 | 710 | ||
669 | # | 711 | # |
@@ -676,10 +718,6 @@ CONFIG_USB_STORAGE=y | |||
676 | # | 718 | # |
677 | # USB port drivers | 719 | # USB port drivers |
678 | # | 720 | # |
679 | |||
680 | # | ||
681 | # USB Serial Converter support | ||
682 | # | ||
683 | # CONFIG_USB_SERIAL is not set | 721 | # CONFIG_USB_SERIAL is not set |
684 | 722 | ||
685 | # | 723 | # |
@@ -705,17 +743,11 @@ CONFIG_USB_STORAGE=y | |||
705 | # CONFIG_USB_TRANCEVIBRATOR is not set | 743 | # CONFIG_USB_TRANCEVIBRATOR is not set |
706 | # CONFIG_USB_IOWARRIOR is not set | 744 | # CONFIG_USB_IOWARRIOR is not set |
707 | # CONFIG_USB_TEST is not set | 745 | # CONFIG_USB_TEST is not set |
708 | |||
709 | # | ||
710 | # USB DSL modem support | ||
711 | # | ||
712 | |||
713 | # | ||
714 | # USB Gadget Support | ||
715 | # | ||
716 | # CONFIG_USB_GADGET is not set | 746 | # CONFIG_USB_GADGET is not set |
717 | # CONFIG_MMC is not set | 747 | # CONFIG_MMC is not set |
748 | # CONFIG_MEMSTICK is not set | ||
718 | # CONFIG_NEW_LEDS is not set | 749 | # CONFIG_NEW_LEDS is not set |
750 | # CONFIG_ACCESSIBILITY is not set | ||
719 | # CONFIG_INFINIBAND is not set | 751 | # CONFIG_INFINIBAND is not set |
720 | CONFIG_RTC_LIB=y | 752 | CONFIG_RTC_LIB=y |
721 | CONFIG_RTC_CLASS=y | 753 | CONFIG_RTC_CLASS=y |
@@ -740,9 +772,10 @@ CONFIG_RTC_INTF_DEV=y | |||
740 | # Platform RTC drivers | 772 | # Platform RTC drivers |
741 | # | 773 | # |
742 | # CONFIG_RTC_DRV_CMOS is not set | 774 | # CONFIG_RTC_DRV_CMOS is not set |
775 | # CONFIG_RTC_DRV_DS1511 is not set | ||
743 | # CONFIG_RTC_DRV_DS1553 is not set | 776 | # CONFIG_RTC_DRV_DS1553 is not set |
744 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
745 | # CONFIG_RTC_DRV_DS1742 is not set | 777 | # CONFIG_RTC_DRV_DS1742 is not set |
778 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
746 | # CONFIG_RTC_DRV_M48T86 is not set | 779 | # CONFIG_RTC_DRV_M48T86 is not set |
747 | # CONFIG_RTC_DRV_M48T59 is not set | 780 | # CONFIG_RTC_DRV_M48T59 is not set |
748 | # CONFIG_RTC_DRV_V3020 is not set | 781 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -751,23 +784,6 @@ CONFIG_RTC_INTF_DEV=y | |||
751 | # on-CPU RTC drivers | 784 | # on-CPU RTC drivers |
752 | # | 785 | # |
753 | CONFIG_RTC_DRV_VR41XX=y | 786 | CONFIG_RTC_DRV_VR41XX=y |
754 | |||
755 | # | ||
756 | # DMA Engine support | ||
757 | # | ||
758 | # CONFIG_DMA_ENGINE is not set | ||
759 | |||
760 | # | ||
761 | # DMA Clients | ||
762 | # | ||
763 | |||
764 | # | ||
765 | # DMA Devices | ||
766 | # | ||
767 | |||
768 | # | ||
769 | # Userspace I/O | ||
770 | # | ||
771 | # CONFIG_UIO is not set | 787 | # CONFIG_UIO is not set |
772 | 788 | ||
773 | # | 789 | # |
@@ -782,14 +798,11 @@ CONFIG_EXT2_FS=y | |||
782 | # CONFIG_JFS_FS is not set | 798 | # CONFIG_JFS_FS is not set |
783 | CONFIG_FS_POSIX_ACL=y | 799 | CONFIG_FS_POSIX_ACL=y |
784 | # CONFIG_XFS_FS is not set | 800 | # CONFIG_XFS_FS is not set |
785 | # CONFIG_GFS2_FS is not set | ||
786 | # CONFIG_OCFS2_FS is not set | 801 | # CONFIG_OCFS2_FS is not set |
787 | # CONFIG_MINIX_FS is not set | 802 | CONFIG_DNOTIFY=y |
788 | CONFIG_ROMFS_FS=m | ||
789 | CONFIG_INOTIFY=y | 803 | CONFIG_INOTIFY=y |
790 | CONFIG_INOTIFY_USER=y | 804 | CONFIG_INOTIFY_USER=y |
791 | # CONFIG_QUOTA is not set | 805 | # CONFIG_QUOTA is not set |
792 | CONFIG_DNOTIFY=y | ||
793 | # CONFIG_AUTOFS_FS is not set | 806 | # CONFIG_AUTOFS_FS is not set |
794 | CONFIG_AUTOFS4_FS=y | 807 | CONFIG_AUTOFS4_FS=y |
795 | # CONFIG_FUSE_FS is not set | 808 | # CONFIG_FUSE_FS is not set |
@@ -818,7 +831,6 @@ CONFIG_SYSFS=y | |||
818 | CONFIG_TMPFS=y | 831 | CONFIG_TMPFS=y |
819 | CONFIG_TMPFS_POSIX_ACL=y | 832 | CONFIG_TMPFS_POSIX_ACL=y |
820 | # CONFIG_HUGETLB_PAGE is not set | 833 | # CONFIG_HUGETLB_PAGE is not set |
821 | CONFIG_RAMFS=y | ||
822 | # CONFIG_CONFIGFS_FS is not set | 834 | # CONFIG_CONFIGFS_FS is not set |
823 | 835 | ||
824 | # | 836 | # |
@@ -833,24 +845,21 @@ CONFIG_RAMFS=y | |||
833 | # CONFIG_EFS_FS is not set | 845 | # CONFIG_EFS_FS is not set |
834 | CONFIG_CRAMFS=m | 846 | CONFIG_CRAMFS=m |
835 | # CONFIG_VXFS_FS is not set | 847 | # CONFIG_VXFS_FS is not set |
848 | # CONFIG_MINIX_FS is not set | ||
836 | # CONFIG_HPFS_FS is not set | 849 | # CONFIG_HPFS_FS is not set |
837 | # CONFIG_QNX4FS_FS is not set | 850 | # CONFIG_QNX4FS_FS is not set |
851 | CONFIG_ROMFS_FS=m | ||
838 | # CONFIG_SYSV_FS is not set | 852 | # CONFIG_SYSV_FS is not set |
839 | # CONFIG_UFS_FS is not set | 853 | # CONFIG_UFS_FS is not set |
840 | 854 | CONFIG_NETWORK_FILESYSTEMS=y | |
841 | # | ||
842 | # Network File Systems | ||
843 | # | ||
844 | CONFIG_NFS_FS=y | 855 | CONFIG_NFS_FS=y |
845 | CONFIG_NFS_V3=y | 856 | CONFIG_NFS_V3=y |
846 | # CONFIG_NFS_V3_ACL is not set | 857 | # CONFIG_NFS_V3_ACL is not set |
847 | # CONFIG_NFS_V4 is not set | 858 | # CONFIG_NFS_V4 is not set |
848 | # CONFIG_NFS_DIRECTIO is not set | ||
849 | CONFIG_NFSD=m | 859 | CONFIG_NFSD=m |
850 | CONFIG_NFSD_V3=y | 860 | CONFIG_NFSD_V3=y |
851 | # CONFIG_NFSD_V3_ACL is not set | 861 | # CONFIG_NFSD_V3_ACL is not set |
852 | # CONFIG_NFSD_V4 is not set | 862 | # CONFIG_NFSD_V4 is not set |
853 | # CONFIG_NFSD_TCP is not set | ||
854 | CONFIG_ROOT_NFS=y | 863 | CONFIG_ROOT_NFS=y |
855 | CONFIG_LOCKD=y | 864 | CONFIG_LOCKD=y |
856 | CONFIG_LOCKD_V4=y | 865 | CONFIG_LOCKD_V4=y |
@@ -871,47 +880,38 @@ CONFIG_SUNRPC=y | |||
871 | # | 880 | # |
872 | # CONFIG_PARTITION_ADVANCED is not set | 881 | # CONFIG_PARTITION_ADVANCED is not set |
873 | CONFIG_MSDOS_PARTITION=y | 882 | CONFIG_MSDOS_PARTITION=y |
874 | |||
875 | # | ||
876 | # Native Language Support | ||
877 | # | ||
878 | # CONFIG_NLS is not set | 883 | # CONFIG_NLS is not set |
879 | |||
880 | # | ||
881 | # Distributed Lock Manager | ||
882 | # | ||
883 | # CONFIG_DLM is not set | 884 | # CONFIG_DLM is not set |
884 | 885 | ||
885 | # | 886 | # |
886 | # Profiling support | ||
887 | # | ||
888 | # CONFIG_PROFILING is not set | ||
889 | |||
890 | # | ||
891 | # Kernel hacking | 887 | # Kernel hacking |
892 | # | 888 | # |
893 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 889 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
894 | # CONFIG_PRINTK_TIME is not set | 890 | # CONFIG_PRINTK_TIME is not set |
891 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
895 | CONFIG_ENABLE_MUST_CHECK=y | 892 | CONFIG_ENABLE_MUST_CHECK=y |
893 | CONFIG_FRAME_WARN=1024 | ||
896 | # CONFIG_MAGIC_SYSRQ is not set | 894 | # CONFIG_MAGIC_SYSRQ is not set |
897 | # CONFIG_UNUSED_SYMBOLS is not set | 895 | # CONFIG_UNUSED_SYMBOLS is not set |
898 | # CONFIG_DEBUG_FS is not set | 896 | # CONFIG_DEBUG_FS is not set |
899 | # CONFIG_HEADERS_CHECK is not set | 897 | # CONFIG_HEADERS_CHECK is not set |
900 | # CONFIG_DEBUG_KERNEL is not set | 898 | # CONFIG_DEBUG_KERNEL is not set |
901 | CONFIG_CROSSCOMPILE=y | 899 | # CONFIG_SAMPLES is not set |
902 | CONFIG_CMDLINE="mem=32M console=ttyVR0,115200" | 900 | CONFIG_CMDLINE="cca=3 mem=32M console=ttyVR0,115200" |
903 | 901 | ||
904 | # | 902 | # |
905 | # Security options | 903 | # Security options |
906 | # | 904 | # |
907 | # CONFIG_KEYS is not set | 905 | # CONFIG_KEYS is not set |
908 | # CONFIG_SECURITY is not set | 906 | # CONFIG_SECURITY is not set |
907 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
909 | # CONFIG_CRYPTO is not set | 908 | # CONFIG_CRYPTO is not set |
910 | 909 | ||
911 | # | 910 | # |
912 | # Library routines | 911 | # Library routines |
913 | # | 912 | # |
914 | CONFIG_BITREVERSE=m | 913 | CONFIG_BITREVERSE=m |
914 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
915 | # CONFIG_CRC_CCITT is not set | 915 | # CONFIG_CRC_CCITT is not set |
916 | # CONFIG_CRC16 is not set | 916 | # CONFIG_CRC16 is not set |
917 | # CONFIG_CRC_ITU_T is not set | 917 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/configs/tb0287_defconfig b/arch/mips/configs/tb0287_defconfig index 40d4a40a970e..a5d0f3c55ed1 100644 --- a/arch/mips/configs/tb0287_defconfig +++ b/arch/mips/configs/tb0287_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
4 | # Thu Aug 9 14:03:54 2007 | 4 | # Mon May 12 11:55:55 2008 |
5 | # | 5 | # |
6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
7 | 7 | ||
@@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
10 | # | 10 | # |
11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
13 | # CONFIG_BCM47XX is not set | ||
13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
17 | # CONFIG_LASAT is not set | ||
16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
@@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
31 | # CONFIG_SGI_IP28 is not set | ||
29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
@@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
68 | CONFIG_CEVT_R4K=y | ||
69 | CONFIG_CSRC_R4K=y | ||
62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
@@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
@@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
138 | # CONFIG_TICK_ONESHOT is not set | ||
139 | # CONFIG_NO_HZ is not set | ||
140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
@@ -156,12 +171,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
159 | # CONFIG_USER_NS is not set | ||
160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
177 | # CONFIG_CGROUPS is not set | ||
178 | # CONFIG_GROUP_SCHED is not set | ||
163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
182 | # CONFIG_NAMESPACES is not set | ||
165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
@@ -173,6 +191,8 @@ CONFIG_HOTPLUG=y | |||
173 | CONFIG_PRINTK=y | 191 | CONFIG_PRINTK=y |
174 | CONFIG_BUG=y | 192 | CONFIG_BUG=y |
175 | CONFIG_ELF_CORE=y | 193 | CONFIG_ELF_CORE=y |
194 | # CONFIG_PCSPKR_PLATFORM is not set | ||
195 | CONFIG_COMPAT_BRK=y | ||
176 | CONFIG_BASE_FULL=y | 196 | CONFIG_BASE_FULL=y |
177 | CONFIG_FUTEX=y | 197 | CONFIG_FUTEX=y |
178 | CONFIG_ANON_INODES=y | 198 | CONFIG_ANON_INODES=y |
@@ -185,10 +205,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
185 | CONFIG_SLAB=y | 205 | CONFIG_SLAB=y |
186 | # CONFIG_SLUB is not set | 206 | # CONFIG_SLUB is not set |
187 | # CONFIG_SLOB is not set | 207 | # CONFIG_SLOB is not set |
208 | # CONFIG_PROFILING is not set | ||
209 | # CONFIG_MARKERS is not set | ||
210 | CONFIG_HAVE_OPROFILE=y | ||
211 | # CONFIG_HAVE_KPROBES is not set | ||
212 | # CONFIG_HAVE_KRETPROBES is not set | ||
213 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
214 | CONFIG_PROC_PAGE_MONITOR=y | ||
215 | CONFIG_SLABINFO=y | ||
188 | CONFIG_RT_MUTEXES=y | 216 | CONFIG_RT_MUTEXES=y |
189 | # CONFIG_TINY_SHMEM is not set | 217 | # CONFIG_TINY_SHMEM is not set |
190 | CONFIG_BASE_SMALL=0 | 218 | CONFIG_BASE_SMALL=0 |
191 | CONFIG_MODULES=y | 219 | CONFIG_MODULES=y |
220 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
192 | CONFIG_MODULE_UNLOAD=y | 221 | CONFIG_MODULE_UNLOAD=y |
193 | CONFIG_MODULE_FORCE_UNLOAD=y | 222 | CONFIG_MODULE_FORCE_UNLOAD=y |
194 | CONFIG_MODVERSIONS=y | 223 | CONFIG_MODVERSIONS=y |
@@ -212,18 +241,17 @@ CONFIG_DEFAULT_AS=y | |||
212 | # CONFIG_DEFAULT_CFQ is not set | 241 | # CONFIG_DEFAULT_CFQ is not set |
213 | # CONFIG_DEFAULT_NOOP is not set | 242 | # CONFIG_DEFAULT_NOOP is not set |
214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 243 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
244 | CONFIG_CLASSIC_RCU=y | ||
215 | 245 | ||
216 | # | 246 | # |
217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 247 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
218 | # | 248 | # |
219 | CONFIG_HW_HAS_PCI=y | 249 | CONFIG_HW_HAS_PCI=y |
220 | CONFIG_PCI=y | 250 | CONFIG_PCI=y |
251 | CONFIG_PCI_DOMAINS=y | ||
221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 252 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
253 | CONFIG_PCI_LEGACY=y | ||
222 | CONFIG_MMU=y | 254 | CONFIG_MMU=y |
223 | |||
224 | # | ||
225 | # PCCARD (PCMCIA/CardBus) support | ||
226 | # | ||
227 | # CONFIG_PCCARD is not set | 255 | # CONFIG_PCCARD is not set |
228 | # CONFIG_HOTPLUG_PCI is not set | 256 | # CONFIG_HOTPLUG_PCI is not set |
229 | 257 | ||
@@ -237,6 +265,7 @@ CONFIG_TRAD_SIGNALS=y | |||
237 | # | 265 | # |
238 | # Power management options | 266 | # Power management options |
239 | # | 267 | # |
268 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
240 | # CONFIG_PM is not set | 269 | # CONFIG_PM is not set |
241 | 270 | ||
242 | # | 271 | # |
@@ -278,6 +307,7 @@ CONFIG_INET_TUNNEL=m | |||
278 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 307 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
279 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 308 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
280 | # CONFIG_INET_XFRM_MODE_BEET is not set | 309 | # CONFIG_INET_XFRM_MODE_BEET is not set |
310 | # CONFIG_INET_LRO is not set | ||
281 | CONFIG_INET_DIAG=y | 311 | CONFIG_INET_DIAG=y |
282 | CONFIG_INET_TCP_DIAG=y | 312 | CONFIG_INET_TCP_DIAG=y |
283 | CONFIG_TCP_CONG_ADVANCED=y | 313 | CONFIG_TCP_CONG_ADVANCED=y |
@@ -302,8 +332,6 @@ CONFIG_DEFAULT_BIC=y | |||
302 | CONFIG_DEFAULT_TCP_CONG="bic" | 332 | CONFIG_DEFAULT_TCP_CONG="bic" |
303 | # CONFIG_TCP_MD5SIG is not set | 333 | # CONFIG_TCP_MD5SIG is not set |
304 | # CONFIG_IPV6 is not set | 334 | # CONFIG_IPV6 is not set |
305 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
306 | # CONFIG_INET6_TUNNEL is not set | ||
307 | CONFIG_NETWORK_SECMARK=y | 335 | CONFIG_NETWORK_SECMARK=y |
308 | # CONFIG_NETFILTER is not set | 336 | # CONFIG_NETFILTER is not set |
309 | # CONFIG_IP_DCCP is not set | 337 | # CONFIG_IP_DCCP is not set |
@@ -320,10 +348,6 @@ CONFIG_NETWORK_SECMARK=y | |||
320 | # CONFIG_LAPB is not set | 348 | # CONFIG_LAPB is not set |
321 | # CONFIG_ECONET is not set | 349 | # CONFIG_ECONET is not set |
322 | # CONFIG_WAN_ROUTER is not set | 350 | # CONFIG_WAN_ROUTER is not set |
323 | |||
324 | # | ||
325 | # QoS and/or fair queueing | ||
326 | # | ||
327 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
328 | 352 | ||
329 | # | 353 | # |
@@ -331,6 +355,7 @@ CONFIG_NETWORK_SECMARK=y | |||
331 | # | 355 | # |
332 | # CONFIG_NET_PKTGEN is not set | 356 | # CONFIG_NET_PKTGEN is not set |
333 | # CONFIG_HAMRADIO is not set | 357 | # CONFIG_HAMRADIO is not set |
358 | # CONFIG_CAN is not set | ||
334 | # CONFIG_IRDA is not set | 359 | # CONFIG_IRDA is not set |
335 | # CONFIG_BT is not set | 360 | # CONFIG_BT is not set |
336 | # CONFIG_AF_RXRPC is not set | 361 | # CONFIG_AF_RXRPC is not set |
@@ -353,6 +378,7 @@ CONFIG_FIB_RULES=y | |||
353 | # | 378 | # |
354 | # Generic Driver Options | 379 | # Generic Driver Options |
355 | # | 380 | # |
381 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
356 | CONFIG_STANDALONE=y | 382 | CONFIG_STANDALONE=y |
357 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 383 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
358 | CONFIG_FW_LOADER=m | 384 | CONFIG_FW_LOADER=m |
@@ -374,10 +400,11 @@ CONFIG_BLK_DEV_NBD=m | |||
374 | CONFIG_BLK_DEV_RAM=y | 400 | CONFIG_BLK_DEV_RAM=y |
375 | CONFIG_BLK_DEV_RAM_COUNT=16 | 401 | CONFIG_BLK_DEV_RAM_COUNT=16 |
376 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 402 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
377 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 403 | CONFIG_BLK_DEV_XIP=y |
378 | # CONFIG_CDROM_PKTCDVD is not set | 404 | # CONFIG_CDROM_PKTCDVD is not set |
379 | # CONFIG_ATA_OVER_ETH is not set | 405 | # CONFIG_ATA_OVER_ETH is not set |
380 | # CONFIG_MISC_DEVICES is not set | 406 | # CONFIG_MISC_DEVICES is not set |
407 | CONFIG_HAVE_IDE=y | ||
381 | # CONFIG_IDE is not set | 408 | # CONFIG_IDE is not set |
382 | 409 | ||
383 | # | 410 | # |
@@ -416,10 +443,14 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
416 | # CONFIG_SCSI_FC_ATTRS is not set | 443 | # CONFIG_SCSI_FC_ATTRS is not set |
417 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 444 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
418 | # CONFIG_SCSI_SAS_LIBSAS is not set | 445 | # CONFIG_SCSI_SAS_LIBSAS is not set |
446 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
419 | # CONFIG_SCSI_LOWLEVEL is not set | 447 | # CONFIG_SCSI_LOWLEVEL is not set |
420 | CONFIG_ATA=y | 448 | CONFIG_ATA=y |
421 | # CONFIG_ATA_NONSTANDARD is not set | 449 | # CONFIG_ATA_NONSTANDARD is not set |
450 | CONFIG_SATA_PMP=y | ||
422 | # CONFIG_SATA_AHCI is not set | 451 | # CONFIG_SATA_AHCI is not set |
452 | # CONFIG_SATA_SIL24 is not set | ||
453 | CONFIG_ATA_SFF=y | ||
423 | # CONFIG_SATA_SVW is not set | 454 | # CONFIG_SATA_SVW is not set |
424 | # CONFIG_ATA_PIIX is not set | 455 | # CONFIG_ATA_PIIX is not set |
425 | # CONFIG_SATA_MV is not set | 456 | # CONFIG_SATA_MV is not set |
@@ -429,7 +460,6 @@ CONFIG_ATA=y | |||
429 | # CONFIG_SATA_PROMISE is not set | 460 | # CONFIG_SATA_PROMISE is not set |
430 | # CONFIG_SATA_SX4 is not set | 461 | # CONFIG_SATA_SX4 is not set |
431 | # CONFIG_SATA_SIL is not set | 462 | # CONFIG_SATA_SIL is not set |
432 | # CONFIG_SATA_SIL24 is not set | ||
433 | # CONFIG_SATA_SIS is not set | 463 | # CONFIG_SATA_SIS is not set |
434 | # CONFIG_SATA_ULI is not set | 464 | # CONFIG_SATA_ULI is not set |
435 | # CONFIG_SATA_VIA is not set | 465 | # CONFIG_SATA_VIA is not set |
@@ -458,7 +488,9 @@ CONFIG_ATA=y | |||
458 | # CONFIG_PATA_MPIIX is not set | 488 | # CONFIG_PATA_MPIIX is not set |
459 | # CONFIG_PATA_OLDPIIX is not set | 489 | # CONFIG_PATA_OLDPIIX is not set |
460 | # CONFIG_PATA_NETCELL is not set | 490 | # CONFIG_PATA_NETCELL is not set |
491 | # CONFIG_PATA_NINJA32 is not set | ||
461 | # CONFIG_PATA_NS87410 is not set | 492 | # CONFIG_PATA_NS87410 is not set |
493 | # CONFIG_PATA_NS87415 is not set | ||
462 | # CONFIG_PATA_OPTI is not set | 494 | # CONFIG_PATA_OPTI is not set |
463 | # CONFIG_PATA_OPTIDMA is not set | 495 | # CONFIG_PATA_OPTIDMA is not set |
464 | # CONFIG_PATA_PDC_OLD is not set | 496 | # CONFIG_PATA_PDC_OLD is not set |
@@ -472,15 +504,9 @@ CONFIG_PATA_SIL680=y | |||
472 | # CONFIG_PATA_VIA is not set | 504 | # CONFIG_PATA_VIA is not set |
473 | # CONFIG_PATA_WINBOND is not set | 505 | # CONFIG_PATA_WINBOND is not set |
474 | # CONFIG_PATA_PLATFORM is not set | 506 | # CONFIG_PATA_PLATFORM is not set |
507 | # CONFIG_PATA_SCH is not set | ||
475 | # CONFIG_MD is not set | 508 | # CONFIG_MD is not set |
476 | |||
477 | # | ||
478 | # Fusion MPT device support | ||
479 | # | ||
480 | # CONFIG_FUSION is not set | 509 | # CONFIG_FUSION is not set |
481 | # CONFIG_FUSION_SPI is not set | ||
482 | # CONFIG_FUSION_FC is not set | ||
483 | # CONFIG_FUSION_SAS is not set | ||
484 | 510 | ||
485 | # | 511 | # |
486 | # IEEE 1394 (FireWire) support | 512 | # IEEE 1394 (FireWire) support |
@@ -520,6 +546,7 @@ CONFIG_NETDEVICES=y | |||
520 | # CONFIG_MACVLAN is not set | 546 | # CONFIG_MACVLAN is not set |
521 | # CONFIG_EQUALIZER is not set | 547 | # CONFIG_EQUALIZER is not set |
522 | # CONFIG_TUN is not set | 548 | # CONFIG_TUN is not set |
549 | # CONFIG_VETH is not set | ||
523 | # CONFIG_ARCNET is not set | 550 | # CONFIG_ARCNET is not set |
524 | # CONFIG_PHYLIB is not set | 551 | # CONFIG_PHYLIB is not set |
525 | CONFIG_NET_ETHERNET=y | 552 | CONFIG_NET_ETHERNET=y |
@@ -532,6 +559,10 @@ CONFIG_MII=y | |||
532 | # CONFIG_DM9000 is not set | 559 | # CONFIG_DM9000 is not set |
533 | # CONFIG_NET_TULIP is not set | 560 | # CONFIG_NET_TULIP is not set |
534 | # CONFIG_HP100 is not set | 561 | # CONFIG_HP100 is not set |
562 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
563 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
564 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
565 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
535 | CONFIG_NET_PCI=y | 566 | CONFIG_NET_PCI=y |
536 | # CONFIG_PCNET32 is not set | 567 | # CONFIG_PCNET32 is not set |
537 | # CONFIG_AMD8111_ETH is not set | 568 | # CONFIG_AMD8111_ETH is not set |
@@ -539,7 +570,6 @@ CONFIG_NET_PCI=y | |||
539 | # CONFIG_B44 is not set | 570 | # CONFIG_B44 is not set |
540 | # CONFIG_FORCEDETH is not set | 571 | # CONFIG_FORCEDETH is not set |
541 | # CONFIG_TC35815 is not set | 572 | # CONFIG_TC35815 is not set |
542 | # CONFIG_DGRS is not set | ||
543 | # CONFIG_EEPRO100 is not set | 573 | # CONFIG_EEPRO100 is not set |
544 | # CONFIG_E100 is not set | 574 | # CONFIG_E100 is not set |
545 | # CONFIG_FEALNX is not set | 575 | # CONFIG_FEALNX is not set |
@@ -551,6 +581,7 @@ CONFIG_8139TOO_PIO=y | |||
551 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 581 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
552 | # CONFIG_8139TOO_8129 is not set | 582 | # CONFIG_8139TOO_8129 is not set |
553 | # CONFIG_8139_OLD_RX_RESET is not set | 583 | # CONFIG_8139_OLD_RX_RESET is not set |
584 | # CONFIG_R6040 is not set | ||
554 | # CONFIG_SIS900 is not set | 585 | # CONFIG_SIS900 is not set |
555 | # CONFIG_EPIC100 is not set | 586 | # CONFIG_EPIC100 is not set |
556 | # CONFIG_SUNDANCE is not set | 587 | # CONFIG_SUNDANCE is not set |
@@ -563,6 +594,10 @@ CONFIG_NETDEV_1000=y | |||
563 | # CONFIG_ACENIC is not set | 594 | # CONFIG_ACENIC is not set |
564 | # CONFIG_DL2K is not set | 595 | # CONFIG_DL2K is not set |
565 | # CONFIG_E1000 is not set | 596 | # CONFIG_E1000 is not set |
597 | # CONFIG_E1000E is not set | ||
598 | # CONFIG_E1000E_ENABLED is not set | ||
599 | # CONFIG_IP1000 is not set | ||
600 | # CONFIG_IGB is not set | ||
566 | # CONFIG_NS83820 is not set | 601 | # CONFIG_NS83820 is not set |
567 | # CONFIG_HAMACHI is not set | 602 | # CONFIG_HAMACHI is not set |
568 | # CONFIG_YELLOWFIN is not set | 603 | # CONFIG_YELLOWFIN is not set |
@@ -584,6 +619,7 @@ CONFIG_VIA_VELOCITY=y | |||
584 | # | 619 | # |
585 | # CONFIG_WLAN_PRE80211 is not set | 620 | # CONFIG_WLAN_PRE80211 is not set |
586 | # CONFIG_WLAN_80211 is not set | 621 | # CONFIG_WLAN_80211 is not set |
622 | # CONFIG_IWLWIFI_LEDS is not set | ||
587 | 623 | ||
588 | # | 624 | # |
589 | # USB Network Adapters | 625 | # USB Network Adapters |
@@ -592,7 +628,6 @@ CONFIG_VIA_VELOCITY=y | |||
592 | # CONFIG_USB_KAWETH is not set | 628 | # CONFIG_USB_KAWETH is not set |
593 | # CONFIG_USB_PEGASUS is not set | 629 | # CONFIG_USB_PEGASUS is not set |
594 | # CONFIG_USB_RTL8150 is not set | 630 | # CONFIG_USB_RTL8150 is not set |
595 | # CONFIG_USB_USBNET_MII is not set | ||
596 | # CONFIG_USB_USBNET is not set | 631 | # CONFIG_USB_USBNET is not set |
597 | # CONFIG_WAN is not set | 632 | # CONFIG_WAN is not set |
598 | # CONFIG_FDDI is not set | 633 | # CONFIG_FDDI is not set |
@@ -600,7 +635,6 @@ CONFIG_VIA_VELOCITY=y | |||
600 | # CONFIG_PPP is not set | 635 | # CONFIG_PPP is not set |
601 | # CONFIG_SLIP is not set | 636 | # CONFIG_SLIP is not set |
602 | # CONFIG_NET_FC is not set | 637 | # CONFIG_NET_FC is not set |
603 | # CONFIG_SHAPER is not set | ||
604 | # CONFIG_NETCONSOLE is not set | 638 | # CONFIG_NETCONSOLE is not set |
605 | # CONFIG_NETPOLL is not set | 639 | # CONFIG_NETPOLL is not set |
606 | # CONFIG_NET_POLL_CONTROLLER is not set | 640 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -622,7 +656,6 @@ CONFIG_INPUT_MOUSEDEV_PSAUX=y | |||
622 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | 656 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 |
623 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | 657 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 |
624 | # CONFIG_INPUT_JOYDEV is not set | 658 | # CONFIG_INPUT_JOYDEV is not set |
625 | # CONFIG_INPUT_TSDEV is not set | ||
626 | # CONFIG_INPUT_EVDEV is not set | 659 | # CONFIG_INPUT_EVDEV is not set |
627 | # CONFIG_INPUT_EVBUG is not set | 660 | # CONFIG_INPUT_EVBUG is not set |
628 | 661 | ||
@@ -649,7 +682,9 @@ CONFIG_VT=y | |||
649 | CONFIG_VT_CONSOLE=y | 682 | CONFIG_VT_CONSOLE=y |
650 | CONFIG_HW_CONSOLE=y | 683 | CONFIG_HW_CONSOLE=y |
651 | CONFIG_VT_HW_CONSOLE_BINDING=y | 684 | CONFIG_VT_HW_CONSOLE_BINDING=y |
685 | # CONFIG_DEVKMEM is not set | ||
652 | # CONFIG_SERIAL_NONSTANDARD is not set | 686 | # CONFIG_SERIAL_NONSTANDARD is not set |
687 | # CONFIG_NOZOMI is not set | ||
653 | 688 | ||
654 | # | 689 | # |
655 | # Serial drivers | 690 | # Serial drivers |
@@ -668,49 +703,53 @@ CONFIG_UNIX98_PTYS=y | |||
668 | CONFIG_LEGACY_PTYS=y | 703 | CONFIG_LEGACY_PTYS=y |
669 | CONFIG_LEGACY_PTY_COUNT=256 | 704 | CONFIG_LEGACY_PTY_COUNT=256 |
670 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
671 | # CONFIG_WATCHDOG is not set | ||
672 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
673 | # CONFIG_RTC is not set | ||
674 | # CONFIG_R3964 is not set | 707 | # CONFIG_R3964 is not set |
675 | # CONFIG_APPLICOM is not set | 708 | # CONFIG_APPLICOM is not set |
676 | # CONFIG_GPIO_TB0219 is not set | 709 | # CONFIG_GPIO_TB0219 is not set |
677 | # CONFIG_DRM is not set | ||
678 | CONFIG_GPIO_VR41XX=y | 710 | CONFIG_GPIO_VR41XX=y |
679 | # CONFIG_RAW_DRIVER is not set | 711 | # CONFIG_RAW_DRIVER is not set |
680 | # CONFIG_TCG_TPM is not set | 712 | # CONFIG_TCG_TPM is not set |
681 | CONFIG_DEVPORT=y | 713 | CONFIG_DEVPORT=y |
682 | # CONFIG_I2C is not set | 714 | # CONFIG_I2C is not set |
683 | |||
684 | # | ||
685 | # SPI support | ||
686 | # | ||
687 | # CONFIG_SPI is not set | 715 | # CONFIG_SPI is not set |
688 | # CONFIG_SPI_MASTER is not set | ||
689 | # CONFIG_W1 is not set | 716 | # CONFIG_W1 is not set |
690 | # CONFIG_POWER_SUPPLY is not set | 717 | # CONFIG_POWER_SUPPLY is not set |
691 | # CONFIG_HWMON is not set | 718 | # CONFIG_HWMON is not set |
719 | # CONFIG_THERMAL is not set | ||
720 | # CONFIG_WATCHDOG is not set | ||
721 | |||
722 | # | ||
723 | # Sonics Silicon Backplane | ||
724 | # | ||
725 | CONFIG_SSB_POSSIBLE=y | ||
726 | # CONFIG_SSB is not set | ||
692 | 727 | ||
693 | # | 728 | # |
694 | # Multifunction device drivers | 729 | # Multifunction device drivers |
695 | # | 730 | # |
696 | CONFIG_MFD_SM501=y | 731 | CONFIG_MFD_SM501=y |
732 | # CONFIG_HTC_PASIC3 is not set | ||
697 | 733 | ||
698 | # | 734 | # |
699 | # Multimedia devices | 735 | # Multimedia devices |
700 | # | 736 | # |
737 | |||
738 | # | ||
739 | # Multimedia core support | ||
740 | # | ||
701 | # CONFIG_VIDEO_DEV is not set | 741 | # CONFIG_VIDEO_DEV is not set |
702 | # CONFIG_DVB_CORE is not set | 742 | # CONFIG_DVB_CORE is not set |
703 | # CONFIG_DAB is not set | ||
704 | 743 | ||
705 | # | 744 | # |
706 | # Graphics support | 745 | # Multimedia drivers |
707 | # | 746 | # |
708 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 747 | # CONFIG_DAB is not set |
709 | 748 | ||
710 | # | 749 | # |
711 | # Display device support | 750 | # Graphics support |
712 | # | 751 | # |
713 | # CONFIG_DISPLAY_SUPPORT is not set | 752 | # CONFIG_DRM is not set |
714 | # CONFIG_VGASTATE is not set | 753 | # CONFIG_VGASTATE is not set |
715 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 754 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
716 | CONFIG_FB=y | 755 | CONFIG_FB=y |
@@ -719,9 +758,11 @@ CONFIG_FB=y | |||
719 | CONFIG_FB_CFB_FILLRECT=y | 758 | CONFIG_FB_CFB_FILLRECT=y |
720 | CONFIG_FB_CFB_COPYAREA=y | 759 | CONFIG_FB_CFB_COPYAREA=y |
721 | CONFIG_FB_CFB_IMAGEBLIT=y | 760 | CONFIG_FB_CFB_IMAGEBLIT=y |
761 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
722 | # CONFIG_FB_SYS_FILLRECT is not set | 762 | # CONFIG_FB_SYS_FILLRECT is not set |
723 | # CONFIG_FB_SYS_COPYAREA is not set | 763 | # CONFIG_FB_SYS_COPYAREA is not set |
724 | # CONFIG_FB_SYS_IMAGEBLIT is not set | 764 | # CONFIG_FB_SYS_IMAGEBLIT is not set |
765 | # CONFIG_FB_FOREIGN_ENDIAN is not set | ||
725 | # CONFIG_FB_SYS_FOPS is not set | 766 | # CONFIG_FB_SYS_FOPS is not set |
726 | CONFIG_FB_DEFERRED_IO=y | 767 | CONFIG_FB_DEFERRED_IO=y |
727 | # CONFIG_FB_SVGALIB is not set | 768 | # CONFIG_FB_SVGALIB is not set |
@@ -757,7 +798,14 @@ CONFIG_FB_DEFERRED_IO=y | |||
757 | # CONFIG_FB_ARK is not set | 798 | # CONFIG_FB_ARK is not set |
758 | # CONFIG_FB_PM3 is not set | 799 | # CONFIG_FB_PM3 is not set |
759 | CONFIG_FB_SM501=y | 800 | CONFIG_FB_SM501=y |
801 | # CONFIG_FB_COBALT is not set | ||
760 | # CONFIG_FB_VIRTUAL is not set | 802 | # CONFIG_FB_VIRTUAL is not set |
803 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
804 | |||
805 | # | ||
806 | # Display device support | ||
807 | # | ||
808 | # CONFIG_DISPLAY_SUPPORT is not set | ||
761 | 809 | ||
762 | # | 810 | # |
763 | # Console display driver support | 811 | # Console display driver support |
@@ -787,6 +835,7 @@ CONFIG_FONT_8x16=y | |||
787 | CONFIG_HID_SUPPORT=y | 835 | CONFIG_HID_SUPPORT=y |
788 | CONFIG_HID=y | 836 | CONFIG_HID=y |
789 | # CONFIG_HID_DEBUG is not set | 837 | # CONFIG_HID_DEBUG is not set |
838 | # CONFIG_HIDRAW is not set | ||
790 | 839 | ||
791 | # | 840 | # |
792 | # USB Input Devices | 841 | # USB Input Devices |
@@ -807,6 +856,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
807 | CONFIG_USB_ARCH_HAS_EHCI=y | 856 | CONFIG_USB_ARCH_HAS_EHCI=y |
808 | CONFIG_USB=m | 857 | CONFIG_USB=m |
809 | # CONFIG_USB_DEBUG is not set | 858 | # CONFIG_USB_DEBUG is not set |
859 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
810 | 860 | ||
811 | # | 861 | # |
812 | # Miscellaneous USB options | 862 | # Miscellaneous USB options |
@@ -815,15 +865,18 @@ CONFIG_USB=m | |||
815 | CONFIG_USB_DEVICE_CLASS=y | 865 | CONFIG_USB_DEVICE_CLASS=y |
816 | # CONFIG_USB_DYNAMIC_MINORS is not set | 866 | # CONFIG_USB_DYNAMIC_MINORS is not set |
817 | # CONFIG_USB_OTG is not set | 867 | # CONFIG_USB_OTG is not set |
868 | # CONFIG_USB_OTG_WHITELIST is not set | ||
869 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
818 | 870 | ||
819 | # | 871 | # |
820 | # USB Host Controller Drivers | 872 | # USB Host Controller Drivers |
821 | # | 873 | # |
874 | # CONFIG_USB_C67X00_HCD is not set | ||
822 | CONFIG_USB_EHCI_HCD=m | 875 | CONFIG_USB_EHCI_HCD=m |
823 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
824 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 876 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
825 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 877 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
826 | # CONFIG_USB_ISP116X_HCD is not set | 878 | # CONFIG_USB_ISP116X_HCD is not set |
879 | # CONFIG_USB_ISP1760_HCD is not set | ||
827 | CONFIG_USB_OHCI_HCD=m | 880 | CONFIG_USB_OHCI_HCD=m |
828 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 881 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
829 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 882 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
@@ -849,13 +902,16 @@ CONFIG_USB_STORAGE=m | |||
849 | # CONFIG_USB_STORAGE_DEBUG is not set | 902 | # CONFIG_USB_STORAGE_DEBUG is not set |
850 | # CONFIG_USB_STORAGE_DATAFAB is not set | 903 | # CONFIG_USB_STORAGE_DATAFAB is not set |
851 | # CONFIG_USB_STORAGE_FREECOM is not set | 904 | # CONFIG_USB_STORAGE_FREECOM is not set |
905 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
852 | # CONFIG_USB_STORAGE_DPCM is not set | 906 | # CONFIG_USB_STORAGE_DPCM is not set |
853 | # CONFIG_USB_STORAGE_USBAT is not set | 907 | # CONFIG_USB_STORAGE_USBAT is not set |
854 | # CONFIG_USB_STORAGE_SDDR09 is not set | 908 | # CONFIG_USB_STORAGE_SDDR09 is not set |
855 | # CONFIG_USB_STORAGE_SDDR55 is not set | 909 | # CONFIG_USB_STORAGE_SDDR55 is not set |
856 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 910 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
857 | # CONFIG_USB_STORAGE_ALAUDA is not set | 911 | # CONFIG_USB_STORAGE_ALAUDA is not set |
912 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
858 | # CONFIG_USB_STORAGE_KARMA is not set | 913 | # CONFIG_USB_STORAGE_KARMA is not set |
914 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
859 | # CONFIG_USB_LIBUSUAL is not set | 915 | # CONFIG_USB_LIBUSUAL is not set |
860 | 916 | ||
861 | # | 917 | # |
@@ -868,10 +924,6 @@ CONFIG_USB_MON=y | |||
868 | # | 924 | # |
869 | # USB port drivers | 925 | # USB port drivers |
870 | # | 926 | # |
871 | |||
872 | # | ||
873 | # USB Serial Converter support | ||
874 | # | ||
875 | # CONFIG_USB_SERIAL is not set | 927 | # CONFIG_USB_SERIAL is not set |
876 | 928 | ||
877 | # | 929 | # |
@@ -896,36 +948,14 @@ CONFIG_USB_MON=y | |||
896 | # CONFIG_USB_LD is not set | 948 | # CONFIG_USB_LD is not set |
897 | # CONFIG_USB_TRANCEVIBRATOR is not set | 949 | # CONFIG_USB_TRANCEVIBRATOR is not set |
898 | # CONFIG_USB_IOWARRIOR is not set | 950 | # CONFIG_USB_IOWARRIOR is not set |
899 | |||
900 | # | ||
901 | # USB DSL modem support | ||
902 | # | ||
903 | |||
904 | # | ||
905 | # USB Gadget Support | ||
906 | # | ||
907 | # CONFIG_USB_GADGET is not set | 951 | # CONFIG_USB_GADGET is not set |
908 | # CONFIG_MMC is not set | 952 | # CONFIG_MMC is not set |
953 | # CONFIG_MEMSTICK is not set | ||
909 | # CONFIG_NEW_LEDS is not set | 954 | # CONFIG_NEW_LEDS is not set |
955 | # CONFIG_ACCESSIBILITY is not set | ||
910 | # CONFIG_INFINIBAND is not set | 956 | # CONFIG_INFINIBAND is not set |
957 | CONFIG_RTC_LIB=y | ||
911 | # CONFIG_RTC_CLASS is not set | 958 | # CONFIG_RTC_CLASS is not set |
912 | |||
913 | # | ||
914 | # DMA Engine support | ||
915 | # | ||
916 | # CONFIG_DMA_ENGINE is not set | ||
917 | |||
918 | # | ||
919 | # DMA Clients | ||
920 | # | ||
921 | |||
922 | # | ||
923 | # DMA Devices | ||
924 | # | ||
925 | |||
926 | # | ||
927 | # Userspace I/O | ||
928 | # | ||
929 | # CONFIG_UIO is not set | 959 | # CONFIG_UIO is not set |
930 | 960 | ||
931 | # | 961 | # |
@@ -940,25 +970,21 @@ CONFIG_EXT3_FS_XATTR=y | |||
940 | # CONFIG_EXT3_FS_SECURITY is not set | 970 | # CONFIG_EXT3_FS_SECURITY is not set |
941 | # CONFIG_EXT4DEV_FS is not set | 971 | # CONFIG_EXT4DEV_FS is not set |
942 | CONFIG_JBD=y | 972 | CONFIG_JBD=y |
943 | # CONFIG_JBD_DEBUG is not set | ||
944 | CONFIG_FS_MBCACHE=y | 973 | CONFIG_FS_MBCACHE=y |
945 | # CONFIG_REISERFS_FS is not set | 974 | # CONFIG_REISERFS_FS is not set |
946 | # CONFIG_JFS_FS is not set | 975 | # CONFIG_JFS_FS is not set |
947 | CONFIG_FS_POSIX_ACL=y | 976 | CONFIG_FS_POSIX_ACL=y |
948 | CONFIG_XFS_FS=y | 977 | CONFIG_XFS_FS=y |
949 | CONFIG_XFS_QUOTA=y | 978 | CONFIG_XFS_QUOTA=y |
950 | # CONFIG_XFS_SECURITY is not set | ||
951 | CONFIG_XFS_POSIX_ACL=y | 979 | CONFIG_XFS_POSIX_ACL=y |
952 | # CONFIG_XFS_RT is not set | 980 | # CONFIG_XFS_RT is not set |
953 | # CONFIG_GFS2_FS is not set | 981 | # CONFIG_XFS_DEBUG is not set |
954 | # CONFIG_OCFS2_FS is not set | 982 | # CONFIG_OCFS2_FS is not set |
955 | # CONFIG_MINIX_FS is not set | 983 | CONFIG_DNOTIFY=y |
956 | CONFIG_ROMFS_FS=m | ||
957 | CONFIG_INOTIFY=y | 984 | CONFIG_INOTIFY=y |
958 | CONFIG_INOTIFY_USER=y | 985 | CONFIG_INOTIFY_USER=y |
959 | # CONFIG_QUOTA is not set | 986 | # CONFIG_QUOTA is not set |
960 | CONFIG_QUOTACTL=y | 987 | CONFIG_QUOTACTL=y |
961 | CONFIG_DNOTIFY=y | ||
962 | # CONFIG_AUTOFS_FS is not set | 988 | # CONFIG_AUTOFS_FS is not set |
963 | CONFIG_AUTOFS4_FS=y | 989 | CONFIG_AUTOFS4_FS=y |
964 | # CONFIG_FUSE_FS is not set | 990 | # CONFIG_FUSE_FS is not set |
@@ -987,7 +1013,6 @@ CONFIG_SYSFS=y | |||
987 | CONFIG_TMPFS=y | 1013 | CONFIG_TMPFS=y |
988 | CONFIG_TMPFS_POSIX_ACL=y | 1014 | CONFIG_TMPFS_POSIX_ACL=y |
989 | # CONFIG_HUGETLB_PAGE is not set | 1015 | # CONFIG_HUGETLB_PAGE is not set |
990 | CONFIG_RAMFS=y | ||
991 | # CONFIG_CONFIGFS_FS is not set | 1016 | # CONFIG_CONFIGFS_FS is not set |
992 | 1017 | ||
993 | # | 1018 | # |
@@ -1002,24 +1027,21 @@ CONFIG_RAMFS=y | |||
1002 | # CONFIG_EFS_FS is not set | 1027 | # CONFIG_EFS_FS is not set |
1003 | CONFIG_CRAMFS=m | 1028 | CONFIG_CRAMFS=m |
1004 | # CONFIG_VXFS_FS is not set | 1029 | # CONFIG_VXFS_FS is not set |
1030 | # CONFIG_MINIX_FS is not set | ||
1005 | # CONFIG_HPFS_FS is not set | 1031 | # CONFIG_HPFS_FS is not set |
1006 | # CONFIG_QNX4FS_FS is not set | 1032 | # CONFIG_QNX4FS_FS is not set |
1033 | CONFIG_ROMFS_FS=m | ||
1007 | # CONFIG_SYSV_FS is not set | 1034 | # CONFIG_SYSV_FS is not set |
1008 | # CONFIG_UFS_FS is not set | 1035 | # CONFIG_UFS_FS is not set |
1009 | 1036 | CONFIG_NETWORK_FILESYSTEMS=y | |
1010 | # | ||
1011 | # Network File Systems | ||
1012 | # | ||
1013 | CONFIG_NFS_FS=y | 1037 | CONFIG_NFS_FS=y |
1014 | CONFIG_NFS_V3=y | 1038 | CONFIG_NFS_V3=y |
1015 | # CONFIG_NFS_V3_ACL is not set | 1039 | # CONFIG_NFS_V3_ACL is not set |
1016 | # CONFIG_NFS_V4 is not set | 1040 | # CONFIG_NFS_V4 is not set |
1017 | # CONFIG_NFS_DIRECTIO is not set | ||
1018 | CONFIG_NFSD=m | 1041 | CONFIG_NFSD=m |
1019 | CONFIG_NFSD_V3=y | 1042 | CONFIG_NFSD_V3=y |
1020 | # CONFIG_NFSD_V3_ACL is not set | 1043 | # CONFIG_NFSD_V3_ACL is not set |
1021 | # CONFIG_NFSD_V4 is not set | 1044 | # CONFIG_NFSD_V4 is not set |
1022 | CONFIG_NFSD_TCP=y | ||
1023 | CONFIG_ROOT_NFS=y | 1045 | CONFIG_ROOT_NFS=y |
1024 | CONFIG_LOCKD=y | 1046 | CONFIG_LOCKD=y |
1025 | CONFIG_LOCKD_V4=y | 1047 | CONFIG_LOCKD_V4=y |
@@ -1040,47 +1062,38 @@ CONFIG_SUNRPC=y | |||
1040 | # | 1062 | # |
1041 | # CONFIG_PARTITION_ADVANCED is not set | 1063 | # CONFIG_PARTITION_ADVANCED is not set |
1042 | CONFIG_MSDOS_PARTITION=y | 1064 | CONFIG_MSDOS_PARTITION=y |
1043 | |||
1044 | # | ||
1045 | # Native Language Support | ||
1046 | # | ||
1047 | # CONFIG_NLS is not set | 1065 | # CONFIG_NLS is not set |
1048 | |||
1049 | # | ||
1050 | # Distributed Lock Manager | ||
1051 | # | ||
1052 | # CONFIG_DLM is not set | 1066 | # CONFIG_DLM is not set |
1053 | 1067 | ||
1054 | # | 1068 | # |
1055 | # Profiling support | ||
1056 | # | ||
1057 | # CONFIG_PROFILING is not set | ||
1058 | |||
1059 | # | ||
1060 | # Kernel hacking | 1069 | # Kernel hacking |
1061 | # | 1070 | # |
1062 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1071 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
1063 | # CONFIG_PRINTK_TIME is not set | 1072 | # CONFIG_PRINTK_TIME is not set |
1073 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1064 | CONFIG_ENABLE_MUST_CHECK=y | 1074 | CONFIG_ENABLE_MUST_CHECK=y |
1075 | CONFIG_FRAME_WARN=1024 | ||
1065 | # CONFIG_MAGIC_SYSRQ is not set | 1076 | # CONFIG_MAGIC_SYSRQ is not set |
1066 | # CONFIG_UNUSED_SYMBOLS is not set | 1077 | # CONFIG_UNUSED_SYMBOLS is not set |
1067 | # CONFIG_DEBUG_FS is not set | 1078 | # CONFIG_DEBUG_FS is not set |
1068 | # CONFIG_HEADERS_CHECK is not set | 1079 | # CONFIG_HEADERS_CHECK is not set |
1069 | # CONFIG_DEBUG_KERNEL is not set | 1080 | # CONFIG_DEBUG_KERNEL is not set |
1070 | CONFIG_CROSSCOMPILE=y | 1081 | # CONFIG_SAMPLES is not set |
1071 | CONFIG_CMDLINE="mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" | 1082 | CONFIG_CMDLINE="cca=3 mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" |
1072 | 1083 | ||
1073 | # | 1084 | # |
1074 | # Security options | 1085 | # Security options |
1075 | # | 1086 | # |
1076 | # CONFIG_KEYS is not set | 1087 | # CONFIG_KEYS is not set |
1077 | # CONFIG_SECURITY is not set | 1088 | # CONFIG_SECURITY is not set |
1089 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1078 | # CONFIG_CRYPTO is not set | 1090 | # CONFIG_CRYPTO is not set |
1079 | 1091 | ||
1080 | # | 1092 | # |
1081 | # Library routines | 1093 | # Library routines |
1082 | # | 1094 | # |
1083 | CONFIG_BITREVERSE=y | 1095 | CONFIG_BITREVERSE=y |
1096 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
1084 | CONFIG_CRC_CCITT=y | 1097 | CONFIG_CRC_CCITT=y |
1085 | # CONFIG_CRC16 is not set | 1098 | # CONFIG_CRC16 is not set |
1086 | # CONFIG_CRC_ITU_T is not set | 1099 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/fw/arc/identify.c b/arch/mips/fw/arc/identify.c index 28dfd2e2989a..23066985a734 100644 --- a/arch/mips/fw/arc/identify.c +++ b/arch/mips/fw/arc/identify.c | |||
@@ -67,6 +67,11 @@ static struct smatch mach_table[] = { | |||
67 | .liname = "SNI RM200_PCI", | 67 | .liname = "SNI RM200_PCI", |
68 | .type = MACH_SNI_RM200_PCI, | 68 | .type = MACH_SNI_RM200_PCI, |
69 | .flags = PROM_FLAG_DONT_FREE_TEMP, | 69 | .flags = PROM_FLAG_DONT_FREE_TEMP, |
70 | }, { | ||
71 | .arcname = "RM200PCI-R5K", | ||
72 | .liname = "SNI RM200_PCI-R5K", | ||
73 | .type = MACH_SNI_RM200_PCI, | ||
74 | .flags = PROM_FLAG_DONT_FREE_TEMP, | ||
70 | } | 75 | } |
71 | }; | 76 | }; |
72 | 77 | ||
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 63370cdd3c90..cdf87a9dd4ba 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -216,6 +216,7 @@ int smp_call_function(void (*func) (void *info), void *info, int retry, | |||
216 | { | 216 | { |
217 | return smp_call_function_mask(cpu_online_map, func, info, retry, wait); | 217 | return smp_call_function_mask(cpu_online_map, func, info, retry, wait); |
218 | } | 218 | } |
219 | EXPORT_SYMBOL(smp_call_function); | ||
219 | 220 | ||
220 | void smp_call_function_interrupt(void) | 221 | void smp_call_function_interrupt(void) |
221 | { | 222 | { |
@@ -271,6 +272,7 @@ int smp_call_function_single(int cpu, void (*func) (void *info), void *info, | |||
271 | put_cpu(); | 272 | put_cpu(); |
272 | return 0; | 273 | return 0; |
273 | } | 274 | } |
275 | EXPORT_SYMBOL(smp_call_function_single); | ||
274 | 276 | ||
275 | static void stop_this_cpu(void *dummy) | 277 | static void stop_this_cpu(void *dummy) |
276 | { | 278 | { |
diff --git a/arch/mips/lasat/interrupt.c b/arch/mips/lasat/interrupt.c index cfeab669782f..a56c15026965 100644 --- a/arch/mips/lasat/interrupt.c +++ b/arch/mips/lasat/interrupt.c | |||
@@ -34,11 +34,13 @@ static volatile int lasat_int_mask_shift; | |||
34 | 34 | ||
35 | void disable_lasat_irq(unsigned int irq_nr) | 35 | void disable_lasat_irq(unsigned int irq_nr) |
36 | { | 36 | { |
37 | irq_nr -= LASAT_IRQ_BASE; | ||
37 | *lasat_int_mask &= ~(1 << irq_nr) << lasat_int_mask_shift; | 38 | *lasat_int_mask &= ~(1 << irq_nr) << lasat_int_mask_shift; |
38 | } | 39 | } |
39 | 40 | ||
40 | void enable_lasat_irq(unsigned int irq_nr) | 41 | void enable_lasat_irq(unsigned int irq_nr) |
41 | { | 42 | { |
43 | irq_nr -= LASAT_IRQ_BASE; | ||
42 | *lasat_int_mask |= (1 << irq_nr) << lasat_int_mask_shift; | 44 | *lasat_int_mask |= (1 << irq_nr) << lasat_int_mask_shift; |
43 | } | 45 | } |
44 | 46 | ||
diff --git a/arch/mips/lasat/lasat_board.c b/arch/mips/lasat/lasat_board.c index ec2f658c3709..31e328b3814d 100644 --- a/arch/mips/lasat/lasat_board.c +++ b/arch/mips/lasat/lasat_board.c | |||
@@ -23,18 +23,19 @@ | |||
23 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
24 | #include <linux/string.h> | 24 | #include <linux/string.h> |
25 | #include <linux/ctype.h> | 25 | #include <linux/ctype.h> |
26 | #include <linux/mutex.h> | ||
26 | #include <asm/bootinfo.h> | 27 | #include <asm/bootinfo.h> |
27 | #include <asm/addrspace.h> | 28 | #include <asm/addrspace.h> |
28 | #include "at93c.h" | 29 | #include "at93c.h" |
29 | /* New model description table */ | 30 | /* New model description table */ |
30 | #include "lasat_models.h" | 31 | #include "lasat_models.h" |
31 | 32 | ||
33 | static DEFINE_MUTEX(lasat_eeprom_mutex); | ||
34 | |||
32 | #define EEPROM_CRC(data, len) (~crc32(~0, data, len)) | 35 | #define EEPROM_CRC(data, len) (~crc32(~0, data, len)) |
33 | 36 | ||
34 | struct lasat_info lasat_board_info; | 37 | struct lasat_info lasat_board_info; |
35 | 38 | ||
36 | void update_bcastaddr(void); | ||
37 | |||
38 | int EEPROMRead(unsigned int pos, unsigned char *data, int len) | 39 | int EEPROMRead(unsigned int pos, unsigned char *data, int len) |
39 | { | 40 | { |
40 | int i; | 41 | int i; |
@@ -258,10 +259,6 @@ int lasat_init_board_info(void) | |||
258 | sprintf(lasat_board_info.li_typestr, "%d", 10 * c); | 259 | sprintf(lasat_board_info.li_typestr, "%d", 10 * c); |
259 | } | 260 | } |
260 | 261 | ||
261 | #if defined(CONFIG_INET) && defined(CONFIG_SYSCTL) | ||
262 | update_bcastaddr(); | ||
263 | #endif | ||
264 | |||
265 | return 0; | 262 | return 0; |
266 | } | 263 | } |
267 | 264 | ||
@@ -269,6 +266,8 @@ void lasat_write_eeprom_info(void) | |||
269 | { | 266 | { |
270 | unsigned long crc; | 267 | unsigned long crc; |
271 | 268 | ||
269 | mutex_lock(&lasat_eeprom_mutex); | ||
270 | |||
272 | /* Generate the CRC */ | 271 | /* Generate the CRC */ |
273 | crc = EEPROM_CRC((unsigned char *)(&lasat_board_info.li_eeprom_info), | 272 | crc = EEPROM_CRC((unsigned char *)(&lasat_board_info.li_eeprom_info), |
274 | sizeof(struct lasat_eeprom_struct) - 4); | 273 | sizeof(struct lasat_eeprom_struct) - 4); |
@@ -277,4 +276,6 @@ void lasat_write_eeprom_info(void) | |||
277 | /* Write the EEPROM info */ | 276 | /* Write the EEPROM info */ |
278 | EEPROMWrite(0, (unsigned char *)&lasat_board_info.li_eeprom_info, | 277 | EEPROMWrite(0, (unsigned char *)&lasat_board_info.li_eeprom_info, |
279 | sizeof(struct lasat_eeprom_struct)); | 278 | sizeof(struct lasat_eeprom_struct)); |
279 | |||
280 | mutex_unlock(&lasat_eeprom_mutex); | ||
280 | } | 281 | } |
diff --git a/arch/mips/lasat/sysctl.c b/arch/mips/lasat/sysctl.c index 389336c4ecc5..866881ec0cf8 100644 --- a/arch/mips/lasat/sysctl.c +++ b/arch/mips/lasat/sysctl.c | |||
@@ -29,15 +29,13 @@ | |||
29 | #include <linux/string.h> | 29 | #include <linux/string.h> |
30 | #include <linux/net.h> | 30 | #include <linux/net.h> |
31 | #include <linux/inet.h> | 31 | #include <linux/inet.h> |
32 | #include <linux/mutex.h> | ||
33 | #include <linux/uaccess.h> | 32 | #include <linux/uaccess.h> |
34 | 33 | ||
35 | #include <asm/time.h> | 34 | #include <asm/time.h> |
36 | 35 | ||
37 | #include "sysctl.h" | 36 | #ifdef CONFIG_DS1603 |
38 | #include "ds1603.h" | 37 | #include "ds1603.h" |
39 | 38 | #endif | |
40 | static DEFINE_MUTEX(lasat_info_mutex); | ||
41 | 39 | ||
42 | /* Strategy function to write EEPROM after changing string entry */ | 40 | /* Strategy function to write EEPROM after changing string entry */ |
43 | int sysctl_lasatstring(ctl_table *table, int *name, int nlen, | 41 | int sysctl_lasatstring(ctl_table *table, int *name, int nlen, |
@@ -46,18 +44,15 @@ int sysctl_lasatstring(ctl_table *table, int *name, int nlen, | |||
46 | { | 44 | { |
47 | int r; | 45 | int r; |
48 | 46 | ||
49 | mutex_lock(&lasat_info_mutex); | ||
50 | r = sysctl_string(table, name, | 47 | r = sysctl_string(table, name, |
51 | nlen, oldval, oldlenp, newval, newlen); | 48 | nlen, oldval, oldlenp, newval, newlen); |
52 | if (r < 0) { | 49 | if (r < 0) |
53 | mutex_unlock(&lasat_info_mutex); | ||
54 | return r; | 50 | return r; |
55 | } | 51 | |
56 | if (newval && newlen) | 52 | if (newval && newlen) |
57 | lasat_write_eeprom_info(); | 53 | lasat_write_eeprom_info(); |
58 | mutex_unlock(&lasat_info_mutex); | ||
59 | 54 | ||
60 | return 1; | 55 | return 0; |
61 | } | 56 | } |
62 | 57 | ||
63 | 58 | ||
@@ -67,14 +62,11 @@ int proc_dolasatstring(ctl_table *table, int write, struct file *filp, | |||
67 | { | 62 | { |
68 | int r; | 63 | int r; |
69 | 64 | ||
70 | mutex_lock(&lasat_info_mutex); | ||
71 | r = proc_dostring(table, write, filp, buffer, lenp, ppos); | 65 | r = proc_dostring(table, write, filp, buffer, lenp, ppos); |
72 | if ((!write) || r) { | 66 | if ((!write) || r) |
73 | mutex_unlock(&lasat_info_mutex); | ||
74 | return r; | 67 | return r; |
75 | } | 68 | |
76 | lasat_write_eeprom_info(); | 69 | lasat_write_eeprom_info(); |
77 | mutex_unlock(&lasat_info_mutex); | ||
78 | 70 | ||
79 | return 0; | 71 | return 0; |
80 | } | 72 | } |
@@ -85,28 +77,24 @@ int proc_dolasatint(ctl_table *table, int write, struct file *filp, | |||
85 | { | 77 | { |
86 | int r; | 78 | int r; |
87 | 79 | ||
88 | mutex_lock(&lasat_info_mutex); | ||
89 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 80 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
90 | if ((!write) || r) { | 81 | if ((!write) || r) |
91 | mutex_unlock(&lasat_info_mutex); | ||
92 | return r; | 82 | return r; |
93 | } | 83 | |
94 | lasat_write_eeprom_info(); | 84 | lasat_write_eeprom_info(); |
95 | mutex_unlock(&lasat_info_mutex); | ||
96 | 85 | ||
97 | return 0; | 86 | return 0; |
98 | } | 87 | } |
99 | 88 | ||
89 | #ifdef CONFIG_DS1603 | ||
100 | static int rtctmp; | 90 | static int rtctmp; |
101 | 91 | ||
102 | #ifdef CONFIG_DS1603 | ||
103 | /* proc function to read/write RealTime Clock */ | 92 | /* proc function to read/write RealTime Clock */ |
104 | int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, | 93 | int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, |
105 | void *buffer, size_t *lenp, loff_t *ppos) | 94 | void *buffer, size_t *lenp, loff_t *ppos) |
106 | { | 95 | { |
107 | int r; | 96 | int r; |
108 | 97 | ||
109 | mutex_lock(&lasat_info_mutex); | ||
110 | if (!write) { | 98 | if (!write) { |
111 | rtctmp = read_persistent_clock(); | 99 | rtctmp = read_persistent_clock(); |
112 | /* check for time < 0 and set to 0 */ | 100 | /* check for time < 0 and set to 0 */ |
@@ -114,12 +102,11 @@ int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, | |||
114 | rtctmp = 0; | 102 | rtctmp = 0; |
115 | } | 103 | } |
116 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 104 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
117 | if ((!write) || r) { | 105 | if (r) |
118 | mutex_unlock(&lasat_info_mutex); | ||
119 | return r; | 106 | return r; |
120 | } | 107 | |
121 | rtc_mips_set_mmss(rtctmp); | 108 | if (write) |
122 | mutex_unlock(&lasat_info_mutex); | 109 | rtc_mips_set_mmss(rtctmp); |
123 | 110 | ||
124 | return 0; | 111 | return 0; |
125 | } | 112 | } |
@@ -132,17 +119,14 @@ int sysctl_lasat_intvec(ctl_table *table, int *name, int nlen, | |||
132 | { | 119 | { |
133 | int r; | 120 | int r; |
134 | 121 | ||
135 | mutex_lock(&lasat_info_mutex); | ||
136 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 122 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
137 | if (r < 0) { | 123 | if (r < 0) |
138 | mutex_unlock(&lasat_info_mutex); | ||
139 | return r; | 124 | return r; |
140 | } | 125 | |
141 | if (newval && newlen) | 126 | if (newval && newlen) |
142 | lasat_write_eeprom_info(); | 127 | lasat_write_eeprom_info(); |
143 | mutex_unlock(&lasat_info_mutex); | ||
144 | 128 | ||
145 | return 1; | 129 | return 0; |
146 | } | 130 | } |
147 | 131 | ||
148 | #ifdef CONFIG_DS1603 | 132 | #ifdef CONFIG_DS1603 |
@@ -153,50 +137,27 @@ int sysctl_lasat_rtc(ctl_table *table, int *name, int nlen, | |||
153 | { | 137 | { |
154 | int r; | 138 | int r; |
155 | 139 | ||
156 | mutex_lock(&lasat_info_mutex); | ||
157 | rtctmp = read_persistent_clock(); | 140 | rtctmp = read_persistent_clock(); |
158 | if (rtctmp < 0) | 141 | if (rtctmp < 0) |
159 | rtctmp = 0; | 142 | rtctmp = 0; |
160 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 143 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
161 | if (r < 0) { | 144 | if (r < 0) |
162 | mutex_unlock(&lasat_info_mutex); | ||
163 | return r; | 145 | return r; |
164 | } | ||
165 | if (newval && newlen) | 146 | if (newval && newlen) |
166 | rtc_mips_set_mmss(rtctmp); | 147 | rtc_mips_set_mmss(rtctmp); |
167 | mutex_unlock(&lasat_info_mutex); | ||
168 | 148 | ||
169 | return 1; | 149 | return r; |
170 | } | 150 | } |
171 | #endif | 151 | #endif |
172 | 152 | ||
173 | #ifdef CONFIG_INET | 153 | #ifdef CONFIG_INET |
174 | static char lasat_bcastaddr[16]; | ||
175 | |||
176 | void update_bcastaddr(void) | ||
177 | { | ||
178 | unsigned int ip; | ||
179 | |||
180 | ip = (lasat_board_info.li_eeprom_info.ipaddr & | ||
181 | lasat_board_info.li_eeprom_info.netmask) | | ||
182 | ~lasat_board_info.li_eeprom_info.netmask; | ||
183 | |||
184 | sprintf(lasat_bcastaddr, "%d.%d.%d.%d", | ||
185 | (ip) & 0xff, | ||
186 | (ip >> 8) & 0xff, | ||
187 | (ip >> 16) & 0xff, | ||
188 | (ip >> 24) & 0xff); | ||
189 | } | ||
190 | |||
191 | static char proc_lasat_ipbuf[32]; | ||
192 | |||
193 | /* Parsing of IP address */ | ||
194 | int proc_lasat_ip(ctl_table *table, int write, struct file *filp, | 154 | int proc_lasat_ip(ctl_table *table, int write, struct file *filp, |
195 | void *buffer, size_t *lenp, loff_t *ppos) | 155 | void *buffer, size_t *lenp, loff_t *ppos) |
196 | { | 156 | { |
197 | unsigned int ip; | 157 | unsigned int ip; |
198 | char *p, c; | 158 | char *p, c; |
199 | int len; | 159 | int len; |
160 | char ipbuf[32]; | ||
200 | 161 | ||
201 | if (!table->data || !table->maxlen || !*lenp || | 162 | if (!table->data || !table->maxlen || !*lenp || |
202 | (*ppos && !write)) { | 163 | (*ppos && !write)) { |
@@ -204,117 +165,88 @@ int proc_lasat_ip(ctl_table *table, int write, struct file *filp, | |||
204 | return 0; | 165 | return 0; |
205 | } | 166 | } |
206 | 167 | ||
207 | mutex_lock(&lasat_info_mutex); | ||
208 | if (write) { | 168 | if (write) { |
209 | len = 0; | 169 | len = 0; |
210 | p = buffer; | 170 | p = buffer; |
211 | while (len < *lenp) { | 171 | while (len < *lenp) { |
212 | if (get_user(c, p++)) { | 172 | if (get_user(c, p++)) |
213 | mutex_unlock(&lasat_info_mutex); | ||
214 | return -EFAULT; | 173 | return -EFAULT; |
215 | } | ||
216 | if (c == 0 || c == '\n') | 174 | if (c == 0 || c == '\n') |
217 | break; | 175 | break; |
218 | len++; | 176 | len++; |
219 | } | 177 | } |
220 | if (len >= sizeof(proc_lasat_ipbuf)-1) | 178 | if (len >= sizeof(ipbuf)-1) |
221 | len = sizeof(proc_lasat_ipbuf) - 1; | 179 | len = sizeof(ipbuf) - 1; |
222 | if (copy_from_user(proc_lasat_ipbuf, buffer, len)) { | 180 | if (copy_from_user(ipbuf, buffer, len)) |
223 | mutex_unlock(&lasat_info_mutex); | ||
224 | return -EFAULT; | 181 | return -EFAULT; |
225 | } | 182 | ipbuf[len] = 0; |
226 | proc_lasat_ipbuf[len] = 0; | ||
227 | *ppos += *lenp; | 183 | *ppos += *lenp; |
228 | /* Now see if we can convert it to a valid IP */ | 184 | /* Now see if we can convert it to a valid IP */ |
229 | ip = in_aton(proc_lasat_ipbuf); | 185 | ip = in_aton(ipbuf); |
230 | *(unsigned int *)(table->data) = ip; | 186 | *(unsigned int *)(table->data) = ip; |
231 | lasat_write_eeprom_info(); | 187 | lasat_write_eeprom_info(); |
232 | } else { | 188 | } else { |
233 | ip = *(unsigned int *)(table->data); | 189 | ip = *(unsigned int *)(table->data); |
234 | sprintf(proc_lasat_ipbuf, "%d.%d.%d.%d", | 190 | sprintf(ipbuf, "%d.%d.%d.%d", |
235 | (ip) & 0xff, | 191 | (ip) & 0xff, |
236 | (ip >> 8) & 0xff, | 192 | (ip >> 8) & 0xff, |
237 | (ip >> 16) & 0xff, | 193 | (ip >> 16) & 0xff, |
238 | (ip >> 24) & 0xff); | 194 | (ip >> 24) & 0xff); |
239 | len = strlen(proc_lasat_ipbuf); | 195 | len = strlen(ipbuf); |
240 | if (len > *lenp) | 196 | if (len > *lenp) |
241 | len = *lenp; | 197 | len = *lenp; |
242 | if (len) | 198 | if (len) |
243 | if (copy_to_user(buffer, proc_lasat_ipbuf, len)) { | 199 | if (copy_to_user(buffer, ipbuf, len)) |
244 | mutex_unlock(&lasat_info_mutex); | ||
245 | return -EFAULT; | 200 | return -EFAULT; |
246 | } | ||
247 | if (len < *lenp) { | 201 | if (len < *lenp) { |
248 | if (put_user('\n', ((char *) buffer) + len)) { | 202 | if (put_user('\n', ((char *) buffer) + len)) |
249 | mutex_unlock(&lasat_info_mutex); | ||
250 | return -EFAULT; | 203 | return -EFAULT; |
251 | } | ||
252 | len++; | 204 | len++; |
253 | } | 205 | } |
254 | *lenp = len; | 206 | *lenp = len; |
255 | *ppos += len; | 207 | *ppos += len; |
256 | } | 208 | } |
257 | update_bcastaddr(); | ||
258 | mutex_unlock(&lasat_info_mutex); | ||
259 | 209 | ||
260 | return 0; | 210 | return 0; |
261 | } | 211 | } |
262 | #endif /* defined(CONFIG_INET) */ | 212 | #endif |
263 | 213 | ||
264 | static int sysctl_lasat_eeprom_value(ctl_table *table, int *name, int nlen, | 214 | static int sysctl_lasat_prid(ctl_table *table, int *name, int nlen, |
265 | void *oldval, size_t *oldlenp, | 215 | void *oldval, size_t *oldlenp, |
266 | void *newval, size_t newlen) | 216 | void *newval, size_t newlen) |
267 | { | 217 | { |
268 | int r; | 218 | int r; |
269 | 219 | ||
270 | mutex_lock(&lasat_info_mutex); | ||
271 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 220 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
272 | if (r < 0) { | 221 | if (r < 0) |
273 | mutex_unlock(&lasat_info_mutex); | ||
274 | return r; | 222 | return r; |
275 | } | ||
276 | |||
277 | if (newval && newlen) { | 223 | if (newval && newlen) { |
278 | if (name && *name == LASAT_PRID) | 224 | lasat_board_info.li_eeprom_info.prid = *(int *)newval; |
279 | lasat_board_info.li_eeprom_info.prid = *(int *)newval; | ||
280 | |||
281 | lasat_write_eeprom_info(); | 225 | lasat_write_eeprom_info(); |
282 | lasat_init_board_info(); | 226 | lasat_init_board_info(); |
283 | } | 227 | } |
284 | mutex_unlock(&lasat_info_mutex); | ||
285 | |||
286 | return 0; | 228 | return 0; |
287 | } | 229 | } |
288 | 230 | ||
289 | int proc_lasat_eeprom_value(ctl_table *table, int write, struct file *filp, | 231 | int proc_lasat_prid(ctl_table *table, int write, struct file *filp, |
290 | void *buffer, size_t *lenp, loff_t *ppos) | 232 | void *buffer, size_t *lenp, loff_t *ppos) |
291 | { | 233 | { |
292 | int r; | 234 | int r; |
293 | 235 | ||
294 | mutex_lock(&lasat_info_mutex); | ||
295 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 236 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
296 | if ((!write) || r) { | 237 | if (r < 0) |
297 | mutex_unlock(&lasat_info_mutex); | ||
298 | return r; | 238 | return r; |
239 | if (write) { | ||
240 | lasat_board_info.li_eeprom_info.prid = | ||
241 | lasat_board_info.li_prid; | ||
242 | lasat_write_eeprom_info(); | ||
243 | lasat_init_board_info(); | ||
299 | } | 244 | } |
300 | if (filp && filp->f_path.dentry) { | ||
301 | if (!strcmp(filp->f_path.dentry->d_name.name, "prid")) | ||
302 | lasat_board_info.li_eeprom_info.prid = | ||
303 | lasat_board_info.li_prid; | ||
304 | if (!strcmp(filp->f_path.dentry->d_name.name, "debugaccess")) | ||
305 | lasat_board_info.li_eeprom_info.debugaccess = | ||
306 | lasat_board_info.li_debugaccess; | ||
307 | } | ||
308 | lasat_write_eeprom_info(); | ||
309 | mutex_unlock(&lasat_info_mutex); | ||
310 | |||
311 | return 0; | 245 | return 0; |
312 | } | 246 | } |
313 | 247 | ||
314 | extern int lasat_boot_to_service; | 248 | extern int lasat_boot_to_service; |
315 | 249 | ||
316 | #ifdef CONFIG_SYSCTL | ||
317 | |||
318 | static ctl_table lasat_table[] = { | 250 | static ctl_table lasat_table[] = { |
319 | { | 251 | { |
320 | .ctl_name = CTL_UNNUMBERED, | 252 | .ctl_name = CTL_UNNUMBERED, |
@@ -349,8 +281,8 @@ static ctl_table lasat_table[] = { | |||
349 | .data = &lasat_board_info.li_prid, | 281 | .data = &lasat_board_info.li_prid, |
350 | .maxlen = sizeof(int), | 282 | .maxlen = sizeof(int), |
351 | .mode = 0644, | 283 | .mode = 0644, |
352 | .proc_handler = &proc_lasat_eeprom_value, | 284 | .proc_handler = &proc_lasat_prid, |
353 | .strategy = &sysctl_lasat_eeprom_value | 285 | .strategy = &sysctl_lasat_prid |
354 | }, | 286 | }, |
355 | #ifdef CONFIG_INET | 287 | #ifdef CONFIG_INET |
356 | { | 288 | { |
@@ -363,7 +295,7 @@ static ctl_table lasat_table[] = { | |||
363 | .strategy = &sysctl_lasat_intvec | 295 | .strategy = &sysctl_lasat_intvec |
364 | }, | 296 | }, |
365 | { | 297 | { |
366 | .ctl_name = LASAT_NETMASK, | 298 | .ctl_name = CTL_UNNUMBERED, |
367 | .procname = "netmask", | 299 | .procname = "netmask", |
368 | .data = &lasat_board_info.li_eeprom_info.netmask, | 300 | .data = &lasat_board_info.li_eeprom_info.netmask, |
369 | .maxlen = sizeof(int), | 301 | .maxlen = sizeof(int), |
@@ -371,15 +303,6 @@ static ctl_table lasat_table[] = { | |||
371 | .proc_handler = &proc_lasat_ip, | 303 | .proc_handler = &proc_lasat_ip, |
372 | .strategy = &sysctl_lasat_intvec | 304 | .strategy = &sysctl_lasat_intvec |
373 | }, | 305 | }, |
374 | { | ||
375 | .ctl_name = CTL_UNNUMBERED, | ||
376 | .procname = "bcastaddr", | ||
377 | .data = &lasat_bcastaddr, | ||
378 | .maxlen = sizeof(lasat_bcastaddr), | ||
379 | .mode = 0600, | ||
380 | .proc_handler = &proc_dostring, | ||
381 | .strategy = &sysctl_string | ||
382 | }, | ||
383 | #endif | 306 | #endif |
384 | { | 307 | { |
385 | .ctl_name = CTL_UNNUMBERED, | 308 | .ctl_name = CTL_UNNUMBERED, |
@@ -417,7 +340,7 @@ static ctl_table lasat_table[] = { | |||
417 | .data = &lasat_board_info.li_namestr, | 340 | .data = &lasat_board_info.li_namestr, |
418 | .maxlen = sizeof(lasat_board_info.li_namestr), | 341 | .maxlen = sizeof(lasat_board_info.li_namestr), |
419 | .mode = 0444, | 342 | .mode = 0444, |
420 | .proc_handler = &proc_dostring, | 343 | .proc_handler = &proc_dostring, |
421 | .strategy = &sysctl_string | 344 | .strategy = &sysctl_string |
422 | }, | 345 | }, |
423 | { | 346 | { |
@@ -448,9 +371,12 @@ static int __init lasat_register_sysctl(void) | |||
448 | 371 | ||
449 | lasat_table_header = | 372 | lasat_table_header = |
450 | register_sysctl_table(lasat_root_table); | 373 | register_sysctl_table(lasat_root_table); |
374 | if (!lasat_table_header) { | ||
375 | printk(KERN_ERR "Unable to register LASAT sysctl\n"); | ||
376 | return -ENOMEM; | ||
377 | } | ||
451 | 378 | ||
452 | return 0; | 379 | return 0; |
453 | } | 380 | } |
454 | 381 | ||
455 | __initcall(lasat_register_sysctl); | 382 | __initcall(lasat_register_sysctl); |
456 | #endif /* CONFIG_SYSCTL */ | ||
diff --git a/arch/mips/lasat/sysctl.h b/arch/mips/lasat/sysctl.h deleted file mode 100644 index 341b97933423..000000000000 --- a/arch/mips/lasat/sysctl.h +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | /* | ||
2 | * LASAT sysctl values | ||
3 | */ | ||
4 | |||
5 | #ifndef _LASAT_SYSCTL_H | ||
6 | #define _LASAT_SYSCTL_H | ||
7 | |||
8 | /* /proc/sys/lasat */ | ||
9 | enum { | ||
10 | LASAT_CPU_HZ = 1, | ||
11 | LASAT_BUS_HZ, | ||
12 | LASAT_MODEL, | ||
13 | LASAT_PRID, | ||
14 | LASAT_IPADDR, | ||
15 | LASAT_NETMASK, | ||
16 | LASAT_BCAST, | ||
17 | LASAT_PASSWORD, | ||
18 | LASAT_SBOOT, | ||
19 | LASAT_RTC, | ||
20 | LASAT_NAMESTR, | ||
21 | LASAT_TYPESTR, | ||
22 | }; | ||
23 | |||
24 | #endif /* _LASAT_SYSCTL_H */ | ||
diff --git a/arch/mips/mips-boards/generic/amon.c b/arch/mips/mips-boards/generic/amon.c index b7633fda4180..96236bf33838 100644 --- a/arch/mips/mips-boards/generic/amon.c +++ b/arch/mips/mips-boards/generic/amon.c | |||
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | int amon_cpu_avail(int cpu) | 29 | int amon_cpu_avail(int cpu) |
30 | { | 30 | { |
31 | struct cpulaunch *launch = (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 31 | struct cpulaunch *launch = (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); |
32 | 32 | ||
33 | if (cpu < 0 || cpu >= NCPULAUNCH) { | 33 | if (cpu < 0 || cpu >= NCPULAUNCH) { |
34 | pr_debug("avail: cpu%d is out of range\n", cpu); | 34 | pr_debug("avail: cpu%d is out of range\n", cpu); |
@@ -53,7 +53,7 @@ void amon_cpu_start(int cpu, | |||
53 | unsigned long gp, unsigned long a0) | 53 | unsigned long gp, unsigned long a0) |
54 | { | 54 | { |
55 | volatile struct cpulaunch *launch = | 55 | volatile struct cpulaunch *launch = |
56 | (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 56 | (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); |
57 | 57 | ||
58 | if (!amon_cpu_avail(cpu)) | 58 | if (!amon_cpu_avail(cpu)) |
59 | return; | 59 | return; |
diff --git a/arch/mips/mips-boards/malta/Makefile b/arch/mips/mips-boards/malta/Makefile index 8dc6e2ac4c03..db4ad654a6d3 100644 --- a/arch/mips/mips-boards/malta/Makefile +++ b/arch/mips/mips-boards/malta/Makefile | |||
@@ -19,9 +19,8 @@ | |||
19 | # under Linux. | 19 | # under Linux. |
20 | # | 20 | # |
21 | 21 | ||
22 | obj-y := malta_int.o malta_platform.o malta_setup.o | 22 | obj-y := malta_int.o malta_mtd.o malta_platform.o malta_setup.o |
23 | 23 | ||
24 | obj-$(CONFIG_MTD) += malta_mtd.o | ||
25 | # FIXME FIXME FIXME | 24 | # FIXME FIXME FIXME |
26 | obj-$(CONFIG_MIPS_MT_SMTC) += malta_smtc.o | 25 | obj-$(CONFIG_MIPS_MT_SMTC) += malta_smtc.o |
27 | 26 | ||
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 643c8bcffff3..27096751ddce 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -446,6 +446,7 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
446 | struct page *page = pfn_to_page(fcp_args->pfn); | 446 | struct page *page = pfn_to_page(fcp_args->pfn); |
447 | int exec = vma->vm_flags & VM_EXEC; | 447 | int exec = vma->vm_flags & VM_EXEC; |
448 | struct mm_struct *mm = vma->vm_mm; | 448 | struct mm_struct *mm = vma->vm_mm; |
449 | int map_coherent = 0; | ||
449 | pgd_t *pgdp; | 450 | pgd_t *pgdp; |
450 | pud_t *pudp; | 451 | pud_t *pudp; |
451 | pmd_t *pmdp; | 452 | pmd_t *pmdp; |
@@ -479,7 +480,9 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
479 | * Use kmap_coherent or kmap_atomic to do flushes for | 480 | * Use kmap_coherent or kmap_atomic to do flushes for |
480 | * another ASID than the current one. | 481 | * another ASID than the current one. |
481 | */ | 482 | */ |
482 | if (cpu_has_dc_aliases) | 483 | map_coherent = (cpu_has_dc_aliases && |
484 | page_mapped(page) && !Page_dcache_dirty(page)); | ||
485 | if (map_coherent) | ||
483 | vaddr = kmap_coherent(page, addr); | 486 | vaddr = kmap_coherent(page, addr); |
484 | else | 487 | else |
485 | vaddr = kmap_atomic(page, KM_USER0); | 488 | vaddr = kmap_atomic(page, KM_USER0); |
@@ -502,7 +505,7 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
502 | } | 505 | } |
503 | 506 | ||
504 | if (vaddr) { | 507 | if (vaddr) { |
505 | if (cpu_has_dc_aliases) | 508 | if (map_coherent) |
506 | kunmap_coherent(); | 509 | kunmap_coherent(); |
507 | else | 510 | else |
508 | kunmap_atomic(vaddr, KM_USER0); | 511 | kunmap_atomic(vaddr, KM_USER0); |
@@ -1226,6 +1229,28 @@ void au1x00_fixup_config_od(void) | |||
1226 | } | 1229 | } |
1227 | } | 1230 | } |
1228 | 1231 | ||
1232 | /* CP0 hazard avoidance. */ | ||
1233 | #define NXP_BARRIER() \ | ||
1234 | __asm__ __volatile__( \ | ||
1235 | ".set noreorder\n\t" \ | ||
1236 | "nop; nop; nop; nop; nop; nop;\n\t" \ | ||
1237 | ".set reorder\n\t") | ||
1238 | |||
1239 | static void nxp_pr4450_fixup_config(void) | ||
1240 | { | ||
1241 | unsigned long config0; | ||
1242 | |||
1243 | config0 = read_c0_config(); | ||
1244 | |||
1245 | /* clear all three cache coherency fields */ | ||
1246 | config0 &= ~(0x7 | (7 << 25) | (7 << 28)); | ||
1247 | config0 |= (((_page_cachable_default >> _CACHE_SHIFT) << 0) | | ||
1248 | ((_page_cachable_default >> _CACHE_SHIFT) << 25) | | ||
1249 | ((_page_cachable_default >> _CACHE_SHIFT) << 28)); | ||
1250 | write_c0_config(config0); | ||
1251 | NXP_BARRIER(); | ||
1252 | } | ||
1253 | |||
1229 | static int __cpuinitdata cca = -1; | 1254 | static int __cpuinitdata cca = -1; |
1230 | 1255 | ||
1231 | static int __init cca_setup(char *str) | 1256 | static int __init cca_setup(char *str) |
@@ -1271,6 +1296,10 @@ static void __cpuinit coherency_setup(void) | |||
1271 | case CPU_AU1500: /* rev. AB */ | 1296 | case CPU_AU1500: /* rev. AB */ |
1272 | au1x00_fixup_config_od(); | 1297 | au1x00_fixup_config_od(); |
1273 | break; | 1298 | break; |
1299 | |||
1300 | case PRID_IMP_PR4450: | ||
1301 | nxp_pr4450_fixup_config(); | ||
1302 | break; | ||
1274 | } | 1303 | } |
1275 | } | 1304 | } |
1276 | 1305 | ||
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index ecd562d2c348..137c14bafd6b 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
@@ -71,6 +71,7 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | |||
71 | * don't have to care about aliases on other CPUs. | 71 | * don't have to care about aliases on other CPUs. |
72 | */ | 72 | */ |
73 | unsigned long empty_zero_page, zero_page_mask; | 73 | unsigned long empty_zero_page, zero_page_mask; |
74 | EXPORT_SYMBOL_GPL(empty_zero_page); | ||
74 | 75 | ||
75 | /* | 76 | /* |
76 | * Not static inline because used by IP27 special magic initialization code | 77 | * Not static inline because used by IP27 special magic initialization code |
diff --git a/arch/mips/mm/page.c b/arch/mips/mm/page.c index cab81f42eee5..1edf0cbbeede 100644 --- a/arch/mips/mm/page.c +++ b/arch/mips/mm/page.c | |||
@@ -460,7 +460,7 @@ void __cpuinit build_copy_page(void) | |||
460 | build_copy_load_pref(&buf, -off); | 460 | build_copy_load_pref(&buf, -off); |
461 | off -= cache_line_size; | 461 | off -= cache_line_size; |
462 | } | 462 | } |
463 | off = cache_line_size ? min(8, pref_bias_copy_load / cache_line_size) * | 463 | off = cache_line_size ? min(8, pref_bias_copy_store / cache_line_size) * |
464 | cache_line_size : 0; | 464 | cache_line_size : 0; |
465 | while (off) { | 465 | while (off) { |
466 | build_copy_store_pref(&buf, -off); | 466 | build_copy_store_pref(&buf, -off); |
diff --git a/arch/mips/nxp/pnx8550/jbs/board_setup.c b/arch/mips/nxp/pnx8550/jbs/board_setup.c index f92826e0096d..57dd903ca408 100644 --- a/arch/mips/nxp/pnx8550/jbs/board_setup.c +++ b/arch/mips/nxp/pnx8550/jbs/board_setup.c | |||
@@ -47,16 +47,7 @@ | |||
47 | 47 | ||
48 | void __init board_setup(void) | 48 | void __init board_setup(void) |
49 | { | 49 | { |
50 | unsigned long config0, configpr; | 50 | unsigned long configpr; |
51 | |||
52 | config0 = read_c0_config(); | ||
53 | |||
54 | /* clear all three cache coherency fields */ | ||
55 | config0 &= ~(0x7 | (7<<25) | (7<<28)); | ||
56 | config0 |= (CONF_CM_DEFAULT | (CONF_CM_DEFAULT<<25) | | ||
57 | (CONF_CM_DEFAULT<<28)); | ||
58 | write_c0_config(config0); | ||
59 | BARRIER; | ||
60 | 51 | ||
61 | configpr = read_c0_config7(); | 52 | configpr = read_c0_config7(); |
62 | configpr |= (1<<19); /* enable tlb */ | 53 | configpr |= (1<<19); /* enable tlb */ |
diff --git a/arch/mips/nxp/pnx8550/stb810/board_setup.c b/arch/mips/nxp/pnx8550/stb810/board_setup.c index 1282c27cfcb7..af2a55e0b4e9 100644 --- a/arch/mips/nxp/pnx8550/stb810/board_setup.c +++ b/arch/mips/nxp/pnx8550/stb810/board_setup.c | |||
@@ -33,15 +33,7 @@ | |||
33 | 33 | ||
34 | void __init board_setup(void) | 34 | void __init board_setup(void) |
35 | { | 35 | { |
36 | unsigned long config0, configpr; | 36 | unsigned long configpr; |
37 | |||
38 | config0 = read_c0_config(); | ||
39 | |||
40 | /* clear all three cache coherency fields */ | ||
41 | config0 &= ~(0x7 | (7<<25) | (7<<28)); | ||
42 | config0 |= (CONF_CM_DEFAULT | (CONF_CM_DEFAULT<<25) | | ||
43 | (CONF_CM_DEFAULT<<28)); | ||
44 | write_c0_config(config0); | ||
45 | 37 | ||
46 | configpr = read_c0_config7(); | 38 | configpr = read_c0_config7(); |
47 | configpr |= (1<<19); /* enable tlb */ | 39 | configpr |= (1<<19); /* enable tlb */ |
diff --git a/arch/mips/pci/pci-sb1250.c b/arch/mips/pci/pci-sb1250.c index 42e4d2c800fa..2a09ad91ec8c 100644 --- a/arch/mips/pci/pci-sb1250.c +++ b/arch/mips/pci/pci-sb1250.c | |||
@@ -207,6 +207,7 @@ struct pci_controller sb1250_controller = { | |||
207 | 207 | ||
208 | static int __init sb1250_pcibios_init(void) | 208 | static int __init sb1250_pcibios_init(void) |
209 | { | 209 | { |
210 | void __iomem *io_map_base; | ||
210 | uint32_t cmdreg; | 211 | uint32_t cmdreg; |
211 | uint64_t reg; | 212 | uint64_t reg; |
212 | extern int pci_probe_only; | 213 | extern int pci_probe_only; |
@@ -253,12 +254,13 @@ static int __init sb1250_pcibios_init(void) | |||
253 | * works correctly with most of Linux's drivers. | 254 | * works correctly with most of Linux's drivers. |
254 | * XXX ehs: Should this happen in PCI Device mode? | 255 | * XXX ehs: Should this happen in PCI Device mode? |
255 | */ | 256 | */ |
256 | |||
257 | set_io_port_base((unsigned long) | ||
258 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES, 65536)); | ||
259 | isa_slot_offset = (unsigned long) | 257 | isa_slot_offset = (unsigned long) |
260 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES_32, 1024 * 1024); | 258 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES_32, 1024 * 1024); |
261 | 259 | ||
260 | io_map_base = ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES, 1024 * 1024); | ||
261 | sb1250_controller.io_map_base = io_map_base; | ||
262 | set_io_port_base((unsigned long)io_map_base); | ||
263 | |||
262 | #ifdef CONFIG_SIBYTE_HAS_LDT | 264 | #ifdef CONFIG_SIBYTE_HAS_LDT |
263 | /* | 265 | /* |
264 | * Also check the LDT bridge's enable, just in case we didn't | 266 | * Also check the LDT bridge's enable, just in case we didn't |
diff --git a/arch/mips/pci/pci-vr41xx.c b/arch/mips/pci/pci-vr41xx.c index 33c4f683d067..d1e049b55f34 100644 --- a/arch/mips/pci/pci-vr41xx.c +++ b/arch/mips/pci/pci-vr41xx.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2001-2003 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. |
5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> |
6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2004-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> |
7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) | 7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
@@ -300,6 +300,18 @@ static int __init vr41xx_pciu_init(void) | |||
300 | ioport_resource.end = IO_PORT_RESOURCE_END; | 300 | ioport_resource.end = IO_PORT_RESOURCE_END; |
301 | } | 301 | } |
302 | 302 | ||
303 | if (setup->master_io) { | ||
304 | void __iomem *io_map_base; | ||
305 | struct resource *res = vr41xx_pci_controller.io_resource; | ||
306 | master = setup->master_io; | ||
307 | io_map_base = ioremap(master->bus_base_address, | ||
308 | res->end - res->start + 1); | ||
309 | if (!io_map_base) | ||
310 | return -EBUSY; | ||
311 | |||
312 | vr41xx_pci_controller.io_map_base = (unsigned long)io_map_base; | ||
313 | } | ||
314 | |||
303 | register_pci_controller(&vr41xx_pci_controller); | 315 | register_pci_controller(&vr41xx_pci_controller); |
304 | 316 | ||
305 | return 0; | 317 | return 0; |
diff --git a/arch/mips/sibyte/swarm/Makefile b/arch/mips/sibyte/swarm/Makefile index 2d626039195c..1775755a2619 100644 --- a/arch/mips/sibyte/swarm/Makefile +++ b/arch/mips/sibyte/swarm/Makefile | |||
@@ -1,3 +1,3 @@ | |||
1 | lib-y = setup.o rtc_xicor1241.o rtc_m41t81.o | 1 | obj-y := setup.o rtc_xicor1241.o rtc_m41t81.o |
2 | 2 | ||
3 | lib-$(CONFIG_KGDB) += dbg_io.o | 3 | obj-$(CONFIG_KGDB) += dbg_io.o |
diff --git a/include/asm-mips/cpu-info.h b/include/asm-mips/cpu-info.h index 0c5a358863f3..2de73dbb2e9e 100644 --- a/include/asm-mips/cpu-info.h +++ b/include/asm-mips/cpu-info.h | |||
@@ -56,7 +56,7 @@ struct cpuinfo_mips { | |||
56 | struct cache_desc tcache; /* Tertiary/split secondary cache */ | 56 | struct cache_desc tcache; /* Tertiary/split secondary cache */ |
57 | int srsets; /* Shadow register sets */ | 57 | int srsets; /* Shadow register sets */ |
58 | int core; /* physical core number */ | 58 | int core; /* physical core number */ |
59 | #if defined(CONFIG_MIPS_MT_SMTC) | 59 | #if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_MIPS_MT_SMTC) |
60 | /* | 60 | /* |
61 | * In the MIPS MT "SMTC" model, each TC is considered | 61 | * In the MIPS MT "SMTC" model, each TC is considered |
62 | * to be a "CPU" for the purposes of scheduling, but | 62 | * to be a "CPU" for the purposes of scheduling, but |
@@ -64,7 +64,7 @@ struct cpuinfo_mips { | |||
64 | * to all TCs within the same VPE. | 64 | * to all TCs within the same VPE. |
65 | */ | 65 | */ |
66 | int vpe_id; /* Virtual Processor number */ | 66 | int vpe_id; /* Virtual Processor number */ |
67 | #endif /* CONFIG_MIPS_MT */ | 67 | #endif |
68 | #ifdef CONFIG_MIPS_MT_SMTC | 68 | #ifdef CONFIG_MIPS_MT_SMTC |
69 | int tc_id; /* Thread Context number */ | 69 | int tc_id; /* Thread Context number */ |
70 | #endif | 70 | #endif |
diff --git a/include/asm-mips/gic.h b/include/asm-mips/gic.h index 3a492f225f00..954807d9d66a 100644 --- a/include/asm-mips/gic.h +++ b/include/asm-mips/gic.h | |||
@@ -24,8 +24,8 @@ | |||
24 | 24 | ||
25 | #define MSK(n) ((1 << (n)) - 1) | 25 | #define MSK(n) ((1 << (n)) - 1) |
26 | #define REG32(addr) (*(volatile unsigned int *) (addr)) | 26 | #define REG32(addr) (*(volatile unsigned int *) (addr)) |
27 | #define REG(base, offs) REG32((unsigned int)(base) + offs##_##OFS) | 27 | #define REG(base, offs) REG32((unsigned long)(base) + offs##_##OFS) |
28 | #define REGP(base, phys) REG32((unsigned int)(base) + (phys)) | 28 | #define REGP(base, phys) REG32((unsigned long)(base) + (phys)) |
29 | 29 | ||
30 | /* Accessors */ | 30 | /* Accessors */ |
31 | #define GIC_REG(segment, offset) \ | 31 | #define GIC_REG(segment, offset) \ |
diff --git a/include/asm-mips/lasat/serial.h b/include/asm-mips/lasat/serial.h index bafe68b10614..1c37d70579b8 100644 --- a/include/asm-mips/lasat/serial.h +++ b/include/asm-mips/lasat/serial.h | |||
@@ -4,10 +4,10 @@ | |||
4 | #define LASAT_BASE_BAUD_100 (7372800 / 16) | 4 | #define LASAT_BASE_BAUD_100 (7372800 / 16) |
5 | #define LASAT_UART_REGS_BASE_100 0x1c8b0000 | 5 | #define LASAT_UART_REGS_BASE_100 0x1c8b0000 |
6 | #define LASAT_UART_REGS_SHIFT_100 2 | 6 | #define LASAT_UART_REGS_SHIFT_100 2 |
7 | #define LASATINT_UART_100 8 | 7 | #define LASATINT_UART_100 16 |
8 | 8 | ||
9 | /* * LASAT 200 boards serial configuration */ | 9 | /* * LASAT 200 boards serial configuration */ |
10 | #define LASAT_BASE_BAUD_200 (100000000 / 16 / 12) | 10 | #define LASAT_BASE_BAUD_200 (100000000 / 16 / 12) |
11 | #define LASAT_UART_REGS_BASE_200 (Vrc5074_PHYS_BASE + 0x0300) | 11 | #define LASAT_UART_REGS_BASE_200 (Vrc5074_PHYS_BASE + 0x0300) |
12 | #define LASAT_UART_REGS_SHIFT_200 3 | 12 | #define LASAT_UART_REGS_SHIFT_200 3 |
13 | #define LASATINT_UART_200 13 | 13 | #define LASATINT_UART_200 21 |
diff --git a/include/asm-mips/mach-au1x00/au1000.h b/include/asm-mips/mach-au1x00/au1000.h index 1b5064dac007..0d302bad4492 100644 --- a/include/asm-mips/mach-au1x00/au1000.h +++ b/include/asm-mips/mach-au1x00/au1000.h | |||
@@ -615,6 +615,7 @@ enum soc_au1500_ints { | |||
615 | AU1000_RTC_MATCH1_INT, | 615 | AU1000_RTC_MATCH1_INT, |
616 | AU1000_RTC_MATCH2_INT, | 616 | AU1000_RTC_MATCH2_INT, |
617 | AU1500_PCI_ERR_INT, | 617 | AU1500_PCI_ERR_INT, |
618 | AU1500_RESERVED_INT, | ||
618 | AU1000_USB_DEV_REQ_INT, | 619 | AU1000_USB_DEV_REQ_INT, |
619 | AU1000_USB_DEV_SUS_INT, | 620 | AU1000_USB_DEV_SUS_INT, |
620 | AU1000_USB_HOST_INT, | 621 | AU1000_USB_HOST_INT, |
diff --git a/include/asm-mips/pgtable-bits.h b/include/asm-mips/pgtable-bits.h index 60e2f9338fcd..51b34a48c84a 100644 --- a/include/asm-mips/pgtable-bits.h +++ b/include/asm-mips/pgtable-bits.h | |||
@@ -134,6 +134,4 @@ | |||
134 | 134 | ||
135 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_MODIFIED | _CACHE_MASK) | 135 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_MODIFIED | _CACHE_MASK) |
136 | 136 | ||
137 | #define CONF_CM_DEFAULT (PAGE_CACHABLE_DEFAULT>>_CACHE_SHIFT) | ||
138 | |||
139 | #endif /* _ASM_PGTABLE_BITS_H */ | 137 | #endif /* _ASM_PGTABLE_BITS_H */ |