Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus

* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus: (53 commits)
[MIPS] sparsemem: fix crash in show_mem
[MIPS] vr41xx: Update workpad setup function
[MIPS] vr41xx: Update e55 setup function
[MIPS] vr41xx: Removed old v2.4 VRC4173 driver
[MIPS] vr41xx: Move IRQ numbers to asm-mips/vr41xx/irq.h
[MIPS] MIPSsim: Build fix, rename sim_timer_setup -> plat_timer_setup.
[MIPS] Remove unused code.
[MIPS] IP22 Fix brown paper bag in RTC code.
[MIPS] Atlas, Malta, SEAD: Don't disable interrupts in mips_time_init().
[MIPS] Replace board_timer_setup function pointer by plat_timer_setup.
[MIPS] Nuke redeclarations of board_time_init.
[MIPS] Remove redeclarations of setup_irq().
[MIPS] Nuke redeclarations of board_timer_setup.
[MIPS] Print out TLB handler assembly for debugging.
[MIPS] SMTC: Reformat to Linux style.
[MIPS] MIPSsim: Delete redeclaration of ll_local_timer_interrupt.
[MIPS] IP27: Reformatting.
[MIPS] IP27: Invoke setup_irq for timer interrupt so proc stats will be shown.
[MIPS] IP27: irq_chip startup method returns unsigned int.
[MIPS] IP27: struct irq_desc member handler was renamed to chip.
...

+3039 -3237
+4 -6
Documentation/mips/time.README
··· 65 1. (optional) set up RTC routines 66 2. (optional) calibrate and set the mips_counter_frequency 67 68 - b) board_timer_setup - a function pointer. Invoked at the end of time_init() 69 1. (optional) over-ride any decisions made in time_init() 70 2. set up the irqaction for timer interrupt. 71 3. enable the timer interrupt ··· 116 117 If you supply board_time_init(), set the function poointer. 118 119 - Set the function pointer board_timer_setup() (mandatory) 120 121 - 122 - Step 3: implement rtc routines, board_time_init() and board_timer_setup() 123 if needed. 124 125 - board_time_init() - 126 a) (optional) set up RTC routines, 127 b) (optional) calibrate and set the mips_counter_frequency 128 (only needed if you intended to use fixed_rate_gettimeoffset 129 or use cpu counter as timer interrupt source) 130 131 - board_timer_setup() - 132 a) (optional) over-write any choices made above by time_init(). 133 b) machine specific code should setup the timer irqaction. 134 c) enable the timer interrupt
··· 65 1. (optional) set up RTC routines 66 2. (optional) calibrate and set the mips_counter_frequency 67 68 + b) plat_timer_setup - a function pointer. Invoked at the end of time_init() 69 1. (optional) over-ride any decisions made in time_init() 70 2. set up the irqaction for timer interrupt. 71 3. enable the timer interrupt ··· 116 117 If you supply board_time_init(), set the function poointer. 118 119 120 + Step 3: implement rtc routines, board_time_init() and plat_timer_setup() 121 if needed. 122 123 + board_time_init() - 124 a) (optional) set up RTC routines, 125 b) (optional) calibrate and set the mips_counter_frequency 126 (only needed if you intended to use fixed_rate_gettimeoffset 127 or use cpu counter as timer interrupt source) 128 129 + plat_timer_setup() - 130 a) (optional) over-write any choices made above by time_init(). 131 b) machine specific code should setup the timer irqaction. 132 c) enable the timer interrupt
+9 -1
arch/mips/Kconfig
··· 480 select SYS_SUPPORTS_32BIT_KERNEL 481 select SYS_SUPPORTS_64BIT_KERNEL 482 select SYS_SUPPORTS_BIG_ENDIAN 483 help 484 The Ocelot is a MIPS-based Single Board Computer (SBC) made by 485 Momentum Computer <http://www.momenco.com/>. ··· 557 select SYS_HAS_CPU_MIPS32_R1 558 select SYS_SUPPORTS_32BIT_KERNEL 559 select SYS_SUPPORTS_BIG_ENDIAN 560 help 561 Qemu is a software emulator which among other architectures also 562 can simulate a MIPS32 4Kc system. This patch adds support for the ··· 596 select SYS_SUPPORTS_32BIT_KERNEL 597 select SYS_SUPPORTS_64BIT_KERNEL 598 select SYS_SUPPORTS_BIG_ENDIAN 599 - select SYS_SUPPORTS_SMP 600 help 601 This are the SGI Indy, Challenge S and Indigo2, as well as certain 602 OEM variants like the Tandem CMN B006S. To compile a Linux kernel ··· 1688 for architectures which are either NUMA (Non-Uniform Memory Access) 1689 or have huge holes in the physical address space for other reasons. 1690 See <file:Documentation/vm/numa> for more. 1691 1692 config NUMA 1693 bool "NUMA Support"
··· 480 select SYS_SUPPORTS_32BIT_KERNEL 481 select SYS_SUPPORTS_64BIT_KERNEL 482 select SYS_SUPPORTS_BIG_ENDIAN 483 + select ARCH_SPARSEMEM_ENABLE 484 help 485 The Ocelot is a MIPS-based Single Board Computer (SBC) made by 486 Momentum Computer <http://www.momenco.com/>. ··· 556 select SYS_HAS_CPU_MIPS32_R1 557 select SYS_SUPPORTS_32BIT_KERNEL 558 select SYS_SUPPORTS_BIG_ENDIAN 559 + select ARCH_SPARSEMEM_ENABLE 560 help 561 Qemu is a software emulator which among other architectures also 562 can simulate a MIPS32 4Kc system. This patch adds support for the ··· 594 select SYS_SUPPORTS_32BIT_KERNEL 595 select SYS_SUPPORTS_64BIT_KERNEL 596 select SYS_SUPPORTS_BIG_ENDIAN 597 help 598 This are the SGI Indy, Challenge S and Indigo2, as well as certain 599 OEM variants like the Tandem CMN B006S. To compile a Linux kernel ··· 1687 for architectures which are either NUMA (Non-Uniform Memory Access) 1688 or have huge holes in the physical address space for other reasons. 1689 See <file:Documentation/vm/numa> for more. 1690 + 1691 + config ARCH_SPARSEMEM_ENABLE 1692 + bool 1693 + 1694 + config ARCH_SPARSEMEM_ENABLE 1695 + bool 1696 + select SPARSEMEM_STATIC 1697 1698 config NUMA 1699 bool "NUMA Support"
+4
arch/mips/Kconfig.debug
··· 1 menu "Kernel hacking" 2 3 source "lib/Kconfig.debug" 4 5 config CROSSCOMPILE
··· 1 menu "Kernel hacking" 2 3 + config TRACE_IRQFLAGS_SUPPORT 4 + bool 5 + default y 6 + 7 source "lib/Kconfig.debug" 8 9 config CROSSCOMPILE
+2 -4
arch/mips/Makefile
··· 712 vmlinux.bin: $(vmlinux-32) 713 +@$(call makeboot,$@) 714 715 - vmlinux.ecoff vmlinux.rm200: $(vmlinux-32) 716 +@$(call makeboot,$@) 717 718 vmlinux.srec: $(vmlinux-32) 719 +@$(call makeboot,$@) 720 721 CLEAN_FILES += vmlinux.ecoff \ 722 - vmlinux.srec \ 723 - vmlinux.rm200.tmp \ 724 - vmlinux.rm200 725 726 archclean: 727 @$(MAKE) $(clean)=arch/mips/boot
··· 712 vmlinux.bin: $(vmlinux-32) 713 +@$(call makeboot,$@) 714 715 + vmlinux.ecoff: $(vmlinux-32) 716 +@$(call makeboot,$@) 717 718 vmlinux.srec: $(vmlinux-32) 719 +@$(call makeboot,$@) 720 721 CLEAN_FILES += vmlinux.ecoff \ 722 + vmlinux.srec 723 724 archclean: 725 @$(MAKE) $(clean)=arch/mips/boot
+4 -4
arch/mips/au1000/common/irq.c
··· 251 } 252 253 254 - static struct hw_interrupt_type rise_edge_irq_type = { 255 .typename = "Au1000 Rise Edge", 256 .startup = startup_irq, 257 .shutdown = shutdown_irq, ··· 261 .end = end_irq, 262 }; 263 264 - static struct hw_interrupt_type fall_edge_irq_type = { 265 .typename = "Au1000 Fall Edge", 266 .startup = startup_irq, 267 .shutdown = shutdown_irq, ··· 271 .end = end_irq, 272 }; 273 274 - static struct hw_interrupt_type either_edge_irq_type = { 275 .typename = "Au1000 Rise or Fall Edge", 276 .startup = startup_irq, 277 .shutdown = shutdown_irq, ··· 281 .end = end_irq, 282 }; 283 284 - static struct hw_interrupt_type level_irq_type = { 285 .typename = "Au1000 Level", 286 .startup = startup_irq, 287 .shutdown = shutdown_irq,
··· 251 } 252 253 254 + static struct irq_chip rise_edge_irq_type = { 255 .typename = "Au1000 Rise Edge", 256 .startup = startup_irq, 257 .shutdown = shutdown_irq, ··· 261 .end = end_irq, 262 }; 263 264 + static struct irq_chip fall_edge_irq_type = { 265 .typename = "Au1000 Fall Edge", 266 .startup = startup_irq, 267 .shutdown = shutdown_irq, ··· 271 .end = end_irq, 272 }; 273 274 + static struct irq_chip either_edge_irq_type = { 275 .typename = "Au1000 Rise or Fall Edge", 276 .startup = startup_irq, 277 .shutdown = shutdown_irq, ··· 281 .end = end_irq, 282 }; 283 284 + static struct irq_chip level_irq_type = { 285 .typename = "Au1000 Level", 286 .startup = startup_irq, 287 .shutdown = shutdown_irq,
+13 -11
arch/mips/au1000/common/prom.c
··· 1 /* 2 * 3 * BRIEF MODULE DESCRIPTION 4 - * PROM library initialisation code, assuming YAMON is the boot loader. 5 * 6 * Copyright 2000, 2001, 2006 MontaVista Software Inc. 7 * Author: MontaVista Software, Inc. ··· 46 extern int prom_argc; 47 extern char **prom_argv, **prom_envp; 48 49 - typedef struct 50 - { 51 - char *name; 52 - char *val; 53 - } t_env_var; 54 - 55 56 char * prom_getcmdline(void) 57 { ··· 78 { 79 /* 80 * Return a pointer to the given environment variable. 81 */ 82 83 - t_env_var *env = (t_env_var *)prom_envp; 84 85 - while (env->name) { 86 - if (strcmp(envname, env->name) == 0) 87 - return env->val; 88 env++; 89 } 90 return NULL;
··· 1 /* 2 * 3 * BRIEF MODULE DESCRIPTION 4 + * PROM library initialisation code, supports YAMON and U-Boot. 5 * 6 * Copyright 2000, 2001, 2006 MontaVista Software Inc. 7 * Author: MontaVista Software, Inc. ··· 46 extern int prom_argc; 47 extern char **prom_argv, **prom_envp; 48 49 50 char * prom_getcmdline(void) 51 { ··· 84 { 85 /* 86 * Return a pointer to the given environment variable. 87 + * YAMON uses "name", "value" pairs, while U-Boot uses "name=value". 88 */ 89 90 + char **env = prom_envp; 91 + int i = strlen(envname); 92 + int yamon = (*env && strchr(*env, '=') == NULL); 93 94 + while (*env) { 95 + if (yamon) { 96 + if (strcmp(envname, *env++) == 0) 97 + return *env; 98 + } else { 99 + if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=') 100 + return *env + i + 1; 101 + } 102 env++; 103 } 104 return NULL;
-2
arch/mips/au1000/common/setup.c
··· 51 extern void au1x_time_init(void); 52 extern void au1x_timer_setup(struct irqaction *irq); 53 extern void au1xxx_time_init(void); 54 - extern void au1xxx_timer_setup(struct irqaction *irq); 55 extern void set_cpuspec(void); 56 57 void __init plat_mem_setup(void) ··· 122 _machine_halt = au1000_halt; 123 pm_power_off = au1000_power_off; 124 board_time_init = au1xxx_time_init; 125 - board_timer_setup = au1xxx_timer_setup; 126 127 /* IO/MEM resources. */ 128 set_io_port_base(0);
··· 51 extern void au1x_time_init(void); 52 extern void au1x_timer_setup(struct irqaction *irq); 53 extern void au1xxx_time_init(void); 54 extern void set_cpuspec(void); 55 56 void __init plat_mem_setup(void) ··· 123 _machine_halt = au1000_halt; 124 pm_power_off = au1000_power_off; 125 board_time_init = au1xxx_time_init; 126 127 /* IO/MEM resources. */ 128 set_io_port_base(0);
+1 -1
arch/mips/au1000/common/time.c
··· 383 } 384 #endif 385 386 - void __init au1xxx_timer_setup(struct irqaction *irq) 387 { 388 unsigned int est_freq; 389
··· 383 } 384 #endif 385 386 + void __init plat_timer_setup(struct irqaction *irq) 387 { 388 unsigned int est_freq; 389
-8
arch/mips/au1000/csb250/Makefile
··· 1 - # 2 - # Copyright 2002 Cogent Computer Systems 3 - # dan@embeddededge.com 4 - # 5 - # Makefile for the Cogent CSB250 Au1500 board. Copied from Pb1500. 6 - # 7 - 8 - obj-y := init.o board_setup.o irqmap.o
···
-238
arch/mips/au1000/csb250/board_setup.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Cogent CSB250 board setup. 5 - * 6 - * Copyright 2002 Cogent Computer Systems, Inc. 7 - * dan@embeddededge.com 8 - * 9 - * This program is free software; you can redistribute it and/or modify it 10 - * under the terms of the GNU General Public License as published by the 11 - * Free Software Foundation; either version 2 of the License, or (at your 12 - * option) any later version. 13 - * 14 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 17 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 20 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 21 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 - * 25 - * You should have received a copy of the GNU General Public License along 26 - * with this program; if not, write to the Free Software Foundation, Inc., 27 - * 675 Mass Ave, Cambridge, MA 02139, USA. 28 - */ 29 - #include <linux/init.h> 30 - #include <linux/sched.h> 31 - #include <linux/ioport.h> 32 - #include <linux/mm.h> 33 - #include <linux/console.h> 34 - #include <linux/mc146818rtc.h> 35 - #include <linux/delay.h> 36 - 37 - #include <asm/cpu.h> 38 - #include <asm/bootinfo.h> 39 - #include <asm/irq.h> 40 - #include <asm/keyboard.h> 41 - #include <asm/mipsregs.h> 42 - #include <asm/reboot.h> 43 - #include <asm/pgtable.h> 44 - #include <asm/au1000.h> 45 - #include <asm/csb250.h> 46 - 47 - extern int (*board_pci_idsel)(unsigned int devsel, int assert); 48 - int csb250_pci_idsel(unsigned int devsel, int assert); 49 - 50 - void __init board_setup(void) 51 - { 52 - u32 pin_func, pin_val; 53 - u32 sys_freqctrl, sys_clksrc; 54 - 55 - 56 - // set AUX clock to 12MHz * 8 = 96 MHz 57 - au_writel(8, SYS_AUXPLL); 58 - au_writel(0, SYS_PINSTATERD); 59 - udelay(100); 60 - 61 - #if defined (CONFIG_USB_OHCI) || defined (CONFIG_AU1X00_USB_DEVICE) 62 - 63 - /* GPIO201 is input for PCMCIA card detect */ 64 - /* GPIO203 is input for PCMCIA interrupt request */ 65 - au_writel(au_readl(GPIO2_DIR) & (u32)(~((1<<1)|(1<<3))), GPIO2_DIR); 66 - 67 - /* zero and disable FREQ2 */ 68 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 69 - sys_freqctrl &= ~0xFFF00000; 70 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 71 - 72 - /* zero and disable USBH/USBD clocks */ 73 - sys_clksrc = au_readl(SYS_CLKSRC); 74 - sys_clksrc &= ~0x00007FE0; 75 - au_writel(sys_clksrc, SYS_CLKSRC); 76 - 77 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 78 - sys_freqctrl &= ~0xFFF00000; 79 - 80 - sys_clksrc = au_readl(SYS_CLKSRC); 81 - sys_clksrc &= ~0x00007FE0; 82 - 83 - // FREQ2 = aux/2 = 48 MHz 84 - sys_freqctrl |= ((0<<22) | (1<<21) | (1<<20)); 85 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 86 - 87 - /* 88 - * Route 48MHz FREQ2 into USB Host and/or Device 89 - */ 90 - #ifdef CONFIG_USB_OHCI 91 - sys_clksrc |= ((4<<12) | (0<<11) | (0<<10)); 92 - #endif 93 - #ifdef CONFIG_AU1X00_USB_DEVICE 94 - sys_clksrc |= ((4<<7) | (0<<6) | (0<<5)); 95 - #endif 96 - au_writel(sys_clksrc, SYS_CLKSRC); 97 - 98 - 99 - pin_func = au_readl(SYS_PINFUNC) & (u32)(~0x8000); 100 - #ifndef CONFIG_AU1X00_USB_DEVICE 101 - // 2nd USB port is USB host 102 - pin_func |= 0x8000; 103 - #endif 104 - au_writel(pin_func, SYS_PINFUNC); 105 - #endif // defined (CONFIG_USB_OHCI) || defined (CONFIG_AU1X00_USB_DEVICE) 106 - 107 - /* Configure GPIO2....it's used by PCI among other things. 108 - */ 109 - 110 - /* Make everything but GP200 (PCI RST) an input until we get 111 - * the pins set correctly. 112 - */ 113 - au_writel(0x00000001, GPIO2_DIR); 114 - 115 - /* Set the pins used for output. 116 - * A zero bit will leave PCI reset, LEDs off, power up USB, 117 - * IDSEL disabled. 118 - */ 119 - pin_val = ((3 << 30) | (7 << 19) | (1 << 17) | (1 << 16)); 120 - au_writel(pin_val, GPIO2_OUTPUT); 121 - 122 - /* Set the output direction. 123 - */ 124 - pin_val = ((3 << 14) | (7 << 3) | (1 << 1) | (1 << 0)); 125 - au_writel(pin_val, GPIO2_DIR); 126 - 127 - #ifdef CONFIG_PCI 128 - /* Use FREQ1 for the PCI output clock. We use the 129 - * CPU clock of 384 MHz divided by 12 to get 32 MHz PCI. 130 - * If Michael changes the CPU speed, we need to adjust 131 - * that here as well :-). 132 - */ 133 - 134 - /* zero and disable FREQ1 135 - */ 136 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 137 - sys_freqctrl &= ~0x000ffc00; 138 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 139 - 140 - /* zero and disable PCI clock 141 - */ 142 - sys_clksrc = au_readl(SYS_CLKSRC); 143 - sys_clksrc &= ~0x000f8000; 144 - au_writel(sys_clksrc, SYS_CLKSRC); 145 - 146 - /* Get current values (which really should match above). 147 - */ 148 - sys_freqctrl = au_readl(SYS_FREQCTRL0); 149 - sys_freqctrl &= ~0x000ffc00; 150 - 151 - sys_clksrc = au_readl(SYS_CLKSRC); 152 - sys_clksrc &= ~0x000f8000; 153 - 154 - /* FREQ1 = cpu/12 = 32 MHz 155 - */ 156 - sys_freqctrl |= ((5<<12) | (1<<11) | (0<<10)); 157 - au_writel(sys_freqctrl, SYS_FREQCTRL0); 158 - 159 - /* Just connect the clock without further dividing. 160 - */ 161 - sys_clksrc |= ((3<<17) | (0<<16) | (0<<15)); 162 - au_writel(sys_clksrc, SYS_CLKSRC); 163 - 164 - udelay(1); 165 - 166 - /* Now that clocks should be running, take PCI out of reset. 167 - */ 168 - pin_val = au_readl(GPIO2_OUTPUT); 169 - pin_val |= ((1 << 16) | 1); 170 - au_writel(pin_val, GPIO2_OUTPUT); 171 - 172 - // Setup PCI bus controller 173 - au_writel(0, Au1500_PCI_CMEM); 174 - au_writel(0x00003fff, Au1500_CFG_BASE); 175 - 176 - /* We run big endian without any of the software byte swapping, 177 - * so configure the PCI bridge to help us out. 178 - */ 179 - au_writel(0xf | (2<<6) | (1<<5) | (1<<4), Au1500_PCI_CFG); 180 - 181 - au_writel(0xf0000000, Au1500_PCI_MWMASK_DEV); 182 - au_writel(0, Au1500_PCI_MWBASE_REV_CCL); 183 - au_writel(0x02a00356, Au1500_PCI_STATCMD); 184 - au_writel(0x00003c04, Au1500_PCI_HDRTYPE); 185 - au_writel(0x00000008, Au1500_PCI_MBAR); 186 - au_sync(); 187 - 188 - board_pci_idsel = csb250_pci_idsel; 189 - #endif 190 - 191 - /* Enable sys bus clock divider when IDLE state or no bus activity. */ 192 - au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL); 193 - 194 - #ifdef CONFIG_RTC 195 - // Enable the RTC if not already enabled 196 - if (!(au_readl(0xac000028) & 0x20)) { 197 - printk("enabling clock ...\n"); 198 - au_writel((au_readl(0xac000028) | 0x20), 0xac000028); 199 - } 200 - // Put the clock in BCD mode 201 - if (readl(0xac00002C) & 0x4) { /* reg B */ 202 - au_writel(au_readl(0xac00002c) & ~0x4, 0xac00002c); 203 - au_sync(); 204 - } 205 - #endif 206 - } 207 - 208 - /* The IDSEL is selected in the GPIO2 register. We will make device 209 - * 12 appear in slot 0 and device 13 appear in slot 1. 210 - */ 211 - int 212 - csb250_pci_idsel(unsigned int devsel, int assert) 213 - { 214 - int retval; 215 - unsigned int gpio2_pins; 216 - 217 - retval = 1; 218 - 219 - /* First, disable both selects, then assert the one requested. 220 - */ 221 - au_writel(0xc000c000, GPIO2_OUTPUT); 222 - au_sync(); 223 - 224 - if (assert) { 225 - if (devsel == 12) 226 - gpio2_pins = 0x40000000; 227 - else if (devsel == 13) 228 - gpio2_pins = 0x80000000; 229 - else { 230 - gpio2_pins = 0xc000c000; 231 - retval = 0; 232 - } 233 - au_writel(gpio2_pins, GPIO2_OUTPUT); 234 - } 235 - au_sync(); 236 - 237 - return retval; 238 - }
···
-94
arch/mips/au1000/csb250/init.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Cogent CSB250 board setup 5 - * 6 - * Copyright 2002 Cogent Computer Systems, Inc. 7 - * dan@embeddededge.com 8 - * 9 - * This program is free software; you can redistribute it and/or modify it 10 - * under the terms of the GNU General Public License as published by the 11 - * Free Software Foundation; either version 2 of the License, or (at your 12 - * option) any later version. 13 - * 14 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 15 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 17 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 20 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 21 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 - * 25 - * You should have received a copy of the GNU General Public License along 26 - * with this program; if not, write to the Free Software Foundation, Inc., 27 - * 675 Mass Ave, Cambridge, MA 02139, USA. 28 - */ 29 - 30 - #include <linux/init.h> 31 - #include <linux/mm.h> 32 - #include <linux/sched.h> 33 - #include <linux/bootmem.h> 34 - #include <asm/addrspace.h> 35 - #include <asm/bootinfo.h> 36 - #include <linux/string.h> 37 - #include <linux/kernel.h> 38 - 39 - int prom_argc; 40 - char **prom_argv, **prom_envp; 41 - extern void __init prom_init_cmdline(void); 42 - extern char *prom_getenv(char *envname); 43 - 44 - /* When we get initrd working someday......... 45 - */ 46 - int my_initrd_start, my_initrd_size; 47 - 48 - /* Start arguments and environment. 49 - */ 50 - static char *csb_env[2]; 51 - static char *csb_arg[4]; 52 - static char *arg1 = "console=ttyS3,38400"; 53 - static char *arg2 = "root=/dev/nfs rw ip=any"; 54 - static char *env1 = "ethaddr=00:30:23:50:00:00"; 55 - 56 - const char *get_system_type(void) 57 - { 58 - return "Cogent CSB250"; 59 - } 60 - 61 - int __init prom_init(int argc, char **argv, char **envp, int *prom_vec) 62 - { 63 - unsigned char *memsize_str; 64 - unsigned long memsize; 65 - 66 - /* We use a0 and a1 to pass initrd start and size. 67 - */ 68 - if (((unsigned int) argc > 0) && ((uint)argv > 0)) { 69 - my_initrd_start = (unsigned int)argc; 70 - my_initrd_size = (unsigned int)argv; 71 - } 72 - 73 - /* First argv is ignored. 74 - */ 75 - prom_argc = 3; 76 - prom_argv = csb_arg; 77 - prom_envp = csb_env; 78 - csb_arg[1] = arg1; 79 - csb_arg[2] = arg2; 80 - csb_env[0] = env1; 81 - 82 - mips_machgroup = MACH_GROUP_ALCHEMY; 83 - mips_machtype = MACH_CSB250; 84 - 85 - prom_init_cmdline(); 86 - memsize_str = prom_getenv("memsize"); 87 - if (!memsize_str) { 88 - memsize = 0x02000000; 89 - } else { 90 - memsize = simple_strtol(memsize_str, NULL, 0); 91 - } 92 - add_memory_region(0, memsize, BOOT_MEM_RAM); 93 - return 0; 94 - }
···
-60
arch/mips/au1000/csb250/irqmap.c
··· 1 - /* 2 - * BRIEF MODULE DESCRIPTION 3 - * Au1xxx irq map table 4 - * 5 - * Copyright 2003 Embedded Edge, LLC 6 - * dan@embeddededge.com 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms of the GNU General Public License as published by the 10 - * Free Software Foundation; either version 2 of the License, or (at your 11 - * option) any later version. 12 - * 13 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 14 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 15 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 16 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 17 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 18 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 19 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 - * 24 - * You should have received a copy of the GNU General Public License along 25 - * with this program; if not, write to the Free Software Foundation, Inc., 26 - * 675 Mass Ave, Cambridge, MA 02139, USA. 27 - */ 28 - #include <linux/errno.h> 29 - #include <linux/init.h> 30 - #include <linux/irq.h> 31 - #include <linux/kernel_stat.h> 32 - #include <linux/module.h> 33 - #include <linux/signal.h> 34 - #include <linux/sched.h> 35 - #include <linux/types.h> 36 - #include <linux/interrupt.h> 37 - #include <linux/ioport.h> 38 - #include <linux/timex.h> 39 - #include <linux/slab.h> 40 - #include <linux/random.h> 41 - #include <linux/delay.h> 42 - #include <linux/bitops.h> 43 - 44 - #include <asm/bootinfo.h> 45 - #include <asm/io.h> 46 - #include <asm/mipsregs.h> 47 - #include <asm/system.h> 48 - #include <asm/au1000.h> 49 - 50 - au1xxx_irq_map_t __initdata au1xxx_irq_map[] = { 51 - 52 - { AU1500_GPIO_204, INTC_INT_HIGH_LEVEL, 0}, 53 - { AU1500_GPIO_201, INTC_INT_LOW_LEVEL, 0 }, 54 - { AU1500_GPIO_202, INTC_INT_LOW_LEVEL, 0 }, 55 - { AU1500_GPIO_203, INTC_INT_LOW_LEVEL, 0 }, 56 - { AU1500_GPIO_205, INTC_INT_LOW_LEVEL, 0 }, 57 - { AU1500_GPIO_207, INTC_INT_LOW_LEVEL, 0 }, 58 - }; 59 - 60 - int __initdata au1xxx_nr_irqs = ARRAY_SIZE(au1xxx_irq_map);
···
-9
arch/mips/au1000/hydrogen3/Makefile
··· 1 - # 2 - # Copyright 2000 MontaVista Software Inc. 3 - # Author: MontaVista Software, Inc. 4 - # ppopov@mvista.com or source@mvista.com 5 - # 6 - # Makefile for the Alchemy Semiconductor PB1000 board. 7 - # 8 - 9 - obj-y := init.o board_setup.o irqmap.o
···
-69
arch/mips/au1000/hydrogen3/board_setup.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * Alchemy Db1x00 board setup. 5 - * 6 - * Copyright 2000 MontaVista Software Inc. 7 - * Author: MontaVista Software, Inc. 8 - * ppopov@mvista.com or source@mvista.com 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 16 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 18 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 21 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 22 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 - * 26 - * You should have received a copy of the GNU General Public License along 27 - * with this program; if not, write to the Free Software Foundation, Inc., 28 - * 675 Mass Ave, Cambridge, MA 02139, USA. 29 - */ 30 - #include <linux/init.h> 31 - #include <linux/sched.h> 32 - #include <linux/ioport.h> 33 - #include <linux/mm.h> 34 - #include <linux/console.h> 35 - #include <linux/mc146818rtc.h> 36 - #include <linux/delay.h> 37 - 38 - #include <asm/cpu.h> 39 - #include <asm/bootinfo.h> 40 - #include <asm/irq.h> 41 - #include <asm/keyboard.h> 42 - #include <asm/mipsregs.h> 43 - #include <asm/reboot.h> 44 - #include <asm/pgtable.h> 45 - #include <asm/au1000.h> 46 - 47 - void board_reset (void) 48 - { 49 - } 50 - 51 - void __init board_setup(void) 52 - { 53 - u32 pin_func; 54 - 55 - #ifdef CONFIG_AU1X00_USB_DEVICE 56 - // 2nd USB port is USB device 57 - pin_func = au_readl(SYS_PINFUNC) & (u32)(~0x8000); 58 - au_writel(pin_func, SYS_PINFUNC); 59 - #endif 60 - 61 - #if defined(CONFIG_IRDA) && (defined(CONFIG_SOC_AU1000) || defined(CONFIG_SOC_AU1100)) 62 - /* set IRFIRSEL instead of GPIO15 */ 63 - pin_func = au_readl(SYS_PINFUNC) | (u32)((1<<8)); 64 - au_writel(pin_func, SYS_PINFUNC); 65 - au_sync(); 66 - #endif 67 - 68 - printk("AMD Alchemy Hydrogen3 Board\n"); 69 - }
···
-75
arch/mips/au1000/hydrogen3/init.c
··· 1 - /* 2 - * 3 - * BRIEF MODULE DESCRIPTION 4 - * PB1000 board setup 5 - * 6 - * Copyright 2001 MontaVista Software Inc. 7 - * Author: MontaVista Software, Inc. 8 - * ppopov@mvista.com or source@mvista.com 9 - * 10 - * This program is free software; you can redistribute it and/or modify it 11 - * under the terms of the GNU General Public License as published by the 12 - * Free Software Foundation; either version 2 of the License, or (at your 13 - * option) any later version. 14 - * 15 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 16 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 17 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 18 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 21 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 22 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 - * 26 - * You should have received a copy of the GNU General Public License along 27 - * with this program; if not, write to the Free Software Foundation, Inc., 28 - * 675 Mass Ave, Cambridge, MA 02139, USA. 29 - */ 30 - 31 - #include <linux/init.h> 32 - #include <linux/mm.h> 33 - #include <linux/sched.h> 34 - #include <linux/bootmem.h> 35 - #include <asm/addrspace.h> 36 - #include <asm/bootinfo.h> 37 - #include <linux/string.h> 38 - #include <linux/kernel.h> 39 - 40 - int prom_argc; 41 - char **prom_argv, **prom_envp; 42 - extern void __init prom_init_cmdline(void); 43 - extern char *prom_getenv(char *envname); 44 - 45 - const char *get_system_type(void) 46 - { 47 - #ifdef CONFIG_MIPS_BOSPORUS 48 - return "Alchemy Bosporus Gateway Reference"; 49 - #else 50 - return "Alchemy Db1x00"; 51 - #endif 52 - } 53 - 54 - int __init prom_init(int argc, char **argv, char **envp, int *prom_vec) 55 - { 56 - unsigned char *memsize_str; 57 - unsigned long memsize; 58 - 59 - prom_argc = argc; 60 - prom_argv = argv; 61 - prom_envp = envp; 62 - 63 - mips_machgroup = MACH_GROUP_ALCHEMY; 64 - mips_machtype = MACH_DB1000; /* set the platform # */ 65 - prom_init_cmdline(); 66 - 67 - memsize_str = prom_getenv("memsize"); 68 - if (!memsize_str) { 69 - memsize = 0x04000000; 70 - } else { 71 - memsize = simple_strtol(memsize_str, NULL, 0); 72 - } 73 - add_memory_region(0, memsize, BOOT_MEM_RAM); 74 - return 0; 75 - }
···
-56
arch/mips/au1000/hydrogen3/irqmap.c
··· 1 - /* 2 - * BRIEF MODULE DESCRIPTION 3 - * Au1xxx irq map table 4 - * 5 - * Copyright 2003 Embedded Edge, LLC 6 - * dan@embeddededge.com 7 - * 8 - * This program is free software; you can redistribute it and/or modify it 9 - * under the terms of the GNU General Public License as published by the 10 - * Free Software Foundation; either version 2 of the License, or (at your 11 - * option) any later version. 12 - * 13 - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 14 - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 15 - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 16 - * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 17 - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 18 - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 19 - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 20 - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 - * 24 - * You should have received a copy of the GNU General Public License along 25 - * with this program; if not, write to the Free Software Foundation, Inc., 26 - * 675 Mass Ave, Cambridge, MA 02139, USA. 27 - */ 28 - #include <linux/errno.h> 29 - #include <linux/init.h> 30 - #include <linux/irq.h> 31 - #include <linux/kernel_stat.h> 32 - #include <linux/module.h> 33 - #include <linux/signal.h> 34 - #include <linux/sched.h> 35 - #include <linux/types.h> 36 - #include <linux/interrupt.h> 37 - #include <linux/ioport.h> 38 - #include <linux/timex.h> 39 - #include <linux/slab.h> 40 - #include <linux/random.h> 41 - #include <linux/delay.h> 42 - #include <linux/bitops.h> 43 - 44 - #include <asm/bootinfo.h> 45 - #include <asm/io.h> 46 - #include <asm/mipsregs.h> 47 - #include <asm/system.h> 48 - #include <asm/au1000.h> 49 - 50 - au1xxx_irq_map_t __initdata au1xxx_irq_map[] = { 51 - 52 - /* { AU1500_GPIO_205, INTC_INT_LOW_LEVEL, 0 }, */ 53 - { AU1000_GPIO_21, INTC_INT_LOW_LEVEL, 0 }, 54 - }; 55 - 56 - int __initdata au1xxx_nr_irqs = ARRAY_SIZE(au1xxx_irq_map);
···
+1 -1
arch/mips/au1000/pb1200/irqmap.c
··· 148 } 149 } 150 151 - static struct hw_interrupt_type external_irq_type = 152 { 153 #ifdef CONFIG_MIPS_PB1200 154 "Pb1200 Ext",
··· 148 } 149 } 150 151 + static struct irq_chip external_irq_type = 152 { 153 #ifdef CONFIG_MIPS_PB1200 154 "Pb1200 Ext",
-1
arch/mips/basler/excite/excite_dbg_io.c
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 - #include <linux/config.h> 21 #include <linux/linkage.h> 22 #include <linux/init.h> 23 #include <linux/kernel.h>
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 #include <linux/linkage.h> 21 #include <linux/init.h> 22 #include <linux/kernel.h>
-1
arch/mips/basler/excite/excite_device.c
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 - #include <linux/config.h> 21 #include <linux/kernel.h> 22 #include <linux/init.h> 23 #include <linux/platform_device.h>
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 #include <linux/kernel.h> 21 #include <linux/init.h> 22 #include <linux/platform_device.h>
-1
arch/mips/basler/excite/excite_iodev.c
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 - #include <linux/config.h> 21 #include <linux/compiler.h> 22 #include <linux/init.h> 23 #include <linux/module.h>
··· 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 #include <linux/compiler.h> 21 #include <linux/init.h> 22 #include <linux/module.h>
-1
arch/mips/basler/excite/excite_procfs.c
··· 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 */ 21 22 - #include <linux/config.h> 23 #include <linux/proc_fs.h> 24 #include <linux/stat.h> 25 #include <asm/page.h>
··· 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 */ 21 22 #include <linux/proc_fs.h> 23 #include <linux/stat.h> 24 #include <asm/page.h>
-1
arch/mips/basler/excite/excite_prom.c
··· 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 */ 20 21 - #include <linux/config.h> 22 #include <linux/init.h> 23 #include <linux/sched.h> 24 #include <linux/mm.h>
··· 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 */ 20 21 #include <linux/init.h> 22 #include <linux/sched.h> 23 #include <linux/mm.h>
+1 -3
arch/mips/basler/excite/excite_setup.c
··· 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 */ 21 22 - #include <linux/config.h> 23 #include <linux/types.h> 24 #include <linux/kernel.h> 25 #include <linux/module.h> ··· 78 mips_hpt_frequency = EXCITE_CPU_EXT_CLOCK * mult / div / 2; 79 } 80 81 - static void excite_timer_setup(struct irqaction *irq) 82 { 83 /* The eXcite platform uses the alternate timer interrupt */ 84 set_c0_intcontrol(0x80); ··· 262 263 /* Set up timer initialization hooks */ 264 board_time_init = excite_timer_init; 265 - board_timer_setup = excite_timer_setup; 266 267 /* Set up the peripheral address map */ 268 *(boot_ocd_base + (LKB9 / sizeof (u32))) = 0;
··· 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 */ 21 22 #include <linux/types.h> 23 #include <linux/kernel.h> 24 #include <linux/module.h> ··· 79 mips_hpt_frequency = EXCITE_CPU_EXT_CLOCK * mult / div / 2; 80 } 81 82 + void __init plat_timer_setup(struct irqaction *irq) 83 { 84 /* The eXcite platform uses the alternate timer interrupt */ 85 set_c0_intcontrol(0x80); ··· 263 264 /* Set up timer initialization hooks */ 265 board_time_init = excite_timer_init; 266 267 /* Set up the peripheral address map */ 268 *(boot_ocd_base + (LKB9 / sizeof (u32))) = 0;
+1 -3
arch/mips/cobalt/setup.c
··· 49 return "MIPS Cobalt"; 50 } 51 52 - static void __init cobalt_timer_setup(struct irqaction *irq) 53 { 54 /* Load timer value for 1KHz (TCLK is 50MHz) */ 55 GALILEO_OUTL(50*1000*1000 / 1000, GT_TC0_OFS); ··· 128 _machine_restart = cobalt_machine_restart; 129 _machine_halt = cobalt_machine_halt; 130 pm_power_off = cobalt_machine_power_off; 131 - 132 - board_timer_setup = cobalt_timer_setup; 133 134 set_io_port_base(CKSEG1ADDR(GT64111_IO_BASE)); 135
··· 49 return "MIPS Cobalt"; 50 } 51 52 + void __init plat_timer_setup(struct irqaction *irq) 53 { 54 /* Load timer value for 1KHz (TCLK is 50MHz) */ 55 GALILEO_OUTL(50*1000*1000 / 1000, GT_TC0_OFS); ··· 128 _machine_restart = cobalt_machine_restart; 129 _machine_halt = cobalt_machine_halt; 130 pm_power_off = cobalt_machine_power_off; 131 132 set_io_port_base(CKSEG1ADDR(GT64111_IO_BASE)); 133
+62 -6
arch/mips/configs/atlas_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:55 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 CONFIG_MIPS_ATLAS=y 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_MIPS_BONITO64=y ··· 129 CONFIG_BOARD_SCACHE=y 130 CONFIG_RM7000_CPU_SCACHE=y 131 CONFIG_CPU_HAS_PREFETCH=y 132 - # CONFIG_MIPS_MT is not set 133 # CONFIG_64BIT_PHYS_ADDR is not set 134 CONFIG_CPU_HAS_LLSC=y 135 CONFIG_CPU_HAS_SYNC=y ··· 149 CONFIG_FLAT_NODE_MEM_MAP=y 150 # CONFIG_SPARSEMEM_STATIC is not set 151 CONFIG_SPLIT_PTLOCK_CPUS=4 152 # CONFIG_HZ_48 is not set 153 CONFIG_HZ_100=y 154 # CONFIG_HZ_128 is not set ··· 162 CONFIG_PREEMPT_NONE=y 163 # CONFIG_PREEMPT_VOLUNTARY is not set 164 # CONFIG_PREEMPT is not set 165 166 # 167 # Code maturity level options ··· 194 CONFIG_BUG=y 195 CONFIG_ELF_CORE=y 196 CONFIG_BASE_FULL=y 197 CONFIG_FUTEX=y 198 CONFIG_EPOLL=y 199 CONFIG_SHMEM=y 200 CONFIG_SLAB=y 201 # CONFIG_TINY_SHMEM is not set 202 CONFIG_BASE_SMALL=0 203 # CONFIG_SLOB is not set ··· 301 CONFIG_INET_IPCOMP=m 302 CONFIG_INET_XFRM_TUNNEL=m 303 CONFIG_INET_TUNNEL=m 304 CONFIG_INET_DIAG=y 305 CONFIG_INET_TCP_DIAG=y 306 # CONFIG_TCP_CONG_ADVANCED is not set ··· 350 CONFIG_INET6_IPCOMP=m 351 CONFIG_INET6_XFRM_TUNNEL=m 352 CONFIG_INET6_TUNNEL=m 353 CONFIG_IPV6_TUNNEL=m 354 CONFIG_NETFILTER=y 355 # CONFIG_NETFILTER_DEBUG is not set 356 CONFIG_BRIDGE_NETFILTER=y ··· 370 CONFIG_NETFILTER_XT_TARGET_MARK=m 371 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 372 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 373 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 374 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 375 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 387 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 388 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 389 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 390 CONFIG_NETFILTER_XT_MATCH_REALM=m 391 CONFIG_NETFILTER_XT_MATCH_SCTP=m 392 CONFIG_NETFILTER_XT_MATCH_STATE=m 393 CONFIG_NETFILTER_XT_MATCH_STRING=m 394 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 395 ··· 401 CONFIG_IP_NF_CONNTRACK=m 402 CONFIG_IP_NF_CT_ACCT=y 403 CONFIG_IP_NF_CONNTRACK_MARK=y 404 CONFIG_IP_NF_CONNTRACK_EVENTS=y 405 CONFIG_IP_NF_CONNTRACK_NETLINK=m 406 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 412 CONFIG_IP_NF_AMANDA=m 413 CONFIG_IP_NF_PPTP=m 414 CONFIG_IP_NF_H323=m 415 CONFIG_IP_NF_QUEUE=m 416 CONFIG_IP_NF_IPTABLES=m 417 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 443 CONFIG_IP_NF_NAT_AMANDA=m 444 CONFIG_IP_NF_NAT_PPTP=m 445 CONFIG_IP_NF_NAT_H323=m 446 CONFIG_IP_NF_MANGLE=m 447 CONFIG_IP_NF_TARGET_TOS=m 448 CONFIG_IP_NF_TARGET_ECN=m ··· 605 CONFIG_STANDALONE=y 606 CONFIG_PREVENT_FIRMWARE_BUILD=y 607 CONFIG_FW_LOADER=y 608 609 # 610 # Connector - unified userspace <-> kernelspace linker ··· 724 # CONFIG_MEGARAID_LEGACY is not set 725 # CONFIG_MEGARAID_SAS is not set 726 # CONFIG_SCSI_SATA is not set 727 # CONFIG_SCSI_DMX3191D is not set 728 # CONFIG_SCSI_FUTURE_DOMAIN is not set 729 # CONFIG_SCSI_IPS is not set ··· 753 CONFIG_MD_RAID0=m 754 CONFIG_MD_RAID1=m 755 CONFIG_MD_RAID10=m 756 - CONFIG_MD_RAID5=m 757 CONFIG_MD_RAID5_RESHAPE=y 758 - CONFIG_MD_RAID6=m 759 CONFIG_MD_MULTIPATH=m 760 CONFIG_MD_FAULTY=m 761 CONFIG_BLK_DEV_DM=m ··· 810 CONFIG_QSEMI_PHY=m 811 CONFIG_LXT_PHY=m 812 CONFIG_CICADA_PHY=m 813 814 # 815 # Ethernet (10 or 100Mbit) ··· 874 # CONFIG_CHELSIO_T1 is not set 875 # CONFIG_IXGB is not set 876 # CONFIG_S2IO is not set 877 878 # 879 # Token Ring devices ··· 956 CONFIG_VT=y 957 CONFIG_VT_CONSOLE=y 958 CONFIG_HW_CONSOLE=y 959 # CONFIG_SERIAL_NONSTANDARD is not set 960 961 # ··· 988 # Watchdog Cards 989 # 990 # CONFIG_WATCHDOG is not set 991 # CONFIG_RTC is not set 992 # CONFIG_GEN_RTC is not set 993 # CONFIG_DTLK is not set ··· 1037 # Multimedia devices 1038 # 1039 # CONFIG_VIDEO_DEV is not set 1040 1041 # 1042 # Digital Video Broadcasting Devices ··· 1047 # 1048 # Graphics support 1049 # 1050 # CONFIG_FB is not set 1051 1052 # ··· 1111 # CONFIG_RTC_CLASS is not set 1112 1113 # 1114 # File systems 1115 # 1116 CONFIG_EXT2_FS=y ··· 1149 # CONFIG_JFS_STATISTICS is not set 1150 CONFIG_FS_POSIX_ACL=y 1151 CONFIG_XFS_FS=m 1152 - CONFIG_XFS_EXPORT=y 1153 CONFIG_XFS_QUOTA=y 1154 CONFIG_XFS_SECURITY=y 1155 CONFIG_XFS_POSIX_ACL=y ··· 1157 CONFIG_MINIX_FS=m 1158 CONFIG_ROMFS_FS=m 1159 CONFIG_INOTIFY=y 1160 CONFIG_QUOTA=y 1161 # CONFIG_QFMT_V1 is not set 1162 CONFIG_QFMT_V2=y ··· 1215 # CONFIG_QNX4FS_FS is not set 1216 CONFIG_SYSV_FS=m 1217 CONFIG_UFS_FS=m 1218 1219 # 1220 # Network File Systems ··· 1241 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1242 # CONFIG_SMB_FS is not set 1243 # CONFIG_CIFS is not set 1244 # CONFIG_NCP_FS is not set 1245 # CONFIG_CODA_FS is not set 1246 # CONFIG_AFS_FS is not set ··· 1307 # 1308 # CONFIG_PRINTK_TIME is not set 1309 # CONFIG_MAGIC_SYSRQ is not set 1310 # CONFIG_DEBUG_KERNEL is not set 1311 CONFIG_LOG_BUF_SHIFT=14 1312 # CONFIG_DEBUG_FS is not set ··· 1366 CONFIG_TEXTSEARCH_KMP=m 1367 CONFIG_TEXTSEARCH_BM=m 1368 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 09:59:39 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 CONFIG_MIPS_ATLAS=y 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_MIPS_BONITO64=y ··· 125 CONFIG_BOARD_SCACHE=y 126 CONFIG_RM7000_CPU_SCACHE=y 127 CONFIG_CPU_HAS_PREFETCH=y 128 + CONFIG_MIPS_MT_DISABLED=y 129 + # CONFIG_MIPS_MT_SMTC is not set 130 + # CONFIG_MIPS_MT_SMP is not set 131 + # CONFIG_MIPS_VPE_LOADER is not set 132 + CONFIG_SYS_SUPPORTS_MULTITHREADING=y 133 # CONFIG_64BIT_PHYS_ADDR is not set 134 CONFIG_CPU_HAS_LLSC=y 135 CONFIG_CPU_HAS_SYNC=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 + # CONFIG_RESOURCES_64BIT is not set 145 # CONFIG_HZ_48 is not set 146 CONFIG_HZ_100=y 147 # CONFIG_HZ_128 is not set ··· 153 CONFIG_PREEMPT_NONE=y 154 # CONFIG_PREEMPT_VOLUNTARY is not set 155 # CONFIG_PREEMPT is not set 156 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 157 158 # 159 # Code maturity level options ··· 184 CONFIG_BUG=y 185 CONFIG_ELF_CORE=y 186 CONFIG_BASE_FULL=y 187 + CONFIG_RT_MUTEXES=y 188 CONFIG_FUTEX=y 189 CONFIG_EPOLL=y 190 CONFIG_SHMEM=y 191 CONFIG_SLAB=y 192 + CONFIG_VM_EVENT_COUNTERS=y 193 # CONFIG_TINY_SHMEM is not set 194 CONFIG_BASE_SMALL=0 195 # CONFIG_SLOB is not set ··· 289 CONFIG_INET_IPCOMP=m 290 CONFIG_INET_XFRM_TUNNEL=m 291 CONFIG_INET_TUNNEL=m 292 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 293 + CONFIG_INET_XFRM_MODE_TUNNEL=m 294 CONFIG_INET_DIAG=y 295 CONFIG_INET_TCP_DIAG=y 296 # CONFIG_TCP_CONG_ADVANCED is not set ··· 336 CONFIG_INET6_IPCOMP=m 337 CONFIG_INET6_XFRM_TUNNEL=m 338 CONFIG_INET6_TUNNEL=m 339 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 340 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 341 CONFIG_IPV6_TUNNEL=m 342 + CONFIG_NETWORK_SECMARK=y 343 CONFIG_NETFILTER=y 344 # CONFIG_NETFILTER_DEBUG is not set 345 CONFIG_BRIDGE_NETFILTER=y ··· 353 CONFIG_NETFILTER_XT_TARGET_MARK=m 354 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 355 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 356 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 357 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 358 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 359 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 360 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 368 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 369 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 370 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 371 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 372 CONFIG_NETFILTER_XT_MATCH_REALM=m 373 CONFIG_NETFILTER_XT_MATCH_SCTP=m 374 CONFIG_NETFILTER_XT_MATCH_STATE=m 375 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 376 CONFIG_NETFILTER_XT_MATCH_STRING=m 377 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 378 ··· 380 CONFIG_IP_NF_CONNTRACK=m 381 CONFIG_IP_NF_CT_ACCT=y 382 CONFIG_IP_NF_CONNTRACK_MARK=y 383 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 384 CONFIG_IP_NF_CONNTRACK_EVENTS=y 385 CONFIG_IP_NF_CONNTRACK_NETLINK=m 386 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 390 CONFIG_IP_NF_AMANDA=m 391 CONFIG_IP_NF_PPTP=m 392 CONFIG_IP_NF_H323=m 393 + CONFIG_IP_NF_SIP=m 394 CONFIG_IP_NF_QUEUE=m 395 CONFIG_IP_NF_IPTABLES=m 396 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 420 CONFIG_IP_NF_NAT_AMANDA=m 421 CONFIG_IP_NF_NAT_PPTP=m 422 CONFIG_IP_NF_NAT_H323=m 423 + CONFIG_IP_NF_NAT_SIP=m 424 CONFIG_IP_NF_MANGLE=m 425 CONFIG_IP_NF_TARGET_TOS=m 426 CONFIG_IP_NF_TARGET_ECN=m ··· 581 CONFIG_STANDALONE=y 582 CONFIG_PREVENT_FIRMWARE_BUILD=y 583 CONFIG_FW_LOADER=y 584 + # CONFIG_SYS_HYPERVISOR is not set 585 586 # 587 # Connector - unified userspace <-> kernelspace linker ··· 699 # CONFIG_MEGARAID_LEGACY is not set 700 # CONFIG_MEGARAID_SAS is not set 701 # CONFIG_SCSI_SATA is not set 702 + # CONFIG_SCSI_HPTIOP is not set 703 # CONFIG_SCSI_DMX3191D is not set 704 # CONFIG_SCSI_FUTURE_DOMAIN is not set 705 # CONFIG_SCSI_IPS is not set ··· 727 CONFIG_MD_RAID0=m 728 CONFIG_MD_RAID1=m 729 CONFIG_MD_RAID10=m 730 + CONFIG_MD_RAID456=m 731 CONFIG_MD_RAID5_RESHAPE=y 732 CONFIG_MD_MULTIPATH=m 733 CONFIG_MD_FAULTY=m 734 CONFIG_BLK_DEV_DM=m ··· 785 CONFIG_QSEMI_PHY=m 786 CONFIG_LXT_PHY=m 787 CONFIG_CICADA_PHY=m 788 + CONFIG_VITESSE_PHY=m 789 + CONFIG_SMSC_PHY=m 790 791 # 792 # Ethernet (10 or 100Mbit) ··· 847 # CONFIG_CHELSIO_T1 is not set 848 # CONFIG_IXGB is not set 849 # CONFIG_S2IO is not set 850 + # CONFIG_MYRI10GE is not set 851 852 # 853 # Token Ring devices ··· 928 CONFIG_VT=y 929 CONFIG_VT_CONSOLE=y 930 CONFIG_HW_CONSOLE=y 931 + CONFIG_VT_HW_CONSOLE_BINDING=y 932 # CONFIG_SERIAL_NONSTANDARD is not set 933 934 # ··· 959 # Watchdog Cards 960 # 961 # CONFIG_WATCHDOG is not set 962 + # CONFIG_HW_RANDOM is not set 963 # CONFIG_RTC is not set 964 # CONFIG_GEN_RTC is not set 965 # CONFIG_DTLK is not set ··· 1007 # Multimedia devices 1008 # 1009 # CONFIG_VIDEO_DEV is not set 1010 + CONFIG_VIDEO_V4L2=y 1011 1012 # 1013 # Digital Video Broadcasting Devices ··· 1016 # 1017 # Graphics support 1018 # 1019 + # CONFIG_FIRMWARE_EDID is not set 1020 # CONFIG_FB is not set 1021 1022 # ··· 1079 # CONFIG_RTC_CLASS is not set 1080 1081 # 1082 + # DMA Engine support 1083 + # 1084 + # CONFIG_DMA_ENGINE is not set 1085 + 1086 + # 1087 + # DMA Clients 1088 + # 1089 + 1090 + # 1091 + # DMA Devices 1092 + # 1093 + 1094 + # 1095 # File systems 1096 # 1097 CONFIG_EXT2_FS=y ··· 1104 # CONFIG_JFS_STATISTICS is not set 1105 CONFIG_FS_POSIX_ACL=y 1106 CONFIG_XFS_FS=m 1107 CONFIG_XFS_QUOTA=y 1108 CONFIG_XFS_SECURITY=y 1109 CONFIG_XFS_POSIX_ACL=y ··· 1113 CONFIG_MINIX_FS=m 1114 CONFIG_ROMFS_FS=m 1115 CONFIG_INOTIFY=y 1116 + CONFIG_INOTIFY_USER=y 1117 CONFIG_QUOTA=y 1118 # CONFIG_QFMT_V1 is not set 1119 CONFIG_QFMT_V2=y ··· 1170 # CONFIG_QNX4FS_FS is not set 1171 CONFIG_SYSV_FS=m 1172 CONFIG_UFS_FS=m 1173 + # CONFIG_UFS_FS_WRITE is not set 1174 + # CONFIG_UFS_DEBUG is not set 1175 1176 # 1177 # Network File Systems ··· 1194 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1195 # CONFIG_SMB_FS is not set 1196 # CONFIG_CIFS is not set 1197 + # CONFIG_CIFS_DEBUG2 is not set 1198 # CONFIG_NCP_FS is not set 1199 # CONFIG_CODA_FS is not set 1200 # CONFIG_AFS_FS is not set ··· 1259 # 1260 # CONFIG_PRINTK_TIME is not set 1261 # CONFIG_MAGIC_SYSRQ is not set 1262 + # CONFIG_UNUSED_SYMBOLS is not set 1263 # CONFIG_DEBUG_KERNEL is not set 1264 CONFIG_LOG_BUF_SHIFT=14 1265 # CONFIG_DEBUG_FS is not set ··· 1317 CONFIG_TEXTSEARCH_KMP=m 1318 CONFIG_TEXTSEARCH_BM=m 1319 CONFIG_TEXTSEARCH_FSM=m 1320 + CONFIG_PLIST=y 1321 + CONFIG_RIO=n 1322 + CONFIG_I2C_OCORES=n 1323 + CONFIG_DEBUG_RT_MUTEXES=n 1324 + CONFIG_RT_MUTEX_TESTER=n 1325 + CONFIG_DEBUG_RWSEMS=n 1326 + CONFIG_DEBUG_LOCKING_API_SELFTESTS=n
+51 -8
arch/mips/configs/bigsur_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:55 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 84 CONFIG_GENERIC_FIND_NEXT_BIT=y 85 CONFIG_GENERIC_HWEIGHT=y 86 CONFIG_GENERIC_CALIBRATE_DELAY=y 87 CONFIG_DMA_COHERENT=y 88 CONFIG_CPU_BIG_ENDIAN=y 89 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 132 # CONFIG_PAGE_SIZE_16KB is not set 133 # CONFIG_PAGE_SIZE_64KB is not set 134 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 135 - # CONFIG_MIPS_MT is not set 136 CONFIG_CPU_HAS_LLSC=y 137 CONFIG_CPU_HAS_SYNC=y 138 CONFIG_GENERIC_HARDIRQS=y 139 CONFIG_GENERIC_IRQ_PROBE=y 140 CONFIG_CPU_SUPPORTS_HIGHMEM=y 141 CONFIG_ARCH_FLATMEM_ENABLE=y 142 CONFIG_SELECT_MEMORY_MODEL=y ··· 151 CONFIG_FLAT_NODE_MEM_MAP=y 152 # CONFIG_SPARSEMEM_STATIC is not set 153 CONFIG_SPLIT_PTLOCK_CPUS=4 154 # CONFIG_HZ_48 is not set 155 # CONFIG_HZ_100 is not set 156 # CONFIG_HZ_128 is not set ··· 164 # CONFIG_HZ_1024 is not set 165 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 166 CONFIG_HZ=1000 167 - CONFIG_SMP=y 168 - CONFIG_NR_CPUS=4 169 CONFIG_PREEMPT_NONE=y 170 # CONFIG_PREEMPT_VOLUNTARY is not set 171 # CONFIG_PREEMPT is not set 172 # CONFIG_PREEMPT_BKL is not set 173 174 # 175 # Code maturity level options ··· 203 CONFIG_BUG=y 204 CONFIG_ELF_CORE=y 205 CONFIG_BASE_FULL=y 206 CONFIG_FUTEX=y 207 CONFIG_EPOLL=y 208 CONFIG_SHMEM=y 209 CONFIG_SLAB=y 210 # CONFIG_TINY_SHMEM is not set 211 CONFIG_BASE_SMALL=0 212 # CONFIG_SLOB is not set ··· 266 # 267 CONFIG_BINFMT_ELF=y 268 # CONFIG_BINFMT_MISC is not set 269 - CONFIG_BUILD_ELF64=y 270 CONFIG_MIPS32_COMPAT=y 271 CONFIG_COMPAT=y 272 CONFIG_MIPS32_O32=y ··· 305 # CONFIG_INET_IPCOMP is not set 306 # CONFIG_INET_XFRM_TUNNEL is not set 307 # CONFIG_INET_TUNNEL is not set 308 CONFIG_INET_DIAG=y 309 CONFIG_INET_TCP_DIAG=y 310 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 # CONFIG_IPV6 is not set 315 # CONFIG_INET6_XFRM_TUNNEL is not set 316 # CONFIG_INET6_TUNNEL is not set 317 # CONFIG_NETFILTER is not set 318 319 # ··· 369 CONFIG_PREVENT_FIRMWARE_BUILD=y 370 # CONFIG_FW_LOADER is not set 371 # CONFIG_DEBUG_DRIVER is not set 372 373 # 374 # Connector - unified userspace <-> kernelspace linker ··· 522 # CONFIG_CHELSIO_T1 is not set 523 # CONFIG_IXGB is not set 524 # CONFIG_S2IO is not set 525 526 # 527 # Token Ring devices ··· 590 # CONFIG_N_HDLC is not set 591 # CONFIG_SPECIALIX is not set 592 # CONFIG_SX is not set 593 # CONFIG_STALDRV is not set 594 CONFIG_SIBYTE_SB1250_DUART=y 595 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 617 # Watchdog Cards 618 # 619 # CONFIG_WATCHDOG is not set 620 # CONFIG_RTC is not set 621 CONFIG_GEN_RTC=y 622 # CONFIG_GEN_RTC_X is not set ··· 663 # CONFIG_I2C_I810 is not set 664 # CONFIG_I2C_PIIX4 is not set 665 # CONFIG_I2C_NFORCE2 is not set 666 # CONFIG_I2C_PARPORT_LIGHT is not set 667 # CONFIG_I2C_PROSAVAGE is not set 668 # CONFIG_I2C_SAVAGE4 is not set ··· 701 # 702 # Dallas's 1-wire bus 703 # 704 - # CONFIG_W1 is not set 705 706 # 707 # Hardware Monitoring support ··· 716 # Multimedia devices 717 # 718 # CONFIG_VIDEO_DEV is not set 719 720 # 721 # Digital Video Broadcasting Devices ··· 726 # 727 # Graphics support 728 # 729 # CONFIG_FB is not set 730 731 # ··· 784 # CONFIG_RTC_CLASS is not set 785 786 # 787 # File systems 788 # 789 CONFIG_EXT2_FS=y ··· 814 # CONFIG_MINIX_FS is not set 815 # CONFIG_ROMFS_FS is not set 816 CONFIG_INOTIFY=y 817 # CONFIG_QUOTA is not set 818 CONFIG_DNOTIFY=y 819 # CONFIG_AUTOFS_FS is not set ··· 880 # CONFIG_RPCSEC_GSS_SPKM3 is not set 881 # CONFIG_SMB_FS is not set 882 # CONFIG_CIFS is not set 883 # CONFIG_NCP_FS is not set 884 # CONFIG_CODA_FS is not set 885 # CONFIG_AFS_FS is not set ··· 907 # 908 CONFIG_PRINTK_TIME=y 909 CONFIG_MAGIC_SYSRQ=y 910 CONFIG_DEBUG_KERNEL=y 911 CONFIG_LOG_BUF_SHIFT=16 912 CONFIG_DETECT_SOFTLOCKUP=y 913 # CONFIG_SCHEDSTATS is not set 914 # CONFIG_DEBUG_SLAB is not set 915 - CONFIG_DEBUG_MUTEXES=y 916 # CONFIG_DEBUG_SPINLOCK is not set 917 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 918 # CONFIG_DEBUG_KOBJECT is not set 919 # CONFIG_DEBUG_INFO is not set 920 # CONFIG_DEBUG_FS is not set ··· 982 # CONFIG_LIBCRC32C is not set 983 CONFIG_ZLIB_INFLATE=y 984 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:02:58 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 81 CONFIG_GENERIC_FIND_NEXT_BIT=y 82 CONFIG_GENERIC_HWEIGHT=y 83 CONFIG_GENERIC_CALIBRATE_DELAY=y 84 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 85 CONFIG_DMA_COHERENT=y 86 CONFIG_CPU_BIG_ENDIAN=y 87 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 128 # CONFIG_PAGE_SIZE_16KB is not set 129 # CONFIG_PAGE_SIZE_64KB is not set 130 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 131 + CONFIG_MIPS_MT_DISABLED=y 132 + # CONFIG_MIPS_MT_SMTC is not set 133 + # CONFIG_MIPS_MT_SMP is not set 134 + # CONFIG_MIPS_VPE_LOADER is not set 135 CONFIG_CPU_HAS_LLSC=y 136 CONFIG_CPU_HAS_SYNC=y 137 CONFIG_GENERIC_HARDIRQS=y 138 CONFIG_GENERIC_IRQ_PROBE=y 139 + CONFIG_IRQ_PER_CPU=y 140 CONFIG_CPU_SUPPORTS_HIGHMEM=y 141 CONFIG_ARCH_FLATMEM_ENABLE=y 142 CONFIG_SELECT_MEMORY_MODEL=y ··· 143 CONFIG_FLAT_NODE_MEM_MAP=y 144 # CONFIG_SPARSEMEM_STATIC is not set 145 CONFIG_SPLIT_PTLOCK_CPUS=4 146 + CONFIG_RESOURCES_64BIT=y 147 + CONFIG_SMP=y 148 + CONFIG_SYS_SUPPORTS_SMP=y 149 + CONFIG_NR_CPUS=4 150 # CONFIG_HZ_48 is not set 151 # CONFIG_HZ_100 is not set 152 # CONFIG_HZ_128 is not set ··· 152 # CONFIG_HZ_1024 is not set 153 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 154 CONFIG_HZ=1000 155 CONFIG_PREEMPT_NONE=y 156 # CONFIG_PREEMPT_VOLUNTARY is not set 157 # CONFIG_PREEMPT is not set 158 # CONFIG_PREEMPT_BKL is not set 159 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 160 161 # 162 # Code maturity level options ··· 192 CONFIG_BUG=y 193 CONFIG_ELF_CORE=y 194 CONFIG_BASE_FULL=y 195 + CONFIG_RT_MUTEXES=y 196 CONFIG_FUTEX=y 197 CONFIG_EPOLL=y 198 CONFIG_SHMEM=y 199 CONFIG_SLAB=y 200 + CONFIG_VM_EVENT_COUNTERS=y 201 # CONFIG_TINY_SHMEM is not set 202 CONFIG_BASE_SMALL=0 203 # CONFIG_SLOB is not set ··· 253 # 254 CONFIG_BINFMT_ELF=y 255 # CONFIG_BINFMT_MISC is not set 256 + # CONFIG_BUILD_ELF64 is not set 257 CONFIG_MIPS32_COMPAT=y 258 CONFIG_COMPAT=y 259 CONFIG_MIPS32_O32=y ··· 292 # CONFIG_INET_IPCOMP is not set 293 # CONFIG_INET_XFRM_TUNNEL is not set 294 # CONFIG_INET_TUNNEL is not set 295 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET_XFRM_MODE_TUNNEL=m 297 CONFIG_INET_DIAG=y 298 CONFIG_INET_TCP_DIAG=y 299 # CONFIG_TCP_CONG_ADVANCED is not set ··· 299 # CONFIG_IPV6 is not set 300 # CONFIG_INET6_XFRM_TUNNEL is not set 301 # CONFIG_INET6_TUNNEL is not set 302 + CONFIG_NETWORK_SECMARK=y 303 # CONFIG_NETFILTER is not set 304 305 # ··· 353 CONFIG_PREVENT_FIRMWARE_BUILD=y 354 # CONFIG_FW_LOADER is not set 355 # CONFIG_DEBUG_DRIVER is not set 356 + # CONFIG_SYS_HYPERVISOR is not set 357 358 # 359 # Connector - unified userspace <-> kernelspace linker ··· 505 # CONFIG_CHELSIO_T1 is not set 506 # CONFIG_IXGB is not set 507 # CONFIG_S2IO is not set 508 + # CONFIG_MYRI10GE is not set 509 510 # 511 # Token Ring devices ··· 572 # CONFIG_N_HDLC is not set 573 # CONFIG_SPECIALIX is not set 574 # CONFIG_SX is not set 575 + # CONFIG_RIO is not set 576 # CONFIG_STALDRV is not set 577 CONFIG_SIBYTE_SB1250_DUART=y 578 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 598 # Watchdog Cards 599 # 600 # CONFIG_WATCHDOG is not set 601 + # CONFIG_HW_RANDOM is not set 602 # CONFIG_RTC is not set 603 CONFIG_GEN_RTC=y 604 # CONFIG_GEN_RTC_X is not set ··· 643 # CONFIG_I2C_I810 is not set 644 # CONFIG_I2C_PIIX4 is not set 645 # CONFIG_I2C_NFORCE2 is not set 646 + # CONFIG_I2C_OCORES is not set 647 # CONFIG_I2C_PARPORT_LIGHT is not set 648 # CONFIG_I2C_PROSAVAGE is not set 649 # CONFIG_I2C_SAVAGE4 is not set ··· 680 # 681 # Dallas's 1-wire bus 682 # 683 684 # 685 # Hardware Monitoring support ··· 696 # Multimedia devices 697 # 698 # CONFIG_VIDEO_DEV is not set 699 + CONFIG_VIDEO_V4L2=y 700 701 # 702 # Digital Video Broadcasting Devices ··· 705 # 706 # Graphics support 707 # 708 + # CONFIG_FIRMWARE_EDID is not set 709 # CONFIG_FB is not set 710 711 # ··· 762 # CONFIG_RTC_CLASS is not set 763 764 # 765 + # DMA Engine support 766 + # 767 + # CONFIG_DMA_ENGINE is not set 768 + 769 + # 770 + # DMA Clients 771 + # 772 + 773 + # 774 + # DMA Devices 775 + # 776 + 777 + # 778 # File systems 779 # 780 CONFIG_EXT2_FS=y ··· 779 # CONFIG_MINIX_FS is not set 780 # CONFIG_ROMFS_FS is not set 781 CONFIG_INOTIFY=y 782 + CONFIG_INOTIFY_USER=y 783 # CONFIG_QUOTA is not set 784 CONFIG_DNOTIFY=y 785 # CONFIG_AUTOFS_FS is not set ··· 844 # CONFIG_RPCSEC_GSS_SPKM3 is not set 845 # CONFIG_SMB_FS is not set 846 # CONFIG_CIFS is not set 847 + # CONFIG_CIFS_DEBUG2 is not set 848 # CONFIG_NCP_FS is not set 849 # CONFIG_CODA_FS is not set 850 # CONFIG_AFS_FS is not set ··· 870 # 871 CONFIG_PRINTK_TIME=y 872 CONFIG_MAGIC_SYSRQ=y 873 + # CONFIG_UNUSED_SYMBOLS is not set 874 CONFIG_DEBUG_KERNEL=y 875 CONFIG_LOG_BUF_SHIFT=16 876 CONFIG_DETECT_SOFTLOCKUP=y 877 # CONFIG_SCHEDSTATS is not set 878 # CONFIG_DEBUG_SLAB is not set 879 + # CONFIG_DEBUG_RT_MUTEXES is not set 880 + # CONFIG_RT_MUTEX_TESTER is not set 881 # CONFIG_DEBUG_SPINLOCK is not set 882 + CONFIG_DEBUG_MUTEXES=y 883 + # CONFIG_DEBUG_RWSEMS is not set 884 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 885 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 886 # CONFIG_DEBUG_KOBJECT is not set 887 # CONFIG_DEBUG_INFO is not set 888 # CONFIG_DEBUG_FS is not set ··· 940 # CONFIG_LIBCRC32C is not set 941 CONFIG_ZLIB_INFLATE=y 942 CONFIG_ZLIB_DEFLATE=y 943 + CONFIG_PLIST=y
+46 -3
arch/mips/configs/capcella_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:06 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 76 CONFIG_GENERIC_FIND_NEXT_BIT=y 77 CONFIG_GENERIC_HWEIGHT=y 78 CONFIG_GENERIC_CALIBRATE_DELAY=y 79 CONFIG_DMA_NONCOHERENT=y 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 121 # CONFIG_PAGE_SIZE_8KB is not set 122 # CONFIG_PAGE_SIZE_16KB is not set 123 # CONFIG_PAGE_SIZE_64KB is not set 124 - # CONFIG_MIPS_MT is not set 125 CONFIG_CPU_HAS_SYNC=y 126 CONFIG_GENERIC_HARDIRQS=y 127 CONFIG_GENERIC_IRQ_PROBE=y ··· 137 CONFIG_FLAT_NODE_MEM_MAP=y 138 # CONFIG_SPARSEMEM_STATIC is not set 139 CONFIG_SPLIT_PTLOCK_CPUS=4 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 150 CONFIG_PREEMPT_NONE=y 151 # CONFIG_PREEMPT_VOLUNTARY is not set 152 # CONFIG_PREEMPT is not set 153 154 # 155 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set ··· 279 # CONFIG_INET_IPCOMP is not set 280 # CONFIG_INET_XFRM_TUNNEL is not set 281 # CONFIG_INET_TUNNEL is not set 282 CONFIG_INET_DIAG=y 283 CONFIG_INET_TCP_DIAG=y 284 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 # CONFIG_IPV6 is not set 289 # CONFIG_INET6_XFRM_TUNNEL is not set 290 # CONFIG_INET6_TUNNEL is not set 291 # CONFIG_NETFILTER is not set 292 293 # ··· 342 CONFIG_STANDALONE=y 343 CONFIG_PREVENT_FIRMWARE_BUILD=y 344 CONFIG_FW_LOADER=m 345 346 # 347 # Connector - unified userspace <-> kernelspace linker ··· 461 CONFIG_QSEMI_PHY=m 462 CONFIG_LXT_PHY=m 463 CONFIG_CICADA_PHY=m 464 465 # 466 # Ethernet (10 or 100Mbit) ··· 529 # CONFIG_CHELSIO_T1 is not set 530 # CONFIG_IXGB is not set 531 # CONFIG_S2IO is not set 532 533 # 534 # Token Ring devices ··· 599 CONFIG_VT=y 600 CONFIG_VT_CONSOLE=y 601 CONFIG_HW_CONSOLE=y 602 # CONFIG_SERIAL_NONSTANDARD is not set 603 604 # ··· 628 # Watchdog Cards 629 # 630 # CONFIG_WATCHDOG is not set 631 # CONFIG_RTC is not set 632 # CONFIG_GEN_RTC is not set 633 # CONFIG_DTLK is not set ··· 678 # Multimedia devices 679 # 680 # CONFIG_VIDEO_DEV is not set 681 682 # 683 # Digital Video Broadcasting Devices ··· 688 # 689 # Graphics support 690 # 691 # CONFIG_FB is not set 692 693 # ··· 760 CONFIG_RTC_INTF_SYSFS=y 761 CONFIG_RTC_INTF_PROC=y 762 CONFIG_RTC_INTF_DEV=y 763 764 # 765 # RTC drivers 766 # 767 # CONFIG_RTC_DRV_M48T86 is not set 768 CONFIG_RTC_DRV_VR41XX=y 769 # CONFIG_RTC_DRV_TEST is not set 770 771 # 772 # File systems ··· 800 # CONFIG_MINIX_FS is not set 801 # CONFIG_ROMFS_FS is not set 802 CONFIG_INOTIFY=y 803 # CONFIG_QUOTA is not set 804 CONFIG_DNOTIFY=y 805 # CONFIG_AUTOFS_FS is not set ··· 867 # CONFIG_RPCSEC_GSS_SPKM3 is not set 868 # CONFIG_SMB_FS is not set 869 # CONFIG_CIFS is not set 870 # CONFIG_NCP_FS is not set 871 # CONFIG_CODA_FS is not set 872 # CONFIG_AFS_FS is not set ··· 894 # 895 # CONFIG_PRINTK_TIME is not set 896 # CONFIG_MAGIC_SYSRQ is not set 897 # CONFIG_DEBUG_KERNEL is not set 898 CONFIG_LOG_BUF_SHIFT=14 899 # CONFIG_DEBUG_FS is not set ··· 923 # CONFIG_CRC16 is not set 924 CONFIG_CRC32=y 925 # CONFIG_LIBCRC32C is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:24 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 73 CONFIG_GENERIC_FIND_NEXT_BIT=y 74 CONFIG_GENERIC_HWEIGHT=y 75 CONFIG_GENERIC_CALIBRATE_DELAY=y 76 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 77 CONFIG_DMA_NONCOHERENT=y 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 # CONFIG_PAGE_SIZE_8KB is not set 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y 126 CONFIG_GENERIC_IRQ_PROBE=y ··· 130 CONFIG_FLAT_NODE_MEM_MAP=y 131 # CONFIG_SPARSEMEM_STATIC is not set 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 134 # CONFIG_HZ_48 is not set 135 # CONFIG_HZ_100 is not set 136 # CONFIG_HZ_128 is not set ··· 142 CONFIG_PREEMPT_NONE=y 143 # CONFIG_PREEMPT_VOLUNTARY is not set 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 146 147 # 148 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set ··· 268 # CONFIG_INET_IPCOMP is not set 269 # CONFIG_INET_XFRM_TUNNEL is not set 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 273 CONFIG_INET_DIAG=y 274 CONFIG_INET_TCP_DIAG=y 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 275 # CONFIG_IPV6 is not set 276 # CONFIG_INET6_XFRM_TUNNEL is not set 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 279 # CONFIG_NETFILTER is not set 280 281 # ··· 328 CONFIG_STANDALONE=y 329 CONFIG_PREVENT_FIRMWARE_BUILD=y 330 CONFIG_FW_LOADER=m 331 + # CONFIG_SYS_HYPERVISOR is not set 332 333 # 334 # Connector - unified userspace <-> kernelspace linker ··· 446 CONFIG_QSEMI_PHY=m 447 CONFIG_LXT_PHY=m 448 CONFIG_CICADA_PHY=m 449 + CONFIG_VITESSE_PHY=m 450 + CONFIG_SMSC_PHY=m 451 452 # 453 # Ethernet (10 or 100Mbit) ··· 512 # CONFIG_CHELSIO_T1 is not set 513 # CONFIG_IXGB is not set 514 # CONFIG_S2IO is not set 515 + # CONFIG_MYRI10GE is not set 516 517 # 518 # Token Ring devices ··· 581 CONFIG_VT=y 582 CONFIG_VT_CONSOLE=y 583 CONFIG_HW_CONSOLE=y 584 + CONFIG_VT_HW_CONSOLE_BINDING=y 585 # CONFIG_SERIAL_NONSTANDARD is not set 586 587 # ··· 609 # Watchdog Cards 610 # 611 # CONFIG_WATCHDOG is not set 612 + # CONFIG_HW_RANDOM is not set 613 # CONFIG_RTC is not set 614 # CONFIG_GEN_RTC is not set 615 # CONFIG_DTLK is not set ··· 658 # Multimedia devices 659 # 660 # CONFIG_VIDEO_DEV is not set 661 + CONFIG_VIDEO_V4L2=y 662 663 # 664 # Digital Video Broadcasting Devices ··· 667 # 668 # Graphics support 669 # 670 + # CONFIG_FIRMWARE_EDID is not set 671 # CONFIG_FB is not set 672 673 # ··· 738 CONFIG_RTC_INTF_SYSFS=y 739 CONFIG_RTC_INTF_PROC=y 740 CONFIG_RTC_INTF_DEV=y 741 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 742 743 # 744 # RTC drivers 745 # 746 + # CONFIG_RTC_DRV_DS1553 is not set 747 + # CONFIG_RTC_DRV_DS1742 is not set 748 # CONFIG_RTC_DRV_M48T86 is not set 749 CONFIG_RTC_DRV_VR41XX=y 750 # CONFIG_RTC_DRV_TEST is not set 751 + # CONFIG_RTC_DRV_V3020 is not set 752 + 753 + # 754 + # DMA Engine support 755 + # 756 + # CONFIG_DMA_ENGINE is not set 757 + 758 + # 759 + # DMA Clients 760 + # 761 + 762 + # 763 + # DMA Devices 764 + # 765 766 # 767 # File systems ··· 761 # CONFIG_MINIX_FS is not set 762 # CONFIG_ROMFS_FS is not set 763 CONFIG_INOTIFY=y 764 + CONFIG_INOTIFY_USER=y 765 # CONFIG_QUOTA is not set 766 CONFIG_DNOTIFY=y 767 # CONFIG_AUTOFS_FS is not set ··· 827 # CONFIG_RPCSEC_GSS_SPKM3 is not set 828 # CONFIG_SMB_FS is not set 829 # CONFIG_CIFS is not set 830 + # CONFIG_CIFS_DEBUG2 is not set 831 # CONFIG_NCP_FS is not set 832 # CONFIG_CODA_FS is not set 833 # CONFIG_AFS_FS is not set ··· 853 # 854 # CONFIG_PRINTK_TIME is not set 855 # CONFIG_MAGIC_SYSRQ is not set 856 + # CONFIG_UNUSED_SYMBOLS is not set 857 # CONFIG_DEBUG_KERNEL is not set 858 CONFIG_LOG_BUF_SHIFT=14 859 # CONFIG_DEBUG_FS is not set ··· 881 # CONFIG_CRC16 is not set 882 CONFIG_CRC32=y 883 # CONFIG_LIBCRC32C is not set 884 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/cobalt_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:57 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 CONFIG_MIPS_COBALT=y 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 CONFIG_I8259=y ··· 117 # CONFIG_PAGE_SIZE_8KB is not set 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 - # CONFIG_MIPS_MT is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 147 CONFIG_PREEMPT_NONE=y 148 # CONFIG_PREEMPT_VOLUNTARY is not set 149 # CONFIG_PREEMPT is not set 150 151 # 152 # Code maturity level options ··· 179 CONFIG_BUG=y 180 CONFIG_ELF_CORE=y 181 CONFIG_BASE_FULL=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 # CONFIG_TINY_SHMEM is not set 187 CONFIG_BASE_SMALL=0 188 # CONFIG_SLOB is not set ··· 267 # CONFIG_INET_IPCOMP is not set 268 # CONFIG_INET_XFRM_TUNNEL is not set 269 # CONFIG_INET_TUNNEL is not set 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 276 # CONFIG_IPV6 is not set 277 # CONFIG_INET6_XFRM_TUNNEL is not set 278 # CONFIG_INET6_TUNNEL is not set 279 # CONFIG_NETFILTER is not set 280 281 # ··· 336 CONFIG_STANDALONE=y 337 CONFIG_PREVENT_FIRMWARE_BUILD=y 338 CONFIG_FW_LOADER=y 339 340 # 341 # Connector - unified userspace <-> kernelspace linker ··· 486 CONFIG_QSEMI_PHY=y 487 CONFIG_LXT_PHY=y 488 CONFIG_CICADA_PHY=y 489 490 # 491 # Ethernet (10 or 100Mbit) ··· 539 # CONFIG_CHELSIO_T1 is not set 540 # CONFIG_IXGB is not set 541 # CONFIG_S2IO is not set 542 543 # 544 # Token Ring devices ··· 617 CONFIG_VT=y 618 CONFIG_VT_CONSOLE=y 619 CONFIG_HW_CONSOLE=y 620 # CONFIG_SERIAL_NONSTANDARD is not set 621 622 # ··· 649 # Watchdog Cards 650 # 651 # CONFIG_WATCHDOG is not set 652 CONFIG_RTC=y 653 CONFIG_COBALT_LCD=y 654 # CONFIG_DTLK is not set ··· 698 # Multimedia devices 699 # 700 # CONFIG_VIDEO_DEV is not set 701 702 # 703 # Digital Video Broadcasting Devices ··· 708 # 709 # Graphics support 710 # 711 # CONFIG_FB is not set 712 713 # ··· 772 # CONFIG_RTC_CLASS is not set 773 774 # 775 # File systems 776 # 777 CONFIG_EXT2_FS=y ··· 802 # CONFIG_MINIX_FS is not set 803 # CONFIG_ROMFS_FS is not set 804 CONFIG_INOTIFY=y 805 # CONFIG_QUOTA is not set 806 CONFIG_DNOTIFY=y 807 # CONFIG_AUTOFS_FS is not set ··· 865 # CONFIG_RPCSEC_GSS_SPKM3 is not set 866 # CONFIG_SMB_FS is not set 867 # CONFIG_CIFS is not set 868 # CONFIG_NCP_FS is not set 869 # CONFIG_CODA_FS is not set 870 # CONFIG_AFS_FS is not set ··· 892 # 893 # CONFIG_PRINTK_TIME is not set 894 # CONFIG_MAGIC_SYSRQ is not set 895 # CONFIG_DEBUG_KERNEL is not set 896 CONFIG_LOG_BUF_SHIFT=14 897 # CONFIG_DEBUG_FS is not set ··· 934 CONFIG_CRYPTO_DEFLATE=y 935 CONFIG_CRYPTO_MICHAEL_MIC=y 936 CONFIG_CRYPTO_CRC32C=y 937 - # CONFIG_CRYPTO_TEST is not set 938 939 # 940 # Hardware crypto devices ··· 948 CONFIG_LIBCRC32C=y 949 CONFIG_ZLIB_INFLATE=y 950 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:25 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 CONFIG_MIPS_COBALT=y 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 CONFIG_I8259=y ··· 113 # CONFIG_PAGE_SIZE_8KB is not set 114 # CONFIG_PAGE_SIZE_16KB is not set 115 # CONFIG_PAGE_SIZE_64KB is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 CONFIG_CPU_HAS_LLSC=y 121 CONFIG_CPU_HAS_SYNC=y 122 CONFIG_GENERIC_HARDIRQS=y ··· 127 CONFIG_FLAT_NODE_MEM_MAP=y 128 # CONFIG_SPARSEMEM_STATIC is not set 129 CONFIG_SPLIT_PTLOCK_CPUS=4 130 + # CONFIG_RESOURCES_64BIT is not set 131 # CONFIG_HZ_48 is not set 132 # CONFIG_HZ_100 is not set 133 # CONFIG_HZ_128 is not set ··· 139 CONFIG_PREEMPT_NONE=y 140 # CONFIG_PREEMPT_VOLUNTARY is not set 141 # CONFIG_PREEMPT is not set 142 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 143 144 # 145 # Code maturity level options ··· 170 CONFIG_BUG=y 171 CONFIG_ELF_CORE=y 172 CONFIG_BASE_FULL=y 173 + CONFIG_RT_MUTEXES=y 174 CONFIG_FUTEX=y 175 CONFIG_EPOLL=y 176 CONFIG_SHMEM=y 177 CONFIG_SLAB=y 178 + CONFIG_VM_EVENT_COUNTERS=y 179 # CONFIG_TINY_SHMEM is not set 180 CONFIG_BASE_SMALL=0 181 # CONFIG_SLOB is not set ··· 256 # CONFIG_INET_IPCOMP is not set 257 # CONFIG_INET_XFRM_TUNNEL is not set 258 # CONFIG_INET_TUNNEL is not set 259 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 260 + CONFIG_INET_XFRM_MODE_TUNNEL=y 261 CONFIG_INET_DIAG=y 262 CONFIG_INET_TCP_DIAG=y 263 # CONFIG_TCP_CONG_ADVANCED is not set ··· 263 # CONFIG_IPV6 is not set 264 # CONFIG_INET6_XFRM_TUNNEL is not set 265 # CONFIG_INET6_TUNNEL is not set 266 + CONFIG_NETWORK_SECMARK=y 267 # CONFIG_NETFILTER is not set 268 269 # ··· 322 CONFIG_STANDALONE=y 323 CONFIG_PREVENT_FIRMWARE_BUILD=y 324 CONFIG_FW_LOADER=y 325 + # CONFIG_SYS_HYPERVISOR is not set 326 327 # 328 # Connector - unified userspace <-> kernelspace linker ··· 471 CONFIG_QSEMI_PHY=y 472 CONFIG_LXT_PHY=y 473 CONFIG_CICADA_PHY=y 474 + CONFIG_VITESSE_PHY=y 475 + CONFIG_SMSC_PHY=y 476 477 # 478 # Ethernet (10 or 100Mbit) ··· 522 # CONFIG_CHELSIO_T1 is not set 523 # CONFIG_IXGB is not set 524 # CONFIG_S2IO is not set 525 + # CONFIG_MYRI10GE is not set 526 527 # 528 # Token Ring devices ··· 599 CONFIG_VT=y 600 CONFIG_VT_CONSOLE=y 601 CONFIG_HW_CONSOLE=y 602 + CONFIG_VT_HW_CONSOLE_BINDING=y 603 # CONFIG_SERIAL_NONSTANDARD is not set 604 605 # ··· 630 # Watchdog Cards 631 # 632 # CONFIG_WATCHDOG is not set 633 + # CONFIG_HW_RANDOM is not set 634 CONFIG_RTC=y 635 CONFIG_COBALT_LCD=y 636 # CONFIG_DTLK is not set ··· 678 # Multimedia devices 679 # 680 # CONFIG_VIDEO_DEV is not set 681 + CONFIG_VIDEO_V4L2=y 682 683 # 684 # Digital Video Broadcasting Devices ··· 687 # 688 # Graphics support 689 # 690 + # CONFIG_FIRMWARE_EDID is not set 691 # CONFIG_FB is not set 692 693 # ··· 750 # CONFIG_RTC_CLASS is not set 751 752 # 753 + # DMA Engine support 754 + # 755 + # CONFIG_DMA_ENGINE is not set 756 + 757 + # 758 + # DMA Clients 759 + # 760 + 761 + # 762 + # DMA Devices 763 + # 764 + 765 + # 766 # File systems 767 # 768 CONFIG_EXT2_FS=y ··· 767 # CONFIG_MINIX_FS is not set 768 # CONFIG_ROMFS_FS is not set 769 CONFIG_INOTIFY=y 770 + CONFIG_INOTIFY_USER=y 771 # CONFIG_QUOTA is not set 772 CONFIG_DNOTIFY=y 773 # CONFIG_AUTOFS_FS is not set ··· 829 # CONFIG_RPCSEC_GSS_SPKM3 is not set 830 # CONFIG_SMB_FS is not set 831 # CONFIG_CIFS is not set 832 + # CONFIG_CIFS_DEBUG2 is not set 833 # CONFIG_NCP_FS is not set 834 # CONFIG_CODA_FS is not set 835 # CONFIG_AFS_FS is not set ··· 855 # 856 # CONFIG_PRINTK_TIME is not set 857 # CONFIG_MAGIC_SYSRQ is not set 858 + # CONFIG_UNUSED_SYMBOLS is not set 859 # CONFIG_DEBUG_KERNEL is not set 860 CONFIG_LOG_BUF_SHIFT=14 861 # CONFIG_DEBUG_FS is not set ··· 896 CONFIG_CRYPTO_DEFLATE=y 897 CONFIG_CRYPTO_MICHAEL_MIC=y 898 CONFIG_CRYPTO_CRC32C=y 899 900 # 901 # Hardware crypto devices ··· 911 CONFIG_LIBCRC32C=y 912 CONFIG_ZLIB_INFLATE=y 913 CONFIG_ZLIB_DEFLATE=y 914 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/db1000_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:57 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 180 CONFIG_BUG=y 181 CONFIG_ELF_CORE=y 182 CONFIG_BASE_FULL=y 183 CONFIG_FUTEX=y 184 CONFIG_EPOLL=y 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set 190 - CONFIG_OBSOLETE_INTERMODULE=y 191 192 # 193 # Loadable module support ··· 286 # CONFIG_INET_IPCOMP is not set 287 # CONFIG_INET_XFRM_TUNNEL is not set 288 # CONFIG_INET_TUNNEL is not set 289 CONFIG_INET_DIAG=y 290 CONFIG_INET_TCP_DIAG=y 291 # CONFIG_TCP_CONG_ADVANCED is not set ··· 300 # CONFIG_IPV6 is not set 301 # CONFIG_INET6_XFRM_TUNNEL is not set 302 # CONFIG_INET6_TUNNEL is not set 303 CONFIG_NETFILTER=y 304 # CONFIG_NETFILTER_DEBUG is not set 305 ··· 315 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 316 CONFIG_NETFILTER_XT_TARGET_MARK=m 317 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 318 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 319 CONFIG_NETFILTER_XT_MATCH_DCCP=m 320 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 326 CONFIG_NETFILTER_XT_MATCH_POLICY=m 327 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 328 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 329 CONFIG_NETFILTER_XT_MATCH_REALM=m 330 CONFIG_NETFILTER_XT_MATCH_SCTP=m 331 CONFIG_NETFILTER_XT_MATCH_STRING=m 332 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 333 ··· 399 CONFIG_STANDALONE=y 400 CONFIG_PREVENT_FIRMWARE_BUILD=y 401 CONFIG_FW_LOADER=m 402 403 # 404 # Connector - unified userspace <-> kernelspace linker ··· 549 # 550 # PHY device support 551 # 552 - CONFIG_PHYLIB=m 553 554 # 555 # MII PHY device drivers ··· 559 CONFIG_QSEMI_PHY=m 560 CONFIG_LXT_PHY=m 561 CONFIG_CICADA_PHY=m 562 563 # 564 # Ethernet (10 or 100Mbit) ··· 672 CONFIG_VT=y 673 CONFIG_VT_CONSOLE=y 674 CONFIG_HW_CONSOLE=y 675 # CONFIG_SERIAL_NONSTANDARD is not set 676 # CONFIG_AU1X00_GPIO is not set 677 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 706 # Watchdog Cards 707 # 708 # CONFIG_WATCHDOG is not set 709 # CONFIG_RTC is not set 710 # CONFIG_GEN_RTC is not set 711 # CONFIG_DTLK is not set ··· 760 # Multimedia devices 761 # 762 # CONFIG_VIDEO_DEV is not set 763 764 # 765 # Digital Video Broadcasting Devices ··· 770 # 771 # Graphics support 772 # 773 # CONFIG_FB is not set 774 775 # ··· 833 # CONFIG_RTC_CLASS is not set 834 835 # 836 # File systems 837 # 838 CONFIG_EXT2_FS=y ··· 873 # CONFIG_MINIX_FS is not set 874 # CONFIG_ROMFS_FS is not set 875 CONFIG_INOTIFY=y 876 # CONFIG_QUOTA is not set 877 CONFIG_DNOTIFY=y 878 CONFIG_AUTOFS_FS=m ··· 943 CONFIG_SMB_FS=m 944 # CONFIG_SMB_NLS_DEFAULT is not set 945 # CONFIG_CIFS is not set 946 # CONFIG_NCP_FS is not set 947 # CONFIG_CODA_FS is not set 948 # CONFIG_AFS_FS is not set ··· 1009 # 1010 # CONFIG_PRINTK_TIME is not set 1011 # CONFIG_MAGIC_SYSRQ is not set 1012 # CONFIG_DEBUG_KERNEL is not set 1013 CONFIG_LOG_BUF_SHIFT=14 1014 # CONFIG_DEBUG_FS is not set ··· 1069 CONFIG_TEXTSEARCH_KMP=m 1070 CONFIG_TEXTSEARCH_BM=m 1071 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:33 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 CONFIG_CPU_HAS_PREFETCH=y 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 119 CONFIG_64BIT_PHYS_ADDR=y 120 CONFIG_CPU_HAS_LLSC=y 121 CONFIG_CPU_HAS_SYNC=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 171 CONFIG_BUG=y 172 CONFIG_ELF_CORE=y 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 175 CONFIG_FUTEX=y 176 CONFIG_EPOLL=y 177 CONFIG_SHMEM=y 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 180 # CONFIG_TINY_SHMEM is not set 181 CONFIG_BASE_SMALL=0 182 # CONFIG_SLOB is not set 183 184 # 185 # Loadable module support ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 280 + CONFIG_INET_XFRM_MODE_TUNNEL=m 281 CONFIG_INET_DIAG=y 282 CONFIG_INET_TCP_DIAG=y 283 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 # CONFIG_IPV6 is not set 289 # CONFIG_INET6_XFRM_TUNNEL is not set 290 # CONFIG_INET6_TUNNEL is not set 291 + CONFIG_NETWORK_SECMARK=y 292 CONFIG_NETFILTER=y 293 # CONFIG_NETFILTER_DEBUG is not set 294 ··· 302 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 303 CONFIG_NETFILTER_XT_TARGET_MARK=m 304 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 305 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 306 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 307 CONFIG_NETFILTER_XT_MATCH_DCCP=m 308 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 312 CONFIG_NETFILTER_XT_MATCH_POLICY=m 313 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 314 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 315 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 316 CONFIG_NETFILTER_XT_MATCH_REALM=m 317 CONFIG_NETFILTER_XT_MATCH_SCTP=m 318 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 319 CONFIG_NETFILTER_XT_MATCH_STRING=m 320 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 321 ··· 383 CONFIG_STANDALONE=y 384 CONFIG_PREVENT_FIRMWARE_BUILD=y 385 CONFIG_FW_LOADER=m 386 + # CONFIG_SYS_HYPERVISOR is not set 387 388 # 389 # Connector - unified userspace <-> kernelspace linker ··· 532 # 533 # PHY device support 534 # 535 + CONFIG_PHYLIB=y 536 537 # 538 # MII PHY device drivers ··· 542 CONFIG_QSEMI_PHY=m 543 CONFIG_LXT_PHY=m 544 CONFIG_CICADA_PHY=m 545 + CONFIG_VITESSE_PHY=m 546 + CONFIG_SMSC_PHY=m 547 548 # 549 # Ethernet (10 or 100Mbit) ··· 653 CONFIG_VT=y 654 CONFIG_VT_CONSOLE=y 655 CONFIG_HW_CONSOLE=y 656 + CONFIG_VT_HW_CONSOLE_BINDING=y 657 # CONFIG_SERIAL_NONSTANDARD is not set 658 # CONFIG_AU1X00_GPIO is not set 659 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 686 # Watchdog Cards 687 # 688 # CONFIG_WATCHDOG is not set 689 + # CONFIG_HW_RANDOM is not set 690 # CONFIG_RTC is not set 691 # CONFIG_GEN_RTC is not set 692 # CONFIG_DTLK is not set ··· 739 # Multimedia devices 740 # 741 # CONFIG_VIDEO_DEV is not set 742 + CONFIG_VIDEO_V4L2=y 743 744 # 745 # Digital Video Broadcasting Devices ··· 748 # 749 # Graphics support 750 # 751 + # CONFIG_FIRMWARE_EDID is not set 752 # CONFIG_FB is not set 753 754 # ··· 810 # CONFIG_RTC_CLASS is not set 811 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 826 # File systems 827 # 828 CONFIG_EXT2_FS=y ··· 837 # CONFIG_MINIX_FS is not set 838 # CONFIG_ROMFS_FS is not set 839 CONFIG_INOTIFY=y 840 + CONFIG_INOTIFY_USER=y 841 # CONFIG_QUOTA is not set 842 CONFIG_DNOTIFY=y 843 CONFIG_AUTOFS_FS=m ··· 906 CONFIG_SMB_FS=m 907 # CONFIG_SMB_NLS_DEFAULT is not set 908 # CONFIG_CIFS is not set 909 + # CONFIG_CIFS_DEBUG2 is not set 910 # CONFIG_NCP_FS is not set 911 # CONFIG_CODA_FS is not set 912 # CONFIG_AFS_FS is not set ··· 971 # 972 # CONFIG_PRINTK_TIME is not set 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 975 # CONFIG_DEBUG_KERNEL is not set 976 CONFIG_LOG_BUF_SHIFT=14 977 # CONFIG_DEBUG_FS is not set ··· 1030 CONFIG_TEXTSEARCH_KMP=m 1031 CONFIG_TEXTSEARCH_BM=m 1032 CONFIG_TEXTSEARCH_FSM=m 1033 + CONFIG_PLIST=y
+46 -6
arch/mips/configs/db1100_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:58 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 180 CONFIG_BUG=y 181 CONFIG_ELF_CORE=y 182 CONFIG_BASE_FULL=y 183 CONFIG_FUTEX=y 184 CONFIG_EPOLL=y 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set 190 - CONFIG_OBSOLETE_INTERMODULE=y 191 192 # 193 # Loadable module support ··· 275 # CONFIG_INET_IPCOMP is not set 276 # CONFIG_INET_XFRM_TUNNEL is not set 277 # CONFIG_INET_TUNNEL is not set 278 CONFIG_INET_DIAG=y 279 CONFIG_INET_TCP_DIAG=y 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 289 # CONFIG_IPV6 is not set 290 # CONFIG_INET6_XFRM_TUNNEL is not set 291 # CONFIG_INET6_TUNNEL is not set 292 CONFIG_NETFILTER=y 293 # CONFIG_NETFILTER_DEBUG is not set 294 ··· 304 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 305 CONFIG_NETFILTER_XT_TARGET_MARK=m 306 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 307 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 308 CONFIG_NETFILTER_XT_MATCH_DCCP=m 309 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 315 CONFIG_NETFILTER_XT_MATCH_POLICY=m 316 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 317 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 318 CONFIG_NETFILTER_XT_MATCH_REALM=m 319 CONFIG_NETFILTER_XT_MATCH_SCTP=m 320 CONFIG_NETFILTER_XT_MATCH_STRING=m 321 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 322 ··· 388 CONFIG_STANDALONE=y 389 CONFIG_PREVENT_FIRMWARE_BUILD=y 390 # CONFIG_FW_LOADER is not set 391 392 # 393 # Connector - unified userspace <-> kernelspace linker ··· 538 # 539 # PHY device support 540 # 541 - CONFIG_PHYLIB=m 542 543 # 544 # MII PHY device drivers ··· 548 CONFIG_QSEMI_PHY=m 549 CONFIG_LXT_PHY=m 550 CONFIG_CICADA_PHY=m 551 552 # 553 # Ethernet (10 or 100Mbit) ··· 648 CONFIG_VT=y 649 CONFIG_VT_CONSOLE=y 650 CONFIG_HW_CONSOLE=y 651 # CONFIG_SERIAL_NONSTANDARD is not set 652 # CONFIG_AU1X00_GPIO is not set 653 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 681 # Watchdog Cards 682 # 683 # CONFIG_WATCHDOG is not set 684 # CONFIG_RTC is not set 685 # CONFIG_GEN_RTC is not set 686 # CONFIG_DTLK is not set ··· 728 # Multimedia devices 729 # 730 # CONFIG_VIDEO_DEV is not set 731 732 # 733 # Digital Video Broadcasting Devices ··· 738 # 739 # Graphics support 740 # 741 CONFIG_FB=y 742 CONFIG_FB_CFB_FILLRECT=y 743 CONFIG_FB_CFB_COPYAREA=y 744 CONFIG_FB_CFB_IMAGEBLIT=y 745 # CONFIG_FB_MACMODES is not set 746 - CONFIG_FB_FIRMWARE_EDID=y 747 # CONFIG_FB_MODE_HELPERS is not set 748 # CONFIG_FB_TILEBLITTING is not set 749 # CONFIG_FB_S1D13XXX is not set ··· 833 # CONFIG_RTC_CLASS is not set 834 835 # 836 # File systems 837 # 838 CONFIG_EXT2_FS=y ··· 873 # CONFIG_MINIX_FS is not set 874 # CONFIG_ROMFS_FS is not set 875 CONFIG_INOTIFY=y 876 # CONFIG_QUOTA is not set 877 CONFIG_DNOTIFY=y 878 CONFIG_AUTOFS_FS=m ··· 943 CONFIG_SMB_FS=m 944 # CONFIG_SMB_NLS_DEFAULT is not set 945 # CONFIG_CIFS is not set 946 # CONFIG_NCP_FS is not set 947 # CONFIG_CODA_FS is not set 948 # CONFIG_AFS_FS is not set ··· 1009 # 1010 # CONFIG_PRINTK_TIME is not set 1011 # CONFIG_MAGIC_SYSRQ is not set 1012 # CONFIG_DEBUG_KERNEL is not set 1013 CONFIG_LOG_BUF_SHIFT=14 1014 # CONFIG_DEBUG_FS is not set ··· 1069 CONFIG_TEXTSEARCH_KMP=m 1070 CONFIG_TEXTSEARCH_BM=m 1071 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:34 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 CONFIG_CPU_HAS_PREFETCH=y 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 119 CONFIG_64BIT_PHYS_ADDR=y 120 CONFIG_CPU_HAS_LLSC=y 121 CONFIG_CPU_HAS_SYNC=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 171 CONFIG_BUG=y 172 CONFIG_ELF_CORE=y 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 175 CONFIG_FUTEX=y 176 CONFIG_EPOLL=y 177 CONFIG_SHMEM=y 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 180 # CONFIG_TINY_SHMEM is not set 181 CONFIG_BASE_SMALL=0 182 # CONFIG_SLOB is not set 183 184 # 185 # Loadable module support ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 277 # CONFIG_IPV6 is not set 278 # CONFIG_INET6_XFRM_TUNNEL is not set 279 # CONFIG_INET6_TUNNEL is not set 280 + CONFIG_NETWORK_SECMARK=y 281 CONFIG_NETFILTER=y 282 # CONFIG_NETFILTER_DEBUG is not set 283 ··· 291 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 292 CONFIG_NETFILTER_XT_TARGET_MARK=m 293 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 294 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 295 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 296 CONFIG_NETFILTER_XT_MATCH_DCCP=m 297 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 301 CONFIG_NETFILTER_XT_MATCH_POLICY=m 302 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 303 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 304 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 305 CONFIG_NETFILTER_XT_MATCH_REALM=m 306 CONFIG_NETFILTER_XT_MATCH_SCTP=m 307 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 308 CONFIG_NETFILTER_XT_MATCH_STRING=m 309 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 310 ··· 372 CONFIG_STANDALONE=y 373 CONFIG_PREVENT_FIRMWARE_BUILD=y 374 # CONFIG_FW_LOADER is not set 375 + # CONFIG_SYS_HYPERVISOR is not set 376 377 # 378 # Connector - unified userspace <-> kernelspace linker ··· 521 # 522 # PHY device support 523 # 524 + CONFIG_PHYLIB=y 525 526 # 527 # MII PHY device drivers ··· 531 CONFIG_QSEMI_PHY=m 532 CONFIG_LXT_PHY=m 533 CONFIG_CICADA_PHY=m 534 + CONFIG_VITESSE_PHY=m 535 + CONFIG_SMSC_PHY=m 536 537 # 538 # Ethernet (10 or 100Mbit) ··· 629 CONFIG_VT=y 630 CONFIG_VT_CONSOLE=y 631 CONFIG_HW_CONSOLE=y 632 + CONFIG_VT_HW_CONSOLE_BINDING=y 633 # CONFIG_SERIAL_NONSTANDARD is not set 634 # CONFIG_AU1X00_GPIO is not set 635 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 661 # Watchdog Cards 662 # 663 # CONFIG_WATCHDOG is not set 664 + # CONFIG_HW_RANDOM is not set 665 # CONFIG_RTC is not set 666 # CONFIG_GEN_RTC is not set 667 # CONFIG_DTLK is not set ··· 707 # Multimedia devices 708 # 709 # CONFIG_VIDEO_DEV is not set 710 + CONFIG_VIDEO_V4L2=y 711 712 # 713 # Digital Video Broadcasting Devices ··· 716 # 717 # Graphics support 718 # 719 + # CONFIG_FIRMWARE_EDID is not set 720 CONFIG_FB=y 721 CONFIG_FB_CFB_FILLRECT=y 722 CONFIG_FB_CFB_COPYAREA=y 723 CONFIG_FB_CFB_IMAGEBLIT=y 724 # CONFIG_FB_MACMODES is not set 725 + # CONFIG_FB_BACKLIGHT is not set 726 # CONFIG_FB_MODE_HELPERS is not set 727 # CONFIG_FB_TILEBLITTING is not set 728 # CONFIG_FB_S1D13XXX is not set ··· 810 # CONFIG_RTC_CLASS is not set 811 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 826 # File systems 827 # 828 CONFIG_EXT2_FS=y ··· 837 # CONFIG_MINIX_FS is not set 838 # CONFIG_ROMFS_FS is not set 839 CONFIG_INOTIFY=y 840 + CONFIG_INOTIFY_USER=y 841 # CONFIG_QUOTA is not set 842 CONFIG_DNOTIFY=y 843 CONFIG_AUTOFS_FS=m ··· 906 CONFIG_SMB_FS=m 907 # CONFIG_SMB_NLS_DEFAULT is not set 908 # CONFIG_CIFS is not set 909 + # CONFIG_CIFS_DEBUG2 is not set 910 # CONFIG_NCP_FS is not set 911 # CONFIG_CODA_FS is not set 912 # CONFIG_AFS_FS is not set ··· 971 # 972 # CONFIG_PRINTK_TIME is not set 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 975 # CONFIG_DEBUG_KERNEL is not set 976 CONFIG_LOG_BUF_SHIFT=14 977 # CONFIG_DEBUG_FS is not set ··· 1030 CONFIG_TEXTSEARCH_KMP=m 1031 CONFIG_TEXTSEARCH_BM=m 1032 CONFIG_TEXTSEARCH_FSM=m 1033 + CONFIG_PLIST=y
+45 -6
arch/mips/configs/db1200_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:58 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 CONFIG_MIPS_DB1200=y 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_COHERENT=y 72 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 CONFIG_CPU_HAS_PREFETCH=y 119 - # CONFIG_MIPS_MT is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 193 # 194 # Loadable module support ··· 282 # CONFIG_INET_IPCOMP is not set 283 # CONFIG_INET_XFRM_TUNNEL is not set 284 # CONFIG_INET_TUNNEL is not set 285 CONFIG_INET_DIAG=y 286 CONFIG_INET_TCP_DIAG=y 287 # CONFIG_TCP_CONG_ADVANCED is not set ··· 296 # CONFIG_IPV6 is not set 297 # CONFIG_INET6_XFRM_TUNNEL is not set 298 # CONFIG_INET6_TUNNEL is not set 299 CONFIG_NETFILTER=y 300 # CONFIG_NETFILTER_DEBUG is not set 301 ··· 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 313 CONFIG_NETFILTER_XT_MATCH_DCCP=m 314 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 320 CONFIG_NETFILTER_XT_MATCH_POLICY=m 321 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 322 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 CONFIG_NETFILTER_XT_MATCH_STRING=m 326 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 327 ··· 387 CONFIG_STANDALONE=y 388 CONFIG_PREVENT_FIRMWARE_BUILD=y 389 CONFIG_FW_LOADER=y 390 391 # 392 # Connector - unified userspace <-> kernelspace linker ··· 468 # 469 CONFIG_MTD_NAND=y 470 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 471 CONFIG_MTD_NAND_IDS=y 472 # CONFIG_MTD_NAND_AU1550 is not set 473 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 709 CONFIG_VT=y 710 CONFIG_VT_CONSOLE=y 711 CONFIG_HW_CONSOLE=y 712 # CONFIG_SERIAL_NONSTANDARD is not set 713 # CONFIG_AU1X00_GPIO is not set 714 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 743 # Watchdog Cards 744 # 745 # CONFIG_WATCHDOG is not set 746 # CONFIG_RTC is not set 747 # CONFIG_GEN_RTC is not set 748 # CONFIG_DTLK is not set ··· 781 # 782 # Dallas's 1-wire bus 783 # 784 - # CONFIG_W1 is not set 785 786 # 787 # Hardware Monitoring support ··· 796 # Multimedia devices 797 # 798 # CONFIG_VIDEO_DEV is not set 799 800 # 801 # Digital Video Broadcasting Devices ··· 806 # 807 # Graphics support 808 # 809 CONFIG_FB=y 810 CONFIG_FB_CFB_FILLRECT=y 811 CONFIG_FB_CFB_COPYAREA=y 812 CONFIG_FB_CFB_IMAGEBLIT=y 813 # CONFIG_FB_MACMODES is not set 814 - CONFIG_FB_FIRMWARE_EDID=y 815 # CONFIG_FB_MODE_HELPERS is not set 816 # CONFIG_FB_TILEBLITTING is not set 817 # CONFIG_FB_S1D13XXX is not set ··· 902 # CONFIG_RTC_CLASS is not set 903 904 # 905 # File systems 906 # 907 CONFIG_EXT2_FS=y ··· 941 # CONFIG_MINIX_FS is not set 942 # CONFIG_ROMFS_FS is not set 943 CONFIG_INOTIFY=y 944 # CONFIG_QUOTA is not set 945 CONFIG_DNOTIFY=y 946 # CONFIG_AUTOFS_FS is not set ··· 994 CONFIG_JFFS2_FS_DEBUG=0 995 CONFIG_JFFS2_FS_WRITEBUFFER=y 996 # CONFIG_JFFS2_SUMMARY is not set 997 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 998 CONFIG_JFFS2_ZLIB=y 999 CONFIG_JFFS2_RTIME=y ··· 1024 CONFIG_SMB_FS=y 1025 # CONFIG_SMB_NLS_DEFAULT is not set 1026 # CONFIG_CIFS is not set 1027 # CONFIG_NCP_FS is not set 1028 # CONFIG_CODA_FS is not set 1029 # CONFIG_AFS_FS is not set ··· 1090 # 1091 # CONFIG_PRINTK_TIME is not set 1092 # CONFIG_MAGIC_SYSRQ is not set 1093 # CONFIG_DEBUG_KERNEL is not set 1094 CONFIG_LOG_BUF_SHIFT=14 1095 # CONFIG_DEBUG_FS is not set ··· 1126 CONFIG_TEXTSEARCH_KMP=m 1127 CONFIG_TEXTSEARCH_BM=m 1128 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:43 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 CONFIG_MIPS_DB1200=y 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_COHERENT=y 70 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 CONFIG_CPU_HAS_PREFETCH=y 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 119 CONFIG_64BIT_PHYS_ADDR=y 120 CONFIG_CPU_HAS_LLSC=y 121 CONFIG_CPU_HAS_SYNC=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set 184 185 # 186 # Loadable module support ··· 272 # CONFIG_INET_IPCOMP is not set 273 # CONFIG_INET_XFRM_TUNNEL is not set 274 # CONFIG_INET_TUNNEL is not set 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 277 CONFIG_INET_DIAG=y 278 CONFIG_INET_TCP_DIAG=y 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 284 # CONFIG_IPV6 is not set 285 # CONFIG_INET6_XFRM_TUNNEL is not set 286 # CONFIG_INET6_TUNNEL is not set 287 + CONFIG_NETWORK_SECMARK=y 288 CONFIG_NETFILTER=y 289 # CONFIG_NETFILTER_DEBUG is not set 290 ··· 296 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 297 CONFIG_NETFILTER_XT_TARGET_MARK=m 298 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 299 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 300 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 301 CONFIG_NETFILTER_XT_MATCH_DCCP=m 302 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 306 CONFIG_NETFILTER_XT_MATCH_POLICY=m 307 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 308 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 309 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 310 CONFIG_NETFILTER_XT_MATCH_REALM=m 311 CONFIG_NETFILTER_XT_MATCH_SCTP=m 312 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 313 CONFIG_NETFILTER_XT_MATCH_STRING=m 314 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 315 ··· 371 CONFIG_STANDALONE=y 372 CONFIG_PREVENT_FIRMWARE_BUILD=y 373 CONFIG_FW_LOADER=y 374 + # CONFIG_SYS_HYPERVISOR is not set 375 376 # 377 # Connector - unified userspace <-> kernelspace linker ··· 451 # 452 CONFIG_MTD_NAND=y 453 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 454 + # CONFIG_MTD_NAND_ECC_SMC is not set 455 CONFIG_MTD_NAND_IDS=y 456 # CONFIG_MTD_NAND_AU1550 is not set 457 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 691 CONFIG_VT=y 692 CONFIG_VT_CONSOLE=y 693 CONFIG_HW_CONSOLE=y 694 + CONFIG_VT_HW_CONSOLE_BINDING=y 695 # CONFIG_SERIAL_NONSTANDARD is not set 696 # CONFIG_AU1X00_GPIO is not set 697 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 724 # Watchdog Cards 725 # 726 # CONFIG_WATCHDOG is not set 727 + # CONFIG_HW_RANDOM is not set 728 # CONFIG_RTC is not set 729 # CONFIG_GEN_RTC is not set 730 # CONFIG_DTLK is not set ··· 761 # 762 # Dallas's 1-wire bus 763 # 764 765 # 766 # Hardware Monitoring support ··· 777 # Multimedia devices 778 # 779 # CONFIG_VIDEO_DEV is not set 780 + CONFIG_VIDEO_V4L2=y 781 782 # 783 # Digital Video Broadcasting Devices ··· 786 # 787 # Graphics support 788 # 789 + # CONFIG_FIRMWARE_EDID is not set 790 CONFIG_FB=y 791 CONFIG_FB_CFB_FILLRECT=y 792 CONFIG_FB_CFB_COPYAREA=y 793 CONFIG_FB_CFB_IMAGEBLIT=y 794 # CONFIG_FB_MACMODES is not set 795 + # CONFIG_FB_BACKLIGHT is not set 796 # CONFIG_FB_MODE_HELPERS is not set 797 # CONFIG_FB_TILEBLITTING is not set 798 # CONFIG_FB_S1D13XXX is not set ··· 881 # CONFIG_RTC_CLASS is not set 882 883 # 884 + # DMA Engine support 885 + # 886 + # CONFIG_DMA_ENGINE is not set 887 + 888 + # 889 + # DMA Clients 890 + # 891 + 892 + # 893 + # DMA Devices 894 + # 895 + 896 + # 897 # File systems 898 # 899 CONFIG_EXT2_FS=y ··· 907 # CONFIG_MINIX_FS is not set 908 # CONFIG_ROMFS_FS is not set 909 CONFIG_INOTIFY=y 910 + CONFIG_INOTIFY_USER=y 911 # CONFIG_QUOTA is not set 912 CONFIG_DNOTIFY=y 913 # CONFIG_AUTOFS_FS is not set ··· 959 CONFIG_JFFS2_FS_DEBUG=0 960 CONFIG_JFFS2_FS_WRITEBUFFER=y 961 # CONFIG_JFFS2_SUMMARY is not set 962 + # CONFIG_JFFS2_FS_XATTR is not set 963 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 964 CONFIG_JFFS2_ZLIB=y 965 CONFIG_JFFS2_RTIME=y ··· 988 CONFIG_SMB_FS=y 989 # CONFIG_SMB_NLS_DEFAULT is not set 990 # CONFIG_CIFS is not set 991 + # CONFIG_CIFS_DEBUG2 is not set 992 # CONFIG_NCP_FS is not set 993 # CONFIG_CODA_FS is not set 994 # CONFIG_AFS_FS is not set ··· 1053 # 1054 # CONFIG_PRINTK_TIME is not set 1055 # CONFIG_MAGIC_SYSRQ is not set 1056 + # CONFIG_UNUSED_SYMBOLS is not set 1057 # CONFIG_DEBUG_KERNEL is not set 1058 CONFIG_LOG_BUF_SHIFT=14 1059 # CONFIG_DEBUG_FS is not set ··· 1088 CONFIG_TEXTSEARCH_KMP=m 1089 CONFIG_TEXTSEARCH_BM=m 1090 CONFIG_TEXTSEARCH_FSM=m 1091 + CONFIG_PLIST=y
+61 -5
arch/mips/configs/db1500_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:59 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 122 CONFIG_64BIT_PHYS_ADDR=y 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y ··· 137 CONFIG_FLAT_NODE_MEM_MAP=y 138 # CONFIG_SPARSEMEM_STATIC is not set 139 CONFIG_SPLIT_PTLOCK_CPUS=4 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 150 CONFIG_PREEMPT_NONE=y 151 # CONFIG_PREEMPT_VOLUNTARY is not set 152 # CONFIG_PREEMPT is not set 153 154 # 155 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set 192 - CONFIG_OBSOLETE_INTERMODULE=y 193 194 # 195 # Loadable module support ··· 293 # CONFIG_INET_IPCOMP is not set 294 # CONFIG_INET_XFRM_TUNNEL is not set 295 # CONFIG_INET_TUNNEL is not set 296 CONFIG_INET_DIAG=y 297 CONFIG_INET_TCP_DIAG=y 298 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 # CONFIG_IPV6 is not set 308 # CONFIG_INET6_XFRM_TUNNEL is not set 309 # CONFIG_INET6_TUNNEL is not set 310 CONFIG_NETFILTER=y 311 # CONFIG_NETFILTER_DEBUG is not set 312 ··· 322 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 325 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 336 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 CONFIG_NETFILTER_XT_MATCH_SCTP=m 338 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 ··· 406 CONFIG_STANDALONE=y 407 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 CONFIG_FW_LOADER=m 409 410 # 411 # Connector - unified userspace <-> kernelspace linker ··· 593 # 594 # PHY device support 595 # 596 - CONFIG_PHYLIB=m 597 598 # 599 # MII PHY device drivers ··· 603 CONFIG_QSEMI_PHY=m 604 CONFIG_LXT_PHY=m 605 CONFIG_CICADA_PHY=m 606 607 # 608 # Ethernet (10 or 100Mbit) ··· 649 # CONFIG_CHELSIO_T1 is not set 650 # CONFIG_IXGB is not set 651 # CONFIG_S2IO is not set 652 653 # 654 # Token Ring devices ··· 773 # Watchdog Cards 774 # 775 # CONFIG_WATCHDOG is not set 776 # CONFIG_RTC is not set 777 # CONFIG_GEN_RTC is not set 778 # CONFIG_DTLK is not set ··· 829 # Multimedia devices 830 # 831 # CONFIG_VIDEO_DEV is not set 832 833 # 834 # Digital Video Broadcasting Devices ··· 840 # 841 # Graphics support 842 # 843 # CONFIG_FB is not set 844 845 # ··· 896 # CONFIG_SND_CMIPCI is not set 897 # CONFIG_SND_CS4281 is not set 898 # CONFIG_SND_CS46XX is not set 899 # CONFIG_SND_EMU10K1 is not set 900 # CONFIG_SND_EMU10K1X is not set 901 # CONFIG_SND_ENS1370 is not set ··· 951 # 952 # PCMCIA devices 953 # 954 955 # 956 # Open Sound System ··· 1067 # CONFIG_USB_LEGOTOWER is not set 1068 # CONFIG_USB_LCD is not set 1069 # CONFIG_USB_LED is not set 1070 # CONFIG_USB_CYTHERM is not set 1071 # CONFIG_USB_PHIDGETKIT is not set 1072 # CONFIG_USB_PHIDGETSERVO is not set 1073 # CONFIG_USB_IDMOUSE is not set 1074 CONFIG_USB_LD=m 1075 1076 # ··· 1117 # CONFIG_RTC_CLASS is not set 1118 1119 # 1120 # File systems 1121 # 1122 CONFIG_EXT2_FS=y ··· 1157 # CONFIG_MINIX_FS is not set 1158 # CONFIG_ROMFS_FS is not set 1159 CONFIG_INOTIFY=y 1160 # CONFIG_QUOTA is not set 1161 CONFIG_DNOTIFY=y 1162 CONFIG_AUTOFS_FS=m ··· 1227 CONFIG_SMB_FS=m 1228 # CONFIG_SMB_NLS_DEFAULT is not set 1229 # CONFIG_CIFS is not set 1230 # CONFIG_NCP_FS is not set 1231 # CONFIG_CODA_FS is not set 1232 # CONFIG_AFS_FS is not set ··· 1293 # 1294 # CONFIG_PRINTK_TIME is not set 1295 # CONFIG_MAGIC_SYSRQ is not set 1296 # CONFIG_DEBUG_KERNEL is not set 1297 CONFIG_LOG_BUF_SHIFT=14 1298 # CONFIG_DEBUG_FS is not set ··· 1353 CONFIG_TEXTSEARCH_KMP=m 1354 CONFIG_TEXTSEARCH_BM=m 1355 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:56 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 114 # CONFIG_PAGE_SIZE_16KB is not set 115 # CONFIG_PAGE_SIZE_64KB is not set 116 CONFIG_CPU_HAS_PREFETCH=y 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 121 CONFIG_64BIT_PHYS_ADDR=y 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 130 CONFIG_FLAT_NODE_MEM_MAP=y 131 # CONFIG_SPARSEMEM_STATIC is not set 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 134 # CONFIG_HZ_48 is not set 135 # CONFIG_HZ_100 is not set 136 # CONFIG_HZ_128 is not set ··· 142 CONFIG_PREEMPT_NONE=y 143 # CONFIG_PREEMPT_VOLUNTARY is not set 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 146 147 # 148 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set 185 186 # 187 # Loadable module support ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 295 # CONFIG_IPV6 is not set 296 # CONFIG_INET6_XFRM_TUNNEL is not set 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 299 CONFIG_NETFILTER=y 300 # CONFIG_NETFILTER_DEBUG is not set 301 ··· 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 328 ··· 390 CONFIG_STANDALONE=y 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 394 395 # 396 # Connector - unified userspace <-> kernelspace linker ··· 576 # 577 # PHY device support 578 # 579 + CONFIG_PHYLIB=y 580 581 # 582 # MII PHY device drivers ··· 586 CONFIG_QSEMI_PHY=m 587 CONFIG_LXT_PHY=m 588 CONFIG_CICADA_PHY=m 589 + CONFIG_VITESSE_PHY=m 590 + CONFIG_SMSC_PHY=m 591 592 # 593 # Ethernet (10 or 100Mbit) ··· 630 # CONFIG_CHELSIO_T1 is not set 631 # CONFIG_IXGB is not set 632 # CONFIG_S2IO is not set 633 + # CONFIG_MYRI10GE is not set 634 635 # 636 # Token Ring devices ··· 753 # Watchdog Cards 754 # 755 # CONFIG_WATCHDOG is not set 756 + # CONFIG_HW_RANDOM is not set 757 # CONFIG_RTC is not set 758 # CONFIG_GEN_RTC is not set 759 # CONFIG_DTLK is not set ··· 808 # Multimedia devices 809 # 810 # CONFIG_VIDEO_DEV is not set 811 + CONFIG_VIDEO_V4L2=y 812 813 # 814 # Digital Video Broadcasting Devices ··· 818 # 819 # Graphics support 820 # 821 + # CONFIG_FIRMWARE_EDID is not set 822 # CONFIG_FB is not set 823 824 # ··· 873 # CONFIG_SND_CMIPCI is not set 874 # CONFIG_SND_CS4281 is not set 875 # CONFIG_SND_CS46XX is not set 876 + # CONFIG_SND_DARLA20 is not set 877 + # CONFIG_SND_GINA20 is not set 878 + # CONFIG_SND_LAYLA20 is not set 879 + # CONFIG_SND_DARLA24 is not set 880 + # CONFIG_SND_GINA24 is not set 881 + # CONFIG_SND_LAYLA24 is not set 882 + # CONFIG_SND_MONA is not set 883 + # CONFIG_SND_MIA is not set 884 + # CONFIG_SND_ECHO3G is not set 885 + # CONFIG_SND_INDIGO is not set 886 + # CONFIG_SND_INDIGOIO is not set 887 + # CONFIG_SND_INDIGODJ is not set 888 # CONFIG_SND_EMU10K1 is not set 889 # CONFIG_SND_EMU10K1X is not set 890 # CONFIG_SND_ENS1370 is not set ··· 916 # 917 # PCMCIA devices 918 # 919 + # CONFIG_SND_VXPOCKET is not set 920 + # CONFIG_SND_PDAUDIOCF is not set 921 922 # 923 # Open Sound System ··· 1030 # CONFIG_USB_LEGOTOWER is not set 1031 # CONFIG_USB_LCD is not set 1032 # CONFIG_USB_LED is not set 1033 + # CONFIG_USB_CY7C63 is not set 1034 # CONFIG_USB_CYTHERM is not set 1035 # CONFIG_USB_PHIDGETKIT is not set 1036 # CONFIG_USB_PHIDGETSERVO is not set 1037 # CONFIG_USB_IDMOUSE is not set 1038 + # CONFIG_USB_APPLEDISPLAY is not set 1039 CONFIG_USB_LD=m 1040 1041 # ··· 1078 # CONFIG_RTC_CLASS is not set 1079 1080 # 1081 + # DMA Engine support 1082 + # 1083 + # CONFIG_DMA_ENGINE is not set 1084 + 1085 + # 1086 + # DMA Clients 1087 + # 1088 + 1089 + # 1090 + # DMA Devices 1091 + # 1092 + 1093 + # 1094 # File systems 1095 # 1096 CONFIG_EXT2_FS=y ··· 1105 # CONFIG_MINIX_FS is not set 1106 # CONFIG_ROMFS_FS is not set 1107 CONFIG_INOTIFY=y 1108 + CONFIG_INOTIFY_USER=y 1109 # CONFIG_QUOTA is not set 1110 CONFIG_DNOTIFY=y 1111 CONFIG_AUTOFS_FS=m ··· 1174 CONFIG_SMB_FS=m 1175 # CONFIG_SMB_NLS_DEFAULT is not set 1176 # CONFIG_CIFS is not set 1177 + # CONFIG_CIFS_DEBUG2 is not set 1178 # CONFIG_NCP_FS is not set 1179 # CONFIG_CODA_FS is not set 1180 # CONFIG_AFS_FS is not set ··· 1239 # 1240 # CONFIG_PRINTK_TIME is not set 1241 # CONFIG_MAGIC_SYSRQ is not set 1242 + # CONFIG_UNUSED_SYMBOLS is not set 1243 # CONFIG_DEBUG_KERNEL is not set 1244 CONFIG_LOG_BUF_SHIFT=14 1245 # CONFIG_DEBUG_FS is not set ··· 1298 CONFIG_TEXTSEARCH_KMP=m 1299 CONFIG_TEXTSEARCH_BM=m 1300 CONFIG_TEXTSEARCH_FSM=m 1301 + CONFIG_PLIST=y
+46 -5
arch/mips/configs/db1550_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:00 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 CONFIG_MIPS_DB1550=y 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 121 CONFIG_64BIT_PHYS_ADDR=y 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 CONFIG_PREEMPT_NONE=y 150 # CONFIG_PREEMPT_VOLUNTARY is not set 151 # CONFIG_PREEMPT is not set 152 153 # 154 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 193 # 194 # Loadable module support ··· 292 # CONFIG_INET_IPCOMP is not set 293 # CONFIG_INET_XFRM_TUNNEL is not set 294 # CONFIG_INET_TUNNEL is not set 295 CONFIG_INET_DIAG=y 296 CONFIG_INET_TCP_DIAG=y 297 # CONFIG_TCP_CONG_ADVANCED is not set ··· 306 # CONFIG_IPV6 is not set 307 # CONFIG_INET6_XFRM_TUNNEL is not set 308 # CONFIG_INET6_TUNNEL is not set 309 CONFIG_NETFILTER=y 310 # CONFIG_NETFILTER_DEBUG is not set 311 ··· 321 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 322 CONFIG_NETFILTER_XT_TARGET_MARK=m 323 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 324 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 325 CONFIG_NETFILTER_XT_MATCH_DCCP=m 326 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 332 CONFIG_NETFILTER_XT_MATCH_POLICY=m 333 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 334 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 335 CONFIG_NETFILTER_XT_MATCH_REALM=m 336 CONFIG_NETFILTER_XT_MATCH_SCTP=m 337 CONFIG_NETFILTER_XT_MATCH_STRING=m 338 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 339 ··· 405 CONFIG_STANDALONE=y 406 CONFIG_PREVENT_FIRMWARE_BUILD=y 407 CONFIG_FW_LOADER=m 408 409 # 410 # Connector - unified userspace <-> kernelspace linker ··· 487 # 488 CONFIG_MTD_NAND=m 489 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 490 CONFIG_MTD_NAND_IDS=m 491 CONFIG_MTD_NAND_AU1550=m 492 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 626 # 627 # PHY device support 628 # 629 - CONFIG_PHYLIB=m 630 631 # 632 # MII PHY device drivers ··· 636 CONFIG_QSEMI_PHY=m 637 CONFIG_LXT_PHY=m 638 CONFIG_CICADA_PHY=m 639 640 # 641 # Ethernet (10 or 100Mbit) ··· 682 # CONFIG_CHELSIO_T1 is not set 683 # CONFIG_IXGB is not set 684 # CONFIG_S2IO is not set 685 686 # 687 # Token Ring devices ··· 814 # Watchdog Cards 815 # 816 # CONFIG_WATCHDOG is not set 817 # CONFIG_RTC is not set 818 # CONFIG_GEN_RTC is not set 819 # CONFIG_DTLK is not set ··· 870 # Multimedia devices 871 # 872 # CONFIG_VIDEO_DEV is not set 873 874 # 875 # Digital Video Broadcasting Devices ··· 880 # 881 # Graphics support 882 # 883 # CONFIG_FB is not set 884 885 # ··· 938 # CONFIG_RTC_CLASS is not set 939 940 # 941 # File systems 942 # 943 CONFIG_EXT2_FS=y ··· 978 # CONFIG_MINIX_FS is not set 979 # CONFIG_ROMFS_FS is not set 980 CONFIG_INOTIFY=y 981 # CONFIG_QUOTA is not set 982 CONFIG_DNOTIFY=y 983 CONFIG_AUTOFS_FS=m ··· 1048 CONFIG_SMB_FS=m 1049 # CONFIG_SMB_NLS_DEFAULT is not set 1050 # CONFIG_CIFS is not set 1051 # CONFIG_NCP_FS is not set 1052 # CONFIG_CODA_FS is not set 1053 # CONFIG_AFS_FS is not set ··· 1114 # 1115 # CONFIG_PRINTK_TIME is not set 1116 # CONFIG_MAGIC_SYSRQ is not set 1117 # CONFIG_DEBUG_KERNEL is not set 1118 CONFIG_LOG_BUF_SHIFT=14 1119 # CONFIG_DEBUG_FS is not set ··· 1174 CONFIG_TEXTSEARCH_KMP=m 1175 CONFIG_TEXTSEARCH_BM=m 1176 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:03:59 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 CONFIG_MIPS_DB1550=y 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 CONFIG_CPU_HAS_PREFETCH=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 129 CONFIG_FLAT_NODE_MEM_MAP=y 130 # CONFIG_SPARSEMEM_STATIC is not set 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 133 # CONFIG_HZ_48 is not set 134 # CONFIG_HZ_100 is not set 135 # CONFIG_HZ_128 is not set ··· 141 CONFIG_PREEMPT_NONE=y 142 # CONFIG_PREEMPT_VOLUNTARY is not set 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 145 146 # 147 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set 184 185 # 186 # Loadable module support ··· 282 # CONFIG_INET_IPCOMP is not set 283 # CONFIG_INET_XFRM_TUNNEL is not set 284 # CONFIG_INET_TUNNEL is not set 285 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 286 + CONFIG_INET_XFRM_MODE_TUNNEL=m 287 CONFIG_INET_DIAG=y 288 CONFIG_INET_TCP_DIAG=y 289 # CONFIG_TCP_CONG_ADVANCED is not set ··· 294 # CONFIG_IPV6 is not set 295 # CONFIG_INET6_XFRM_TUNNEL is not set 296 # CONFIG_INET6_TUNNEL is not set 297 + CONFIG_NETWORK_SECMARK=y 298 CONFIG_NETFILTER=y 299 # CONFIG_NETFILTER_DEBUG is not set 300 ··· 308 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 309 CONFIG_NETFILTER_XT_TARGET_MARK=m 310 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 311 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 312 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 313 CONFIG_NETFILTER_XT_MATCH_DCCP=m 314 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 318 CONFIG_NETFILTER_XT_MATCH_POLICY=m 319 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 320 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 321 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 322 CONFIG_NETFILTER_XT_MATCH_REALM=m 323 CONFIG_NETFILTER_XT_MATCH_SCTP=m 324 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 325 CONFIG_NETFILTER_XT_MATCH_STRING=m 326 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 327 ··· 389 CONFIG_STANDALONE=y 390 CONFIG_PREVENT_FIRMWARE_BUILD=y 391 CONFIG_FW_LOADER=m 392 + # CONFIG_SYS_HYPERVISOR is not set 393 394 # 395 # Connector - unified userspace <-> kernelspace linker ··· 470 # 471 CONFIG_MTD_NAND=m 472 # CONFIG_MTD_NAND_VERIFY_WRITE is not set 473 + # CONFIG_MTD_NAND_ECC_SMC is not set 474 CONFIG_MTD_NAND_IDS=m 475 CONFIG_MTD_NAND_AU1550=m 476 # CONFIG_MTD_NAND_DISKONCHIP is not set ··· 608 # 609 # PHY device support 610 # 611 + CONFIG_PHYLIB=y 612 613 # 614 # MII PHY device drivers ··· 618 CONFIG_QSEMI_PHY=m 619 CONFIG_LXT_PHY=m 620 CONFIG_CICADA_PHY=m 621 + CONFIG_VITESSE_PHY=m 622 + CONFIG_SMSC_PHY=m 623 624 # 625 # Ethernet (10 or 100Mbit) ··· 662 # CONFIG_CHELSIO_T1 is not set 663 # CONFIG_IXGB is not set 664 # CONFIG_S2IO is not set 665 + # CONFIG_MYRI10GE is not set 666 667 # 668 # Token Ring devices ··· 793 # Watchdog Cards 794 # 795 # CONFIG_WATCHDOG is not set 796 + # CONFIG_HW_RANDOM is not set 797 # CONFIG_RTC is not set 798 # CONFIG_GEN_RTC is not set 799 # CONFIG_DTLK is not set ··· 848 # Multimedia devices 849 # 850 # CONFIG_VIDEO_DEV is not set 851 + CONFIG_VIDEO_V4L2=y 852 853 # 854 # Digital Video Broadcasting Devices ··· 857 # 858 # Graphics support 859 # 860 + # CONFIG_FIRMWARE_EDID is not set 861 # CONFIG_FB is not set 862 863 # ··· 914 # CONFIG_RTC_CLASS is not set 915 916 # 917 + # DMA Engine support 918 + # 919 + # CONFIG_DMA_ENGINE is not set 920 + 921 + # 922 + # DMA Clients 923 + # 924 + 925 + # 926 + # DMA Devices 927 + # 928 + 929 + # 930 # File systems 931 # 932 CONFIG_EXT2_FS=y ··· 941 # CONFIG_MINIX_FS is not set 942 # CONFIG_ROMFS_FS is not set 943 CONFIG_INOTIFY=y 944 + CONFIG_INOTIFY_USER=y 945 # CONFIG_QUOTA is not set 946 CONFIG_DNOTIFY=y 947 CONFIG_AUTOFS_FS=m ··· 1010 CONFIG_SMB_FS=m 1011 # CONFIG_SMB_NLS_DEFAULT is not set 1012 # CONFIG_CIFS is not set 1013 + # CONFIG_CIFS_DEBUG2 is not set 1014 # CONFIG_NCP_FS is not set 1015 # CONFIG_CODA_FS is not set 1016 # CONFIG_AFS_FS is not set ··· 1075 # 1076 # CONFIG_PRINTK_TIME is not set 1077 # CONFIG_MAGIC_SYSRQ is not set 1078 + # CONFIG_UNUSED_SYMBOLS is not set 1079 # CONFIG_DEBUG_KERNEL is not set 1080 CONFIG_LOG_BUF_SHIFT=14 1081 # CONFIG_DEBUG_FS is not set ··· 1134 CONFIG_TEXTSEARCH_KMP=m 1135 CONFIG_TEXTSEARCH_BM=m 1136 CONFIG_TEXTSEARCH_FSM=m 1137 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ddb5477_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:01 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 CONFIG_I8259=y ··· 117 # CONFIG_PAGE_SIZE_8KB is not set 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 - # CONFIG_MIPS_MT is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 147 CONFIG_PREEMPT_NONE=y 148 # CONFIG_PREEMPT_VOLUNTARY is not set 149 # CONFIG_PREEMPT is not set 150 151 # 152 # Code maturity level options ··· 179 CONFIG_BUG=y 180 CONFIG_ELF_CORE=y 181 CONFIG_BASE_FULL=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 # CONFIG_TINY_SHMEM is not set 187 CONFIG_BASE_SMALL=0 188 # CONFIG_SLOB is not set ··· 270 # CONFIG_INET_IPCOMP is not set 271 # CONFIG_INET_XFRM_TUNNEL is not set 272 # CONFIG_INET_TUNNEL is not set 273 CONFIG_INET_DIAG=y 274 CONFIG_INET_TCP_DIAG=y 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 279 # CONFIG_IPV6 is not set 280 # CONFIG_INET6_XFRM_TUNNEL is not set 281 # CONFIG_INET6_TUNNEL is not set 282 # CONFIG_NETFILTER is not set 283 284 # ··· 339 CONFIG_STANDALONE=y 340 CONFIG_PREVENT_FIRMWARE_BUILD=y 341 CONFIG_FW_LOADER=y 342 343 # 344 # Connector - unified userspace <-> kernelspace linker ··· 437 CONFIG_QSEMI_PHY=y 438 CONFIG_LXT_PHY=y 439 CONFIG_CICADA_PHY=y 440 441 # 442 # Ethernet (10 or 100Mbit) ··· 501 # CONFIG_CHELSIO_T1 is not set 502 # CONFIG_IXGB is not set 503 # CONFIG_S2IO is not set 504 505 # 506 # Token Ring devices ··· 579 CONFIG_VT=y 580 CONFIG_VT_CONSOLE=y 581 CONFIG_HW_CONSOLE=y 582 # CONFIG_SERIAL_NONSTANDARD is not set 583 584 # ··· 611 # Watchdog Cards 612 # 613 # CONFIG_WATCHDOG is not set 614 # CONFIG_RTC is not set 615 # CONFIG_GEN_RTC is not set 616 # CONFIG_DTLK is not set ··· 660 # Multimedia devices 661 # 662 # CONFIG_VIDEO_DEV is not set 663 664 # 665 # Digital Video Broadcasting Devices ··· 670 # 671 # Graphics support 672 # 673 # CONFIG_FB is not set 674 675 # ··· 734 # CONFIG_RTC_CLASS is not set 735 736 # 737 # File systems 738 # 739 CONFIG_EXT2_FS=y ··· 761 # CONFIG_MINIX_FS is not set 762 # CONFIG_ROMFS_FS is not set 763 CONFIG_INOTIFY=y 764 # CONFIG_QUOTA is not set 765 CONFIG_DNOTIFY=y 766 CONFIG_AUTOFS_FS=y ··· 828 # CONFIG_RPCSEC_GSS_SPKM3 is not set 829 # CONFIG_SMB_FS is not set 830 # CONFIG_CIFS is not set 831 # CONFIG_NCP_FS is not set 832 # CONFIG_CODA_FS is not set 833 # CONFIG_AFS_FS is not set ··· 855 # 856 # CONFIG_PRINTK_TIME is not set 857 # CONFIG_MAGIC_SYSRQ is not set 858 # CONFIG_DEBUG_KERNEL is not set 859 CONFIG_LOG_BUF_SHIFT=14 860 # CONFIG_DEBUG_FS is not set ··· 897 CONFIG_CRYPTO_DEFLATE=y 898 CONFIG_CRYPTO_MICHAEL_MIC=y 899 CONFIG_CRYPTO_CRC32C=y 900 - # CONFIG_CRYPTO_TEST is not set 901 902 # 903 # Hardware crypto devices ··· 911 CONFIG_LIBCRC32C=y 912 CONFIG_ZLIB_INFLATE=y 913 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:00 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 CONFIG_I8259=y ··· 113 # CONFIG_PAGE_SIZE_8KB is not set 114 # CONFIG_PAGE_SIZE_16KB is not set 115 # CONFIG_PAGE_SIZE_64KB is not set 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 CONFIG_CPU_HAS_LLSC=y 121 CONFIG_CPU_HAS_SYNC=y 122 CONFIG_GENERIC_HARDIRQS=y ··· 127 CONFIG_FLAT_NODE_MEM_MAP=y 128 # CONFIG_SPARSEMEM_STATIC is not set 129 CONFIG_SPLIT_PTLOCK_CPUS=4 130 + # CONFIG_RESOURCES_64BIT is not set 131 # CONFIG_HZ_48 is not set 132 # CONFIG_HZ_100 is not set 133 # CONFIG_HZ_128 is not set ··· 139 CONFIG_PREEMPT_NONE=y 140 # CONFIG_PREEMPT_VOLUNTARY is not set 141 # CONFIG_PREEMPT is not set 142 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 143 144 # 145 # Code maturity level options ··· 170 CONFIG_BUG=y 171 CONFIG_ELF_CORE=y 172 CONFIG_BASE_FULL=y 173 + CONFIG_RT_MUTEXES=y 174 CONFIG_FUTEX=y 175 CONFIG_EPOLL=y 176 CONFIG_SHMEM=y 177 CONFIG_SLAB=y 178 + CONFIG_VM_EVENT_COUNTERS=y 179 # CONFIG_TINY_SHMEM is not set 180 CONFIG_BASE_SMALL=0 181 # CONFIG_SLOB is not set ··· 259 # CONFIG_INET_IPCOMP is not set 260 # CONFIG_INET_XFRM_TUNNEL is not set 261 # CONFIG_INET_TUNNEL is not set 262 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 263 + CONFIG_INET_XFRM_MODE_TUNNEL=y 264 CONFIG_INET_DIAG=y 265 CONFIG_INET_TCP_DIAG=y 266 # CONFIG_TCP_CONG_ADVANCED is not set ··· 266 # CONFIG_IPV6 is not set 267 # CONFIG_INET6_XFRM_TUNNEL is not set 268 # CONFIG_INET6_TUNNEL is not set 269 + CONFIG_NETWORK_SECMARK=y 270 # CONFIG_NETFILTER is not set 271 272 # ··· 325 CONFIG_STANDALONE=y 326 CONFIG_PREVENT_FIRMWARE_BUILD=y 327 CONFIG_FW_LOADER=y 328 + # CONFIG_SYS_HYPERVISOR is not set 329 330 # 331 # Connector - unified userspace <-> kernelspace linker ··· 422 CONFIG_QSEMI_PHY=y 423 CONFIG_LXT_PHY=y 424 CONFIG_CICADA_PHY=y 425 + CONFIG_VITESSE_PHY=y 426 + CONFIG_SMSC_PHY=y 427 428 # 429 # Ethernet (10 or 100Mbit) ··· 484 # CONFIG_CHELSIO_T1 is not set 485 # CONFIG_IXGB is not set 486 # CONFIG_S2IO is not set 487 + # CONFIG_MYRI10GE is not set 488 489 # 490 # Token Ring devices ··· 561 CONFIG_VT=y 562 CONFIG_VT_CONSOLE=y 563 CONFIG_HW_CONSOLE=y 564 + CONFIG_VT_HW_CONSOLE_BINDING=y 565 # CONFIG_SERIAL_NONSTANDARD is not set 566 567 # ··· 592 # Watchdog Cards 593 # 594 # CONFIG_WATCHDOG is not set 595 + # CONFIG_HW_RANDOM is not set 596 # CONFIG_RTC is not set 597 # CONFIG_GEN_RTC is not set 598 # CONFIG_DTLK is not set ··· 640 # Multimedia devices 641 # 642 # CONFIG_VIDEO_DEV is not set 643 + CONFIG_VIDEO_V4L2=y 644 645 # 646 # Digital Video Broadcasting Devices ··· 649 # 650 # Graphics support 651 # 652 + # CONFIG_FIRMWARE_EDID is not set 653 # CONFIG_FB is not set 654 655 # ··· 712 # CONFIG_RTC_CLASS is not set 713 714 # 715 + # DMA Engine support 716 + # 717 + # CONFIG_DMA_ENGINE is not set 718 + 719 + # 720 + # DMA Clients 721 + # 722 + 723 + # 724 + # DMA Devices 725 + # 726 + 727 + # 728 # File systems 729 # 730 CONFIG_EXT2_FS=y ··· 726 # CONFIG_MINIX_FS is not set 727 # CONFIG_ROMFS_FS is not set 728 CONFIG_INOTIFY=y 729 + CONFIG_INOTIFY_USER=y 730 # CONFIG_QUOTA is not set 731 CONFIG_DNOTIFY=y 732 CONFIG_AUTOFS_FS=y ··· 792 # CONFIG_RPCSEC_GSS_SPKM3 is not set 793 # CONFIG_SMB_FS is not set 794 # CONFIG_CIFS is not set 795 + # CONFIG_CIFS_DEBUG2 is not set 796 # CONFIG_NCP_FS is not set 797 # CONFIG_CODA_FS is not set 798 # CONFIG_AFS_FS is not set ··· 818 # 819 # CONFIG_PRINTK_TIME is not set 820 # CONFIG_MAGIC_SYSRQ is not set 821 + # CONFIG_UNUSED_SYMBOLS is not set 822 # CONFIG_DEBUG_KERNEL is not set 823 CONFIG_LOG_BUF_SHIFT=14 824 # CONFIG_DEBUG_FS is not set ··· 859 CONFIG_CRYPTO_DEFLATE=y 860 CONFIG_CRYPTO_MICHAEL_MIC=y 861 CONFIG_CRYPTO_CRC32C=y 862 863 # 864 # Hardware crypto devices ··· 874 CONFIG_LIBCRC32C=y 875 CONFIG_ZLIB_INFLATE=y 876 CONFIG_ZLIB_DEFLATE=y 877 + CONFIG_PLIST=y
+50 -5
arch/mips/configs/decstation_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:01 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 CONFIG_MACH_DECSTATION=y 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 # CONFIG_PAGE_SIZE_8KB is not set 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 - # CONFIG_MIPS_MT is not set 120 CONFIG_CPU_HAS_WB=y 121 CONFIG_GENERIC_HARDIRQS=y 122 CONFIG_GENERIC_IRQ_PROBE=y ··· 133 CONFIG_FLAT_NODE_MEM_MAP=y 134 # CONFIG_SPARSEMEM_STATIC is not set 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 CONFIG_HZ_128=y ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set ··· 255 CONFIG_PACKET=y 256 CONFIG_PACKET_MMAP=y 257 CONFIG_UNIX=y 258 # CONFIG_NET_KEY is not set 259 CONFIG_INET=y 260 # CONFIG_IP_MULTICAST is not set ··· 275 # CONFIG_INET_IPCOMP is not set 276 # CONFIG_INET_XFRM_TUNNEL is not set 277 # CONFIG_INET_TUNNEL is not set 278 CONFIG_INET_DIAG=y 279 CONFIG_INET_TCP_DIAG=y 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 284 # CONFIG_IPV6 is not set 285 # CONFIG_INET6_XFRM_TUNNEL is not set 286 # CONFIG_INET6_TUNNEL is not set 287 # CONFIG_NETFILTER is not set 288 289 # ··· 345 CONFIG_PREVENT_FIRMWARE_BUILD=y 346 # CONFIG_FW_LOADER is not set 347 # CONFIG_DEBUG_DRIVER is not set 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 465 CONFIG_QSEMI_PHY=m 466 CONFIG_LXT_PHY=m 467 CONFIG_CICADA_PHY=m 468 469 # 470 # Ethernet (10 or 100Mbit) ··· 556 # Watchdog Cards 557 # 558 # CONFIG_WATCHDOG is not set 559 CONFIG_RTC=y 560 # CONFIG_DTLK is not set 561 # CONFIG_R3964 is not set ··· 602 # Multimedia devices 603 # 604 # CONFIG_VIDEO_DEV is not set 605 606 # 607 # Digital Video Broadcasting Devices ··· 612 # 613 # Graphics support 614 # 615 CONFIG_FB=y 616 CONFIG_FB_CFB_FILLRECT=y 617 CONFIG_FB_CFB_COPYAREA=y 618 CONFIG_FB_CFB_IMAGEBLIT=y 619 # CONFIG_FB_MACMODES is not set 620 - CONFIG_FB_FIRMWARE_EDID=y 621 # CONFIG_FB_MODE_HELPERS is not set 622 # CONFIG_FB_TILEBLITTING is not set 623 # CONFIG_FB_S1D13XXX is not set ··· 691 # CONFIG_RTC_CLASS is not set 692 693 # 694 # File systems 695 # 696 CONFIG_EXT2_FS=y ··· 721 # CONFIG_MINIX_FS is not set 722 # CONFIG_ROMFS_FS is not set 723 CONFIG_INOTIFY=y 724 # CONFIG_QUOTA is not set 725 CONFIG_DNOTIFY=y 726 # CONFIG_AUTOFS_FS is not set ··· 768 # CONFIG_QNX4FS_FS is not set 769 # CONFIG_SYSV_FS is not set 770 CONFIG_UFS_FS=y 771 772 # 773 # Network File Systems ··· 789 # CONFIG_RPCSEC_GSS_SPKM3 is not set 790 # CONFIG_SMB_FS is not set 791 # CONFIG_CIFS is not set 792 # CONFIG_NCP_FS is not set 793 # CONFIG_CODA_FS is not set 794 # CONFIG_AFS_FS is not set ··· 831 # 832 # CONFIG_PRINTK_TIME is not set 833 CONFIG_MAGIC_SYSRQ=y 834 CONFIG_DEBUG_KERNEL=y 835 CONFIG_LOG_BUF_SHIFT=14 836 CONFIG_DETECT_SOFTLOCKUP=y 837 # CONFIG_SCHEDSTATS is not set 838 # CONFIG_DEBUG_SLAB is not set 839 - CONFIG_DEBUG_MUTEXES=y 840 # CONFIG_DEBUG_SPINLOCK is not set 841 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 842 # CONFIG_DEBUG_KOBJECT is not set 843 # CONFIG_DEBUG_INFO is not set 844 # CONFIG_DEBUG_FS is not set ··· 906 CONFIG_LIBCRC32C=m 907 CONFIG_ZLIB_INFLATE=m 908 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:01 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 CONFIG_MACH_DECSTATION=y 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 # CONFIG_CPU_BIG_ENDIAN is not set ··· 112 # CONFIG_PAGE_SIZE_8KB is not set 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 + CONFIG_MIPS_MT_DISABLED=y 116 + # CONFIG_MIPS_MT_SMTC is not set 117 + # CONFIG_MIPS_MT_SMP is not set 118 + # CONFIG_MIPS_VPE_LOADER is not set 119 CONFIG_CPU_HAS_WB=y 120 CONFIG_GENERIC_HARDIRQS=y 121 CONFIG_GENERIC_IRQ_PROBE=y ··· 126 CONFIG_FLAT_NODE_MEM_MAP=y 127 # CONFIG_SPARSEMEM_STATIC is not set 128 CONFIG_SPLIT_PTLOCK_CPUS=4 129 + # CONFIG_RESOURCES_64BIT is not set 130 # CONFIG_HZ_48 is not set 131 # CONFIG_HZ_100 is not set 132 CONFIG_HZ_128=y ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set ··· 244 CONFIG_PACKET=y 245 CONFIG_PACKET_MMAP=y 246 CONFIG_UNIX=y 247 + CONFIG_XFRM=y 248 + # CONFIG_XFRM_USER is not set 249 # CONFIG_NET_KEY is not set 250 CONFIG_INET=y 251 # CONFIG_IP_MULTICAST is not set ··· 262 # CONFIG_INET_IPCOMP is not set 263 # CONFIG_INET_XFRM_TUNNEL is not set 264 # CONFIG_INET_TUNNEL is not set 265 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 266 + CONFIG_INET_XFRM_MODE_TUNNEL=m 267 CONFIG_INET_DIAG=y 268 CONFIG_INET_TCP_DIAG=y 269 # CONFIG_TCP_CONG_ADVANCED is not set ··· 269 # CONFIG_IPV6 is not set 270 # CONFIG_INET6_XFRM_TUNNEL is not set 271 # CONFIG_INET6_TUNNEL is not set 272 + CONFIG_NETWORK_SECMARK=y 273 # CONFIG_NETFILTER is not set 274 275 # ··· 329 CONFIG_PREVENT_FIRMWARE_BUILD=y 330 # CONFIG_FW_LOADER is not set 331 # CONFIG_DEBUG_DRIVER is not set 332 + # CONFIG_SYS_HYPERVISOR is not set 333 334 # 335 # Connector - unified userspace <-> kernelspace linker ··· 448 CONFIG_QSEMI_PHY=m 449 CONFIG_LXT_PHY=m 450 CONFIG_CICADA_PHY=m 451 + CONFIG_VITESSE_PHY=m 452 + CONFIG_SMSC_PHY=m 453 454 # 455 # Ethernet (10 or 100Mbit) ··· 537 # Watchdog Cards 538 # 539 # CONFIG_WATCHDOG is not set 540 + # CONFIG_HW_RANDOM is not set 541 CONFIG_RTC=y 542 # CONFIG_DTLK is not set 543 # CONFIG_R3964 is not set ··· 582 # Multimedia devices 583 # 584 # CONFIG_VIDEO_DEV is not set 585 + CONFIG_VIDEO_V4L2=y 586 587 # 588 # Digital Video Broadcasting Devices ··· 591 # 592 # Graphics support 593 # 594 + # CONFIG_FIRMWARE_EDID is not set 595 CONFIG_FB=y 596 CONFIG_FB_CFB_FILLRECT=y 597 CONFIG_FB_CFB_COPYAREA=y 598 CONFIG_FB_CFB_IMAGEBLIT=y 599 # CONFIG_FB_MACMODES is not set 600 + # CONFIG_FB_BACKLIGHT is not set 601 # CONFIG_FB_MODE_HELPERS is not set 602 # CONFIG_FB_TILEBLITTING is not set 603 # CONFIG_FB_S1D13XXX is not set ··· 669 # CONFIG_RTC_CLASS is not set 670 671 # 672 + # DMA Engine support 673 + # 674 + # CONFIG_DMA_ENGINE is not set 675 + 676 + # 677 + # DMA Clients 678 + # 679 + 680 + # 681 + # DMA Devices 682 + # 683 + 684 + # 685 # File systems 686 # 687 CONFIG_EXT2_FS=y ··· 686 # CONFIG_MINIX_FS is not set 687 # CONFIG_ROMFS_FS is not set 688 CONFIG_INOTIFY=y 689 + CONFIG_INOTIFY_USER=y 690 # CONFIG_QUOTA is not set 691 CONFIG_DNOTIFY=y 692 # CONFIG_AUTOFS_FS is not set ··· 732 # CONFIG_QNX4FS_FS is not set 733 # CONFIG_SYSV_FS is not set 734 CONFIG_UFS_FS=y 735 + # CONFIG_UFS_FS_WRITE is not set 736 + # CONFIG_UFS_DEBUG is not set 737 738 # 739 # Network File Systems ··· 751 # CONFIG_RPCSEC_GSS_SPKM3 is not set 752 # CONFIG_SMB_FS is not set 753 # CONFIG_CIFS is not set 754 + # CONFIG_CIFS_DEBUG2 is not set 755 # CONFIG_NCP_FS is not set 756 # CONFIG_CODA_FS is not set 757 # CONFIG_AFS_FS is not set ··· 792 # 793 # CONFIG_PRINTK_TIME is not set 794 CONFIG_MAGIC_SYSRQ=y 795 + # CONFIG_UNUSED_SYMBOLS is not set 796 CONFIG_DEBUG_KERNEL=y 797 CONFIG_LOG_BUF_SHIFT=14 798 CONFIG_DETECT_SOFTLOCKUP=y 799 # CONFIG_SCHEDSTATS is not set 800 # CONFIG_DEBUG_SLAB is not set 801 + # CONFIG_DEBUG_RT_MUTEXES is not set 802 + # CONFIG_RT_MUTEX_TESTER is not set 803 # CONFIG_DEBUG_SPINLOCK is not set 804 + CONFIG_DEBUG_MUTEXES=y 805 + # CONFIG_DEBUG_RWSEMS is not set 806 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 807 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 808 # CONFIG_DEBUG_KOBJECT is not set 809 # CONFIG_DEBUG_INFO is not set 810 # CONFIG_DEBUG_FS is not set ··· 862 CONFIG_LIBCRC32C=m 863 CONFIG_ZLIB_INFLATE=m 864 CONFIG_ZLIB_DEFLATE=m 865 + CONFIG_PLIST=y
+35 -4
arch/mips/configs/e55_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:20 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 74 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 CONFIG_GENERIC_HWEIGHT=y 76 CONFIG_GENERIC_CALIBRATE_DELAY=y 77 CONFIG_DMA_NONCOHERENT=y 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 # CONFIG_PAGE_SIZE_8KB is not set 120 # CONFIG_PAGE_SIZE_16KB is not set 121 # CONFIG_PAGE_SIZE_64KB is not set 122 - # CONFIG_MIPS_MT is not set 123 CONFIG_CPU_HAS_SYNC=y 124 CONFIG_GENERIC_HARDIRQS=y 125 CONFIG_GENERIC_IRQ_PROBE=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 CONFIG_FUTEX=y 182 CONFIG_EPOLL=y 183 CONFIG_SHMEM=y 184 CONFIG_SLAB=y 185 # CONFIG_TINY_SHMEM is not set 186 CONFIG_BASE_SMALL=0 187 # CONFIG_SLOB is not set ··· 255 CONFIG_STANDALONE=y 256 CONFIG_PREVENT_FIRMWARE_BUILD=y 257 # CONFIG_FW_LOADER is not set 258 259 # 260 # Connector - unified userspace <-> kernelspace linker ··· 390 CONFIG_VT=y 391 CONFIG_VT_CONSOLE=y 392 CONFIG_HW_CONSOLE=y 393 # CONFIG_SERIAL_NONSTANDARD is not set 394 395 # ··· 431 # CONFIG_PCWATCHDOG is not set 432 # CONFIG_MIXCOMWD is not set 433 # CONFIG_WDT is not set 434 # CONFIG_RTC is not set 435 # CONFIG_GEN_RTC is not set 436 # CONFIG_DTLK is not set ··· 463 # 464 # Dallas's 1-wire bus 465 # 466 - # CONFIG_W1 is not set 467 468 # 469 # Hardware Monitoring support ··· 478 # Multimedia devices 479 # 480 # CONFIG_VIDEO_DEV is not set 481 482 # 483 # Digital Video Broadcasting Devices ··· 487 # 488 # Graphics support 489 # 490 # CONFIG_FB is not set 491 492 # ··· 550 # CONFIG_RTC_CLASS is not set 551 552 # 553 # File systems 554 # 555 CONFIG_EXT2_FS=y ··· 576 # CONFIG_MINIX_FS is not set 577 # CONFIG_ROMFS_FS is not set 578 CONFIG_INOTIFY=y 579 # CONFIG_QUOTA is not set 580 CONFIG_DNOTIFY=y 581 # CONFIG_AUTOFS_FS is not set ··· 645 # 646 # CONFIG_PRINTK_TIME is not set 647 # CONFIG_MAGIC_SYSRQ is not set 648 # CONFIG_DEBUG_KERNEL is not set 649 CONFIG_LOG_BUF_SHIFT=14 650 # CONFIG_DEBUG_FS is not set ··· 674 # CONFIG_CRC16 is not set 675 # CONFIG_CRC32 is not set 676 # CONFIG_LIBCRC32C is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:02 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 72 CONFIG_GENERIC_HWEIGHT=y 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 75 CONFIG_DMA_NONCOHERENT=y 76 CONFIG_DMA_NEED_PCI_MAP_STATE=y 77 # CONFIG_CPU_BIG_ENDIAN is not set ··· 115 # CONFIG_PAGE_SIZE_8KB is not set 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y 124 CONFIG_GENERIC_IRQ_PROBE=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 169 CONFIG_BUG=y 170 CONFIG_ELF_CORE=y 171 CONFIG_BASE_FULL=y 172 + CONFIG_RT_MUTEXES=y 173 CONFIG_FUTEX=y 174 CONFIG_EPOLL=y 175 CONFIG_SHMEM=y 176 CONFIG_SLAB=y 177 + CONFIG_VM_EVENT_COUNTERS=y 178 # CONFIG_TINY_SHMEM is not set 179 CONFIG_BASE_SMALL=0 180 # CONFIG_SLOB is not set ··· 244 CONFIG_STANDALONE=y 245 CONFIG_PREVENT_FIRMWARE_BUILD=y 246 # CONFIG_FW_LOADER is not set 247 + # CONFIG_SYS_HYPERVISOR is not set 248 249 # 250 # Connector - unified userspace <-> kernelspace linker ··· 378 CONFIG_VT=y 379 CONFIG_VT_CONSOLE=y 380 CONFIG_HW_CONSOLE=y 381 + CONFIG_VT_HW_CONSOLE_BINDING=y 382 # CONFIG_SERIAL_NONSTANDARD is not set 383 384 # ··· 418 # CONFIG_PCWATCHDOG is not set 419 # CONFIG_MIXCOMWD is not set 420 # CONFIG_WDT is not set 421 + # CONFIG_HW_RANDOM is not set 422 # CONFIG_RTC is not set 423 # CONFIG_GEN_RTC is not set 424 # CONFIG_DTLK is not set ··· 449 # 450 # Dallas's 1-wire bus 451 # 452 453 # 454 # Hardware Monitoring support ··· 465 # Multimedia devices 466 # 467 # CONFIG_VIDEO_DEV is not set 468 + CONFIG_VIDEO_V4L2=y 469 470 # 471 # Digital Video Broadcasting Devices ··· 473 # 474 # Graphics support 475 # 476 + # CONFIG_FIRMWARE_EDID is not set 477 # CONFIG_FB is not set 478 479 # ··· 535 # CONFIG_RTC_CLASS is not set 536 537 # 538 + # DMA Engine support 539 + # 540 + # CONFIG_DMA_ENGINE is not set 541 + 542 + # 543 + # DMA Clients 544 + # 545 + 546 + # 547 + # DMA Devices 548 + # 549 + 550 + # 551 # File systems 552 # 553 CONFIG_EXT2_FS=y ··· 548 # CONFIG_MINIX_FS is not set 549 # CONFIG_ROMFS_FS is not set 550 CONFIG_INOTIFY=y 551 + CONFIG_INOTIFY_USER=y 552 # CONFIG_QUOTA is not set 553 CONFIG_DNOTIFY=y 554 # CONFIG_AUTOFS_FS is not set ··· 616 # 617 # CONFIG_PRINTK_TIME is not set 618 # CONFIG_MAGIC_SYSRQ is not set 619 + # CONFIG_UNUSED_SYMBOLS is not set 620 # CONFIG_DEBUG_KERNEL is not set 621 CONFIG_LOG_BUF_SHIFT=14 622 # CONFIG_DEBUG_FS is not set ··· 644 # CONFIG_CRC16 is not set 645 # CONFIG_CRC32 is not set 646 # CONFIG_LIBCRC32C is not set 647 + CONFIG_PLIST=y
+39 -5
arch/mips/configs/emma2rh_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17 4 - # Sun Jun 18 13:46:53 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 148 # CONFIG_PREEMPT_VOLUNTARY is not set 149 CONFIG_PREEMPT=y 150 CONFIG_PREEMPT_BKL=y 151 152 # 153 # Code maturity level options ··· 183 CONFIG_BUG=y 184 CONFIG_ELF_CORE=y 185 CONFIG_BASE_FULL=y 186 CONFIG_FUTEX=y 187 CONFIG_EPOLL=y 188 CONFIG_SHMEM=y 189 CONFIG_SLAB=y 190 # CONFIG_TINY_SHMEM is not set 191 CONFIG_BASE_SMALL=0 192 # CONFIG_SLOB is not set 193 - CONFIG_OBSOLETE_INTERMODULE=y 194 195 # 196 # Loadable module support ··· 287 # CONFIG_INET_IPCOMP is not set 288 # CONFIG_INET_XFRM_TUNNEL is not set 289 # CONFIG_INET_TUNNEL is not set 290 CONFIG_INET_DIAG=y 291 CONFIG_INET_TCP_DIAG=y 292 # CONFIG_TCP_CONG_ADVANCED is not set ··· 306 # CONFIG_INET6_IPCOMP is not set 307 # CONFIG_INET6_XFRM_TUNNEL is not set 308 # CONFIG_INET6_TUNNEL is not set 309 # CONFIG_IPV6_TUNNEL is not set 310 CONFIG_NETFILTER=y 311 # CONFIG_NETFILTER_DEBUG is not set 312 ··· 387 CONFIG_STANDALONE=y 388 CONFIG_PREVENT_FIRMWARE_BUILD=y 389 # CONFIG_FW_LOADER is not set 390 391 # 392 # Connector - unified userspace <-> kernelspace linker ··· 555 # CONFIG_MEGARAID_LEGACY is not set 556 # CONFIG_MEGARAID_SAS is not set 557 # CONFIG_SCSI_SATA is not set 558 # CONFIG_SCSI_DMX3191D is not set 559 # CONFIG_SCSI_FUTURE_DOMAIN is not set 560 # CONFIG_SCSI_IPS is not set ··· 674 # CONFIG_CHELSIO_T1 is not set 675 # CONFIG_IXGB is not set 676 # CONFIG_S2IO is not set 677 678 # 679 # Token Ring devices ··· 782 # Watchdog Cards 783 # 784 # CONFIG_WATCHDOG is not set 785 CONFIG_RTC=m 786 CONFIG_GEN_RTC=m 787 CONFIG_GEN_RTC_X=y ··· 827 # CONFIG_I2C_I810 is not set 828 # CONFIG_I2C_PIIX4 is not set 829 # CONFIG_I2C_NFORCE2 is not set 830 # CONFIG_I2C_PARPORT_LIGHT is not set 831 # CONFIG_I2C_PROSAVAGE is not set 832 # CONFIG_I2C_SAVAGE4 is not set ··· 864 # 865 # Dallas's 1-wire bus 866 # 867 - # CONFIG_W1 is not set 868 869 # 870 # Hardware Monitoring support 871 # 872 CONFIG_HWMON=y 873 # CONFIG_HWMON_VID is not set 874 # CONFIG_SENSORS_ADM1021 is not set 875 # CONFIG_SENSORS_ADM1025 is not set 876 # CONFIG_SENSORS_ADM1026 is not set ··· 899 # CONFIG_SENSORS_PC87360 is not set 900 # CONFIG_SENSORS_SIS5595 is not set 901 # CONFIG_SENSORS_SMSC47M1 is not set 902 # CONFIG_SENSORS_SMSC47B397 is not set 903 # CONFIG_SENSORS_VIA686A is not set 904 # CONFIG_SENSORS_VT8231 is not set 905 # CONFIG_SENSORS_W83781D is not set 906 # CONFIG_SENSORS_W83792D is not set 907 # CONFIG_SENSORS_W83L785TS is not set 908 # CONFIG_SENSORS_W83627HF is not set ··· 929 # 930 # Graphics support 931 # 932 # CONFIG_FB is not set 933 934 # ··· 987 # CONFIG_RTC_CLASS is not set 988 989 # 990 # File systems 991 # 992 CONFIG_EXT2_FS=y ··· 1018 # CONFIG_JFS_FS is not set 1019 CONFIG_FS_POSIX_ACL=y 1020 CONFIG_XFS_FS=m 1021 - CONFIG_XFS_EXPORT=y 1022 # CONFIG_XFS_QUOTA is not set 1023 # CONFIG_XFS_SECURITY is not set 1024 # CONFIG_XFS_POSIX_ACL is not set ··· 1026 # CONFIG_MINIX_FS is not set 1027 # CONFIG_ROMFS_FS is not set 1028 CONFIG_INOTIFY=y 1029 # CONFIG_QUOTA is not set 1030 # CONFIG_DNOTIFY is not set 1031 # CONFIG_AUTOFS_FS is not set ··· 1077 CONFIG_JFFS2_FS_DEBUG=0 1078 CONFIG_JFFS2_FS_WRITEBUFFER=y 1079 # CONFIG_JFFS2_SUMMARY is not set 1080 CONFIG_JFFS2_COMPRESSION_OPTIONS=y 1081 CONFIG_JFFS2_ZLIB=y 1082 CONFIG_JFFS2_RTIME=y ··· 1117 CONFIG_SMB_FS=m 1118 # CONFIG_SMB_NLS_DEFAULT is not set 1119 # CONFIG_CIFS is not set 1120 # CONFIG_NCP_FS is not set 1121 # CONFIG_CODA_FS is not set 1122 # CONFIG_AFS_FS is not set ··· 1183 # 1184 # CONFIG_PRINTK_TIME is not set 1185 # CONFIG_MAGIC_SYSRQ is not set 1186 # CONFIG_DEBUG_KERNEL is not set 1187 CONFIG_LOG_BUF_SHIFT=14 1188 # CONFIG_DEBUG_FS is not set ··· 1238 # CONFIG_LIBCRC32C is not set 1239 CONFIG_ZLIB_INFLATE=y 1240 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 133 CONFIG_FLAT_NODE_MEM_MAP=y 134 # CONFIG_SPARSEMEM_STATIC is not set 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 146 # CONFIG_PREEMPT_VOLUNTARY is not set 147 CONFIG_PREEMPT=y 148 CONFIG_PREEMPT_BKL=y 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 180 CONFIG_BUG=y 181 CONFIG_ELF_CORE=y 182 CONFIG_BASE_FULL=y 183 + CONFIG_RT_MUTEXES=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 + CONFIG_VM_EVENT_COUNTERS=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set 192 193 # 194 # Loadable module support ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 300 # CONFIG_INET6_IPCOMP is not set 301 # CONFIG_INET6_XFRM_TUNNEL is not set 302 # CONFIG_INET6_TUNNEL is not set 303 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 304 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 305 # CONFIG_IPV6_TUNNEL is not set 306 + CONFIG_NETWORK_SECMARK=y 307 CONFIG_NETFILTER=y 308 # CONFIG_NETFILTER_DEBUG is not set 309 ··· 378 CONFIG_STANDALONE=y 379 CONFIG_PREVENT_FIRMWARE_BUILD=y 380 # CONFIG_FW_LOADER is not set 381 + # CONFIG_SYS_HYPERVISOR is not set 382 383 # 384 # Connector - unified userspace <-> kernelspace linker ··· 545 # CONFIG_MEGARAID_LEGACY is not set 546 # CONFIG_MEGARAID_SAS is not set 547 # CONFIG_SCSI_SATA is not set 548 + # CONFIG_SCSI_HPTIOP is not set 549 # CONFIG_SCSI_DMX3191D is not set 550 # CONFIG_SCSI_FUTURE_DOMAIN is not set 551 # CONFIG_SCSI_IPS is not set ··· 663 # CONFIG_CHELSIO_T1 is not set 664 # CONFIG_IXGB is not set 665 # CONFIG_S2IO is not set 666 + # CONFIG_MYRI10GE is not set 667 668 # 669 # Token Ring devices ··· 770 # Watchdog Cards 771 # 772 # CONFIG_WATCHDOG is not set 773 + # CONFIG_HW_RANDOM is not set 774 CONFIG_RTC=m 775 CONFIG_GEN_RTC=m 776 CONFIG_GEN_RTC_X=y ··· 814 # CONFIG_I2C_I810 is not set 815 # CONFIG_I2C_PIIX4 is not set 816 # CONFIG_I2C_NFORCE2 is not set 817 + # CONFIG_I2C_OCORES is not set 818 # CONFIG_I2C_PARPORT_LIGHT is not set 819 # CONFIG_I2C_PROSAVAGE is not set 820 # CONFIG_I2C_SAVAGE4 is not set ··· 850 # 851 # Dallas's 1-wire bus 852 # 853 854 # 855 # Hardware Monitoring support 856 # 857 CONFIG_HWMON=y 858 # CONFIG_HWMON_VID is not set 859 + # CONFIG_SENSORS_ABITUGURU is not set 860 # CONFIG_SENSORS_ADM1021 is not set 861 # CONFIG_SENSORS_ADM1025 is not set 862 # CONFIG_SENSORS_ADM1026 is not set ··· 885 # CONFIG_SENSORS_PC87360 is not set 886 # CONFIG_SENSORS_SIS5595 is not set 887 # CONFIG_SENSORS_SMSC47M1 is not set 888 + # CONFIG_SENSORS_SMSC47M192 is not set 889 # CONFIG_SENSORS_SMSC47B397 is not set 890 # CONFIG_SENSORS_VIA686A is not set 891 # CONFIG_SENSORS_VT8231 is not set 892 # CONFIG_SENSORS_W83781D is not set 893 + # CONFIG_SENSORS_W83791D is not set 894 # CONFIG_SENSORS_W83792D is not set 895 # CONFIG_SENSORS_W83L785TS is not set 896 # CONFIG_SENSORS_W83627HF is not set ··· 913 # 914 # Graphics support 915 # 916 + # CONFIG_FIRMWARE_EDID is not set 917 # CONFIG_FB is not set 918 919 # ··· 970 # CONFIG_RTC_CLASS is not set 971 972 # 973 + # DMA Engine support 974 + # 975 + # CONFIG_DMA_ENGINE is not set 976 + 977 + # 978 + # DMA Clients 979 + # 980 + 981 + # 982 + # DMA Devices 983 + # 984 + 985 + # 986 # File systems 987 # 988 CONFIG_EXT2_FS=y ··· 988 # CONFIG_JFS_FS is not set 989 CONFIG_FS_POSIX_ACL=y 990 CONFIG_XFS_FS=m 991 # CONFIG_XFS_QUOTA is not set 992 # CONFIG_XFS_SECURITY is not set 993 # CONFIG_XFS_POSIX_ACL is not set ··· 997 # CONFIG_MINIX_FS is not set 998 # CONFIG_ROMFS_FS is not set 999 CONFIG_INOTIFY=y 1000 + CONFIG_INOTIFY_USER=y 1001 # CONFIG_QUOTA is not set 1002 # CONFIG_DNOTIFY is not set 1003 # CONFIG_AUTOFS_FS is not set ··· 1047 CONFIG_JFFS2_FS_DEBUG=0 1048 CONFIG_JFFS2_FS_WRITEBUFFER=y 1049 # CONFIG_JFFS2_SUMMARY is not set 1050 + # CONFIG_JFFS2_FS_XATTR is not set 1051 CONFIG_JFFS2_COMPRESSION_OPTIONS=y 1052 CONFIG_JFFS2_ZLIB=y 1053 CONFIG_JFFS2_RTIME=y ··· 1086 CONFIG_SMB_FS=m 1087 # CONFIG_SMB_NLS_DEFAULT is not set 1088 # CONFIG_CIFS is not set 1089 + # CONFIG_CIFS_DEBUG2 is not set 1090 # CONFIG_NCP_FS is not set 1091 # CONFIG_CODA_FS is not set 1092 # CONFIG_AFS_FS is not set ··· 1151 # 1152 # CONFIG_PRINTK_TIME is not set 1153 # CONFIG_MAGIC_SYSRQ is not set 1154 + # CONFIG_UNUSED_SYMBOLS is not set 1155 # CONFIG_DEBUG_KERNEL is not set 1156 CONFIG_LOG_BUF_SHIFT=14 1157 # CONFIG_DEBUG_FS is not set ··· 1205 # CONFIG_LIBCRC32C is not set 1206 CONFIG_ZLIB_INFLATE=y 1207 CONFIG_ZLIB_DEFLATE=y 1208 + CONFIG_PLIST=y
+42 -3
arch/mips/configs/ev64120_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:02 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 CONFIG_MIPS_EV64120=y ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 CONFIG_CPU_BIG_ENDIAN=y ··· 118 # CONFIG_PAGE_SIZE_8KB is not set 119 # CONFIG_PAGE_SIZE_16KB is not set 120 # CONFIG_PAGE_SIZE_64KB is not set 121 - # CONFIG_MIPS_MT is not set 122 # CONFIG_64BIT_PHYS_ADDR is not set 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 CONFIG_PREEMPT_NONE=y 150 # CONFIG_PREEMPT_VOLUNTARY is not set 151 # CONFIG_PREEMPT is not set 152 153 # 154 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 # CONFIG_NETFILTER is not set 289 290 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 CONFIG_FW_LOADER=m 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 442 CONFIG_QSEMI_PHY=m 443 CONFIG_LXT_PHY=m 444 CONFIG_CICADA_PHY=m 445 446 # 447 # Ethernet (10 or 100Mbit) ··· 486 # CONFIG_CHELSIO_T1 is not set 487 # CONFIG_IXGB is not set 488 # CONFIG_S2IO is not set 489 490 # 491 # Token Ring devices ··· 572 CONFIG_VT=y 573 CONFIG_VT_CONSOLE=y 574 CONFIG_HW_CONSOLE=y 575 # CONFIG_SERIAL_NONSTANDARD is not set 576 577 # ··· 604 # Watchdog Cards 605 # 606 # CONFIG_WATCHDOG is not set 607 # CONFIG_RTC is not set 608 # CONFIG_GEN_RTC is not set 609 # CONFIG_DTLK is not set ··· 653 # Multimedia devices 654 # 655 # CONFIG_VIDEO_DEV is not set 656 657 # 658 # Digital Video Broadcasting Devices ··· 663 # 664 # Graphics support 665 # 666 # CONFIG_FB is not set 667 668 # ··· 727 # CONFIG_RTC_CLASS is not set 728 729 # 730 # File systems 731 # 732 CONFIG_EXT2_FS=y ··· 754 # CONFIG_MINIX_FS is not set 755 # CONFIG_ROMFS_FS is not set 756 CONFIG_INOTIFY=y 757 # CONFIG_QUOTA is not set 758 CONFIG_DNOTIFY=y 759 # CONFIG_AUTOFS_FS is not set ··· 818 # CONFIG_RPCSEC_GSS_SPKM3 is not set 819 # CONFIG_SMB_FS is not set 820 # CONFIG_CIFS is not set 821 # CONFIG_NCP_FS is not set 822 # CONFIG_CODA_FS is not set 823 # CONFIG_AFS_FS is not set ··· 845 # 846 # CONFIG_PRINTK_TIME is not set 847 # CONFIG_MAGIC_SYSRQ is not set 848 # CONFIG_DEBUG_KERNEL is not set 849 CONFIG_LOG_BUF_SHIFT=14 850 # CONFIG_DEBUG_FS is not set ··· 901 CONFIG_LIBCRC32C=m 902 CONFIG_ZLIB_INFLATE=m 903 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 CONFIG_MIPS_EV64120=y ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 CONFIG_CPU_BIG_ENDIAN=y ··· 114 # CONFIG_PAGE_SIZE_8KB is not set 115 # CONFIG_PAGE_SIZE_16KB is not set 116 # CONFIG_PAGE_SIZE_64KB is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 121 # CONFIG_64BIT_PHYS_ADDR is not set 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 129 CONFIG_FLAT_NODE_MEM_MAP=y 130 # CONFIG_SPARSEMEM_STATIC is not set 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 133 # CONFIG_HZ_48 is not set 134 # CONFIG_HZ_100 is not set 135 # CONFIG_HZ_128 is not set ··· 141 CONFIG_PREEMPT_NONE=y 142 # CONFIG_PREEMPT_VOLUNTARY is not set 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 145 146 # 147 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 272 # CONFIG_IPV6 is not set 273 # CONFIG_INET6_XFRM_TUNNEL is not set 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 276 # CONFIG_NETFILTER is not set 277 278 # ··· 331 CONFIG_STANDALONE=y 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 333 CONFIG_FW_LOADER=m 334 + # CONFIG_SYS_HYPERVISOR is not set 335 336 # 337 # Connector - unified userspace <-> kernelspace linker ··· 427 CONFIG_QSEMI_PHY=m 428 CONFIG_LXT_PHY=m 429 CONFIG_CICADA_PHY=m 430 + CONFIG_VITESSE_PHY=m 431 + CONFIG_SMSC_PHY=m 432 433 # 434 # Ethernet (10 or 100Mbit) ··· 469 # CONFIG_CHELSIO_T1 is not set 470 # CONFIG_IXGB is not set 471 # CONFIG_S2IO is not set 472 + # CONFIG_MYRI10GE is not set 473 474 # 475 # Token Ring devices ··· 554 CONFIG_VT=y 555 CONFIG_VT_CONSOLE=y 556 CONFIG_HW_CONSOLE=y 557 + CONFIG_VT_HW_CONSOLE_BINDING=y 558 # CONFIG_SERIAL_NONSTANDARD is not set 559 560 # ··· 585 # Watchdog Cards 586 # 587 # CONFIG_WATCHDOG is not set 588 + # CONFIG_HW_RANDOM is not set 589 # CONFIG_RTC is not set 590 # CONFIG_GEN_RTC is not set 591 # CONFIG_DTLK is not set ··· 633 # Multimedia devices 634 # 635 # CONFIG_VIDEO_DEV is not set 636 + CONFIG_VIDEO_V4L2=y 637 638 # 639 # Digital Video Broadcasting Devices ··· 642 # 643 # Graphics support 644 # 645 + # CONFIG_FIRMWARE_EDID is not set 646 # CONFIG_FB is not set 647 648 # ··· 705 # CONFIG_RTC_CLASS is not set 706 707 # 708 + # DMA Engine support 709 + # 710 + # CONFIG_DMA_ENGINE is not set 711 + 712 + # 713 + # DMA Clients 714 + # 715 + 716 + # 717 + # DMA Devices 718 + # 719 + 720 + # 721 # File systems 722 # 723 CONFIG_EXT2_FS=y ··· 719 # CONFIG_MINIX_FS is not set 720 # CONFIG_ROMFS_FS is not set 721 CONFIG_INOTIFY=y 722 + CONFIG_INOTIFY_USER=y 723 # CONFIG_QUOTA is not set 724 CONFIG_DNOTIFY=y 725 # CONFIG_AUTOFS_FS is not set ··· 782 # CONFIG_RPCSEC_GSS_SPKM3 is not set 783 # CONFIG_SMB_FS is not set 784 # CONFIG_CIFS is not set 785 + # CONFIG_CIFS_DEBUG2 is not set 786 # CONFIG_NCP_FS is not set 787 # CONFIG_CODA_FS is not set 788 # CONFIG_AFS_FS is not set ··· 808 # 809 # CONFIG_PRINTK_TIME is not set 810 # CONFIG_MAGIC_SYSRQ is not set 811 + # CONFIG_UNUSED_SYMBOLS is not set 812 # CONFIG_DEBUG_KERNEL is not set 813 CONFIG_LOG_BUF_SHIFT=14 814 # CONFIG_DEBUG_FS is not set ··· 863 CONFIG_LIBCRC32C=m 864 CONFIG_ZLIB_INFLATE=m 865 CONFIG_ZLIB_DEFLATE=m 866 + CONFIG_PLIST=y
+41 -3
arch/mips/configs/ev96100_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:03 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 121 CONFIG_BOARD_SCACHE=y 122 CONFIG_RM7000_CPU_SCACHE=y 123 CONFIG_CPU_HAS_PREFETCH=y 124 - # CONFIG_MIPS_MT is not set 125 # CONFIG_64BIT_PHYS_ADDR is not set 126 CONFIG_CPU_HAS_LLSC=y 127 CONFIG_CPU_HAS_SYNC=y ··· 140 CONFIG_FLAT_NODE_MEM_MAP=y 141 # CONFIG_SPARSEMEM_STATIC is not set 142 CONFIG_SPLIT_PTLOCK_CPUS=4 143 # CONFIG_HZ_48 is not set 144 # CONFIG_HZ_100 is not set 145 # CONFIG_HZ_128 is not set ··· 153 CONFIG_PREEMPT_NONE=y 154 # CONFIG_PREEMPT_VOLUNTARY is not set 155 # CONFIG_PREEMPT is not set 156 157 # 158 # Code maturity level options ··· 185 CONFIG_BUG=y 186 CONFIG_ELF_CORE=y 187 CONFIG_BASE_FULL=y 188 CONFIG_FUTEX=y 189 CONFIG_EPOLL=y 190 CONFIG_SHMEM=y 191 CONFIG_SLAB=y 192 # CONFIG_TINY_SHMEM is not set 193 CONFIG_BASE_SMALL=0 194 # CONFIG_SLOB is not set ··· 279 # CONFIG_INET_IPCOMP is not set 280 # CONFIG_INET_XFRM_TUNNEL is not set 281 # CONFIG_INET_TUNNEL is not set 282 CONFIG_INET_DIAG=y 283 CONFIG_INET_TCP_DIAG=y 284 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 # CONFIG_IPV6 is not set 289 # CONFIG_INET6_XFRM_TUNNEL is not set 290 # CONFIG_INET6_TUNNEL is not set 291 # CONFIG_NETFILTER is not set 292 293 # ··· 348 CONFIG_STANDALONE=y 349 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 # CONFIG_FW_LOADER is not set 351 352 # 353 # Connector - unified userspace <-> kernelspace linker ··· 433 CONFIG_QSEMI_PHY=m 434 CONFIG_LXT_PHY=m 435 CONFIG_CICADA_PHY=m 436 437 # 438 # Ethernet (10 or 100Mbit) ··· 524 CONFIG_VT=y 525 CONFIG_VT_CONSOLE=y 526 CONFIG_HW_CONSOLE=y 527 # CONFIG_SERIAL_NONSTANDARD is not set 528 529 # ··· 554 # Watchdog Cards 555 # 556 # CONFIG_WATCHDOG is not set 557 # CONFIG_RTC is not set 558 # CONFIG_GEN_RTC is not set 559 # CONFIG_DTLK is not set ··· 601 # Multimedia devices 602 # 603 # CONFIG_VIDEO_DEV is not set 604 605 # 606 # Digital Video Broadcasting Devices ··· 611 # 612 # Graphics support 613 # 614 # CONFIG_FB is not set 615 616 # ··· 673 # CONFIG_RTC_CLASS is not set 674 675 # 676 # File systems 677 # 678 CONFIG_EXT2_FS=y ··· 700 # CONFIG_MINIX_FS is not set 701 # CONFIG_ROMFS_FS is not set 702 CONFIG_INOTIFY=y 703 # CONFIG_QUOTA is not set 704 CONFIG_DNOTIFY=y 705 # CONFIG_AUTOFS_FS is not set ··· 764 # CONFIG_RPCSEC_GSS_SPKM3 is not set 765 # CONFIG_SMB_FS is not set 766 # CONFIG_CIFS is not set 767 # CONFIG_NCP_FS is not set 768 # CONFIG_CODA_FS is not set 769 # CONFIG_AFS_FS is not set ··· 791 # 792 # CONFIG_PRINTK_TIME is not set 793 # CONFIG_MAGIC_SYSRQ is not set 794 # CONFIG_DEBUG_KERNEL is not set 795 CONFIG_LOG_BUF_SHIFT=14 796 # CONFIG_DEBUG_FS is not set ··· 847 CONFIG_LIBCRC32C=m 848 CONFIG_ZLIB_INFLATE=m 849 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:05 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 117 CONFIG_BOARD_SCACHE=y 118 CONFIG_RM7000_CPU_SCACHE=y 119 CONFIG_CPU_HAS_PREFETCH=y 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 124 # CONFIG_64BIT_PHYS_ADDR is not set 125 CONFIG_CPU_HAS_LLSC=y 126 CONFIG_CPU_HAS_SYNC=y ··· 133 CONFIG_FLAT_NODE_MEM_MAP=y 134 # CONFIG_SPARSEMEM_STATIC is not set 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 145 CONFIG_PREEMPT_NONE=y 146 # CONFIG_PREEMPT_VOLUNTARY is not set 147 # CONFIG_PREEMPT is not set 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 149 150 # 151 # Code maturity level options ··· 176 CONFIG_BUG=y 177 CONFIG_ELF_CORE=y 178 CONFIG_BASE_FULL=y 179 + CONFIG_RT_MUTEXES=y 180 CONFIG_FUTEX=y 181 CONFIG_EPOLL=y 182 CONFIG_SHMEM=y 183 CONFIG_SLAB=y 184 + CONFIG_VM_EVENT_COUNTERS=y 185 # CONFIG_TINY_SHMEM is not set 186 CONFIG_BASE_SMALL=0 187 # CONFIG_SLOB is not set ··· 268 # CONFIG_INET_IPCOMP is not set 269 # CONFIG_INET_XFRM_TUNNEL is not set 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 273 CONFIG_INET_DIAG=y 274 CONFIG_INET_TCP_DIAG=y 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 275 # CONFIG_IPV6 is not set 276 # CONFIG_INET6_XFRM_TUNNEL is not set 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 279 # CONFIG_NETFILTER is not set 280 281 # ··· 334 CONFIG_STANDALONE=y 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 # CONFIG_FW_LOADER is not set 337 + # CONFIG_SYS_HYPERVISOR is not set 338 339 # 340 # Connector - unified userspace <-> kernelspace linker ··· 418 CONFIG_QSEMI_PHY=m 419 CONFIG_LXT_PHY=m 420 CONFIG_CICADA_PHY=m 421 + CONFIG_VITESSE_PHY=m 422 + CONFIG_SMSC_PHY=m 423 424 # 425 # Ethernet (10 or 100Mbit) ··· 507 CONFIG_VT=y 508 CONFIG_VT_CONSOLE=y 509 CONFIG_HW_CONSOLE=y 510 + CONFIG_VT_HW_CONSOLE_BINDING=y 511 # CONFIG_SERIAL_NONSTANDARD is not set 512 513 # ··· 536 # Watchdog Cards 537 # 538 # CONFIG_WATCHDOG is not set 539 + # CONFIG_HW_RANDOM is not set 540 # CONFIG_RTC is not set 541 # CONFIG_GEN_RTC is not set 542 # CONFIG_DTLK is not set ··· 582 # Multimedia devices 583 # 584 # CONFIG_VIDEO_DEV is not set 585 + CONFIG_VIDEO_V4L2=y 586 587 # 588 # Digital Video Broadcasting Devices ··· 591 # 592 # Graphics support 593 # 594 + # CONFIG_FIRMWARE_EDID is not set 595 # CONFIG_FB is not set 596 597 # ··· 652 # CONFIG_RTC_CLASS is not set 653 654 # 655 + # DMA Engine support 656 + # 657 + # CONFIG_DMA_ENGINE is not set 658 + 659 + # 660 + # DMA Clients 661 + # 662 + 663 + # 664 + # DMA Devices 665 + # 666 + 667 + # 668 # File systems 669 # 670 CONFIG_EXT2_FS=y ··· 666 # CONFIG_MINIX_FS is not set 667 # CONFIG_ROMFS_FS is not set 668 CONFIG_INOTIFY=y 669 + CONFIG_INOTIFY_USER=y 670 # CONFIG_QUOTA is not set 671 CONFIG_DNOTIFY=y 672 # CONFIG_AUTOFS_FS is not set ··· 729 # CONFIG_RPCSEC_GSS_SPKM3 is not set 730 # CONFIG_SMB_FS is not set 731 # CONFIG_CIFS is not set 732 + # CONFIG_CIFS_DEBUG2 is not set 733 # CONFIG_NCP_FS is not set 734 # CONFIG_CODA_FS is not set 735 # CONFIG_AFS_FS is not set ··· 755 # 756 # CONFIG_PRINTK_TIME is not set 757 # CONFIG_MAGIC_SYSRQ is not set 758 + # CONFIG_UNUSED_SYMBOLS is not set 759 # CONFIG_DEBUG_KERNEL is not set 760 CONFIG_LOG_BUF_SHIFT=14 761 # CONFIG_DEBUG_FS is not set ··· 810 CONFIG_LIBCRC32C=m 811 CONFIG_ZLIB_INFLATE=m 812 CONFIG_ZLIB_DEFLATE=m 813 + CONFIG_PLIST=y
+80 -55
arch/mips/configs/excite_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.16-rc4 4 - # Thu Feb 23 13:15:27 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 34 # CONFIG_MIPS_ATLAS is not set 35 # CONFIG_MIPS_MALTA is not set 36 # CONFIG_MIPS_SEAD is not set 37 # CONFIG_MIPS_SIM is not set 38 # CONFIG_MOMENCO_JAGUAR_ATX is not set 39 # CONFIG_MOMENCO_OCELOT is not set ··· 44 # CONFIG_MIPS_XXS1500 is not set 45 # CONFIG_PNX8550_V2PCI is not set 46 # CONFIG_PNX8550_JBS is not set 47 - CONFIG_BASLER_EXCITE=y 48 - # CONFIG_BASLER_EXCITE_PROTOTYPE is not set 49 - # CONFIG_DDB5074 is not set 50 - # CONFIG_DDB5476 is not set 51 # CONFIG_DDB5477 is not set 52 # CONFIG_MACH_VR41XX is not set 53 # CONFIG_PMC_YOSEMITE is not set 54 # CONFIG_QEMU is not set 55 # CONFIG_SGI_IP22 is not set 56 # CONFIG_SGI_IP27 is not set 57 # CONFIG_SGI_IP32 is not set ··· 66 # CONFIG_TOSHIBA_RBTX4927 is not set 67 # CONFIG_TOSHIBA_RBTX4938 is not set 68 CONFIG_RWSEM_GENERIC_SPINLOCK=y 69 CONFIG_GENERIC_CALIBRATE_DELAY=y 70 CONFIG_DMA_COHERENT=y 71 - CONFIG_SERIAL_RM9000=y 72 CONFIG_CPU_BIG_ENDIAN=y 73 # CONFIG_CPU_LITTLE_ENDIAN is not set 74 CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 121 # CONFIG_64BIT_PHYS_ADDR is not set 122 - # CONFIG_CPU_ADVANCED is not set 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 146 # CONFIG_HZ_1024 is not set 147 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 148 CONFIG_HZ=1000 149 - # CONFIG_SMP is not set 150 # CONFIG_PREEMPT_NONE is not set 151 # CONFIG_PREEMPT_VOLUNTARY is not set 152 CONFIG_PREEMPT=y 153 CONFIG_PREEMPT_BKL=y 154 155 # 156 # Code maturity level options ··· 172 CONFIG_SYSCTL=y 173 # CONFIG_AUDIT is not set 174 # CONFIG_IKCONFIG is not set 175 CONFIG_INITRAMFS_SOURCE="" 176 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 177 CONFIG_EMBEDDED=y ··· 183 CONFIG_BUG=y 184 CONFIG_ELF_CORE=y 185 CONFIG_BASE_FULL=y 186 CONFIG_FUTEX=y 187 CONFIG_EPOLL=y 188 CONFIG_SHMEM=y 189 - CONFIG_CC_ALIGN_FUNCTIONS=0 190 - CONFIG_CC_ALIGN_LABELS=0 191 - CONFIG_CC_ALIGN_LOOPS=0 192 - CONFIG_CC_ALIGN_JUMPS=0 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 199 CONFIG_MODULES=y 200 CONFIG_MODULE_UNLOAD=y 201 # CONFIG_MODULE_FORCE_UNLOAD is not set 202 - CONFIG_OBSOLETE_MODPARM=y 203 # CONFIG_MODVERSIONS is not set 204 # CONFIG_MODULE_SRCVERSION_ALL is not set 205 CONFIG_KMOD=y ··· 207 # Block layer 208 # 209 # CONFIG_LBD is not set 210 211 # 212 # IO Schedulers ··· 228 # 229 CONFIG_HW_HAS_PCI=y 230 CONFIG_PCI=y 231 - # CONFIG_PCI_LEGACY_PROC is not set 232 CONFIG_MMU=y 233 234 # ··· 259 CONFIG_PACKET=y 260 CONFIG_PACKET_MMAP=y 261 CONFIG_UNIX=y 262 # CONFIG_NET_KEY is not set 263 CONFIG_INET=y 264 # CONFIG_IP_MULTICAST is not set ··· 277 # CONFIG_INET_AH is not set 278 # CONFIG_INET_ESP is not set 279 # CONFIG_INET_IPCOMP is not set 280 # CONFIG_INET_TUNNEL is not set 281 CONFIG_INET_DIAG=y 282 CONFIG_INET_TCP_DIAG=y 283 # CONFIG_TCP_CONG_ADVANCED is not set 284 CONFIG_TCP_CONG_BIC=y 285 # CONFIG_IPV6 is not set 286 # CONFIG_NETFILTER is not set 287 288 # ··· 342 CONFIG_STANDALONE=y 343 CONFIG_PREVENT_FIRMWARE_BUILD=y 344 # CONFIG_FW_LOADER is not set 345 346 # 347 # Connector - unified userspace <-> kernelspace linker ··· 402 # CONFIG_MTD_SLRAM is not set 403 # CONFIG_MTD_PHRAM is not set 404 # CONFIG_MTD_MTDRAM is not set 405 - # CONFIG_MTD_BLKMTD is not set 406 # CONFIG_MTD_BLOCK2MTD is not set 407 408 # ··· 416 # 417 CONFIG_MTD_NAND=y 418 CONFIG_MTD_NAND_VERIFY_WRITE=y 419 CONFIG_MTD_NAND_IDS=y 420 # CONFIG_MTD_NAND_DISKONCHIP is not set 421 - CONFIG_MTD_NAND_BASLER_EXCITE=y 422 - # CONFIG_MTD_NAND_BASLER_EXCITE_RDNBY is not set 423 - # CONFIG_MTD_NAND_BASLER_EXCITE_PERF is not set 424 # CONFIG_MTD_NAND_NANDSIM is not set 425 426 # ··· 449 # CONFIG_BLK_DEV_SX8 is not set 450 # CONFIG_BLK_DEV_UB is not set 451 # CONFIG_BLK_DEV_RAM is not set 452 - CONFIG_BLK_DEV_RAM_COUNT=16 453 # CONFIG_CDROM_PKTCDVD is not set 454 # CONFIG_ATA_OVER_ETH is not set 455 ··· 506 # CONFIG_MEGARAID_LEGACY is not set 507 # CONFIG_MEGARAID_SAS is not set 508 # CONFIG_SCSI_SATA is not set 509 # CONFIG_SCSI_DMX3191D is not set 510 # CONFIG_SCSI_FUTURE_DOMAIN is not set 511 # CONFIG_SCSI_IPS is not set ··· 514 # CONFIG_SCSI_INIA100 is not set 515 # CONFIG_SCSI_SYM53C8XX_2 is not set 516 # CONFIG_SCSI_IPR is not set 517 - # CONFIG_SCSI_QLOGIC_FC is not set 518 # CONFIG_SCSI_QLOGIC_1280 is not set 519 # CONFIG_SCSI_QLA_FC is not set 520 # CONFIG_SCSI_LPFC is not set ··· 584 # CONFIG_SK98LIN is not set 585 # CONFIG_TIGON3 is not set 586 # CONFIG_BNX2 is not set 587 - # CONFIG_TITAN_GE is not set 588 - CONFIG_RM9K_GE=m 589 590 # 591 # Ethernet (10000 Mbit) ··· 591 # CONFIG_CHELSIO_T1 is not set 592 # CONFIG_IXGB is not set 593 # CONFIG_S2IO is not set 594 595 # 596 # Token Ring devices ··· 665 CONFIG_VT=y 666 CONFIG_VT_CONSOLE=y 667 CONFIG_HW_CONSOLE=y 668 # CONFIG_SERIAL_NONSTANDARD is not set 669 670 # ··· 673 # 674 CONFIG_SERIAL_8250=y 675 CONFIG_SERIAL_8250_CONSOLE=y 676 CONFIG_SERIAL_8250_NR_UARTS=2 677 CONFIG_SERIAL_8250_RUNTIME_UARTS=2 678 CONFIG_SERIAL_8250_EXTENDED=y ··· 706 # Watchdog Device Drivers 707 # 708 # CONFIG_SOFT_WATCHDOG is not set 709 - CONFIG_WDT_RM9K_GPI=m 710 711 # 712 # PCI-based Watchdog Cards ··· 717 # USB-based Watchdog Cards 718 # 719 # CONFIG_USBPCWATCHDOG is not set 720 # CONFIG_RTC is not set 721 # CONFIG_GEN_RTC is not set 722 # CONFIG_DTLK is not set ··· 750 # 751 # Dallas's 1-wire bus 752 # 753 - # CONFIG_W1 is not set 754 755 # 756 # Hardware Monitoring support ··· 762 # 763 764 # 765 - # Multimedia Capabilities Port drivers 766 - # 767 - 768 - # 769 # Multimedia devices 770 # 771 # CONFIG_VIDEO_DEV is not set 772 773 # 774 # Digital Video Broadcasting Devices 775 # 776 # CONFIG_DVB is not set 777 778 # 779 # Graphics support 780 # 781 CONFIG_FB=y 782 - CONFIG_FB_CFB_FILLRECT=y 783 - CONFIG_FB_CFB_COPYAREA=y 784 - CONFIG_FB_CFB_IMAGEBLIT=y 785 # CONFIG_FB_MACMODES is not set 786 # CONFIG_FB_MODE_HELPERS is not set 787 # CONFIG_FB_TILEBLITTING is not set 788 # CONFIG_FB_CIRRUS is not set ··· 794 # CONFIG_FB_NVIDIA is not set 795 # CONFIG_FB_RIVA is not set 796 # CONFIG_FB_MATROX is not set 797 - # CONFIG_FB_RADEON_OLD is not set 798 # CONFIG_FB_RADEON is not set 799 # CONFIG_FB_ATY128 is not set 800 # CONFIG_FB_ATY is not set ··· 806 # CONFIG_FB_SMIVGX is not set 807 # CONFIG_FB_TRIDENT is not set 808 # CONFIG_FB_VIRTUAL is not set 809 - CONFIG_FB_DD=y 810 811 # 812 # Console display driver support ··· 834 # 835 CONFIG_USB_ARCH_HAS_HCD=y 836 CONFIG_USB_ARCH_HAS_OHCI=y 837 CONFIG_USB=y 838 # CONFIG_USB_DEBUG is not set 839 ··· 852 CONFIG_USB_EHCI_HCD=y 853 # CONFIG_USB_EHCI_SPLIT_ISO is not set 854 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 855 # CONFIG_USB_ISP116X_HCD is not set 856 CONFIG_USB_OHCI_HCD=y 857 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 905 # CONFIG_USB_ACECAD is not set 906 # CONFIG_USB_KBTAB is not set 907 # CONFIG_USB_POWERMATE is not set 908 - # CONFIG_USB_MTOUCH is not set 909 - # CONFIG_USB_ITMTOUCH is not set 910 - # CONFIG_USB_EGALAX is not set 911 # CONFIG_USB_YEALINK is not set 912 # CONFIG_USB_XPAD is not set 913 # CONFIG_USB_ATI_REMOTE is not set ··· 918 # 919 # CONFIG_USB_MDC800 is not set 920 # CONFIG_USB_MICROTEK is not set 921 - 922 - # 923 - # USB Multimedia devices 924 - # 925 - # CONFIG_USB_DABUSB is not set 926 - 927 - # 928 - # Video4Linux support is needed for USB Multimedia device support 929 - # 930 931 # 932 # USB Network Adapters ··· 945 # CONFIG_USB_EMI26 is not set 946 # CONFIG_USB_AUERSWALD is not set 947 # CONFIG_USB_RIO500 is not set 948 - CONFIG_USB_ARTTFT=m 949 - # CONFIG_USB_ARTTOUCH is not set 950 # CONFIG_USB_LEGOTOWER is not set 951 # CONFIG_USB_LCD is not set 952 # CONFIG_USB_LED is not set 953 # CONFIG_USB_CYTHERM is not set 954 # CONFIG_USB_PHIDGETKIT is not set 955 # CONFIG_USB_PHIDGETSERVO is not set 956 # CONFIG_USB_IDMOUSE is not set 957 # CONFIG_USB_SISUSBVGA is not set 958 # CONFIG_USB_LD is not set 959 # CONFIG_USB_TEST is not set ··· 973 # CONFIG_MMC is not set 974 975 # 976 # InfiniBand support 977 # 978 # CONFIG_INFINIBAND is not set 979 980 # 981 - # SN Devices 982 # 983 984 # 985 - # EDAC - error detection and reporting (RAS) 986 # 987 988 # 989 - # eXcite frame capture support 990 # 991 - CONFIG_EXCITE_FCAP=m 992 - CONFIG_EXCITE_FCAP_GPI=m 993 994 # 995 # File systems ··· 1027 # CONFIG_MINIX_FS is not set 1028 # CONFIG_ROMFS_FS is not set 1029 CONFIG_INOTIFY=y 1030 # CONFIG_QUOTA is not set 1031 # CONFIG_DNOTIFY is not set 1032 # CONFIG_AUTOFS_FS is not set ··· 1059 CONFIG_TMPFS=y 1060 # CONFIG_HUGETLB_PAGE is not set 1061 CONFIG_RAMFS=y 1062 - # CONFIG_RELAYFS_FS is not set 1063 # CONFIG_CONFIGFS_FS is not set 1064 1065 # ··· 1076 CONFIG_JFFS2_FS_DEBUG=0 1077 CONFIG_JFFS2_FS_WRITEBUFFER=y 1078 # CONFIG_JFFS2_SUMMARY is not set 1079 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1080 CONFIG_JFFS2_ZLIB=y 1081 CONFIG_JFFS2_RTIME=y ··· 1106 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1107 # CONFIG_SMB_FS is not set 1108 # CONFIG_CIFS is not set 1109 # CONFIG_NCP_FS is not set 1110 # CONFIG_CODA_FS is not set 1111 # CONFIG_AFS_FS is not set ··· 1187 # 1188 # CONFIG_PRINTK_TIME is not set 1189 # CONFIG_MAGIC_SYSRQ is not set 1190 # CONFIG_DEBUG_KERNEL is not set 1191 CONFIG_LOG_BUF_SHIFT=14 1192 CONFIG_CROSSCOMPILE=y 1193 CONFIG_CMDLINE="" 1194 ··· 1242 # CONFIG_LIBCRC32C is not set 1243 CONFIG_ZLIB_INFLATE=y 1244 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:09 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + CONFIG_BASLER_EXCITE=y 25 + # CONFIG_BASLER_EXCITE_PROTOTYPE is not set 26 # CONFIG_MIPS_COBALT is not set 27 # CONFIG_MACH_DECSTATION is not set 28 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 41 # CONFIG_MIPS_XXS1500 is not set 42 # CONFIG_PNX8550_V2PCI is not set 43 # CONFIG_PNX8550_JBS is not set 44 # CONFIG_DDB5477 is not set 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 # CONFIG_TOSHIBA_RBTX4927 is not set 67 # CONFIG_TOSHIBA_RBTX4938 is not set 68 CONFIG_RWSEM_GENERIC_SPINLOCK=y 69 + CONFIG_GENERIC_FIND_NEXT_BIT=y 70 + CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 73 CONFIG_DMA_COHERENT=y 74 CONFIG_CPU_BIG_ENDIAN=y 75 # CONFIG_CPU_LITTLE_ENDIAN is not set 76 CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y ··· 115 # CONFIG_PAGE_SIZE_16KB is not set 116 # CONFIG_PAGE_SIZE_64KB is not set 117 CONFIG_CPU_HAS_PREFETCH=y 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 122 # CONFIG_64BIT_PHYS_ADDR is not set 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 # CONFIG_HZ_128 is not set ··· 141 # CONFIG_HZ_1024 is not set 142 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 143 CONFIG_HZ=1000 144 # CONFIG_PREEMPT_NONE is not set 145 # CONFIG_PREEMPT_VOLUNTARY is not set 146 CONFIG_PREEMPT=y 147 CONFIG_PREEMPT_BKL=y 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 149 150 # 151 # Code maturity level options ··· 167 CONFIG_SYSCTL=y 168 # CONFIG_AUDIT is not set 169 # CONFIG_IKCONFIG is not set 170 + # CONFIG_RELAY is not set 171 CONFIG_INITRAMFS_SOURCE="" 172 CONFIG_CC_OPTIMIZE_FOR_SIZE=y 173 CONFIG_EMBEDDED=y ··· 177 CONFIG_BUG=y 178 CONFIG_ELF_CORE=y 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 181 CONFIG_FUTEX=y 182 CONFIG_EPOLL=y 183 CONFIG_SHMEM=y 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 186 # CONFIG_TINY_SHMEM is not set 187 CONFIG_BASE_SMALL=0 188 # CONFIG_SLOB is not set ··· 195 CONFIG_MODULES=y 196 CONFIG_MODULE_UNLOAD=y 197 # CONFIG_MODULE_FORCE_UNLOAD is not set 198 # CONFIG_MODVERSIONS is not set 199 # CONFIG_MODULE_SRCVERSION_ALL is not set 200 CONFIG_KMOD=y ··· 204 # Block layer 205 # 206 # CONFIG_LBD is not set 207 + # CONFIG_BLK_DEV_IO_TRACE is not set 208 + # CONFIG_LSF is not set 209 210 # 211 # IO Schedulers ··· 223 # 224 CONFIG_HW_HAS_PCI=y 225 CONFIG_PCI=y 226 CONFIG_MMU=y 227 228 # ··· 255 CONFIG_PACKET=y 256 CONFIG_PACKET_MMAP=y 257 CONFIG_UNIX=y 258 + CONFIG_XFRM=y 259 + # CONFIG_XFRM_USER is not set 260 # CONFIG_NET_KEY is not set 261 CONFIG_INET=y 262 # CONFIG_IP_MULTICAST is not set ··· 271 # CONFIG_INET_AH is not set 272 # CONFIG_INET_ESP is not set 273 # CONFIG_INET_IPCOMP is not set 274 + # CONFIG_INET_XFRM_TUNNEL is not set 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 278 CONFIG_INET_DIAG=y 279 CONFIG_INET_TCP_DIAG=y 280 # CONFIG_TCP_CONG_ADVANCED is not set 281 CONFIG_TCP_CONG_BIC=y 282 # CONFIG_IPV6 is not set 283 + # CONFIG_INET6_XFRM_TUNNEL is not set 284 + # CONFIG_INET6_TUNNEL is not set 285 + CONFIG_NETWORK_SECMARK=y 286 # CONFIG_NETFILTER is not set 287 288 # ··· 330 CONFIG_STANDALONE=y 331 CONFIG_PREVENT_FIRMWARE_BUILD=y 332 # CONFIG_FW_LOADER is not set 333 + # CONFIG_SYS_HYPERVISOR is not set 334 335 # 336 # Connector - unified userspace <-> kernelspace linker ··· 389 # CONFIG_MTD_SLRAM is not set 390 # CONFIG_MTD_PHRAM is not set 391 # CONFIG_MTD_MTDRAM is not set 392 # CONFIG_MTD_BLOCK2MTD is not set 393 394 # ··· 404 # 405 CONFIG_MTD_NAND=y 406 CONFIG_MTD_NAND_VERIFY_WRITE=y 407 + # CONFIG_MTD_NAND_ECC_SMC is not set 408 CONFIG_MTD_NAND_IDS=y 409 # CONFIG_MTD_NAND_DISKONCHIP is not set 410 # CONFIG_MTD_NAND_NANDSIM is not set 411 412 # ··· 439 # CONFIG_BLK_DEV_SX8 is not set 440 # CONFIG_BLK_DEV_UB is not set 441 # CONFIG_BLK_DEV_RAM is not set 442 + # CONFIG_BLK_DEV_INITRD is not set 443 # CONFIG_CDROM_PKTCDVD is not set 444 # CONFIG_ATA_OVER_ETH is not set 445 ··· 496 # CONFIG_MEGARAID_LEGACY is not set 497 # CONFIG_MEGARAID_SAS is not set 498 # CONFIG_SCSI_SATA is not set 499 + # CONFIG_SCSI_HPTIOP is not set 500 # CONFIG_SCSI_DMX3191D is not set 501 # CONFIG_SCSI_FUTURE_DOMAIN is not set 502 # CONFIG_SCSI_IPS is not set ··· 503 # CONFIG_SCSI_INIA100 is not set 504 # CONFIG_SCSI_SYM53C8XX_2 is not set 505 # CONFIG_SCSI_IPR is not set 506 # CONFIG_SCSI_QLOGIC_1280 is not set 507 # CONFIG_SCSI_QLA_FC is not set 508 # CONFIG_SCSI_LPFC is not set ··· 574 # CONFIG_SK98LIN is not set 575 # CONFIG_TIGON3 is not set 576 # CONFIG_BNX2 is not set 577 578 # 579 # Ethernet (10000 Mbit) ··· 583 # CONFIG_CHELSIO_T1 is not set 584 # CONFIG_IXGB is not set 585 # CONFIG_S2IO is not set 586 + # CONFIG_MYRI10GE is not set 587 588 # 589 # Token Ring devices ··· 656 CONFIG_VT=y 657 CONFIG_VT_CONSOLE=y 658 CONFIG_HW_CONSOLE=y 659 + CONFIG_VT_HW_CONSOLE_BINDING=y 660 # CONFIG_SERIAL_NONSTANDARD is not set 661 662 # ··· 663 # 664 CONFIG_SERIAL_8250=y 665 CONFIG_SERIAL_8250_CONSOLE=y 666 + CONFIG_SERIAL_8250_PCI=y 667 CONFIG_SERIAL_8250_NR_UARTS=2 668 CONFIG_SERIAL_8250_RUNTIME_UARTS=2 669 CONFIG_SERIAL_8250_EXTENDED=y ··· 695 # Watchdog Device Drivers 696 # 697 # CONFIG_SOFT_WATCHDOG is not set 698 699 # 700 # PCI-based Watchdog Cards ··· 707 # USB-based Watchdog Cards 708 # 709 # CONFIG_USBPCWATCHDOG is not set 710 + # CONFIG_HW_RANDOM is not set 711 # CONFIG_RTC is not set 712 # CONFIG_GEN_RTC is not set 713 # CONFIG_DTLK is not set ··· 739 # 740 # Dallas's 1-wire bus 741 # 742 743 # 744 # Hardware Monitoring support ··· 752 # 753 754 # 755 # Multimedia devices 756 # 757 # CONFIG_VIDEO_DEV is not set 758 + CONFIG_VIDEO_V4L2=y 759 760 # 761 # Digital Video Broadcasting Devices 762 # 763 # CONFIG_DVB is not set 764 + # CONFIG_USB_DABUSB is not set 765 766 # 767 # Graphics support 768 # 769 + # CONFIG_FIRMWARE_EDID is not set 770 CONFIG_FB=y 771 + # CONFIG_FB_CFB_FILLRECT is not set 772 + # CONFIG_FB_CFB_COPYAREA is not set 773 + # CONFIG_FB_CFB_IMAGEBLIT is not set 774 # CONFIG_FB_MACMODES is not set 775 + # CONFIG_FB_BACKLIGHT is not set 776 # CONFIG_FB_MODE_HELPERS is not set 777 # CONFIG_FB_TILEBLITTING is not set 778 # CONFIG_FB_CIRRUS is not set ··· 784 # CONFIG_FB_NVIDIA is not set 785 # CONFIG_FB_RIVA is not set 786 # CONFIG_FB_MATROX is not set 787 # CONFIG_FB_RADEON is not set 788 # CONFIG_FB_ATY128 is not set 789 # CONFIG_FB_ATY is not set ··· 797 # CONFIG_FB_SMIVGX is not set 798 # CONFIG_FB_TRIDENT is not set 799 # CONFIG_FB_VIRTUAL is not set 800 801 # 802 # Console display driver support ··· 826 # 827 CONFIG_USB_ARCH_HAS_HCD=y 828 CONFIG_USB_ARCH_HAS_OHCI=y 829 + CONFIG_USB_ARCH_HAS_EHCI=y 830 CONFIG_USB=y 831 # CONFIG_USB_DEBUG is not set 832 ··· 843 CONFIG_USB_EHCI_HCD=y 844 # CONFIG_USB_EHCI_SPLIT_ISO is not set 845 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 846 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 847 # CONFIG_USB_ISP116X_HCD is not set 848 CONFIG_USB_OHCI_HCD=y 849 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 895 # CONFIG_USB_ACECAD is not set 896 # CONFIG_USB_KBTAB is not set 897 # CONFIG_USB_POWERMATE is not set 898 + # CONFIG_USB_TOUCHSCREEN is not set 899 # CONFIG_USB_YEALINK is not set 900 # CONFIG_USB_XPAD is not set 901 # CONFIG_USB_ATI_REMOTE is not set ··· 910 # 911 # CONFIG_USB_MDC800 is not set 912 # CONFIG_USB_MICROTEK is not set 913 914 # 915 # USB Network Adapters ··· 946 # CONFIG_USB_EMI26 is not set 947 # CONFIG_USB_AUERSWALD is not set 948 # CONFIG_USB_RIO500 is not set 949 # CONFIG_USB_LEGOTOWER is not set 950 # CONFIG_USB_LCD is not set 951 # CONFIG_USB_LED is not set 952 + # CONFIG_USB_CY7C63 is not set 953 # CONFIG_USB_CYTHERM is not set 954 # CONFIG_USB_PHIDGETKIT is not set 955 # CONFIG_USB_PHIDGETSERVO is not set 956 # CONFIG_USB_IDMOUSE is not set 957 + # CONFIG_USB_APPLEDISPLAY is not set 958 # CONFIG_USB_SISUSBVGA is not set 959 # CONFIG_USB_LD is not set 960 # CONFIG_USB_TEST is not set ··· 974 # CONFIG_MMC is not set 975 976 # 977 + # LED devices 978 + # 979 + # CONFIG_NEW_LEDS is not set 980 + 981 + # 982 + # LED drivers 983 + # 984 + 985 + # 986 + # LED Triggers 987 + # 988 + 989 + # 990 # InfiniBand support 991 # 992 # CONFIG_INFINIBAND is not set 993 994 # 995 + # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) 996 # 997 998 # 999 + # Real Time Clock 1000 + # 1001 + # CONFIG_RTC_CLASS is not set 1002 + 1003 + # 1004 + # DMA Engine support 1005 + # 1006 + # CONFIG_DMA_ENGINE is not set 1007 + 1008 + # 1009 + # DMA Clients 1010 # 1011 1012 # 1013 + # DMA Devices 1014 # 1015 1016 # 1017 # File systems ··· 1007 # CONFIG_MINIX_FS is not set 1008 # CONFIG_ROMFS_FS is not set 1009 CONFIG_INOTIFY=y 1010 + CONFIG_INOTIFY_USER=y 1011 # CONFIG_QUOTA is not set 1012 # CONFIG_DNOTIFY is not set 1013 # CONFIG_AUTOFS_FS is not set ··· 1038 CONFIG_TMPFS=y 1039 # CONFIG_HUGETLB_PAGE is not set 1040 CONFIG_RAMFS=y 1041 # CONFIG_CONFIGFS_FS is not set 1042 1043 # ··· 1056 CONFIG_JFFS2_FS_DEBUG=0 1057 CONFIG_JFFS2_FS_WRITEBUFFER=y 1058 # CONFIG_JFFS2_SUMMARY is not set 1059 + # CONFIG_JFFS2_FS_XATTR is not set 1060 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1061 CONFIG_JFFS2_ZLIB=y 1062 CONFIG_JFFS2_RTIME=y ··· 1085 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1086 # CONFIG_SMB_FS is not set 1087 # CONFIG_CIFS is not set 1088 + # CONFIG_CIFS_DEBUG2 is not set 1089 # CONFIG_NCP_FS is not set 1090 # CONFIG_CODA_FS is not set 1091 # CONFIG_AFS_FS is not set ··· 1165 # 1166 # CONFIG_PRINTK_TIME is not set 1167 # CONFIG_MAGIC_SYSRQ is not set 1168 + # CONFIG_UNUSED_SYMBOLS is not set 1169 # CONFIG_DEBUG_KERNEL is not set 1170 CONFIG_LOG_BUF_SHIFT=14 1171 + # CONFIG_DEBUG_FS is not set 1172 CONFIG_CROSSCOMPILE=y 1173 CONFIG_CMDLINE="" 1174 ··· 1218 # CONFIG_LIBCRC32C is not set 1219 CONFIG_ZLIB_INFLATE=y 1220 CONFIG_ZLIB_DEFLATE=y 1221 + CONFIG_PLIST=y
+53 -4
arch/mips/configs/ip22_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:54 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 CONFIG_SGI_IP22=y 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_ARC=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 123 # CONFIG_PAGE_SIZE_64KB is not set 124 CONFIG_BOARD_SCACHE=y 125 CONFIG_IP22_CPU_SCACHE=y 126 - # CONFIG_MIPS_MT is not set 127 # CONFIG_64BIT_PHYS_ADDR is not set 128 CONFIG_CPU_HAS_LLSC=y 129 CONFIG_CPU_HAS_SYNC=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 # CONFIG_PREEMPT_NONE is not set 155 CONFIG_PREEMPT_VOLUNTARY=y 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 283 CONFIG_INET_IPCOMP=m 284 CONFIG_INET_XFRM_TUNNEL=m 285 CONFIG_INET_TUNNEL=m 286 CONFIG_INET_DIAG=y 287 CONFIG_INET_TCP_DIAG=y 288 # CONFIG_TCP_CONG_ADVANCED is not set ··· 332 CONFIG_INET6_IPCOMP=m 333 CONFIG_INET6_XFRM_TUNNEL=m 334 CONFIG_INET6_TUNNEL=m 335 CONFIG_IPV6_TUNNEL=m 336 CONFIG_NETFILTER=y 337 # CONFIG_NETFILTER_DEBUG is not set 338 ··· 351 CONFIG_NETFILTER_XT_TARGET_MARK=m 352 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 353 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 354 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 355 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 356 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 367 CONFIG_NETFILTER_XT_MATCH_POLICY=m 368 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 369 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 370 CONFIG_NETFILTER_XT_MATCH_REALM=m 371 CONFIG_NETFILTER_XT_MATCH_SCTP=m 372 CONFIG_NETFILTER_XT_MATCH_STATE=m 373 CONFIG_NETFILTER_XT_MATCH_STRING=m 374 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 375 ··· 381 CONFIG_IP_NF_CONNTRACK=m 382 CONFIG_IP_NF_CT_ACCT=y 383 CONFIG_IP_NF_CONNTRACK_MARK=y 384 CONFIG_IP_NF_CONNTRACK_EVENTS=y 385 CONFIG_IP_NF_CONNTRACK_NETLINK=m 386 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 392 CONFIG_IP_NF_AMANDA=m 393 CONFIG_IP_NF_PPTP=m 394 CONFIG_IP_NF_H323=m 395 CONFIG_IP_NF_QUEUE=m 396 CONFIG_IP_NF_IPTABLES=m 397 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 423 CONFIG_IP_NF_NAT_AMANDA=m 424 CONFIG_IP_NF_NAT_PPTP=m 425 CONFIG_IP_NF_NAT_H323=m 426 CONFIG_IP_NF_MANGLE=m 427 CONFIG_IP_NF_TARGET_TOS=m 428 CONFIG_IP_NF_TARGET_ECN=m ··· 556 CONFIG_STANDALONE=y 557 CONFIG_PREVENT_FIRMWARE_BUILD=y 558 # CONFIG_FW_LOADER is not set 559 560 # 561 # Connector - unified userspace <-> kernelspace linker ··· 676 CONFIG_QSEMI_PHY=m 677 CONFIG_LXT_PHY=m 678 CONFIG_CICADA_PHY=m 679 680 # 681 # Ethernet (10 or 100Mbit) ··· 775 CONFIG_VT=y 776 CONFIG_VT_CONSOLE=y 777 CONFIG_HW_CONSOLE=y 778 # CONFIG_SERIAL_NONSTANDARD is not set 779 780 # ··· 808 # 809 # CONFIG_SOFT_WATCHDOG is not set 810 CONFIG_INDYDOG=m 811 # CONFIG_RTC is not set 812 CONFIG_SGI_DS1286=m 813 # CONFIG_GEN_RTC is not set ··· 857 # Multimedia devices 858 # 859 # CONFIG_VIDEO_DEV is not set 860 861 # 862 # Digital Video Broadcasting Devices ··· 867 # 868 # Graphics support 869 # 870 # CONFIG_FB is not set 871 872 # ··· 940 # CONFIG_RTC_CLASS is not set 941 942 # 943 # File systems 944 # 945 CONFIG_EXT2_FS=m ··· 969 # CONFIG_JFS_FS is not set 970 CONFIG_FS_POSIX_ACL=y 971 CONFIG_XFS_FS=m 972 - CONFIG_XFS_EXPORT=y 973 CONFIG_XFS_QUOTA=y 974 CONFIG_XFS_SECURITY=y 975 # CONFIG_XFS_POSIX_ACL is not set ··· 977 CONFIG_MINIX_FS=m 978 # CONFIG_ROMFS_FS is not set 979 CONFIG_INOTIFY=y 980 CONFIG_QUOTA=y 981 # CONFIG_QFMT_V1 is not set 982 CONFIG_QFMT_V2=m ··· 1034 # CONFIG_QNX4FS_FS is not set 1035 # CONFIG_SYSV_FS is not set 1036 CONFIG_UFS_FS=m 1037 1038 # 1039 # Network File Systems ··· 1065 CONFIG_SMB_NLS_REMOTE="cp437" 1066 CONFIG_CIFS=m 1067 # CONFIG_CIFS_STATS is not set 1068 # CONFIG_CIFS_XATTR is not set 1069 # CONFIG_CIFS_EXPERIMENTAL is not set 1070 # CONFIG_NCP_FS is not set 1071 CONFIG_CODA_FS=m ··· 1150 # 1151 # CONFIG_PRINTK_TIME is not set 1152 # CONFIG_MAGIC_SYSRQ is not set 1153 # CONFIG_DEBUG_KERNEL is not set 1154 CONFIG_LOG_BUF_SHIFT=14 1155 # CONFIG_DEBUG_FS is not set ··· 1210 CONFIG_TEXTSEARCH_KMP=m 1211 CONFIG_TEXTSEARCH_BM=m 1212 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:10 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 CONFIG_SGI_IP22=y 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_ARC=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 119 # CONFIG_PAGE_SIZE_64KB is not set 120 CONFIG_BOARD_SCACHE=y 121 CONFIG_IP22_CPU_SCACHE=y 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 146 # CONFIG_PREEMPT_NONE is not set 147 CONFIG_PREEMPT_VOLUNTARY=y 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set ··· 272 CONFIG_INET_IPCOMP=m 273 CONFIG_INET_XFRM_TUNNEL=m 274 CONFIG_INET_TUNNEL=m 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 277 CONFIG_INET_DIAG=y 278 CONFIG_INET_TCP_DIAG=y 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 319 CONFIG_INET6_IPCOMP=m 320 CONFIG_INET6_XFRM_TUNNEL=m 321 CONFIG_INET6_TUNNEL=m 322 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 323 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 324 CONFIG_IPV6_TUNNEL=m 325 + CONFIG_NETWORK_SECMARK=y 326 CONFIG_NETFILTER=y 327 # CONFIG_NETFILTER_DEBUG is not set 328 ··· 335 CONFIG_NETFILTER_XT_TARGET_MARK=m 336 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 337 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 338 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 339 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 340 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 341 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 342 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 349 CONFIG_NETFILTER_XT_MATCH_POLICY=m 350 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 351 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 352 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 353 CONFIG_NETFILTER_XT_MATCH_REALM=m 354 CONFIG_NETFILTER_XT_MATCH_SCTP=m 355 CONFIG_NETFILTER_XT_MATCH_STATE=m 356 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 357 CONFIG_NETFILTER_XT_MATCH_STRING=m 358 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 359 ··· 361 CONFIG_IP_NF_CONNTRACK=m 362 CONFIG_IP_NF_CT_ACCT=y 363 CONFIG_IP_NF_CONNTRACK_MARK=y 364 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 365 CONFIG_IP_NF_CONNTRACK_EVENTS=y 366 CONFIG_IP_NF_CONNTRACK_NETLINK=m 367 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 371 CONFIG_IP_NF_AMANDA=m 372 CONFIG_IP_NF_PPTP=m 373 CONFIG_IP_NF_H323=m 374 + CONFIG_IP_NF_SIP=m 375 CONFIG_IP_NF_QUEUE=m 376 CONFIG_IP_NF_IPTABLES=m 377 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 401 CONFIG_IP_NF_NAT_AMANDA=m 402 CONFIG_IP_NF_NAT_PPTP=m 403 CONFIG_IP_NF_NAT_H323=m 404 + CONFIG_IP_NF_NAT_SIP=m 405 CONFIG_IP_NF_MANGLE=m 406 CONFIG_IP_NF_TARGET_TOS=m 407 CONFIG_IP_NF_TARGET_ECN=m ··· 533 CONFIG_STANDALONE=y 534 CONFIG_PREVENT_FIRMWARE_BUILD=y 535 # CONFIG_FW_LOADER is not set 536 + # CONFIG_SYS_HYPERVISOR is not set 537 538 # 539 # Connector - unified userspace <-> kernelspace linker ··· 652 CONFIG_QSEMI_PHY=m 653 CONFIG_LXT_PHY=m 654 CONFIG_CICADA_PHY=m 655 + # CONFIG_VITESSE_PHY is not set 656 + # CONFIG_SMSC_PHY is not set 657 658 # 659 # Ethernet (10 or 100Mbit) ··· 749 CONFIG_VT=y 750 CONFIG_VT_CONSOLE=y 751 CONFIG_HW_CONSOLE=y 752 + CONFIG_VT_HW_CONSOLE_BINDING=y 753 # CONFIG_SERIAL_NONSTANDARD is not set 754 755 # ··· 781 # 782 # CONFIG_SOFT_WATCHDOG is not set 783 CONFIG_INDYDOG=m 784 + # CONFIG_HW_RANDOM is not set 785 # CONFIG_RTC is not set 786 CONFIG_SGI_DS1286=m 787 # CONFIG_GEN_RTC is not set ··· 829 # Multimedia devices 830 # 831 # CONFIG_VIDEO_DEV is not set 832 + CONFIG_VIDEO_V4L2=y 833 834 # 835 # Digital Video Broadcasting Devices ··· 838 # 839 # Graphics support 840 # 841 + CONFIG_FIRMWARE_EDID=y 842 # CONFIG_FB is not set 843 844 # ··· 910 # CONFIG_RTC_CLASS is not set 911 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 926 # File systems 927 # 928 CONFIG_EXT2_FS=m ··· 926 # CONFIG_JFS_FS is not set 927 CONFIG_FS_POSIX_ACL=y 928 CONFIG_XFS_FS=m 929 CONFIG_XFS_QUOTA=y 930 CONFIG_XFS_SECURITY=y 931 # CONFIG_XFS_POSIX_ACL is not set ··· 935 CONFIG_MINIX_FS=m 936 # CONFIG_ROMFS_FS is not set 937 CONFIG_INOTIFY=y 938 + CONFIG_INOTIFY_USER=y 939 CONFIG_QUOTA=y 940 # CONFIG_QFMT_V1 is not set 941 CONFIG_QFMT_V2=m ··· 991 # CONFIG_QNX4FS_FS is not set 992 # CONFIG_SYSV_FS is not set 993 CONFIG_UFS_FS=m 994 + # CONFIG_UFS_FS_WRITE is not set 995 + # CONFIG_UFS_DEBUG is not set 996 997 # 998 # Network File Systems ··· 1020 CONFIG_SMB_NLS_REMOTE="cp437" 1021 CONFIG_CIFS=m 1022 # CONFIG_CIFS_STATS is not set 1023 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1024 # CONFIG_CIFS_XATTR is not set 1025 + # CONFIG_CIFS_DEBUG2 is not set 1026 # CONFIG_CIFS_EXPERIMENTAL is not set 1027 # CONFIG_NCP_FS is not set 1028 CONFIG_CODA_FS=m ··· 1103 # 1104 # CONFIG_PRINTK_TIME is not set 1105 # CONFIG_MAGIC_SYSRQ is not set 1106 + # CONFIG_UNUSED_SYMBOLS is not set 1107 # CONFIG_DEBUG_KERNEL is not set 1108 CONFIG_LOG_BUF_SHIFT=14 1109 # CONFIG_DEBUG_FS is not set ··· 1162 CONFIG_TEXTSEARCH_KMP=m 1163 CONFIG_TEXTSEARCH_BM=m 1164 CONFIG_TEXTSEARCH_FSM=m 1165 + CONFIG_PLIST=y
+53 -12
arch/mips/configs/ip27_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:04 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 CONFIG_SGI_IP27=y 52 # CONFIG_SGI_IP32 is not set ··· 64 # CONFIG_TOSHIBA_JMR3927 is not set 65 # CONFIG_TOSHIBA_RBTX4927 is not set 66 # CONFIG_TOSHIBA_RBTX4938 is not set 67 # CONFIG_SGI_SN_N_MODE is not set 68 - CONFIG_ARCH_DISCONTIGMEM_ENABLE=y 69 - CONFIG_NUMA=y 70 # CONFIG_MAPPED_KERNEL is not set 71 # CONFIG_REPLICATE_KTEXT is not set 72 # CONFIG_REPLICATE_EXHANDLERS is not set 73 CONFIG_RWSEM_GENERIC_SPINLOCK=y 74 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 CONFIG_GENERIC_HWEIGHT=y 76 CONFIG_GENERIC_CALIBRATE_DELAY=y 77 CONFIG_ARC=y 78 CONFIG_DMA_IP27=y 79 CONFIG_CPU_BIG_ENDIAN=y ··· 121 # CONFIG_PAGE_SIZE_16KB is not set 122 # CONFIG_PAGE_SIZE_64KB is not set 123 CONFIG_CPU_HAS_PREFETCH=y 124 - # CONFIG_MIPS_MT is not set 125 CONFIG_CPU_HAS_LLSC=y 126 CONFIG_CPU_HAS_SYNC=y 127 CONFIG_GENERIC_HARDIRQS=y 128 CONFIG_GENERIC_IRQ_PROBE=y 129 CONFIG_CPU_SUPPORTS_HIGHMEM=y 130 CONFIG_NODES_SHIFT=6 131 CONFIG_SELECT_MEMORY_MODEL=y 132 # CONFIG_FLATMEM_MANUAL is not set ··· 144 CONFIG_NEED_MULTIPLE_NODES=y 145 # CONFIG_SPARSEMEM_STATIC is not set 146 CONFIG_SPLIT_PTLOCK_CPUS=4 147 # CONFIG_HZ_48 is not set 148 # CONFIG_HZ_100 is not set 149 # CONFIG_HZ_128 is not set ··· 158 # CONFIG_HZ_1024 is not set 159 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 160 CONFIG_HZ=1000 161 - CONFIG_MIGRATION=y 162 - CONFIG_SMP=y 163 - CONFIG_NR_CPUS=64 164 CONFIG_PREEMPT_NONE=y 165 # CONFIG_PREEMPT_VOLUNTARY is not set 166 # CONFIG_PREEMPT is not set 167 CONFIG_PREEMPT_BKL=y 168 # CONFIG_MIPS_INSANE_LARGE is not set 169 170 # 171 # Code maturity level options ··· 197 CONFIG_BUG=y 198 CONFIG_ELF_CORE=y 199 CONFIG_BASE_FULL=y 200 CONFIG_FUTEX=y 201 CONFIG_EPOLL=y 202 CONFIG_SHMEM=y 203 CONFIG_SLAB=y 204 # CONFIG_TINY_SHMEM is not set 205 CONFIG_BASE_SMALL=0 206 # CONFIG_SLOB is not set ··· 299 # CONFIG_INET_IPCOMP is not set 300 # CONFIG_INET_XFRM_TUNNEL is not set 301 # CONFIG_INET_TUNNEL is not set 302 CONFIG_INET_DIAG=y 303 CONFIG_INET_TCP_DIAG=y 304 # CONFIG_TCP_CONG_ADVANCED is not set ··· 308 # CONFIG_IPV6 is not set 309 # CONFIG_INET6_XFRM_TUNNEL is not set 310 # CONFIG_INET6_TUNNEL is not set 311 # CONFIG_NETFILTER is not set 312 313 # ··· 406 CONFIG_STANDALONE=y 407 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 CONFIG_FW_LOADER=y 409 410 # 411 # Connector - unified userspace <-> kernelspace linker ··· 499 # CONFIG_MEGARAID_LEGACY is not set 500 # CONFIG_MEGARAID_SAS is not set 501 # CONFIG_SCSI_SATA is not set 502 # CONFIG_SCSI_DMX3191D is not set 503 # CONFIG_SCSI_FUTURE_DOMAIN is not set 504 # CONFIG_SCSI_IPS is not set ··· 523 CONFIG_MD_RAID0=y 524 CONFIG_MD_RAID1=y 525 CONFIG_MD_RAID10=m 526 - CONFIG_MD_RAID5=y 527 CONFIG_MD_RAID5_RESHAPE=y 528 - CONFIG_MD_RAID6=m 529 CONFIG_MD_MULTIPATH=m 530 CONFIG_MD_FAULTY=m 531 CONFIG_BLK_DEV_DM=m ··· 580 CONFIG_QSEMI_PHY=m 581 CONFIG_LXT_PHY=m 582 CONFIG_CICADA_PHY=m 583 584 # 585 # Ethernet (10 or 100Mbit) ··· 589 CONFIG_NET_ETHERNET=y 590 CONFIG_MII=y 591 CONFIG_SGI_IOC3_ETH=y 592 - CONFIG_SGI_IOC3_ETH_HW_RX_CSUM=y 593 - CONFIG_SGI_IOC3_ETH_HW_TX_CSUM=y 594 # CONFIG_HAPPYMEAL is not set 595 # CONFIG_SUNGEM is not set 596 # CONFIG_CASSINI is not set ··· 625 # CONFIG_CHELSIO_T1 is not set 626 # CONFIG_IXGB is not set 627 # CONFIG_S2IO is not set 628 629 # 630 # Token Ring devices ··· 716 # Watchdog Cards 717 # 718 # CONFIG_WATCHDOG is not set 719 # CONFIG_RTC is not set 720 CONFIG_SGI_IP27_RTC=y 721 # CONFIG_GEN_RTC is not set ··· 766 # Multimedia devices 767 # 768 # CONFIG_VIDEO_DEV is not set 769 770 # 771 # Digital Video Broadcasting Devices ··· 776 # 777 # Graphics support 778 # 779 # CONFIG_FB is not set 780 781 # ··· 834 # CONFIG_RTC_CLASS is not set 835 836 # 837 # File systems 838 # 839 CONFIG_EXT2_FS=y ··· 873 # CONFIG_MINIX_FS is not set 874 # CONFIG_ROMFS_FS is not set 875 CONFIG_INOTIFY=y 876 # CONFIG_QUOTA is not set 877 CONFIG_QUOTACTL=y 878 CONFIG_DNOTIFY=y ··· 941 # CONFIG_RPCSEC_GSS_SPKM3 is not set 942 # CONFIG_SMB_FS is not set 943 # CONFIG_CIFS is not set 944 # CONFIG_NCP_FS is not set 945 # CONFIG_CODA_FS is not set 946 # CONFIG_AFS_FS is not set ··· 983 # 984 # CONFIG_PRINTK_TIME is not set 985 # CONFIG_MAGIC_SYSRQ is not set 986 # CONFIG_DEBUG_KERNEL is not set 987 CONFIG_LOG_BUF_SHIFT=15 988 # CONFIG_DEBUG_FS is not set ··· 1039 CONFIG_LIBCRC32C=m 1040 CONFIG_ZLIB_INFLATE=m 1041 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:10 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 CONFIG_SGI_IP27=y 51 # CONFIG_SGI_IP32 is not set ··· 61 # CONFIG_TOSHIBA_JMR3927 is not set 62 # CONFIG_TOSHIBA_RBTX4927 is not set 63 # CONFIG_TOSHIBA_RBTX4938 is not set 64 + CONFIG_SGI_SN_M_MODE=y 65 # CONFIG_SGI_SN_N_MODE is not set 66 # CONFIG_MAPPED_KERNEL is not set 67 # CONFIG_REPLICATE_KTEXT is not set 68 # CONFIG_REPLICATE_EXHANDLERS is not set 69 + CONFIG_EARLY_PRINTK=y 70 CONFIG_RWSEM_GENERIC_SPINLOCK=y 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 72 CONFIG_GENERIC_HWEIGHT=y 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 75 CONFIG_ARC=y 76 CONFIG_DMA_IP27=y 77 CONFIG_CPU_BIG_ENDIAN=y ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 124 CONFIG_CPU_HAS_LLSC=y 125 CONFIG_CPU_HAS_SYNC=y 126 CONFIG_GENERIC_HARDIRQS=y 127 CONFIG_GENERIC_IRQ_PROBE=y 128 + CONFIG_IRQ_PER_CPU=y 129 CONFIG_CPU_SUPPORTS_HIGHMEM=y 130 + CONFIG_ARCH_DISCONTIGMEM_ENABLE=y 131 + CONFIG_NUMA=y 132 + CONFIG_SYS_SUPPORTS_NUMA=y 133 CONFIG_NODES_SHIFT=6 134 CONFIG_SELECT_MEMORY_MODEL=y 135 # CONFIG_FLATMEM_MANUAL is not set ··· 133 CONFIG_NEED_MULTIPLE_NODES=y 134 # CONFIG_SPARSEMEM_STATIC is not set 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + CONFIG_MIGRATION=y 137 + CONFIG_RESOURCES_64BIT=y 138 + CONFIG_SMP=y 139 + CONFIG_SYS_SUPPORTS_SMP=y 140 + CONFIG_NR_CPUS=64 141 # CONFIG_HZ_48 is not set 142 # CONFIG_HZ_100 is not set 143 # CONFIG_HZ_128 is not set ··· 142 # CONFIG_HZ_1024 is not set 143 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 144 CONFIG_HZ=1000 145 CONFIG_PREEMPT_NONE=y 146 # CONFIG_PREEMPT_VOLUNTARY is not set 147 # CONFIG_PREEMPT is not set 148 CONFIG_PREEMPT_BKL=y 149 # CONFIG_MIPS_INSANE_LARGE is not set 150 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 152 # 153 # Code maturity level options ··· 183 CONFIG_BUG=y 184 CONFIG_ELF_CORE=y 185 CONFIG_BASE_FULL=y 186 + CONFIG_RT_MUTEXES=y 187 CONFIG_FUTEX=y 188 CONFIG_EPOLL=y 189 CONFIG_SHMEM=y 190 CONFIG_SLAB=y 191 + CONFIG_VM_EVENT_COUNTERS=y 192 # CONFIG_TINY_SHMEM is not set 193 CONFIG_BASE_SMALL=0 194 # CONFIG_SLOB is not set ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 290 # CONFIG_IPV6 is not set 291 # CONFIG_INET6_XFRM_TUNNEL is not set 292 # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 294 # CONFIG_NETFILTER is not set 295 296 # ··· 387 CONFIG_STANDALONE=y 388 CONFIG_PREVENT_FIRMWARE_BUILD=y 389 CONFIG_FW_LOADER=y 390 + # CONFIG_SYS_HYPERVISOR is not set 391 392 # 393 # Connector - unified userspace <-> kernelspace linker ··· 479 # CONFIG_MEGARAID_LEGACY is not set 480 # CONFIG_MEGARAID_SAS is not set 481 # CONFIG_SCSI_SATA is not set 482 + # CONFIG_SCSI_HPTIOP is not set 483 # CONFIG_SCSI_DMX3191D is not set 484 # CONFIG_SCSI_FUTURE_DOMAIN is not set 485 # CONFIG_SCSI_IPS is not set ··· 502 CONFIG_MD_RAID0=y 503 CONFIG_MD_RAID1=y 504 CONFIG_MD_RAID10=m 505 + CONFIG_MD_RAID456=m 506 CONFIG_MD_RAID5_RESHAPE=y 507 CONFIG_MD_MULTIPATH=m 508 CONFIG_MD_FAULTY=m 509 CONFIG_BLK_DEV_DM=m ··· 560 CONFIG_QSEMI_PHY=m 561 CONFIG_LXT_PHY=m 562 CONFIG_CICADA_PHY=m 563 + CONFIG_VITESSE_PHY=m 564 + CONFIG_SMSC_PHY=m 565 566 # 567 # Ethernet (10 or 100Mbit) ··· 567 CONFIG_NET_ETHERNET=y 568 CONFIG_MII=y 569 CONFIG_SGI_IOC3_ETH=y 570 # CONFIG_HAPPYMEAL is not set 571 # CONFIG_SUNGEM is not set 572 # CONFIG_CASSINI is not set ··· 605 # CONFIG_CHELSIO_T1 is not set 606 # CONFIG_IXGB is not set 607 # CONFIG_S2IO is not set 608 + # CONFIG_MYRI10GE is not set 609 610 # 611 # Token Ring devices ··· 695 # Watchdog Cards 696 # 697 # CONFIG_WATCHDOG is not set 698 + # CONFIG_HW_RANDOM is not set 699 # CONFIG_RTC is not set 700 CONFIG_SGI_IP27_RTC=y 701 # CONFIG_GEN_RTC is not set ··· 744 # Multimedia devices 745 # 746 # CONFIG_VIDEO_DEV is not set 747 + CONFIG_VIDEO_V4L2=y 748 749 # 750 # Digital Video Broadcasting Devices ··· 753 # 754 # Graphics support 755 # 756 + # CONFIG_FIRMWARE_EDID is not set 757 # CONFIG_FB is not set 758 759 # ··· 810 # CONFIG_RTC_CLASS is not set 811 812 # 813 + # DMA Engine support 814 + # 815 + # CONFIG_DMA_ENGINE is not set 816 + 817 + # 818 + # DMA Clients 819 + # 820 + 821 + # 822 + # DMA Devices 823 + # 824 + 825 + # 826 # File systems 827 # 828 CONFIG_EXT2_FS=y ··· 836 # CONFIG_MINIX_FS is not set 837 # CONFIG_ROMFS_FS is not set 838 CONFIG_INOTIFY=y 839 + CONFIG_INOTIFY_USER=y 840 # CONFIG_QUOTA is not set 841 CONFIG_QUOTACTL=y 842 CONFIG_DNOTIFY=y ··· 903 # CONFIG_RPCSEC_GSS_SPKM3 is not set 904 # CONFIG_SMB_FS is not set 905 # CONFIG_CIFS is not set 906 + # CONFIG_CIFS_DEBUG2 is not set 907 # CONFIG_NCP_FS is not set 908 # CONFIG_CODA_FS is not set 909 # CONFIG_AFS_FS is not set ··· 944 # 945 # CONFIG_PRINTK_TIME is not set 946 # CONFIG_MAGIC_SYSRQ is not set 947 + # CONFIG_UNUSED_SYMBOLS is not set 948 # CONFIG_DEBUG_KERNEL is not set 949 CONFIG_LOG_BUF_SHIFT=15 950 # CONFIG_DEBUG_FS is not set ··· 999 CONFIG_LIBCRC32C=m 1000 CONFIG_ZLIB_INFLATE=m 1001 CONFIG_ZLIB_DEFLATE=m 1002 + CONFIG_PLIST=y
+43 -4
arch/mips/configs/ip32_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:05 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 CONFIG_SGI_IP32=y ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_ARC=y 72 CONFIG_DMA_IP32=y 73 CONFIG_DMA_NONCOHERENT=y ··· 124 CONFIG_BOARD_SCACHE=y 125 CONFIG_R5000_CPU_SCACHE=y 126 CONFIG_RM7000_CPU_SCACHE=y 127 - # CONFIG_MIPS_MT is not set 128 CONFIG_CPU_HAS_LLSC=y 129 CONFIG_CPU_HAS_SYNC=y 130 CONFIG_GENERIC_HARDIRQS=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 # CONFIG_PREEMPT_NONE is not set 155 CONFIG_PREEMPT_VOLUNTARY=y 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 281 # CONFIG_INET_IPCOMP is not set 282 # CONFIG_INET_XFRM_TUNNEL is not set 283 # CONFIG_INET_TUNNEL is not set 284 CONFIG_INET_DIAG=y 285 CONFIG_INET_TCP_DIAG=y 286 # CONFIG_TCP_CONG_ADVANCED is not set ··· 290 # CONFIG_IPV6 is not set 291 # CONFIG_INET6_XFRM_TUNNEL is not set 292 # CONFIG_INET6_TUNNEL is not set 293 # CONFIG_NETFILTER is not set 294 295 # ··· 350 CONFIG_STANDALONE=y 351 CONFIG_PREVENT_FIRMWARE_BUILD=y 352 CONFIG_FW_LOADER=y 353 354 # 355 # Connector - unified userspace <-> kernelspace linker ··· 449 # CONFIG_MEGARAID_LEGACY is not set 450 # CONFIG_MEGARAID_SAS is not set 451 # CONFIG_SCSI_SATA is not set 452 # CONFIG_SCSI_DMX3191D is not set 453 # CONFIG_SCSI_FUTURE_DOMAIN is not set 454 # CONFIG_SCSI_IPS is not set ··· 514 CONFIG_QSEMI_PHY=y 515 CONFIG_LXT_PHY=y 516 CONFIG_CICADA_PHY=y 517 518 # 519 # Ethernet (10 or 100Mbit) ··· 559 # CONFIG_CHELSIO_T1 is not set 560 # CONFIG_IXGB is not set 561 # CONFIG_S2IO is not set 562 563 # 564 # Token Ring devices ··· 639 CONFIG_VT=y 640 CONFIG_VT_CONSOLE=y 641 CONFIG_HW_CONSOLE=y 642 # CONFIG_SERIAL_NONSTANDARD is not set 643 644 # ··· 671 # Watchdog Cards 672 # 673 # CONFIG_WATCHDOG is not set 674 # CONFIG_RTC is not set 675 # CONFIG_GEN_RTC is not set 676 # CONFIG_DTLK is not set ··· 720 # Multimedia devices 721 # 722 # CONFIG_VIDEO_DEV is not set 723 724 # 725 # Digital Video Broadcasting Devices ··· 730 # 731 # Graphics support 732 # 733 # CONFIG_FB is not set 734 735 # ··· 794 # CONFIG_RTC_CLASS is not set 795 796 # 797 # File systems 798 # 799 CONFIG_EXT2_FS=y ··· 821 # CONFIG_MINIX_FS is not set 822 # CONFIG_ROMFS_FS is not set 823 CONFIG_INOTIFY=y 824 # CONFIG_QUOTA is not set 825 CONFIG_DNOTIFY=y 826 # CONFIG_AUTOFS_FS is not set ··· 887 # CONFIG_RPCSEC_GSS_SPKM3 is not set 888 # CONFIG_SMB_FS is not set 889 # CONFIG_CIFS is not set 890 # CONFIG_NCP_FS is not set 891 # CONFIG_CODA_FS is not set 892 # CONFIG_AFS_FS is not set ··· 925 # 926 # CONFIG_PRINTK_TIME is not set 927 # CONFIG_MAGIC_SYSRQ is not set 928 # CONFIG_DEBUG_KERNEL is not set 929 CONFIG_LOG_BUF_SHIFT=14 930 # CONFIG_DEBUG_FS is not set ··· 967 CONFIG_CRYPTO_DEFLATE=y 968 CONFIG_CRYPTO_MICHAEL_MIC=y 969 CONFIG_CRYPTO_CRC32C=y 970 - # CONFIG_CRYPTO_TEST is not set 971 972 # 973 # Hardware crypto devices ··· 981 CONFIG_LIBCRC32C=y 982 CONFIG_ZLIB_INFLATE=y 983 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:11 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 CONFIG_SGI_IP32=y ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_ARC=y 70 CONFIG_DMA_IP32=y 71 CONFIG_DMA_NONCOHERENT=y ··· 120 CONFIG_BOARD_SCACHE=y 121 CONFIG_R5000_CPU_SCACHE=y 122 CONFIG_RM7000_CPU_SCACHE=y 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y 129 CONFIG_GENERIC_HARDIRQS=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + CONFIG_RESOURCES_64BIT=y 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 146 # CONFIG_PREEMPT_NONE is not set 147 CONFIG_PREEMPT_VOLUNTARY=y 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set ··· 270 # CONFIG_INET_IPCOMP is not set 271 # CONFIG_INET_XFRM_TUNNEL is not set 272 # CONFIG_INET_TUNNEL is not set 273 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 274 + CONFIG_INET_XFRM_MODE_TUNNEL=y 275 CONFIG_INET_DIAG=y 276 CONFIG_INET_TCP_DIAG=y 277 # CONFIG_TCP_CONG_ADVANCED is not set ··· 277 # CONFIG_IPV6 is not set 278 # CONFIG_INET6_XFRM_TUNNEL is not set 279 # CONFIG_INET6_TUNNEL is not set 280 + CONFIG_NETWORK_SECMARK=y 281 # CONFIG_NETFILTER is not set 282 283 # ··· 336 CONFIG_STANDALONE=y 337 CONFIG_PREVENT_FIRMWARE_BUILD=y 338 CONFIG_FW_LOADER=y 339 + # CONFIG_SYS_HYPERVISOR is not set 340 341 # 342 # Connector - unified userspace <-> kernelspace linker ··· 434 # CONFIG_MEGARAID_LEGACY is not set 435 # CONFIG_MEGARAID_SAS is not set 436 # CONFIG_SCSI_SATA is not set 437 + # CONFIG_SCSI_HPTIOP is not set 438 # CONFIG_SCSI_DMX3191D is not set 439 # CONFIG_SCSI_FUTURE_DOMAIN is not set 440 # CONFIG_SCSI_IPS is not set ··· 498 CONFIG_QSEMI_PHY=y 499 CONFIG_LXT_PHY=y 500 CONFIG_CICADA_PHY=y 501 + CONFIG_VITESSE_PHY=y 502 + CONFIG_SMSC_PHY=y 503 504 # 505 # Ethernet (10 or 100Mbit) ··· 541 # CONFIG_CHELSIO_T1 is not set 542 # CONFIG_IXGB is not set 543 # CONFIG_S2IO is not set 544 + # CONFIG_MYRI10GE is not set 545 546 # 547 # Token Ring devices ··· 620 CONFIG_VT=y 621 CONFIG_VT_CONSOLE=y 622 CONFIG_HW_CONSOLE=y 623 + CONFIG_VT_HW_CONSOLE_BINDING=y 624 # CONFIG_SERIAL_NONSTANDARD is not set 625 626 # ··· 651 # Watchdog Cards 652 # 653 # CONFIG_WATCHDOG is not set 654 + # CONFIG_HW_RANDOM is not set 655 # CONFIG_RTC is not set 656 # CONFIG_GEN_RTC is not set 657 # CONFIG_DTLK is not set ··· 699 # Multimedia devices 700 # 701 # CONFIG_VIDEO_DEV is not set 702 + CONFIG_VIDEO_V4L2=y 703 704 # 705 # Digital Video Broadcasting Devices ··· 708 # 709 # Graphics support 710 # 711 + # CONFIG_FIRMWARE_EDID is not set 712 # CONFIG_FB is not set 713 714 # ··· 771 # CONFIG_RTC_CLASS is not set 772 773 # 774 + # DMA Engine support 775 + # 776 + # CONFIG_DMA_ENGINE is not set 777 + 778 + # 779 + # DMA Clients 780 + # 781 + 782 + # 783 + # DMA Devices 784 + # 785 + 786 + # 787 # File systems 788 # 789 CONFIG_EXT2_FS=y ··· 785 # CONFIG_MINIX_FS is not set 786 # CONFIG_ROMFS_FS is not set 787 CONFIG_INOTIFY=y 788 + CONFIG_INOTIFY_USER=y 789 # CONFIG_QUOTA is not set 790 CONFIG_DNOTIFY=y 791 # CONFIG_AUTOFS_FS is not set ··· 850 # CONFIG_RPCSEC_GSS_SPKM3 is not set 851 # CONFIG_SMB_FS is not set 852 # CONFIG_CIFS is not set 853 + # CONFIG_CIFS_DEBUG2 is not set 854 # CONFIG_NCP_FS is not set 855 # CONFIG_CODA_FS is not set 856 # CONFIG_AFS_FS is not set ··· 887 # 888 # CONFIG_PRINTK_TIME is not set 889 # CONFIG_MAGIC_SYSRQ is not set 890 + # CONFIG_UNUSED_SYMBOLS is not set 891 # CONFIG_DEBUG_KERNEL is not set 892 CONFIG_LOG_BUF_SHIFT=14 893 # CONFIG_DEBUG_FS is not set ··· 928 CONFIG_CRYPTO_DEFLATE=y 929 CONFIG_CRYPTO_MICHAEL_MIC=y 930 CONFIG_CRYPTO_CRC32C=y 931 932 # 933 # Hardware crypto devices ··· 943 CONFIG_LIBCRC32C=y 944 CONFIG_ZLIB_INFLATE=y 945 CONFIG_ZLIB_DEFLATE=y 946 + CONFIG_PLIST=y
+41 -4
arch/mips/configs/it8172_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:05 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 # CONFIG_CPU_BIG_ENDIAN is not set ··· 118 # CONFIG_PAGE_SIZE_8KB is not set 119 # CONFIG_PAGE_SIZE_16KB is not set 120 # CONFIG_PAGE_SIZE_64KB is not set 121 - # CONFIG_MIPS_MT is not set 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y 124 CONFIG_GENERIC_HARDIRQS=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 193 # 194 # Loadable module support ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 # CONFIG_NETFILTER is not set 289 290 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 # CONFIG_FW_LOADER is not set 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 527 CONFIG_QSEMI_PHY=m 528 CONFIG_LXT_PHY=m 529 CONFIG_CICADA_PHY=m 530 531 # 532 # Ethernet (10 or 100Mbit) ··· 617 CONFIG_VT=y 618 CONFIG_VT_CONSOLE=y 619 CONFIG_HW_CONSOLE=y 620 # CONFIG_SERIAL_NONSTANDARD is not set 621 # CONFIG_QTRONIX_KEYBOARD is not set 622 # CONFIG_IT8172_SCR0 is not set ··· 651 # Watchdog Cards 652 # 653 # CONFIG_WATCHDOG is not set 654 # CONFIG_RTC is not set 655 # CONFIG_GEN_RTC is not set 656 # CONFIG_DTLK is not set ··· 698 # Multimedia devices 699 # 700 # CONFIG_VIDEO_DEV is not set 701 702 # 703 # Digital Video Broadcasting Devices ··· 708 # 709 # Graphics support 710 # 711 # CONFIG_FB is not set 712 713 # ··· 783 # CONFIG_RTC_CLASS is not set 784 785 # 786 # File systems 787 # 788 CONFIG_EXT2_FS=y ··· 810 # CONFIG_MINIX_FS is not set 811 # CONFIG_ROMFS_FS is not set 812 CONFIG_INOTIFY=y 813 # CONFIG_QUOTA is not set 814 CONFIG_DNOTIFY=y 815 # CONFIG_AUTOFS_FS is not set ··· 876 # CONFIG_RPCSEC_GSS_SPKM3 is not set 877 # CONFIG_SMB_FS is not set 878 # CONFIG_CIFS is not set 879 # CONFIG_NCP_FS is not set 880 # CONFIG_CODA_FS is not set 881 # CONFIG_AFS_FS is not set ··· 903 # 904 # CONFIG_PRINTK_TIME is not set 905 # CONFIG_MAGIC_SYSRQ is not set 906 # CONFIG_DEBUG_KERNEL is not set 907 CONFIG_LOG_BUF_SHIFT=14 908 # CONFIG_DEBUG_FS is not set ··· 959 CONFIG_LIBCRC32C=m 960 CONFIG_ZLIB_INFLATE=m 961 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:11 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 # CONFIG_CPU_BIG_ENDIAN is not set ··· 114 # CONFIG_PAGE_SIZE_8KB is not set 115 # CONFIG_PAGE_SIZE_16KB is not set 116 # CONFIG_PAGE_SIZE_64KB is not set 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set 184 185 # 186 # Loadable module support ··· 266 # CONFIG_INET_IPCOMP is not set 267 # CONFIG_INET_XFRM_TUNNEL is not set 268 # CONFIG_INET_TUNNEL is not set 269 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 270 + CONFIG_INET_XFRM_MODE_TUNNEL=m 271 CONFIG_INET_DIAG=y 272 CONFIG_INET_TCP_DIAG=y 273 # CONFIG_TCP_CONG_ADVANCED is not set ··· 273 # CONFIG_IPV6 is not set 274 # CONFIG_INET6_XFRM_TUNNEL is not set 275 # CONFIG_INET6_TUNNEL is not set 276 + CONFIG_NETWORK_SECMARK=y 277 # CONFIG_NETFILTER is not set 278 279 # ··· 332 CONFIG_STANDALONE=y 333 CONFIG_PREVENT_FIRMWARE_BUILD=y 334 # CONFIG_FW_LOADER is not set 335 + # CONFIG_SYS_HYPERVISOR is not set 336 337 # 338 # Connector - unified userspace <-> kernelspace linker ··· 513 CONFIG_QSEMI_PHY=m 514 CONFIG_LXT_PHY=m 515 CONFIG_CICADA_PHY=m 516 + CONFIG_VITESSE_PHY=m 517 + CONFIG_SMSC_PHY=m 518 519 # 520 # Ethernet (10 or 100Mbit) ··· 601 CONFIG_VT=y 602 CONFIG_VT_CONSOLE=y 603 CONFIG_HW_CONSOLE=y 604 + CONFIG_VT_HW_CONSOLE_BINDING=y 605 # CONFIG_SERIAL_NONSTANDARD is not set 606 # CONFIG_QTRONIX_KEYBOARD is not set 607 # CONFIG_IT8172_SCR0 is not set ··· 634 # Watchdog Cards 635 # 636 # CONFIG_WATCHDOG is not set 637 + # CONFIG_HW_RANDOM is not set 638 # CONFIG_RTC is not set 639 # CONFIG_GEN_RTC is not set 640 # CONFIG_DTLK is not set ··· 680 # Multimedia devices 681 # 682 # CONFIG_VIDEO_DEV is not set 683 + CONFIG_VIDEO_V4L2=y 684 685 # 686 # Digital Video Broadcasting Devices ··· 689 # 690 # Graphics support 691 # 692 + # CONFIG_FIRMWARE_EDID is not set 693 # CONFIG_FB is not set 694 695 # ··· 763 # CONFIG_RTC_CLASS is not set 764 765 # 766 + # DMA Engine support 767 + # 768 + # CONFIG_DMA_ENGINE is not set 769 + 770 + # 771 + # DMA Clients 772 + # 773 + 774 + # 775 + # DMA Devices 776 + # 777 + 778 + # 779 # File systems 780 # 781 CONFIG_EXT2_FS=y ··· 777 # CONFIG_MINIX_FS is not set 778 # CONFIG_ROMFS_FS is not set 779 CONFIG_INOTIFY=y 780 + CONFIG_INOTIFY_USER=y 781 # CONFIG_QUOTA is not set 782 CONFIG_DNOTIFY=y 783 # CONFIG_AUTOFS_FS is not set ··· 842 # CONFIG_RPCSEC_GSS_SPKM3 is not set 843 # CONFIG_SMB_FS is not set 844 # CONFIG_CIFS is not set 845 + # CONFIG_CIFS_DEBUG2 is not set 846 # CONFIG_NCP_FS is not set 847 # CONFIG_CODA_FS is not set 848 # CONFIG_AFS_FS is not set ··· 868 # 869 # CONFIG_PRINTK_TIME is not set 870 # CONFIG_MAGIC_SYSRQ is not set 871 + # CONFIG_UNUSED_SYMBOLS is not set 872 # CONFIG_DEBUG_KERNEL is not set 873 CONFIG_LOG_BUF_SHIFT=14 874 # CONFIG_DEBUG_FS is not set ··· 923 CONFIG_LIBCRC32C=m 924 CONFIG_ZLIB_INFLATE=m 925 CONFIG_ZLIB_DEFLATE=m 926 + CONFIG_PLIST=y
+42 -3
arch/mips/configs/ivr_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:06 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 115 # CONFIG_PAGE_SIZE_8KB is not set 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 - # CONFIG_MIPS_MT is not set 119 CONFIG_CPU_HAS_LLSC=y 120 CONFIG_CPU_HAS_SYNC=y 121 CONFIG_GENERIC_HARDIRQS=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 # CONFIG_HZ_48 is not set 136 # CONFIG_HZ_100 is not set 137 # CONFIG_HZ_128 is not set ··· 145 CONFIG_PREEMPT_NONE=y 146 # CONFIG_PREEMPT_VOLUNTARY is not set 147 # CONFIG_PREEMPT is not set 148 149 # 150 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 CONFIG_FUTEX=y 182 CONFIG_EPOLL=y 183 CONFIG_SHMEM=y 184 CONFIG_SLAB=y 185 # CONFIG_TINY_SHMEM is not set 186 CONFIG_BASE_SMALL=0 187 # CONFIG_SLOB is not set ··· 274 # CONFIG_INET_IPCOMP is not set 275 # CONFIG_INET_XFRM_TUNNEL is not set 276 # CONFIG_INET_TUNNEL is not set 277 CONFIG_INET_DIAG=y 278 CONFIG_INET_TCP_DIAG=y 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 283 # CONFIG_IPV6 is not set 284 # CONFIG_INET6_XFRM_TUNNEL is not set 285 # CONFIG_INET6_TUNNEL is not set 286 # CONFIG_NETFILTER is not set 287 288 # ··· 343 CONFIG_STANDALONE=y 344 CONFIG_PREVENT_FIRMWARE_BUILD=y 345 CONFIG_FW_LOADER=m 346 347 # 348 # Connector - unified userspace <-> kernelspace linker ··· 462 CONFIG_QSEMI_PHY=m 463 CONFIG_LXT_PHY=m 464 CONFIG_CICADA_PHY=m 465 466 # 467 # Ethernet (10 or 100Mbit) ··· 506 # CONFIG_CHELSIO_T1 is not set 507 # CONFIG_IXGB is not set 508 # CONFIG_S2IO is not set 509 510 # 511 # Token Ring devices ··· 584 CONFIG_VT=y 585 CONFIG_VT_CONSOLE=y 586 CONFIG_HW_CONSOLE=y 587 # CONFIG_SERIAL_NONSTANDARD is not set 588 CONFIG_QTRONIX_KEYBOARD=y 589 CONFIG_IT8172_SCR0=y ··· 619 # Watchdog Cards 620 # 621 # CONFIG_WATCHDOG is not set 622 CONFIG_RTC=y 623 # CONFIG_DTLK is not set 624 # CONFIG_R3964 is not set ··· 667 # Multimedia devices 668 # 669 # CONFIG_VIDEO_DEV is not set 670 671 # 672 # Digital Video Broadcasting Devices ··· 677 # 678 # Graphics support 679 # 680 # CONFIG_FB is not set 681 682 # ··· 741 # CONFIG_RTC_CLASS is not set 742 743 # 744 # File systems 745 # 746 CONFIG_EXT2_FS=y ··· 768 # CONFIG_MINIX_FS is not set 769 # CONFIG_ROMFS_FS is not set 770 CONFIG_INOTIFY=y 771 # CONFIG_QUOTA is not set 772 CONFIG_DNOTIFY=y 773 # CONFIG_AUTOFS_FS is not set ··· 832 # CONFIG_RPCSEC_GSS_SPKM3 is not set 833 # CONFIG_SMB_FS is not set 834 # CONFIG_CIFS is not set 835 # CONFIG_NCP_FS is not set 836 # CONFIG_CODA_FS is not set 837 # CONFIG_AFS_FS is not set ··· 859 # 860 # CONFIG_PRINTK_TIME is not set 861 # CONFIG_MAGIC_SYSRQ is not set 862 # CONFIG_DEBUG_KERNEL is not set 863 CONFIG_LOG_BUF_SHIFT=14 864 # CONFIG_DEBUG_FS is not set ··· 915 CONFIG_LIBCRC32C=m 916 CONFIG_ZLIB_INFLATE=m 917 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 111 # CONFIG_PAGE_SIZE_8KB is not set 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 + CONFIG_MIPS_MT_DISABLED=y 115 + # CONFIG_MIPS_MT_SMTC is not set 116 + # CONFIG_MIPS_MT_SMP is not set 117 + # CONFIG_MIPS_VPE_LOADER is not set 118 CONFIG_CPU_HAS_LLSC=y 119 CONFIG_CPU_HAS_SYNC=y 120 CONFIG_GENERIC_HARDIRQS=y ··· 125 CONFIG_FLAT_NODE_MEM_MAP=y 126 # CONFIG_SPARSEMEM_STATIC is not set 127 CONFIG_SPLIT_PTLOCK_CPUS=4 128 + # CONFIG_RESOURCES_64BIT is not set 129 # CONFIG_HZ_48 is not set 130 # CONFIG_HZ_100 is not set 131 # CONFIG_HZ_128 is not set ··· 137 CONFIG_PREEMPT_NONE=y 138 # CONFIG_PREEMPT_VOLUNTARY is not set 139 # CONFIG_PREEMPT is not set 140 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 141 142 # 143 # Code maturity level options ··· 169 CONFIG_BUG=y 170 CONFIG_ELF_CORE=y 171 CONFIG_BASE_FULL=y 172 + CONFIG_RT_MUTEXES=y 173 CONFIG_FUTEX=y 174 CONFIG_EPOLL=y 175 CONFIG_SHMEM=y 176 CONFIG_SLAB=y 177 + CONFIG_VM_EVENT_COUNTERS=y 178 # CONFIG_TINY_SHMEM is not set 179 CONFIG_BASE_SMALL=0 180 # CONFIG_SLOB is not set ··· 263 # CONFIG_INET_IPCOMP is not set 264 # CONFIG_INET_XFRM_TUNNEL is not set 265 # CONFIG_INET_TUNNEL is not set 266 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 267 + CONFIG_INET_XFRM_MODE_TUNNEL=m 268 CONFIG_INET_DIAG=y 269 CONFIG_INET_TCP_DIAG=y 270 # CONFIG_TCP_CONG_ADVANCED is not set ··· 270 # CONFIG_IPV6 is not set 271 # CONFIG_INET6_XFRM_TUNNEL is not set 272 # CONFIG_INET6_TUNNEL is not set 273 + CONFIG_NETWORK_SECMARK=y 274 # CONFIG_NETFILTER is not set 275 276 # ··· 329 CONFIG_STANDALONE=y 330 CONFIG_PREVENT_FIRMWARE_BUILD=y 331 CONFIG_FW_LOADER=m 332 + # CONFIG_SYS_HYPERVISOR is not set 333 334 # 335 # Connector - unified userspace <-> kernelspace linker ··· 447 CONFIG_QSEMI_PHY=m 448 CONFIG_LXT_PHY=m 449 CONFIG_CICADA_PHY=m 450 + CONFIG_VITESSE_PHY=m 451 + CONFIG_SMSC_PHY=m 452 453 # 454 # Ethernet (10 or 100Mbit) ··· 489 # CONFIG_CHELSIO_T1 is not set 490 # CONFIG_IXGB is not set 491 # CONFIG_S2IO is not set 492 + # CONFIG_MYRI10GE is not set 493 494 # 495 # Token Ring devices ··· 566 CONFIG_VT=y 567 CONFIG_VT_CONSOLE=y 568 CONFIG_HW_CONSOLE=y 569 + CONFIG_VT_HW_CONSOLE_BINDING=y 570 # CONFIG_SERIAL_NONSTANDARD is not set 571 CONFIG_QTRONIX_KEYBOARD=y 572 CONFIG_IT8172_SCR0=y ··· 600 # Watchdog Cards 601 # 602 # CONFIG_WATCHDOG is not set 603 + # CONFIG_HW_RANDOM is not set 604 CONFIG_RTC=y 605 # CONFIG_DTLK is not set 606 # CONFIG_R3964 is not set ··· 647 # Multimedia devices 648 # 649 # CONFIG_VIDEO_DEV is not set 650 + CONFIG_VIDEO_V4L2=y 651 652 # 653 # Digital Video Broadcasting Devices ··· 656 # 657 # Graphics support 658 # 659 + # CONFIG_FIRMWARE_EDID is not set 660 # CONFIG_FB is not set 661 662 # ··· 719 # CONFIG_RTC_CLASS is not set 720 721 # 722 + # DMA Engine support 723 + # 724 + # CONFIG_DMA_ENGINE is not set 725 + 726 + # 727 + # DMA Clients 728 + # 729 + 730 + # 731 + # DMA Devices 732 + # 733 + 734 + # 735 # File systems 736 # 737 CONFIG_EXT2_FS=y ··· 733 # CONFIG_MINIX_FS is not set 734 # CONFIG_ROMFS_FS is not set 735 CONFIG_INOTIFY=y 736 + CONFIG_INOTIFY_USER=y 737 # CONFIG_QUOTA is not set 738 CONFIG_DNOTIFY=y 739 # CONFIG_AUTOFS_FS is not set ··· 796 # CONFIG_RPCSEC_GSS_SPKM3 is not set 797 # CONFIG_SMB_FS is not set 798 # CONFIG_CIFS is not set 799 + # CONFIG_CIFS_DEBUG2 is not set 800 # CONFIG_NCP_FS is not set 801 # CONFIG_CODA_FS is not set 802 # CONFIG_AFS_FS is not set ··· 822 # 823 # CONFIG_PRINTK_TIME is not set 824 # CONFIG_MAGIC_SYSRQ is not set 825 + # CONFIG_UNUSED_SYMBOLS is not set 826 # CONFIG_DEBUG_KERNEL is not set 827 CONFIG_LOG_BUF_SHIFT=14 828 # CONFIG_DEBUG_FS is not set ··· 877 CONFIG_LIBCRC32C=m 878 CONFIG_ZLIB_INFLATE=m 879 CONFIG_ZLIB_DEFLATE=m 880 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/jaguar-atx_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:06 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 CONFIG_MOMENCO_JAGUAR_ATX=y 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y 74 CONFIG_LIMITED_DMA=y ··· 124 CONFIG_BOARD_SCACHE=y 125 CONFIG_RM7000_CPU_SCACHE=y 126 CONFIG_CPU_HAS_PREFETCH=y 127 - # CONFIG_MIPS_MT is not set 128 # CONFIG_64BIT_PHYS_ADDR is not set 129 CONFIG_CPU_HAS_LLSC=y 130 CONFIG_CPU_HAS_SYNC=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 151 # CONFIG_HZ_1024 is not set 152 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 153 CONFIG_HZ=1000 154 - # CONFIG_SMP is not set 155 CONFIG_PREEMPT_NONE=y 156 # CONFIG_PREEMPT_VOLUNTARY is not set 157 # CONFIG_PREEMPT is not set 158 159 # 160 # Code maturity level options ··· 185 CONFIG_BUG=y 186 CONFIG_ELF_CORE=y 187 CONFIG_BASE_FULL=y 188 CONFIG_FUTEX=y 189 CONFIG_EPOLL=y 190 CONFIG_SHMEM=y 191 CONFIG_SLAB=y 192 # CONFIG_TINY_SHMEM is not set 193 CONFIG_BASE_SMALL=0 194 # CONFIG_SLOB is not set ··· 277 # CONFIG_INET_IPCOMP is not set 278 # CONFIG_INET_XFRM_TUNNEL is not set 279 # CONFIG_INET_TUNNEL is not set 280 CONFIG_INET_DIAG=y 281 CONFIG_INET_TCP_DIAG=y 282 # CONFIG_TCP_CONG_ADVANCED is not set ··· 291 CONFIG_INET6_IPCOMP=m 292 CONFIG_INET6_XFRM_TUNNEL=m 293 CONFIG_INET6_TUNNEL=m 294 CONFIG_IPV6_TUNNEL=m 295 # CONFIG_NETFILTER is not set 296 # CONFIG_BRIDGE is not set 297 # CONFIG_VLAN_8021Q is not set ··· 330 CONFIG_STANDALONE=y 331 CONFIG_PREVENT_FIRMWARE_BUILD=y 332 CONFIG_FW_LOADER=m 333 334 # 335 # Connector - unified userspace <-> kernelspace linker ··· 425 CONFIG_QSEMI_PHY=m 426 CONFIG_LXT_PHY=m 427 CONFIG_CICADA_PHY=m 428 429 # 430 # Ethernet (10 or 100Mbit) ··· 448 # CONFIG_PCNET32 is not set 449 # CONFIG_AMD8111_ETH is not set 450 # CONFIG_ADAPTEC_STARFIRE is not set 451 # CONFIG_FORCEDETH is not set 452 # CONFIG_DGRS is not set 453 CONFIG_EEPRO100=y ··· 489 # CONFIG_CHELSIO_T1 is not set 490 # CONFIG_IXGB is not set 491 # CONFIG_S2IO is not set 492 493 # 494 # Token Ring devices ··· 567 # Watchdog Cards 568 # 569 # CONFIG_WATCHDOG is not set 570 # CONFIG_RTC is not set 571 # CONFIG_GEN_RTC is not set 572 # CONFIG_DTLK is not set ··· 614 # Multimedia devices 615 # 616 # CONFIG_VIDEO_DEV is not set 617 618 # 619 # Digital Video Broadcasting Devices ··· 624 # 625 # Graphics support 626 # 627 # CONFIG_FB is not set 628 629 # ··· 681 # 682 683 # 684 # File systems 685 # 686 # CONFIG_EXT2_FS is not set ··· 705 # CONFIG_MINIX_FS is not set 706 # CONFIG_ROMFS_FS is not set 707 CONFIG_INOTIFY=y 708 # CONFIG_QUOTA is not set 709 CONFIG_DNOTIFY=y 710 # CONFIG_AUTOFS_FS is not set ··· 758 CONFIG_SUNRPC=y 759 # CONFIG_SMB_FS is not set 760 # CONFIG_CIFS is not set 761 # CONFIG_NCP_FS is not set 762 # CONFIG_CODA_FS is not set 763 ··· 778 # 779 # CONFIG_PRINTK_TIME is not set 780 # CONFIG_MAGIC_SYSRQ is not set 781 # CONFIG_DEBUG_KERNEL is not set 782 CONFIG_LOG_BUF_SHIFT=14 783 # CONFIG_DEBUG_FS is not set ··· 834 CONFIG_LIBCRC32C=m 835 CONFIG_ZLIB_INFLATE=m 836 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 CONFIG_MOMENCO_JAGUAR_ATX=y 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 CONFIG_LIMITED_DMA=y ··· 120 CONFIG_BOARD_SCACHE=y 121 CONFIG_RM7000_CPU_SCACHE=y 122 CONFIG_CPU_HAS_PREFETCH=y 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 127 # CONFIG_64BIT_PHYS_ADDR is not set 128 CONFIG_CPU_HAS_LLSC=y 129 CONFIG_CPU_HAS_SYNC=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 143 # CONFIG_HZ_1024 is not set 144 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 145 CONFIG_HZ=1000 146 CONFIG_PREEMPT_NONE=y 147 # CONFIG_PREEMPT_VOLUNTARY is not set 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 177 CONFIG_BUG=y 178 CONFIG_ELF_CORE=y 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 181 CONFIG_FUTEX=y 182 CONFIG_EPOLL=y 183 CONFIG_SHMEM=y 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 186 # CONFIG_TINY_SHMEM is not set 187 CONFIG_BASE_SMALL=0 188 # CONFIG_SLOB is not set ··· 267 # CONFIG_INET_IPCOMP is not set 268 # CONFIG_INET_XFRM_TUNNEL is not set 269 # CONFIG_INET_TUNNEL is not set 270 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 271 + CONFIG_INET_XFRM_MODE_TUNNEL=m 272 CONFIG_INET_DIAG=y 273 CONFIG_INET_TCP_DIAG=y 274 # CONFIG_TCP_CONG_ADVANCED is not set ··· 279 CONFIG_INET6_IPCOMP=m 280 CONFIG_INET6_XFRM_TUNNEL=m 281 CONFIG_INET6_TUNNEL=m 282 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 283 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 284 CONFIG_IPV6_TUNNEL=m 285 + CONFIG_NETWORK_SECMARK=y 286 # CONFIG_NETFILTER is not set 287 # CONFIG_BRIDGE is not set 288 # CONFIG_VLAN_8021Q is not set ··· 315 CONFIG_STANDALONE=y 316 CONFIG_PREVENT_FIRMWARE_BUILD=y 317 CONFIG_FW_LOADER=m 318 + # CONFIG_SYS_HYPERVISOR is not set 319 320 # 321 # Connector - unified userspace <-> kernelspace linker ··· 409 CONFIG_QSEMI_PHY=m 410 CONFIG_LXT_PHY=m 411 CONFIG_CICADA_PHY=m 412 + CONFIG_VITESSE_PHY=m 413 + CONFIG_SMSC_PHY=m 414 415 # 416 # Ethernet (10 or 100Mbit) ··· 430 # CONFIG_PCNET32 is not set 431 # CONFIG_AMD8111_ETH is not set 432 # CONFIG_ADAPTEC_STARFIRE is not set 433 + # CONFIG_B44 is not set 434 # CONFIG_FORCEDETH is not set 435 # CONFIG_DGRS is not set 436 CONFIG_EEPRO100=y ··· 470 # CONFIG_CHELSIO_T1 is not set 471 # CONFIG_IXGB is not set 472 # CONFIG_S2IO is not set 473 + # CONFIG_MYRI10GE is not set 474 475 # 476 # Token Ring devices ··· 547 # Watchdog Cards 548 # 549 # CONFIG_WATCHDOG is not set 550 + # CONFIG_HW_RANDOM is not set 551 # CONFIG_RTC is not set 552 # CONFIG_GEN_RTC is not set 553 # CONFIG_DTLK is not set ··· 593 # Multimedia devices 594 # 595 # CONFIG_VIDEO_DEV is not set 596 + CONFIG_VIDEO_V4L2=y 597 598 # 599 # Digital Video Broadcasting Devices ··· 602 # 603 # Graphics support 604 # 605 + # CONFIG_FIRMWARE_EDID is not set 606 # CONFIG_FB is not set 607 608 # ··· 658 # 659 660 # 661 + # DMA Engine support 662 + # 663 + # CONFIG_DMA_ENGINE is not set 664 + 665 + # 666 + # DMA Clients 667 + # 668 + 669 + # 670 + # DMA Devices 671 + # 672 + 673 + # 674 # File systems 675 # 676 # CONFIG_EXT2_FS is not set ··· 669 # CONFIG_MINIX_FS is not set 670 # CONFIG_ROMFS_FS is not set 671 CONFIG_INOTIFY=y 672 + CONFIG_INOTIFY_USER=y 673 # CONFIG_QUOTA is not set 674 CONFIG_DNOTIFY=y 675 # CONFIG_AUTOFS_FS is not set ··· 721 CONFIG_SUNRPC=y 722 # CONFIG_SMB_FS is not set 723 # CONFIG_CIFS is not set 724 + # CONFIG_CIFS_DEBUG2 is not set 725 # CONFIG_NCP_FS is not set 726 # CONFIG_CODA_FS is not set 727 ··· 740 # 741 # CONFIG_PRINTK_TIME is not set 742 # CONFIG_MAGIC_SYSRQ is not set 743 + # CONFIG_UNUSED_SYMBOLS is not set 744 # CONFIG_DEBUG_KERNEL is not set 745 CONFIG_LOG_BUF_SHIFT=14 746 # CONFIG_DEBUG_FS is not set ··· 795 CONFIG_LIBCRC32C=m 796 CONFIG_ZLIB_INFLATE=m 797 CONFIG_ZLIB_DEFLATE=m 798 + CONFIG_PLIST=y
+43 -5
arch/mips/configs/jmr3927_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:07 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 114 # CONFIG_PAGE_SIZE_8KB is not set 115 # CONFIG_PAGE_SIZE_16KB is not set 116 # CONFIG_PAGE_SIZE_64KB is not set 117 - # CONFIG_MIPS_MT is not set 118 CONFIG_CPU_HAS_SYNC=y 119 CONFIG_GENERIC_HARDIRQS=y 120 CONFIG_GENERIC_IRQ_PROBE=y ··· 130 CONFIG_FLAT_NODE_MEM_MAP=y 131 # CONFIG_SPARSEMEM_STATIC is not set 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 # CONFIG_HZ_48 is not set 134 # CONFIG_HZ_100 is not set 135 # CONFIG_HZ_128 is not set ··· 144 # CONFIG_PREEMPT_VOLUNTARY is not set 145 # CONFIG_PREEMPT is not set 146 CONFIG_RTC_DS1742=y 147 148 # 149 # Code maturity level options ··· 176 CONFIG_BUG=y 177 CONFIG_ELF_CORE=y 178 CONFIG_BASE_FULL=y 179 CONFIG_FUTEX=y 180 CONFIG_EPOLL=y 181 CONFIG_SHMEM=y 182 CONFIG_SLAB=y 183 # CONFIG_TINY_SHMEM is not set 184 CONFIG_BASE_SMALL=0 185 # CONFIG_SLOB is not set ··· 267 # CONFIG_INET_IPCOMP is not set 268 # CONFIG_INET_XFRM_TUNNEL is not set 269 # CONFIG_INET_TUNNEL is not set 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 276 # CONFIG_IPV6 is not set 277 # CONFIG_INET6_XFRM_TUNNEL is not set 278 # CONFIG_INET6_TUNNEL is not set 279 # CONFIG_NETFILTER is not set 280 281 # ··· 336 CONFIG_STANDALONE=y 337 CONFIG_PREVENT_FIRMWARE_BUILD=y 338 CONFIG_FW_LOADER=y 339 340 # 341 # Connector - unified userspace <-> kernelspace linker ··· 434 CONFIG_QSEMI_PHY=y 435 CONFIG_LXT_PHY=y 436 CONFIG_CICADA_PHY=y 437 438 # 439 # Ethernet (10 or 100Mbit) ··· 478 # CONFIG_CHELSIO_T1 is not set 479 # CONFIG_IXGB is not set 480 # CONFIG_S2IO is not set 481 482 # 483 # Token Ring devices ··· 556 CONFIG_VT=y 557 CONFIG_VT_CONSOLE=y 558 CONFIG_HW_CONSOLE=y 559 CONFIG_SERIAL_NONSTANDARD=y 560 # CONFIG_COMPUTONE is not set 561 # CONFIG_ROCKETPORT is not set ··· 601 # Watchdog Cards 602 # 603 # CONFIG_WATCHDOG is not set 604 # CONFIG_RTC is not set 605 # CONFIG_GEN_RTC is not set 606 # CONFIG_DTLK is not set ··· 650 # Multimedia devices 651 # 652 # CONFIG_VIDEO_DEV is not set 653 654 # 655 # Digital Video Broadcasting Devices ··· 660 # 661 # Graphics support 662 # 663 CONFIG_FB=y 664 # CONFIG_FB_CFB_FILLRECT is not set 665 # CONFIG_FB_CFB_COPYAREA is not set 666 # CONFIG_FB_CFB_IMAGEBLIT is not set 667 # CONFIG_FB_MACMODES is not set 668 - CONFIG_FB_FIRMWARE_EDID=y 669 # CONFIG_FB_MODE_HELPERS is not set 670 # CONFIG_FB_TILEBLITTING is not set 671 # CONFIG_FB_CIRRUS is not set ··· 759 # CONFIG_RTC_CLASS is not set 760 761 # 762 # File systems 763 # 764 # CONFIG_EXT2_FS is not set ··· 784 # CONFIG_MINIX_FS is not set 785 # CONFIG_ROMFS_FS is not set 786 CONFIG_INOTIFY=y 787 # CONFIG_QUOTA is not set 788 CONFIG_DNOTIFY=y 789 # CONFIG_AUTOFS_FS is not set ··· 848 # CONFIG_RPCSEC_GSS_SPKM3 is not set 849 # CONFIG_SMB_FS is not set 850 # CONFIG_CIFS is not set 851 # CONFIG_NCP_FS is not set 852 # CONFIG_CODA_FS is not set 853 # CONFIG_AFS_FS is not set ··· 875 # 876 # CONFIG_PRINTK_TIME is not set 877 # CONFIG_MAGIC_SYSRQ is not set 878 # CONFIG_DEBUG_KERNEL is not set 879 CONFIG_LOG_BUF_SHIFT=14 880 # CONFIG_DEBUG_FS is not set ··· 917 CONFIG_CRYPTO_DEFLATE=y 918 CONFIG_CRYPTO_MICHAEL_MIC=y 919 CONFIG_CRYPTO_CRC32C=y 920 - # CONFIG_CRYPTO_TEST is not set 921 922 # 923 # Hardware crypto devices ··· 931 CONFIG_LIBCRC32C=y 932 CONFIG_ZLIB_INFLATE=y 933 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 110 # CONFIG_PAGE_SIZE_8KB is not set 111 # CONFIG_PAGE_SIZE_16KB is not set 112 # CONFIG_PAGE_SIZE_64KB is not set 113 + CONFIG_MIPS_MT_DISABLED=y 114 + # CONFIG_MIPS_MT_SMTC is not set 115 + # CONFIG_MIPS_MT_SMP is not set 116 + # CONFIG_MIPS_VPE_LOADER is not set 117 CONFIG_CPU_HAS_SYNC=y 118 CONFIG_GENERIC_HARDIRQS=y 119 CONFIG_GENERIC_IRQ_PROBE=y ··· 123 CONFIG_FLAT_NODE_MEM_MAP=y 124 # CONFIG_SPARSEMEM_STATIC is not set 125 CONFIG_SPLIT_PTLOCK_CPUS=4 126 + # CONFIG_RESOURCES_64BIT is not set 127 # CONFIG_HZ_48 is not set 128 # CONFIG_HZ_100 is not set 129 # CONFIG_HZ_128 is not set ··· 136 # CONFIG_PREEMPT_VOLUNTARY is not set 137 # CONFIG_PREEMPT is not set 138 CONFIG_RTC_DS1742=y 139 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 140 141 # 142 # Code maturity level options ··· 167 CONFIG_BUG=y 168 CONFIG_ELF_CORE=y 169 CONFIG_BASE_FULL=y 170 + CONFIG_RT_MUTEXES=y 171 CONFIG_FUTEX=y 172 CONFIG_EPOLL=y 173 CONFIG_SHMEM=y 174 CONFIG_SLAB=y 175 + CONFIG_VM_EVENT_COUNTERS=y 176 # CONFIG_TINY_SHMEM is not set 177 CONFIG_BASE_SMALL=0 178 # CONFIG_SLOB is not set ··· 256 # CONFIG_INET_IPCOMP is not set 257 # CONFIG_INET_XFRM_TUNNEL is not set 258 # CONFIG_INET_TUNNEL is not set 259 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 260 + CONFIG_INET_XFRM_MODE_TUNNEL=y 261 CONFIG_INET_DIAG=y 262 CONFIG_INET_TCP_DIAG=y 263 # CONFIG_TCP_CONG_ADVANCED is not set ··· 263 # CONFIG_IPV6 is not set 264 # CONFIG_INET6_XFRM_TUNNEL is not set 265 # CONFIG_INET6_TUNNEL is not set 266 + CONFIG_NETWORK_SECMARK=y 267 # CONFIG_NETFILTER is not set 268 269 # ··· 322 CONFIG_STANDALONE=y 323 CONFIG_PREVENT_FIRMWARE_BUILD=y 324 CONFIG_FW_LOADER=y 325 + # CONFIG_SYS_HYPERVISOR is not set 326 327 # 328 # Connector - unified userspace <-> kernelspace linker ··· 419 CONFIG_QSEMI_PHY=y 420 CONFIG_LXT_PHY=y 421 CONFIG_CICADA_PHY=y 422 + CONFIG_VITESSE_PHY=y 423 + CONFIG_SMSC_PHY=y 424 425 # 426 # Ethernet (10 or 100Mbit) ··· 461 # CONFIG_CHELSIO_T1 is not set 462 # CONFIG_IXGB is not set 463 # CONFIG_S2IO is not set 464 + # CONFIG_MYRI10GE is not set 465 466 # 467 # Token Ring devices ··· 538 CONFIG_VT=y 539 CONFIG_VT_CONSOLE=y 540 CONFIG_HW_CONSOLE=y 541 + CONFIG_VT_HW_CONSOLE_BINDING=y 542 CONFIG_SERIAL_NONSTANDARD=y 543 # CONFIG_COMPUTONE is not set 544 # CONFIG_ROCKETPORT is not set ··· 582 # Watchdog Cards 583 # 584 # CONFIG_WATCHDOG is not set 585 + # CONFIG_HW_RANDOM is not set 586 # CONFIG_RTC is not set 587 # CONFIG_GEN_RTC is not set 588 # CONFIG_DTLK is not set ··· 630 # Multimedia devices 631 # 632 # CONFIG_VIDEO_DEV is not set 633 + CONFIG_VIDEO_V4L2=y 634 635 # 636 # Digital Video Broadcasting Devices ··· 639 # 640 # Graphics support 641 # 642 + # CONFIG_FIRMWARE_EDID is not set 643 CONFIG_FB=y 644 # CONFIG_FB_CFB_FILLRECT is not set 645 # CONFIG_FB_CFB_COPYAREA is not set 646 # CONFIG_FB_CFB_IMAGEBLIT is not set 647 # CONFIG_FB_MACMODES is not set 648 + # CONFIG_FB_BACKLIGHT is not set 649 # CONFIG_FB_MODE_HELPERS is not set 650 # CONFIG_FB_TILEBLITTING is not set 651 # CONFIG_FB_CIRRUS is not set ··· 737 # CONFIG_RTC_CLASS is not set 738 739 # 740 + # DMA Engine support 741 + # 742 + # CONFIG_DMA_ENGINE is not set 743 + 744 + # 745 + # DMA Clients 746 + # 747 + 748 + # 749 + # DMA Devices 750 + # 751 + 752 + # 753 # File systems 754 # 755 # CONFIG_EXT2_FS is not set ··· 749 # CONFIG_MINIX_FS is not set 750 # CONFIG_ROMFS_FS is not set 751 CONFIG_INOTIFY=y 752 + CONFIG_INOTIFY_USER=y 753 # CONFIG_QUOTA is not set 754 CONFIG_DNOTIFY=y 755 # CONFIG_AUTOFS_FS is not set ··· 812 # CONFIG_RPCSEC_GSS_SPKM3 is not set 813 # CONFIG_SMB_FS is not set 814 # CONFIG_CIFS is not set 815 + # CONFIG_CIFS_DEBUG2 is not set 816 # CONFIG_NCP_FS is not set 817 # CONFIG_CODA_FS is not set 818 # CONFIG_AFS_FS is not set ··· 838 # 839 # CONFIG_PRINTK_TIME is not set 840 # CONFIG_MAGIC_SYSRQ is not set 841 + # CONFIG_UNUSED_SYMBOLS is not set 842 # CONFIG_DEBUG_KERNEL is not set 843 CONFIG_LOG_BUF_SHIFT=14 844 # CONFIG_DEBUG_FS is not set ··· 879 CONFIG_CRYPTO_DEFLATE=y 880 CONFIG_CRYPTO_MICHAEL_MIC=y 881 CONFIG_CRYPTO_CRC32C=y 882 883 # 884 # Hardware crypto devices ··· 894 CONFIG_LIBCRC32C=y 895 CONFIG_ZLIB_INFLATE=y 896 CONFIG_ZLIB_DEFLATE=y 897 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/lasat200_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:07 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 72 CONFIG_GENERIC_FIND_NEXT_BIT=y 73 CONFIG_GENERIC_HWEIGHT=y 74 CONFIG_GENERIC_CALIBRATE_DELAY=y 75 CONFIG_DMA_NONCOHERENT=y 76 CONFIG_DMA_NEED_PCI_MAP_STATE=y 77 CONFIG_MIPS_NILE4=y ··· 121 # CONFIG_PAGE_SIZE_64KB is not set 122 CONFIG_BOARD_SCACHE=y 123 CONFIG_R5000_CPU_SCACHE=y 124 - # CONFIG_MIPS_MT is not set 125 # CONFIG_64BIT_PHYS_ADDR is not set 126 CONFIG_CPU_HAS_LLSC=y 127 CONFIG_CPU_HAS_SYNC=y ··· 139 CONFIG_FLAT_NODE_MEM_MAP=y 140 # CONFIG_SPARSEMEM_STATIC is not set 141 CONFIG_SPLIT_PTLOCK_CPUS=4 142 # CONFIG_HZ_48 is not set 143 # CONFIG_HZ_100 is not set 144 # CONFIG_HZ_128 is not set ··· 152 CONFIG_PREEMPT_NONE=y 153 # CONFIG_PREEMPT_VOLUNTARY is not set 154 # CONFIG_PREEMPT is not set 155 156 # 157 # Code maturity level options ··· 184 CONFIG_BUG=y 185 CONFIG_ELF_CORE=y 186 CONFIG_BASE_FULL=y 187 CONFIG_FUTEX=y 188 CONFIG_EPOLL=y 189 CONFIG_SHMEM=y 190 CONFIG_SLAB=y 191 # CONFIG_TINY_SHMEM is not set 192 CONFIG_BASE_SMALL=0 193 # CONFIG_SLOB is not set 194 - CONFIG_OBSOLETE_INTERMODULE=y 195 196 # 197 # Loadable module support ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 # CONFIG_NETFILTER is not set 289 290 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 CONFIG_FW_LOADER=m 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 569 CONFIG_QSEMI_PHY=m 570 CONFIG_LXT_PHY=m 571 CONFIG_CICADA_PHY=m 572 573 # 574 # Ethernet (10 or 100Mbit) ··· 613 # CONFIG_CHELSIO_T1 is not set 614 # CONFIG_IXGB is not set 615 # CONFIG_S2IO is not set 616 617 # 618 # Token Ring devices ··· 691 CONFIG_VT=y 692 CONFIG_VT_CONSOLE=y 693 CONFIG_HW_CONSOLE=y 694 # CONFIG_SERIAL_NONSTANDARD is not set 695 696 # ··· 723 # Watchdog Cards 724 # 725 # CONFIG_WATCHDOG is not set 726 # CONFIG_RTC is not set 727 # CONFIG_GEN_RTC is not set 728 # CONFIG_DTLK is not set ··· 772 # Multimedia devices 773 # 774 # CONFIG_VIDEO_DEV is not set 775 776 # 777 # Digital Video Broadcasting Devices ··· 782 # 783 # Graphics support 784 # 785 # CONFIG_FB is not set 786 787 # ··· 846 # CONFIG_RTC_CLASS is not set 847 848 # 849 # File systems 850 # 851 CONFIG_EXT2_FS=y ··· 879 # CONFIG_MINIX_FS is not set 880 # CONFIG_ROMFS_FS is not set 881 CONFIG_INOTIFY=y 882 # CONFIG_QUOTA is not set 883 CONFIG_DNOTIFY=y 884 # CONFIG_AUTOFS_FS is not set ··· 946 # CONFIG_RPCSEC_GSS_SPKM3 is not set 947 # CONFIG_SMB_FS is not set 948 # CONFIG_CIFS is not set 949 # CONFIG_NCP_FS is not set 950 # CONFIG_CODA_FS is not set 951 # CONFIG_AFS_FS is not set ··· 973 # 974 # CONFIG_PRINTK_TIME is not set 975 # CONFIG_MAGIC_SYSRQ is not set 976 # CONFIG_DEBUG_KERNEL is not set 977 CONFIG_LOG_BUF_SHIFT=14 978 # CONFIG_DEBUG_FS is not set ··· 1029 CONFIG_LIBCRC32C=m 1030 CONFIG_ZLIB_INFLATE=m 1031 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:12 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 73 CONFIG_DMA_NONCOHERENT=y 74 CONFIG_DMA_NEED_PCI_MAP_STATE=y 75 CONFIG_MIPS_NILE4=y ··· 117 # CONFIG_PAGE_SIZE_64KB is not set 118 CONFIG_BOARD_SCACHE=y 119 CONFIG_R5000_CPU_SCACHE=y 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 124 # CONFIG_64BIT_PHYS_ADDR is not set 125 CONFIG_CPU_HAS_LLSC=y 126 CONFIG_CPU_HAS_SYNC=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 # CONFIG_HZ_128 is not set ··· 144 CONFIG_PREEMPT_NONE=y 145 # CONFIG_PREEMPT_VOLUNTARY is not set 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 148 149 # 150 # Code maturity level options ··· 175 CONFIG_BUG=y 176 CONFIG_ELF_CORE=y 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 179 CONFIG_FUTEX=y 180 CONFIG_EPOLL=y 181 CONFIG_SHMEM=y 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 184 # CONFIG_TINY_SHMEM is not set 185 CONFIG_BASE_SMALL=0 186 # CONFIG_SLOB is not set 187 188 # 189 # Loadable module support ··· 266 # CONFIG_INET_IPCOMP is not set 267 # CONFIG_INET_XFRM_TUNNEL is not set 268 # CONFIG_INET_TUNNEL is not set 269 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 270 + CONFIG_INET_XFRM_MODE_TUNNEL=m 271 CONFIG_INET_DIAG=y 272 CONFIG_INET_TCP_DIAG=y 273 # CONFIG_TCP_CONG_ADVANCED is not set ··· 273 # CONFIG_IPV6 is not set 274 # CONFIG_INET6_XFRM_TUNNEL is not set 275 # CONFIG_INET6_TUNNEL is not set 276 + CONFIG_NETWORK_SECMARK=y 277 # CONFIG_NETFILTER is not set 278 279 # ··· 332 CONFIG_STANDALONE=y 333 CONFIG_PREVENT_FIRMWARE_BUILD=y 334 CONFIG_FW_LOADER=m 335 + # CONFIG_SYS_HYPERVISOR is not set 336 337 # 338 # Connector - unified userspace <-> kernelspace linker ··· 555 CONFIG_QSEMI_PHY=m 556 CONFIG_LXT_PHY=m 557 CONFIG_CICADA_PHY=m 558 + CONFIG_VITESSE_PHY=m 559 + CONFIG_SMSC_PHY=m 560 561 # 562 # Ethernet (10 or 100Mbit) ··· 597 # CONFIG_CHELSIO_T1 is not set 598 # CONFIG_IXGB is not set 599 # CONFIG_S2IO is not set 600 + # CONFIG_MYRI10GE is not set 601 602 # 603 # Token Ring devices ··· 674 CONFIG_VT=y 675 CONFIG_VT_CONSOLE=y 676 CONFIG_HW_CONSOLE=y 677 + CONFIG_VT_HW_CONSOLE_BINDING=y 678 # CONFIG_SERIAL_NONSTANDARD is not set 679 680 # ··· 705 # Watchdog Cards 706 # 707 # CONFIG_WATCHDOG is not set 708 + # CONFIG_HW_RANDOM is not set 709 # CONFIG_RTC is not set 710 # CONFIG_GEN_RTC is not set 711 # CONFIG_DTLK is not set ··· 753 # Multimedia devices 754 # 755 # CONFIG_VIDEO_DEV is not set 756 + CONFIG_VIDEO_V4L2=y 757 758 # 759 # Digital Video Broadcasting Devices ··· 762 # 763 # Graphics support 764 # 765 + # CONFIG_FIRMWARE_EDID is not set 766 # CONFIG_FB is not set 767 768 # ··· 825 # CONFIG_RTC_CLASS is not set 826 827 # 828 + # DMA Engine support 829 + # 830 + # CONFIG_DMA_ENGINE is not set 831 + 832 + # 833 + # DMA Clients 834 + # 835 + 836 + # 837 + # DMA Devices 838 + # 839 + 840 + # 841 # File systems 842 # 843 CONFIG_EXT2_FS=y ··· 845 # CONFIG_MINIX_FS is not set 846 # CONFIG_ROMFS_FS is not set 847 CONFIG_INOTIFY=y 848 + CONFIG_INOTIFY_USER=y 849 # CONFIG_QUOTA is not set 850 CONFIG_DNOTIFY=y 851 # CONFIG_AUTOFS_FS is not set ··· 911 # CONFIG_RPCSEC_GSS_SPKM3 is not set 912 # CONFIG_SMB_FS is not set 913 # CONFIG_CIFS is not set 914 + # CONFIG_CIFS_DEBUG2 is not set 915 # CONFIG_NCP_FS is not set 916 # CONFIG_CODA_FS is not set 917 # CONFIG_AFS_FS is not set ··· 937 # 938 # CONFIG_PRINTK_TIME is not set 939 # CONFIG_MAGIC_SYSRQ is not set 940 + # CONFIG_UNUSED_SYMBOLS is not set 941 # CONFIG_DEBUG_KERNEL is not set 942 CONFIG_LOG_BUF_SHIFT=14 943 # CONFIG_DEBUG_FS is not set ··· 992 CONFIG_LIBCRC32C=m 993 CONFIG_ZLIB_INFLATE=m 994 CONFIG_ZLIB_DEFLATE=m 995 + CONFIG_PLIST=y
+56 -8
arch/mips/configs/malta_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:08 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 CONFIG_MIPS_MALTA=y 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 130 # CONFIG_PAGE_SIZE_8KB is not set 131 # CONFIG_PAGE_SIZE_16KB is not set 132 # CONFIG_PAGE_SIZE_64KB is not set 133 CONFIG_CPU_HAS_PREFETCH=y 134 - CONFIG_MIPS_MT=y 135 # CONFIG_MIPS_MT_SMTC is not set 136 # CONFIG_MIPS_MT_SMP is not set 137 CONFIG_MIPS_VPE_LOADER=y 138 CONFIG_MIPS_MT_FPAFF=y 139 CONFIG_MIPS_VPE_LOADER_TOM=y 140 CONFIG_MIPS_VPE_APSP_API=y 141 CONFIG_MIPS_APSP_KSPD=y 142 # CONFIG_64BIT_PHYS_ADDR is not set 143 CONFIG_CPU_HAS_LLSC=y 144 - # CONFIG_CPU_MIPSR2_IRQ_VI is not set 145 - # CONFIG_CPU_MIPSR2_IRQ_EI is not set 146 CONFIG_CPU_HAS_SYNC=y 147 CONFIG_GENERIC_HARDIRQS=y 148 CONFIG_GENERIC_IRQ_PROBE=y ··· 158 CONFIG_FLAT_NODE_MEM_MAP=y 159 # CONFIG_SPARSEMEM_STATIC is not set 160 CONFIG_SPLIT_PTLOCK_CPUS=4 161 # CONFIG_HZ_48 is not set 162 CONFIG_HZ_100=y 163 # CONFIG_HZ_128 is not set ··· 171 CONFIG_PREEMPT_NONE=y 172 # CONFIG_PREEMPT_VOLUNTARY is not set 173 # CONFIG_PREEMPT is not set 174 175 # 176 # Code maturity level options ··· 203 CONFIG_BUG=y 204 CONFIG_ELF_CORE=y 205 CONFIG_BASE_FULL=y 206 CONFIG_FUTEX=y 207 CONFIG_EPOLL=y 208 CONFIG_SHMEM=y 209 CONFIG_SLAB=y 210 # CONFIG_TINY_SHMEM is not set 211 CONFIG_BASE_SMALL=0 212 # CONFIG_SLOB is not set ··· 310 CONFIG_INET_IPCOMP=m 311 CONFIG_INET_XFRM_TUNNEL=m 312 CONFIG_INET_TUNNEL=m 313 CONFIG_INET_DIAG=y 314 CONFIG_INET_TCP_DIAG=y 315 # CONFIG_TCP_CONG_ADVANCED is not set ··· 359 CONFIG_INET6_IPCOMP=m 360 CONFIG_INET6_XFRM_TUNNEL=m 361 CONFIG_INET6_TUNNEL=m 362 CONFIG_IPV6_TUNNEL=m 363 CONFIG_NETFILTER=y 364 # CONFIG_NETFILTER_DEBUG is not set 365 CONFIG_BRIDGE_NETFILTER=y ··· 379 CONFIG_NETFILTER_XT_TARGET_MARK=m 380 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 381 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 382 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 383 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 384 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 396 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 397 # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set 398 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 399 CONFIG_NETFILTER_XT_MATCH_REALM=m 400 CONFIG_NETFILTER_XT_MATCH_SCTP=m 401 CONFIG_NETFILTER_XT_MATCH_STATE=m 402 CONFIG_NETFILTER_XT_MATCH_STRING=m 403 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 404 ··· 410 CONFIG_IP_NF_CONNTRACK=m 411 CONFIG_IP_NF_CT_ACCT=y 412 CONFIG_IP_NF_CONNTRACK_MARK=y 413 CONFIG_IP_NF_CONNTRACK_EVENTS=y 414 CONFIG_IP_NF_CONNTRACK_NETLINK=m 415 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 421 CONFIG_IP_NF_AMANDA=m 422 CONFIG_IP_NF_PPTP=m 423 CONFIG_IP_NF_H323=m 424 CONFIG_IP_NF_QUEUE=m 425 CONFIG_IP_NF_IPTABLES=m 426 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 452 CONFIG_IP_NF_NAT_AMANDA=m 453 CONFIG_IP_NF_NAT_PPTP=m 454 CONFIG_IP_NF_NAT_H323=m 455 CONFIG_IP_NF_MANGLE=m 456 CONFIG_IP_NF_TARGET_TOS=m 457 CONFIG_IP_NF_TARGET_ECN=m ··· 614 CONFIG_STANDALONE=y 615 CONFIG_PREVENT_FIRMWARE_BUILD=y 616 CONFIG_FW_LOADER=y 617 618 # 619 # Connector - unified userspace <-> kernelspace linker ··· 769 # CONFIG_MEGARAID_LEGACY is not set 770 # CONFIG_MEGARAID_SAS is not set 771 # CONFIG_SCSI_SATA is not set 772 # CONFIG_SCSI_DMX3191D is not set 773 # CONFIG_SCSI_FUTURE_DOMAIN is not set 774 # CONFIG_SCSI_IPS is not set ··· 794 CONFIG_MD_RAID0=m 795 CONFIG_MD_RAID1=m 796 CONFIG_MD_RAID10=m 797 - CONFIG_MD_RAID5=m 798 CONFIG_MD_RAID5_RESHAPE=y 799 - CONFIG_MD_RAID6=m 800 CONFIG_MD_MULTIPATH=m 801 CONFIG_MD_FAULTY=m 802 CONFIG_BLK_DEV_DM=m ··· 851 CONFIG_QSEMI_PHY=m 852 CONFIG_LXT_PHY=m 853 CONFIG_CICADA_PHY=m 854 855 # 856 # Ethernet (10 or 100Mbit) ··· 915 # CONFIG_CHELSIO_T1 is not set 916 # CONFIG_IXGB is not set 917 # CONFIG_S2IO is not set 918 919 # 920 # Token Ring devices ··· 994 CONFIG_VT=y 995 CONFIG_VT_CONSOLE=y 996 CONFIG_HW_CONSOLE=y 997 # CONFIG_SERIAL_NONSTANDARD is not set 998 999 # ··· 1026 # Watchdog Cards 1027 # 1028 # CONFIG_WATCHDOG is not set 1029 CONFIG_RTC=y 1030 # CONFIG_DTLK is not set 1031 # CONFIG_R3964 is not set ··· 1074 # Multimedia devices 1075 # 1076 # CONFIG_VIDEO_DEV is not set 1077 1078 # 1079 # Digital Video Broadcasting Devices ··· 1084 # 1085 # Graphics support 1086 # 1087 # CONFIG_FB is not set 1088 1089 # ··· 1148 # CONFIG_RTC_CLASS is not set 1149 1150 # 1151 # File systems 1152 # 1153 CONFIG_EXT2_FS=y ··· 1186 # CONFIG_JFS_STATISTICS is not set 1187 CONFIG_FS_POSIX_ACL=y 1188 CONFIG_XFS_FS=m 1189 - CONFIG_XFS_EXPORT=y 1190 CONFIG_XFS_QUOTA=y 1191 CONFIG_XFS_SECURITY=y 1192 CONFIG_XFS_POSIX_ACL=y ··· 1194 CONFIG_MINIX_FS=m 1195 CONFIG_ROMFS_FS=m 1196 CONFIG_INOTIFY=y 1197 CONFIG_QUOTA=y 1198 # CONFIG_QFMT_V1 is not set 1199 CONFIG_QFMT_V2=y ··· 1252 # CONFIG_QNX4FS_FS is not set 1253 CONFIG_SYSV_FS=m 1254 CONFIG_UFS_FS=m 1255 1256 # 1257 # Network File Systems ··· 1278 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1279 # CONFIG_SMB_FS is not set 1280 # CONFIG_CIFS is not set 1281 # CONFIG_NCP_FS is not set 1282 # CONFIG_CODA_FS is not set 1283 # CONFIG_AFS_FS is not set ··· 1344 # 1345 # CONFIG_PRINTK_TIME is not set 1346 # CONFIG_MAGIC_SYSRQ is not set 1347 # CONFIG_DEBUG_KERNEL is not set 1348 CONFIG_LOG_BUF_SHIFT=14 1349 # CONFIG_DEBUG_FS is not set ··· 1403 CONFIG_TEXTSEARCH_KMP=m 1404 CONFIG_TEXTSEARCH_BM=m 1405 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:13 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 CONFIG_MIPS_MALTA=y 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 126 # CONFIG_PAGE_SIZE_8KB is not set 127 # CONFIG_PAGE_SIZE_16KB is not set 128 # CONFIG_PAGE_SIZE_64KB is not set 129 + CONFIG_BOARD_SCACHE=y 130 + CONFIG_MIPS_CPU_SCACHE=y 131 CONFIG_CPU_HAS_PREFETCH=y 132 + # CONFIG_MIPS_MT_DISABLED is not set 133 # CONFIG_MIPS_MT_SMTC is not set 134 # CONFIG_MIPS_MT_SMP is not set 135 CONFIG_MIPS_VPE_LOADER=y 136 + CONFIG_MIPS_MT=y 137 + CONFIG_SYS_SUPPORTS_MULTITHREADING=y 138 CONFIG_MIPS_MT_FPAFF=y 139 CONFIG_MIPS_VPE_LOADER_TOM=y 140 CONFIG_MIPS_VPE_APSP_API=y 141 CONFIG_MIPS_APSP_KSPD=y 142 # CONFIG_64BIT_PHYS_ADDR is not set 143 CONFIG_CPU_HAS_LLSC=y 144 CONFIG_CPU_HAS_SYNC=y 145 CONFIG_GENERIC_HARDIRQS=y 146 CONFIG_GENERIC_IRQ_PROBE=y ··· 152 CONFIG_FLAT_NODE_MEM_MAP=y 153 # CONFIG_SPARSEMEM_STATIC is not set 154 CONFIG_SPLIT_PTLOCK_CPUS=4 155 + # CONFIG_RESOURCES_64BIT is not set 156 # CONFIG_HZ_48 is not set 157 CONFIG_HZ_100=y 158 # CONFIG_HZ_128 is not set ··· 164 CONFIG_PREEMPT_NONE=y 165 # CONFIG_PREEMPT_VOLUNTARY is not set 166 # CONFIG_PREEMPT is not set 167 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 168 169 # 170 # Code maturity level options ··· 195 CONFIG_BUG=y 196 CONFIG_ELF_CORE=y 197 CONFIG_BASE_FULL=y 198 + CONFIG_RT_MUTEXES=y 199 CONFIG_FUTEX=y 200 CONFIG_EPOLL=y 201 CONFIG_SHMEM=y 202 CONFIG_SLAB=y 203 + CONFIG_VM_EVENT_COUNTERS=y 204 # CONFIG_TINY_SHMEM is not set 205 CONFIG_BASE_SMALL=0 206 # CONFIG_SLOB is not set ··· 300 CONFIG_INET_IPCOMP=m 301 CONFIG_INET_XFRM_TUNNEL=m 302 CONFIG_INET_TUNNEL=m 303 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 304 + CONFIG_INET_XFRM_MODE_TUNNEL=m 305 CONFIG_INET_DIAG=y 306 CONFIG_INET_TCP_DIAG=y 307 # CONFIG_TCP_CONG_ADVANCED is not set ··· 347 CONFIG_INET6_IPCOMP=m 348 CONFIG_INET6_XFRM_TUNNEL=m 349 CONFIG_INET6_TUNNEL=m 350 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 351 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 352 CONFIG_IPV6_TUNNEL=m 353 + CONFIG_NETWORK_SECMARK=y 354 CONFIG_NETFILTER=y 355 # CONFIG_NETFILTER_DEBUG is not set 356 CONFIG_BRIDGE_NETFILTER=y ··· 364 CONFIG_NETFILTER_XT_TARGET_MARK=m 365 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 366 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 367 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 368 + # CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set 369 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 370 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 371 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 379 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 380 # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set 381 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 382 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 383 CONFIG_NETFILTER_XT_MATCH_REALM=m 384 CONFIG_NETFILTER_XT_MATCH_SCTP=m 385 CONFIG_NETFILTER_XT_MATCH_STATE=m 386 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 387 CONFIG_NETFILTER_XT_MATCH_STRING=m 388 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 389 ··· 391 CONFIG_IP_NF_CONNTRACK=m 392 CONFIG_IP_NF_CT_ACCT=y 393 CONFIG_IP_NF_CONNTRACK_MARK=y 394 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 395 CONFIG_IP_NF_CONNTRACK_EVENTS=y 396 CONFIG_IP_NF_CONNTRACK_NETLINK=m 397 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 401 CONFIG_IP_NF_AMANDA=m 402 CONFIG_IP_NF_PPTP=m 403 CONFIG_IP_NF_H323=m 404 + CONFIG_IP_NF_SIP=m 405 CONFIG_IP_NF_QUEUE=m 406 CONFIG_IP_NF_IPTABLES=m 407 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 431 CONFIG_IP_NF_NAT_AMANDA=m 432 CONFIG_IP_NF_NAT_PPTP=m 433 CONFIG_IP_NF_NAT_H323=m 434 + CONFIG_IP_NF_NAT_SIP=m 435 CONFIG_IP_NF_MANGLE=m 436 CONFIG_IP_NF_TARGET_TOS=m 437 CONFIG_IP_NF_TARGET_ECN=m ··· 592 CONFIG_STANDALONE=y 593 CONFIG_PREVENT_FIRMWARE_BUILD=y 594 CONFIG_FW_LOADER=y 595 + # CONFIG_SYS_HYPERVISOR is not set 596 597 # 598 # Connector - unified userspace <-> kernelspace linker ··· 746 # CONFIG_MEGARAID_LEGACY is not set 747 # CONFIG_MEGARAID_SAS is not set 748 # CONFIG_SCSI_SATA is not set 749 + # CONFIG_SCSI_HPTIOP is not set 750 # CONFIG_SCSI_DMX3191D is not set 751 # CONFIG_SCSI_FUTURE_DOMAIN is not set 752 # CONFIG_SCSI_IPS is not set ··· 770 CONFIG_MD_RAID0=m 771 CONFIG_MD_RAID1=m 772 CONFIG_MD_RAID10=m 773 + CONFIG_MD_RAID456=m 774 CONFIG_MD_RAID5_RESHAPE=y 775 CONFIG_MD_MULTIPATH=m 776 CONFIG_MD_FAULTY=m 777 CONFIG_BLK_DEV_DM=m ··· 828 CONFIG_QSEMI_PHY=m 829 CONFIG_LXT_PHY=m 830 CONFIG_CICADA_PHY=m 831 + CONFIG_VITESSE_PHY=m 832 + CONFIG_SMSC_PHY=m 833 834 # 835 # Ethernet (10 or 100Mbit) ··· 890 # CONFIG_CHELSIO_T1 is not set 891 # CONFIG_IXGB is not set 892 # CONFIG_S2IO is not set 893 + # CONFIG_MYRI10GE is not set 894 895 # 896 # Token Ring devices ··· 968 CONFIG_VT=y 969 CONFIG_VT_CONSOLE=y 970 CONFIG_HW_CONSOLE=y 971 + CONFIG_VT_HW_CONSOLE_BINDING=y 972 # CONFIG_SERIAL_NONSTANDARD is not set 973 974 # ··· 999 # Watchdog Cards 1000 # 1001 # CONFIG_WATCHDOG is not set 1002 + # CONFIG_HW_RANDOM is not set 1003 CONFIG_RTC=y 1004 # CONFIG_DTLK is not set 1005 # CONFIG_R3964 is not set ··· 1046 # Multimedia devices 1047 # 1048 # CONFIG_VIDEO_DEV is not set 1049 + CONFIG_VIDEO_V4L2=y 1050 1051 # 1052 # Digital Video Broadcasting Devices ··· 1055 # 1056 # Graphics support 1057 # 1058 + # CONFIG_FIRMWARE_EDID is not set 1059 # CONFIG_FB is not set 1060 1061 # ··· 1118 # CONFIG_RTC_CLASS is not set 1119 1120 # 1121 + # DMA Engine support 1122 + # 1123 + # CONFIG_DMA_ENGINE is not set 1124 + 1125 + # 1126 + # DMA Clients 1127 + # 1128 + 1129 + # 1130 + # DMA Devices 1131 + # 1132 + 1133 + # 1134 # File systems 1135 # 1136 CONFIG_EXT2_FS=y ··· 1143 # CONFIG_JFS_STATISTICS is not set 1144 CONFIG_FS_POSIX_ACL=y 1145 CONFIG_XFS_FS=m 1146 CONFIG_XFS_QUOTA=y 1147 CONFIG_XFS_SECURITY=y 1148 CONFIG_XFS_POSIX_ACL=y ··· 1152 CONFIG_MINIX_FS=m 1153 CONFIG_ROMFS_FS=m 1154 CONFIG_INOTIFY=y 1155 + CONFIG_INOTIFY_USER=y 1156 CONFIG_QUOTA=y 1157 # CONFIG_QFMT_V1 is not set 1158 CONFIG_QFMT_V2=y ··· 1209 # CONFIG_QNX4FS_FS is not set 1210 CONFIG_SYSV_FS=m 1211 CONFIG_UFS_FS=m 1212 + # CONFIG_UFS_FS_WRITE is not set 1213 + # CONFIG_UFS_DEBUG is not set 1214 1215 # 1216 # Network File Systems ··· 1233 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1234 # CONFIG_SMB_FS is not set 1235 # CONFIG_CIFS is not set 1236 + # CONFIG_CIFS_DEBUG2 is not set 1237 # CONFIG_NCP_FS is not set 1238 # CONFIG_CODA_FS is not set 1239 # CONFIG_AFS_FS is not set ··· 1298 # 1299 # CONFIG_PRINTK_TIME is not set 1300 # CONFIG_MAGIC_SYSRQ is not set 1301 + # CONFIG_UNUSED_SYMBOLS is not set 1302 # CONFIG_DEBUG_KERNEL is not set 1303 CONFIG_LOG_BUF_SHIFT=14 1304 # CONFIG_DEBUG_FS is not set ··· 1356 CONFIG_TEXTSEARCH_KMP=m 1357 CONFIG_TEXTSEARCH_BM=m 1358 CONFIG_TEXTSEARCH_FSM=m 1359 + CONFIG_PLIST=y
+40 -11
arch/mips/configs/mipssim_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:09 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 CONFIG_MIPS_SIM=y 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - CONFIG_MIPS_MT=y 121 # CONFIG_MIPS_MT_SMTC is not set 122 # CONFIG_MIPS_MT_SMP is not set 123 - CONFIG_MIPS_VPE_LOADER=y 124 - CONFIG_MIPS_MT_FPAFF=y 125 - CONFIG_MIPS_VPE_LOADER_TOM=y 126 - CONFIG_MIPS_VPE_APSP_API=y 127 - CONFIG_MIPS_APSP_KSPD=y 128 # CONFIG_64BIT_PHYS_ADDR is not set 129 CONFIG_CPU_HAS_LLSC=y 130 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 CONFIG_PREEMPT_NONE=y 150 # CONFIG_PREEMPT_VOLUNTARY is not set 151 # CONFIG_PREEMPT is not set 152 153 # 154 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 CONFIG_INET_DIAG=y 287 CONFIG_INET_TCP_DIAG=y 288 # CONFIG_TCP_CONG_ADVANCED is not set ··· 292 # CONFIG_IPV6 is not set 293 # CONFIG_INET6_XFRM_TUNNEL is not set 294 # CONFIG_INET6_TUNNEL is not set 295 # CONFIG_NETFILTER is not set 296 297 # ··· 388 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 389 # CONFIG_FW_LOADER is not set 390 # CONFIG_DEBUG_DRIVER is not set 391 392 # 393 # Connector - unified userspace <-> kernelspace linker ··· 573 # Watchdog Cards 574 # 575 # CONFIG_WATCHDOG is not set 576 # CONFIG_RTC is not set 577 # CONFIG_GEN_RTC is not set 578 # CONFIG_DTLK is not set ··· 604 # 605 # Dallas's 1-wire bus 606 # 607 - # CONFIG_W1 is not set 608 609 # 610 # Hardware Monitoring support ··· 619 # Multimedia devices 620 # 621 # CONFIG_VIDEO_DEV is not set 622 623 # 624 # Digital Video Broadcasting Devices ··· 629 # 630 # Graphics support 631 # 632 # CONFIG_FB is not set 633 634 # ··· 685 # CONFIG_RTC_CLASS is not set 686 687 # 688 # File systems 689 # 690 CONFIG_EXT2_FS=y ··· 708 # CONFIG_JFS_FS is not set 709 # CONFIG_FS_POSIX_ACL is not set 710 # CONFIG_XFS_FS is not set 711 - # CONFIG_OCFS2_FS is not set 712 # CONFIG_MINIX_FS is not set 713 CONFIG_ROMFS_FS=y 714 # CONFIG_INOTIFY is not set ··· 775 # CONFIG_RPCSEC_GSS_SPKM3 is not set 776 # CONFIG_SMB_FS is not set 777 # CONFIG_CIFS is not set 778 # CONFIG_NCP_FS is not set 779 # CONFIG_CODA_FS is not set 780 # CONFIG_AFS_FS is not set ··· 802 # 803 # CONFIG_PRINTK_TIME is not set 804 # CONFIG_MAGIC_SYSRQ is not set 805 CONFIG_DEBUG_KERNEL=y 806 CONFIG_LOG_BUF_SHIFT=14 807 # CONFIG_DETECT_SOFTLOCKUP is not set 808 # CONFIG_SCHEDSTATS is not set 809 # CONFIG_DEBUG_SLAB is not set 810 - CONFIG_DEBUG_MUTEXES=y 811 # CONFIG_DEBUG_SPINLOCK is not set 812 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 813 # CONFIG_DEBUG_KOBJECT is not set 814 CONFIG_DEBUG_INFO=y 815 # CONFIG_DEBUG_VM is not set ··· 872 CONFIG_CRC16=y 873 CONFIG_CRC32=y 874 # CONFIG_LIBCRC32C is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:13 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 CONFIG_MIPS_SIM=y 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 CONFIG_CPU_HAS_PREFETCH=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 # CONFIG_MIPS_MT_SMTC is not set 118 # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 # CONFIG_64BIT_PHYS_ADDR is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 153 # 154 # Code maturity level options ··· 180 CONFIG_BUG=y 181 CONFIG_ELF_CORE=y 182 CONFIG_BASE_FULL=y 183 + CONFIG_RT_MUTEXES=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 + CONFIG_VM_EVENT_COUNTERS=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set ··· 279 # CONFIG_INET_IPCOMP is not set 280 # CONFIG_INET_XFRM_TUNNEL is not set 281 # CONFIG_INET_TUNNEL is not set 282 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 283 + CONFIG_INET_XFRM_MODE_TUNNEL=m 284 CONFIG_INET_DIAG=y 285 CONFIG_INET_TCP_DIAG=y 286 # CONFIG_TCP_CONG_ADVANCED is not set ··· 286 # 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 290 # CONFIG_NETFILTER is not set 291 292 # ··· 381 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 382 # CONFIG_FW_LOADER is not set 383 # CONFIG_DEBUG_DRIVER is not set 384 + # CONFIG_SYS_HYPERVISOR is not set 385 386 # 387 # Connector - unified userspace <-> kernelspace linker ··· 565 # Watchdog Cards 566 # 567 # CONFIG_WATCHDOG is not set 568 + # CONFIG_HW_RANDOM is not set 569 # CONFIG_RTC is not set 570 # CONFIG_GEN_RTC is not set 571 # CONFIG_DTLK is not set ··· 595 # 596 # Dallas's 1-wire bus 597 # 598 599 # 600 # Hardware Monitoring support ··· 611 # Multimedia devices 612 # 613 # CONFIG_VIDEO_DEV is not set 614 + CONFIG_VIDEO_V4L2=y 615 616 # 617 # Digital Video Broadcasting Devices ··· 620 # 621 # Graphics support 622 # 623 + # CONFIG_FIRMWARE_EDID is not set 624 # CONFIG_FB is not set 625 626 # ··· 675 # CONFIG_RTC_CLASS is not set 676 677 # 678 + # DMA Engine support 679 + # 680 + # CONFIG_DMA_ENGINE is not set 681 + 682 + # 683 + # DMA Clients 684 + # 685 + 686 + # 687 + # DMA Devices 688 + # 689 + 690 + # 691 # File systems 692 # 693 CONFIG_EXT2_FS=y ··· 685 # CONFIG_JFS_FS is not set 686 # CONFIG_FS_POSIX_ACL is not set 687 # CONFIG_XFS_FS is not set 688 # CONFIG_MINIX_FS is not set 689 CONFIG_ROMFS_FS=y 690 # CONFIG_INOTIFY is not set ··· 753 # CONFIG_RPCSEC_GSS_SPKM3 is not set 754 # CONFIG_SMB_FS is not set 755 # CONFIG_CIFS is not set 756 + # CONFIG_CIFS_DEBUG2 is not set 757 # CONFIG_NCP_FS is not set 758 # CONFIG_CODA_FS is not set 759 # CONFIG_AFS_FS is not set ··· 779 # 780 # CONFIG_PRINTK_TIME is not set 781 # CONFIG_MAGIC_SYSRQ is not set 782 + # CONFIG_UNUSED_SYMBOLS is not set 783 CONFIG_DEBUG_KERNEL=y 784 CONFIG_LOG_BUF_SHIFT=14 785 # CONFIG_DETECT_SOFTLOCKUP is not set 786 # CONFIG_SCHEDSTATS is not set 787 # CONFIG_DEBUG_SLAB is not set 788 + # CONFIG_DEBUG_RT_MUTEXES is not set 789 + # CONFIG_RT_MUTEX_TESTER is not set 790 # CONFIG_DEBUG_SPINLOCK is not set 791 + CONFIG_DEBUG_MUTEXES=y 792 + # CONFIG_DEBUG_RWSEMS is not set 793 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 794 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 795 # CONFIG_DEBUG_KOBJECT is not set 796 CONFIG_DEBUG_INFO=y 797 # CONFIG_DEBUG_VM is not set ··· 844 CONFIG_CRC16=y 845 CONFIG_CRC32=y 846 # CONFIG_LIBCRC32C is not set 847 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/mpc30x_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:09 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 76 CONFIG_GENERIC_FIND_NEXT_BIT=y 77 CONFIG_GENERIC_HWEIGHT=y 78 CONFIG_GENERIC_CALIBRATE_DELAY=y 79 CONFIG_DMA_NONCOHERENT=y 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 121 # CONFIG_PAGE_SIZE_8KB is not set 122 # CONFIG_PAGE_SIZE_16KB is not set 123 # CONFIG_PAGE_SIZE_64KB is not set 124 - # CONFIG_MIPS_MT is not set 125 CONFIG_CPU_HAS_SYNC=y 126 CONFIG_GENERIC_HARDIRQS=y 127 CONFIG_GENERIC_IRQ_PROBE=y ··· 137 CONFIG_FLAT_NODE_MEM_MAP=y 138 # CONFIG_SPARSEMEM_STATIC is not set 139 CONFIG_SPLIT_PTLOCK_CPUS=4 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 150 CONFIG_PREEMPT_NONE=y 151 # CONFIG_PREEMPT_VOLUNTARY is not set 152 # CONFIG_PREEMPT is not set 153 154 # 155 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set ··· 289 # CONFIG_INET_IPCOMP is not set 290 # CONFIG_INET_XFRM_TUNNEL is not set 291 # CONFIG_INET_TUNNEL is not set 292 CONFIG_INET_DIAG=y 293 CONFIG_INET_TCP_DIAG=y 294 # CONFIG_TCP_CONG_ADVANCED is not set ··· 298 # CONFIG_IPV6 is not set 299 # CONFIG_INET6_XFRM_TUNNEL is not set 300 # CONFIG_INET6_TUNNEL is not set 301 # CONFIG_NETFILTER is not set 302 303 # ··· 359 CONFIG_STANDALONE=y 360 CONFIG_PREVENT_FIRMWARE_BUILD=y 361 CONFIG_FW_LOADER=y 362 363 # 364 # Connector - unified userspace <-> kernelspace linker ··· 498 # CONFIG_CHELSIO_T1 is not set 499 # CONFIG_IXGB is not set 500 # CONFIG_S2IO is not set 501 502 # 503 # Token Ring devices ··· 547 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 548 # 549 # CONFIG_PRISM54 is not set 550 # CONFIG_HOSTAP is not set 551 # CONFIG_BCM43XX is not set 552 CONFIG_NET_WIRELESS=y 553 554 # ··· 632 CONFIG_VT=y 633 CONFIG_VT_CONSOLE=y 634 CONFIG_HW_CONSOLE=y 635 # CONFIG_SERIAL_NONSTANDARD is not set 636 637 # ··· 658 # Watchdog Cards 659 # 660 # CONFIG_WATCHDOG is not set 661 # CONFIG_RTC is not set 662 # CONFIG_GEN_RTC is not set 663 # CONFIG_DTLK is not set ··· 715 # Multimedia devices 716 # 717 # CONFIG_VIDEO_DEV is not set 718 719 # 720 # Digital Video Broadcasting Devices ··· 726 # 727 # Graphics support 728 # 729 # CONFIG_FB is not set 730 731 # ··· 820 CONFIG_USB_PEGASUS=m 821 # CONFIG_USB_RTL8150 is not set 822 # CONFIG_USB_USBNET is not set 823 - # CONFIG_USB_ZD1201 is not set 824 # CONFIG_USB_MON is not set 825 826 # ··· 841 # CONFIG_USB_LEGOTOWER is not set 842 # CONFIG_USB_LCD is not set 843 # CONFIG_USB_LED is not set 844 # CONFIG_USB_CYTHERM is not set 845 # CONFIG_USB_PHIDGETKIT is not set 846 # CONFIG_USB_PHIDGETSERVO is not set 847 # CONFIG_USB_IDMOUSE is not set 848 # CONFIG_USB_LD is not set 849 # CONFIG_USB_TEST is not set 850 ··· 892 # CONFIG_RTC_CLASS is not set 893 894 # 895 # File systems 896 # 897 CONFIG_EXT2_FS=y ··· 919 # CONFIG_MINIX_FS is not set 920 # CONFIG_ROMFS_FS is not set 921 CONFIG_INOTIFY=y 922 # CONFIG_QUOTA is not set 923 CONFIG_DNOTIFY=y 924 CONFIG_AUTOFS_FS=y ··· 982 # CONFIG_RPCSEC_GSS_SPKM3 is not set 983 # CONFIG_SMB_FS is not set 984 # CONFIG_CIFS is not set 985 # CONFIG_NCP_FS is not set 986 # CONFIG_CODA_FS is not set 987 # CONFIG_AFS_FS is not set ··· 1009 # 1010 # CONFIG_PRINTK_TIME is not set 1011 # CONFIG_MAGIC_SYSRQ is not set 1012 # CONFIG_DEBUG_KERNEL is not set 1013 CONFIG_LOG_BUF_SHIFT=14 1014 # CONFIG_DEBUG_FS is not set ··· 1065 CONFIG_LIBCRC32C=m 1066 CONFIG_ZLIB_INFLATE=m 1067 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:15 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 73 CONFIG_GENERIC_FIND_NEXT_BIT=y 74 CONFIG_GENERIC_HWEIGHT=y 75 CONFIG_GENERIC_CALIBRATE_DELAY=y 76 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 77 CONFIG_DMA_NONCOHERENT=y 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 # CONFIG_PAGE_SIZE_8KB is not set 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 + CONFIG_MIPS_MT_DISABLED=y 121 + # CONFIG_MIPS_MT_SMTC is not set 122 + # CONFIG_MIPS_MT_SMP is not set 123 + # CONFIG_MIPS_VPE_LOADER is not set 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y 126 CONFIG_GENERIC_IRQ_PROBE=y ··· 130 CONFIG_FLAT_NODE_MEM_MAP=y 131 # CONFIG_SPARSEMEM_STATIC is not set 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 134 # CONFIG_HZ_48 is not set 135 # CONFIG_HZ_100 is not set 136 # CONFIG_HZ_128 is not set ··· 142 CONFIG_PREEMPT_NONE=y 143 # CONFIG_PREEMPT_VOLUNTARY is not set 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 146 147 # 148 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set ··· 278 # CONFIG_INET_IPCOMP is not set 279 # CONFIG_INET_XFRM_TUNNEL is not set 280 # CONFIG_INET_TUNNEL is not set 281 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 282 + CONFIG_INET_XFRM_MODE_TUNNEL=m 283 CONFIG_INET_DIAG=y 284 CONFIG_INET_TCP_DIAG=y 285 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 + CONFIG_NETWORK_SECMARK=y 289 # CONFIG_NETFILTER is not set 290 291 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 CONFIG_FW_LOADER=y 348 + # CONFIG_SYS_HYPERVISOR is not set 349 350 # 351 # Connector - unified userspace <-> kernelspace linker ··· 483 # CONFIG_CHELSIO_T1 is not set 484 # CONFIG_IXGB is not set 485 # CONFIG_S2IO is not set 486 + # CONFIG_MYRI10GE is not set 487 488 # 489 # Token Ring devices ··· 531 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 532 # 533 # CONFIG_PRISM54 is not set 534 + # CONFIG_USB_ZD1201 is not set 535 # CONFIG_HOSTAP is not set 536 # CONFIG_BCM43XX is not set 537 + # CONFIG_ZD1211RW is not set 538 CONFIG_NET_WIRELESS=y 539 540 # ··· 614 CONFIG_VT=y 615 CONFIG_VT_CONSOLE=y 616 CONFIG_HW_CONSOLE=y 617 + CONFIG_VT_HW_CONSOLE_BINDING=y 618 # CONFIG_SERIAL_NONSTANDARD is not set 619 620 # ··· 639 # Watchdog Cards 640 # 641 # CONFIG_WATCHDOG is not set 642 + # CONFIG_HW_RANDOM is not set 643 # CONFIG_RTC is not set 644 # CONFIG_GEN_RTC is not set 645 # CONFIG_DTLK is not set ··· 695 # Multimedia devices 696 # 697 # CONFIG_VIDEO_DEV is not set 698 + CONFIG_VIDEO_V4L2=y 699 700 # 701 # Digital Video Broadcasting Devices ··· 705 # 706 # Graphics support 707 # 708 + # CONFIG_FIRMWARE_EDID is not set 709 # CONFIG_FB is not set 710 711 # ··· 798 CONFIG_USB_PEGASUS=m 799 # CONFIG_USB_RTL8150 is not set 800 # CONFIG_USB_USBNET is not set 801 # CONFIG_USB_MON is not set 802 803 # ··· 820 # CONFIG_USB_LEGOTOWER is not set 821 # CONFIG_USB_LCD is not set 822 # CONFIG_USB_LED is not set 823 + # CONFIG_USB_CY7C63 is not set 824 # CONFIG_USB_CYTHERM is not set 825 # CONFIG_USB_PHIDGETKIT is not set 826 # CONFIG_USB_PHIDGETSERVO is not set 827 # CONFIG_USB_IDMOUSE is not set 828 + # CONFIG_USB_APPLEDISPLAY is not set 829 # CONFIG_USB_LD is not set 830 # CONFIG_USB_TEST is not set 831 ··· 869 # CONFIG_RTC_CLASS is not set 870 871 # 872 + # DMA Engine support 873 + # 874 + # CONFIG_DMA_ENGINE is not set 875 + 876 + # 877 + # DMA Clients 878 + # 879 + 880 + # 881 + # DMA Devices 882 + # 883 + 884 + # 885 # File systems 886 # 887 CONFIG_EXT2_FS=y ··· 883 # CONFIG_MINIX_FS is not set 884 # CONFIG_ROMFS_FS is not set 885 CONFIG_INOTIFY=y 886 + CONFIG_INOTIFY_USER=y 887 # CONFIG_QUOTA is not set 888 CONFIG_DNOTIFY=y 889 CONFIG_AUTOFS_FS=y ··· 945 # CONFIG_RPCSEC_GSS_SPKM3 is not set 946 # CONFIG_SMB_FS is not set 947 # CONFIG_CIFS is not set 948 + # CONFIG_CIFS_DEBUG2 is not set 949 # CONFIG_NCP_FS is not set 950 # CONFIG_CODA_FS is not set 951 # CONFIG_AFS_FS is not set ··· 971 # 972 # CONFIG_PRINTK_TIME is not set 973 # CONFIG_MAGIC_SYSRQ is not set 974 + # CONFIG_UNUSED_SYMBOLS is not set 975 # CONFIG_DEBUG_KERNEL is not set 976 CONFIG_LOG_BUF_SHIFT=14 977 # CONFIG_DEBUG_FS is not set ··· 1026 CONFIG_LIBCRC32C=m 1027 CONFIG_ZLIB_INFLATE=m 1028 CONFIG_ZLIB_DEFLATE=m 1029 + CONFIG_PLIST=y
+49 -6
arch/mips/configs/ocelot_3_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:10 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 122 CONFIG_BOARD_SCACHE=y 123 CONFIG_RM7000_CPU_SCACHE=y 124 CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 151 # CONFIG_HZ_1024 is not set 152 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 153 CONFIG_HZ=1000 154 - # CONFIG_SMP is not set 155 CONFIG_PREEMPT_NONE=y 156 # CONFIG_PREEMPT_VOLUNTARY is not set 157 # CONFIG_PREEMPT is not set 158 159 # 160 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 CONFIG_INET_DIAG=y 287 CONFIG_INET_TCP_DIAG=y 288 # CONFIG_TCP_CONG_ADVANCED is not set ··· 303 # CONFIG_INET6_IPCOMP is not set 304 # CONFIG_INET6_XFRM_TUNNEL is not set 305 # CONFIG_INET6_TUNNEL is not set 306 # CONFIG_IPV6_TUNNEL is not set 307 CONFIG_NETFILTER=y 308 # CONFIG_NETFILTER_DEBUG is not set 309 ··· 321 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 322 CONFIG_NETFILTER_XT_TARGET_MARK=m 323 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 324 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 325 CONFIG_NETFILTER_XT_MATCH_DCCP=m 326 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 332 CONFIG_NETFILTER_XT_MATCH_POLICY=m 333 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 334 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 335 CONFIG_NETFILTER_XT_MATCH_REALM=m 336 CONFIG_NETFILTER_XT_MATCH_SCTP=m 337 CONFIG_NETFILTER_XT_MATCH_STRING=m 338 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 339 ··· 411 CONFIG_STANDALONE=y 412 CONFIG_PREVENT_FIRMWARE_BUILD=y 413 CONFIG_FW_LOADER=m 414 415 # 416 # Connector - unified userspace <-> kernelspace linker ··· 502 # CONFIG_MEGARAID_LEGACY is not set 503 # CONFIG_MEGARAID_SAS is not set 504 # CONFIG_SCSI_SATA is not set 505 # CONFIG_SCSI_DMX3191D is not set 506 # CONFIG_SCSI_FUTURE_DOMAIN is not set 507 # CONFIG_SCSI_IPS is not set ··· 568 CONFIG_QSEMI_PHY=m 569 CONFIG_LXT_PHY=m 570 CONFIG_CICADA_PHY=m 571 572 # 573 # Ethernet (10 or 100Mbit) ··· 636 # CONFIG_CHELSIO_T1 is not set 637 # CONFIG_IXGB is not set 638 # CONFIG_S2IO is not set 639 640 # 641 # Token Ring devices ··· 720 CONFIG_VT=y 721 CONFIG_VT_CONSOLE=y 722 CONFIG_HW_CONSOLE=y 723 # CONFIG_SERIAL_NONSTANDARD is not set 724 725 # ··· 752 # Watchdog Cards 753 # 754 # CONFIG_WATCHDOG is not set 755 CONFIG_RTC=y 756 # CONFIG_DTLK is not set 757 # CONFIG_R3964 is not set ··· 800 # Multimedia devices 801 # 802 # CONFIG_VIDEO_DEV is not set 803 804 # 805 # Digital Video Broadcasting Devices ··· 810 # 811 # Graphics support 812 # 813 CONFIG_FB=y 814 # CONFIG_FB_CFB_FILLRECT is not set 815 # CONFIG_FB_CFB_COPYAREA is not set 816 # CONFIG_FB_CFB_IMAGEBLIT is not set 817 # CONFIG_FB_MACMODES is not set 818 - CONFIG_FB_FIRMWARE_EDID=y 819 CONFIG_FB_MODE_HELPERS=y 820 # CONFIG_FB_TILEBLITTING is not set 821 # CONFIG_FB_CIRRUS is not set ··· 916 # CONFIG_RTC_CLASS is not set 917 918 # 919 # File systems 920 # 921 CONFIG_EXT2_FS=y ··· 948 # CONFIG_JFS_FS is not set 949 # CONFIG_FS_POSIX_ACL is not set 950 CONFIG_XFS_FS=m 951 - CONFIG_XFS_EXPORT=y 952 # CONFIG_XFS_QUOTA is not set 953 # CONFIG_XFS_SECURITY is not set 954 # CONFIG_XFS_POSIX_ACL is not set ··· 956 # CONFIG_MINIX_FS is not set 957 # CONFIG_ROMFS_FS is not set 958 CONFIG_INOTIFY=y 959 # CONFIG_QUOTA is not set 960 CONFIG_DNOTIFY=y 961 CONFIG_AUTOFS_FS=y ··· 1028 CONFIG_SMB_FS=m 1029 # CONFIG_SMB_NLS_DEFAULT is not set 1030 # CONFIG_CIFS is not set 1031 # CONFIG_NCP_FS is not set 1032 # CONFIG_CODA_FS is not set 1033 # CONFIG_AFS_FS is not set ··· 1094 # 1095 # CONFIG_PRINTK_TIME is not set 1096 # CONFIG_MAGIC_SYSRQ is not set 1097 # CONFIG_DEBUG_KERNEL is not set 1098 CONFIG_LOG_BUF_SHIFT=14 1099 # CONFIG_DEBUG_FS is not set ··· 1153 CONFIG_TEXTSEARCH_KMP=m 1154 CONFIG_TEXTSEARCH_BM=m 1155 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:15 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 118 CONFIG_BOARD_SCACHE=y 119 CONFIG_RM7000_CPU_SCACHE=y 120 CONFIG_CPU_HAS_PREFETCH=y 121 + CONFIG_MIPS_MT_DISABLED=y 122 + # CONFIG_MIPS_MT_SMTC is not set 123 + # CONFIG_MIPS_MT_SMP is not set 124 + # CONFIG_MIPS_VPE_LOADER is not set 125 # CONFIG_64BIT_PHYS_ADDR is not set 126 CONFIG_CPU_HAS_LLSC=y 127 CONFIG_CPU_HAS_SYNC=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 143 # CONFIG_HZ_1024 is not set 144 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 145 CONFIG_HZ=1000 146 CONFIG_PREEMPT_NONE=y 147 # CONFIG_PREEMPT_VOLUNTARY is not set 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 179 CONFIG_BUG=y 180 CONFIG_ELF_CORE=y 181 CONFIG_BASE_FULL=y 182 + CONFIG_RT_MUTEXES=y 183 CONFIG_FUTEX=y 184 CONFIG_EPOLL=y 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set ··· 273 # CONFIG_INET_IPCOMP is not set 274 # CONFIG_INET_XFRM_TUNNEL is not set 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 278 CONFIG_INET_DIAG=y 279 CONFIG_INET_TCP_DIAG=y 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 291 # CONFIG_INET6_IPCOMP is not set 292 # CONFIG_INET6_XFRM_TUNNEL is not set 293 # CONFIG_INET6_TUNNEL is not set 294 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 295 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 296 # CONFIG_IPV6_TUNNEL is not set 297 + CONFIG_NETWORK_SECMARK=y 298 CONFIG_NETFILTER=y 299 # CONFIG_NETFILTER_DEBUG is not set 300 ··· 306 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 307 CONFIG_NETFILTER_XT_TARGET_MARK=m 308 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 309 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 310 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 311 CONFIG_NETFILTER_XT_MATCH_DCCP=m 312 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 316 CONFIG_NETFILTER_XT_MATCH_POLICY=m 317 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 318 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 319 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 320 CONFIG_NETFILTER_XT_MATCH_REALM=m 321 CONFIG_NETFILTER_XT_MATCH_SCTP=m 322 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 323 CONFIG_NETFILTER_XT_MATCH_STRING=m 324 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 325 ··· 393 CONFIG_STANDALONE=y 394 CONFIG_PREVENT_FIRMWARE_BUILD=y 395 CONFIG_FW_LOADER=m 396 + # CONFIG_SYS_HYPERVISOR is not set 397 398 # 399 # Connector - unified userspace <-> kernelspace linker ··· 483 # CONFIG_MEGARAID_LEGACY is not set 484 # CONFIG_MEGARAID_SAS is not set 485 # CONFIG_SCSI_SATA is not set 486 + # CONFIG_SCSI_HPTIOP is not set 487 # CONFIG_SCSI_DMX3191D is not set 488 # CONFIG_SCSI_FUTURE_DOMAIN is not set 489 # CONFIG_SCSI_IPS is not set ··· 548 CONFIG_QSEMI_PHY=m 549 CONFIG_LXT_PHY=m 550 CONFIG_CICADA_PHY=m 551 + CONFIG_VITESSE_PHY=m 552 + CONFIG_SMSC_PHY=m 553 554 # 555 # Ethernet (10 or 100Mbit) ··· 614 # CONFIG_CHELSIO_T1 is not set 615 # CONFIG_IXGB is not set 616 # CONFIG_S2IO is not set 617 + # CONFIG_MYRI10GE is not set 618 619 # 620 # Token Ring devices ··· 697 CONFIG_VT=y 698 CONFIG_VT_CONSOLE=y 699 CONFIG_HW_CONSOLE=y 700 + CONFIG_VT_HW_CONSOLE_BINDING=y 701 # CONFIG_SERIAL_NONSTANDARD is not set 702 703 # ··· 728 # Watchdog Cards 729 # 730 # CONFIG_WATCHDOG is not set 731 + # CONFIG_HW_RANDOM is not set 732 CONFIG_RTC=y 733 # CONFIG_DTLK is not set 734 # CONFIG_R3964 is not set ··· 775 # Multimedia devices 776 # 777 # CONFIG_VIDEO_DEV is not set 778 + CONFIG_VIDEO_V4L2=y 779 780 # 781 # Digital Video Broadcasting Devices ··· 784 # 785 # Graphics support 786 # 787 + # CONFIG_FIRMWARE_EDID is not set 788 CONFIG_FB=y 789 # CONFIG_FB_CFB_FILLRECT is not set 790 # CONFIG_FB_CFB_COPYAREA is not set 791 # CONFIG_FB_CFB_IMAGEBLIT is not set 792 # CONFIG_FB_MACMODES is not set 793 + # CONFIG_FB_BACKLIGHT is not set 794 CONFIG_FB_MODE_HELPERS=y 795 # CONFIG_FB_TILEBLITTING is not set 796 # CONFIG_FB_CIRRUS is not set ··· 889 # CONFIG_RTC_CLASS is not set 890 891 # 892 + # DMA Engine support 893 + # 894 + # CONFIG_DMA_ENGINE is not set 895 + 896 + # 897 + # DMA Clients 898 + # 899 + 900 + # 901 + # DMA Devices 902 + # 903 + 904 + # 905 # File systems 906 # 907 CONFIG_EXT2_FS=y ··· 908 # CONFIG_JFS_FS is not set 909 # CONFIG_FS_POSIX_ACL is not set 910 CONFIG_XFS_FS=m 911 # CONFIG_XFS_QUOTA is not set 912 # CONFIG_XFS_SECURITY is not set 913 # CONFIG_XFS_POSIX_ACL is not set ··· 917 # CONFIG_MINIX_FS is not set 918 # CONFIG_ROMFS_FS is not set 919 CONFIG_INOTIFY=y 920 + CONFIG_INOTIFY_USER=y 921 # CONFIG_QUOTA is not set 922 CONFIG_DNOTIFY=y 923 CONFIG_AUTOFS_FS=y ··· 988 CONFIG_SMB_FS=m 989 # CONFIG_SMB_NLS_DEFAULT is not set 990 # CONFIG_CIFS is not set 991 + # CONFIG_CIFS_DEBUG2 is not set 992 # CONFIG_NCP_FS is not set 993 # CONFIG_CODA_FS is not set 994 # CONFIG_AFS_FS is not set ··· 1053 # 1054 # CONFIG_PRINTK_TIME is not set 1055 # CONFIG_MAGIC_SYSRQ is not set 1056 + # CONFIG_UNUSED_SYMBOLS is not set 1057 # CONFIG_DEBUG_KERNEL is not set 1058 CONFIG_LOG_BUF_SHIFT=14 1059 # CONFIG_DEBUG_FS is not set ··· 1111 CONFIG_TEXTSEARCH_KMP=m 1112 CONFIG_TEXTSEARCH_BM=m 1113 CONFIG_TEXTSEARCH_FSM=m 1114 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ocelot_c_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:10 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 120 CONFIG_BOARD_SCACHE=y 121 CONFIG_RM7000_CPU_SCACHE=y 122 CONFIG_CPU_HAS_PREFETCH=y 123 - # CONFIG_MIPS_MT is not set 124 CONFIG_CPU_HAS_LLSC=y 125 CONFIG_CPU_HAS_SYNC=y 126 CONFIG_GENERIC_HARDIRQS=y ··· 138 CONFIG_FLAT_NODE_MEM_MAP=y 139 # CONFIG_SPARSEMEM_STATIC is not set 140 CONFIG_SPLIT_PTLOCK_CPUS=4 141 # CONFIG_HZ_48 is not set 142 # CONFIG_HZ_100 is not set 143 # CONFIG_HZ_128 is not set ··· 151 CONFIG_PREEMPT_NONE=y 152 # CONFIG_PREEMPT_VOLUNTARY is not set 153 # CONFIG_PREEMPT is not set 154 155 # 156 # Code maturity level options ··· 183 CONFIG_BUG=y 184 CONFIG_ELF_CORE=y 185 CONFIG_BASE_FULL=y 186 CONFIG_FUTEX=y 187 CONFIG_EPOLL=y 188 CONFIG_SHMEM=y 189 CONFIG_SLAB=y 190 # CONFIG_TINY_SHMEM is not set 191 CONFIG_BASE_SMALL=0 192 # CONFIG_SLOB is not set ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 # CONFIG_NETFILTER is not set 289 290 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 CONFIG_FW_LOADER=y 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 443 CONFIG_QSEMI_PHY=y 444 CONFIG_LXT_PHY=y 445 CONFIG_CICADA_PHY=y 446 447 # 448 # Ethernet (10 or 100Mbit) ··· 488 # CONFIG_CHELSIO_T1 is not set 489 # CONFIG_IXGB is not set 490 # CONFIG_S2IO is not set 491 492 # 493 # Token Ring devices ··· 566 CONFIG_VT=y 567 CONFIG_VT_CONSOLE=y 568 CONFIG_HW_CONSOLE=y 569 # CONFIG_SERIAL_NONSTANDARD is not set 570 571 # ··· 598 # Watchdog Cards 599 # 600 # CONFIG_WATCHDOG is not set 601 # CONFIG_RTC is not set 602 # CONFIG_GEN_RTC is not set 603 # CONFIG_DTLK is not set ··· 647 # Multimedia devices 648 # 649 # CONFIG_VIDEO_DEV is not set 650 651 # 652 # Digital Video Broadcasting Devices ··· 657 # 658 # Graphics support 659 # 660 # CONFIG_FB is not set 661 662 # ··· 721 # CONFIG_RTC_CLASS is not set 722 723 # 724 # File systems 725 # 726 CONFIG_EXT2_FS=y ··· 748 # CONFIG_MINIX_FS is not set 749 # CONFIG_ROMFS_FS is not set 750 CONFIG_INOTIFY=y 751 # CONFIG_QUOTA is not set 752 CONFIG_DNOTIFY=y 753 # CONFIG_AUTOFS_FS is not set ··· 815 # CONFIG_RPCSEC_GSS_SPKM3 is not set 816 # CONFIG_SMB_FS is not set 817 # CONFIG_CIFS is not set 818 # CONFIG_NCP_FS is not set 819 # CONFIG_CODA_FS is not set 820 # CONFIG_AFS_FS is not set ··· 842 # 843 # CONFIG_PRINTK_TIME is not set 844 # CONFIG_MAGIC_SYSRQ is not set 845 # CONFIG_DEBUG_KERNEL is not set 846 CONFIG_LOG_BUF_SHIFT=14 847 # CONFIG_DEBUG_FS is not set ··· 884 CONFIG_CRYPTO_DEFLATE=y 885 CONFIG_CRYPTO_MICHAEL_MIC=y 886 CONFIG_CRYPTO_CRC32C=y 887 - # CONFIG_CRYPTO_TEST is not set 888 889 # 890 # Hardware crypto devices ··· 898 CONFIG_LIBCRC32C=y 899 CONFIG_ZLIB_INFLATE=y 900 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 116 CONFIG_BOARD_SCACHE=y 117 CONFIG_RM7000_CPU_SCACHE=y 118 CONFIG_CPU_HAS_PREFETCH=y 119 + CONFIG_MIPS_MT_DISABLED=y 120 + # CONFIG_MIPS_MT_SMTC is not set 121 + # CONFIG_MIPS_MT_SMP is not set 122 + # CONFIG_MIPS_VPE_LOADER is not set 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y ··· 131 CONFIG_FLAT_NODE_MEM_MAP=y 132 # CONFIG_SPARSEMEM_STATIC is not set 133 CONFIG_SPLIT_PTLOCK_CPUS=4 134 + CONFIG_RESOURCES_64BIT=y 135 # CONFIG_HZ_48 is not set 136 # CONFIG_HZ_100 is not set 137 # CONFIG_HZ_128 is not set ··· 143 CONFIG_PREEMPT_NONE=y 144 # CONFIG_PREEMPT_VOLUNTARY is not set 145 # CONFIG_PREEMPT is not set 146 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 147 148 # 149 # Code maturity level options ··· 174 CONFIG_BUG=y 175 CONFIG_ELF_CORE=y 176 CONFIG_BASE_FULL=y 177 + CONFIG_RT_MUTEXES=y 178 CONFIG_FUTEX=y 179 CONFIG_EPOLL=y 180 CONFIG_SHMEM=y 181 CONFIG_SLAB=y 182 + CONFIG_VM_EVENT_COUNTERS=y 183 # CONFIG_TINY_SHMEM is not set 184 CONFIG_BASE_SMALL=0 185 # CONFIG_SLOB is not set ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 269 + CONFIG_INET_XFRM_MODE_TUNNEL=y 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 272 # CONFIG_IPV6 is not set 273 # CONFIG_INET6_XFRM_TUNNEL is not set 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 276 # CONFIG_NETFILTER is not set 277 278 # ··· 331 CONFIG_STANDALONE=y 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 333 CONFIG_FW_LOADER=y 334 + # CONFIG_SYS_HYPERVISOR is not set 335 336 # 337 # Connector - unified userspace <-> kernelspace linker ··· 428 CONFIG_QSEMI_PHY=y 429 CONFIG_LXT_PHY=y 430 CONFIG_CICADA_PHY=y 431 + CONFIG_VITESSE_PHY=y 432 + CONFIG_SMSC_PHY=y 433 434 # 435 # Ethernet (10 or 100Mbit) ··· 471 # CONFIG_CHELSIO_T1 is not set 472 # CONFIG_IXGB is not set 473 # CONFIG_S2IO is not set 474 + # CONFIG_MYRI10GE is not set 475 476 # 477 # Token Ring devices ··· 548 CONFIG_VT=y 549 CONFIG_VT_CONSOLE=y 550 CONFIG_HW_CONSOLE=y 551 + CONFIG_VT_HW_CONSOLE_BINDING=y 552 # CONFIG_SERIAL_NONSTANDARD is not set 553 554 # ··· 579 # Watchdog Cards 580 # 581 # CONFIG_WATCHDOG is not set 582 + # CONFIG_HW_RANDOM is not set 583 # CONFIG_RTC is not set 584 # CONFIG_GEN_RTC is not set 585 # CONFIG_DTLK is not set ··· 627 # Multimedia devices 628 # 629 # CONFIG_VIDEO_DEV is not set 630 + CONFIG_VIDEO_V4L2=y 631 632 # 633 # Digital Video Broadcasting Devices ··· 636 # 637 # Graphics support 638 # 639 + # CONFIG_FIRMWARE_EDID is not set 640 # CONFIG_FB is not set 641 642 # ··· 699 # CONFIG_RTC_CLASS is not set 700 701 # 702 + # DMA Engine support 703 + # 704 + # CONFIG_DMA_ENGINE is not set 705 + 706 + # 707 + # DMA Clients 708 + # 709 + 710 + # 711 + # DMA Devices 712 + # 713 + 714 + # 715 # File systems 716 # 717 CONFIG_EXT2_FS=y ··· 713 # CONFIG_MINIX_FS is not set 714 # CONFIG_ROMFS_FS is not set 715 CONFIG_INOTIFY=y 716 + CONFIG_INOTIFY_USER=y 717 # CONFIG_QUOTA is not set 718 CONFIG_DNOTIFY=y 719 # CONFIG_AUTOFS_FS is not set ··· 779 # CONFIG_RPCSEC_GSS_SPKM3 is not set 780 # CONFIG_SMB_FS is not set 781 # CONFIG_CIFS is not set 782 + # CONFIG_CIFS_DEBUG2 is not set 783 # CONFIG_NCP_FS is not set 784 # CONFIG_CODA_FS is not set 785 # CONFIG_AFS_FS is not set ··· 805 # 806 # CONFIG_PRINTK_TIME is not set 807 # CONFIG_MAGIC_SYSRQ is not set 808 + # CONFIG_UNUSED_SYMBOLS is not set 809 # CONFIG_DEBUG_KERNEL is not set 810 CONFIG_LOG_BUF_SHIFT=14 811 # CONFIG_DEBUG_FS is not set ··· 846 CONFIG_CRYPTO_DEFLATE=y 847 CONFIG_CRYPTO_MICHAEL_MIC=y 848 CONFIG_CRYPTO_CRC32C=y 849 850 # 851 # Hardware crypto devices ··· 861 CONFIG_LIBCRC32C=y 862 CONFIG_ZLIB_INFLATE=y 863 CONFIG_ZLIB_DEFLATE=y 864 + CONFIG_PLIST=y
+41 -4
arch/mips/configs/ocelot_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:11 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 CONFIG_MOMENCO_OCELOT=y ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 123 CONFIG_BOARD_SCACHE=y 124 CONFIG_RM7000_CPU_SCACHE=y 125 CONFIG_CPU_HAS_PREFETCH=y 126 - # CONFIG_MIPS_MT is not set 127 # CONFIG_64BIT_PHYS_ADDR is not set 128 CONFIG_CPU_HAS_LLSC=y 129 CONFIG_CPU_HAS_SYNC=y ··· 142 CONFIG_FLAT_NODE_MEM_MAP=y 143 # CONFIG_SPARSEMEM_STATIC is not set 144 CONFIG_SPLIT_PTLOCK_CPUS=4 145 # CONFIG_HZ_48 is not set 146 # CONFIG_HZ_100 is not set 147 # CONFIG_HZ_128 is not set ··· 155 CONFIG_PREEMPT_NONE=y 156 # CONFIG_PREEMPT_VOLUNTARY is not set 157 # CONFIG_PREEMPT is not set 158 159 # 160 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 # CONFIG_INET_TUNNEL is not set 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 285 # CONFIG_IPV6 is not set 286 # CONFIG_INET6_XFRM_TUNNEL is not set 287 # CONFIG_INET6_TUNNEL is not set 288 # CONFIG_NETFILTER is not set 289 290 # ··· 345 CONFIG_STANDALONE=y 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 # CONFIG_FW_LOADER is not set 348 349 # 350 # Connector - unified userspace <-> kernelspace linker ··· 431 CONFIG_QSEMI_PHY=y 432 CONFIG_LXT_PHY=y 433 CONFIG_CICADA_PHY=y 434 435 # 436 # Ethernet (10 or 100Mbit) ··· 521 CONFIG_VT=y 522 CONFIG_VT_CONSOLE=y 523 CONFIG_HW_CONSOLE=y 524 # CONFIG_SERIAL_NONSTANDARD is not set 525 526 # ··· 551 # Watchdog Cards 552 # 553 # CONFIG_WATCHDOG is not set 554 # CONFIG_RTC is not set 555 # CONFIG_GEN_RTC is not set 556 # CONFIG_DTLK is not set ··· 598 # Multimedia devices 599 # 600 # CONFIG_VIDEO_DEV is not set 601 602 # 603 # Digital Video Broadcasting Devices ··· 608 # 609 # Graphics support 610 # 611 # CONFIG_FB is not set 612 613 # ··· 670 # CONFIG_RTC_CLASS is not set 671 672 # 673 # File systems 674 # 675 CONFIG_EXT2_FS=y ··· 697 # CONFIG_MINIX_FS is not set 698 # CONFIG_ROMFS_FS is not set 699 CONFIG_INOTIFY=y 700 # CONFIG_QUOTA is not set 701 CONFIG_DNOTIFY=y 702 # CONFIG_AUTOFS_FS is not set ··· 764 # CONFIG_RPCSEC_GSS_SPKM3 is not set 765 # CONFIG_SMB_FS is not set 766 # CONFIG_CIFS is not set 767 # CONFIG_NCP_FS is not set 768 # CONFIG_CODA_FS is not set 769 # CONFIG_AFS_FS is not set ··· 791 # 792 # CONFIG_PRINTK_TIME is not set 793 # CONFIG_MAGIC_SYSRQ is not set 794 # CONFIG_DEBUG_KERNEL is not set 795 CONFIG_LOG_BUF_SHIFT=14 796 # CONFIG_DEBUG_FS is not set ··· 833 CONFIG_CRYPTO_DEFLATE=y 834 CONFIG_CRYPTO_MICHAEL_MIC=y 835 CONFIG_CRYPTO_CRC32C=y 836 - # CONFIG_CRYPTO_TEST is not set 837 838 # 839 # Hardware crypto devices ··· 847 CONFIG_LIBCRC32C=y 848 CONFIG_ZLIB_INFLATE=y 849 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 CONFIG_MOMENCO_OCELOT=y ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 119 CONFIG_BOARD_SCACHE=y 120 CONFIG_RM7000_CPU_SCACHE=y 121 CONFIG_CPU_HAS_PREFETCH=y 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 + # CONFIG_RESOURCES_64BIT is not set 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 147 CONFIG_PREEMPT_NONE=y 148 # CONFIG_PREEMPT_VOLUNTARY is not set 149 # CONFIG_PREEMPT is not set 150 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 151 152 # 153 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 269 + CONFIG_INET_XFRM_MODE_TUNNEL=y 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 272 # CONFIG_IPV6 is not set 273 # CONFIG_INET6_XFRM_TUNNEL is not set 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 276 # CONFIG_NETFILTER is not set 277 278 # ··· 331 CONFIG_STANDALONE=y 332 CONFIG_PREVENT_FIRMWARE_BUILD=y 333 # CONFIG_FW_LOADER is not set 334 + # CONFIG_SYS_HYPERVISOR is not set 335 336 # 337 # Connector - unified userspace <-> kernelspace linker ··· 416 CONFIG_QSEMI_PHY=y 417 CONFIG_LXT_PHY=y 418 CONFIG_CICADA_PHY=y 419 + CONFIG_VITESSE_PHY=y 420 + CONFIG_SMSC_PHY=y 421 422 # 423 # Ethernet (10 or 100Mbit) ··· 504 CONFIG_VT=y 505 CONFIG_VT_CONSOLE=y 506 CONFIG_HW_CONSOLE=y 507 + CONFIG_VT_HW_CONSOLE_BINDING=y 508 # CONFIG_SERIAL_NONSTANDARD is not set 509 510 # ··· 533 # Watchdog Cards 534 # 535 # CONFIG_WATCHDOG is not set 536 + # CONFIG_HW_RANDOM is not set 537 # CONFIG_RTC is not set 538 # CONFIG_GEN_RTC is not set 539 # CONFIG_DTLK is not set ··· 579 # Multimedia devices 580 # 581 # CONFIG_VIDEO_DEV is not set 582 + CONFIG_VIDEO_V4L2=y 583 584 # 585 # Digital Video Broadcasting Devices ··· 588 # 589 # Graphics support 590 # 591 + # CONFIG_FIRMWARE_EDID is not set 592 # CONFIG_FB is not set 593 594 # ··· 649 # CONFIG_RTC_CLASS is not set 650 651 # 652 + # DMA Engine support 653 + # 654 + # CONFIG_DMA_ENGINE is not set 655 + 656 + # 657 + # DMA Clients 658 + # 659 + 660 + # 661 + # DMA Devices 662 + # 663 + 664 + # 665 # File systems 666 # 667 CONFIG_EXT2_FS=y ··· 663 # CONFIG_MINIX_FS is not set 664 # CONFIG_ROMFS_FS is not set 665 CONFIG_INOTIFY=y 666 + CONFIG_INOTIFY_USER=y 667 # CONFIG_QUOTA is not set 668 CONFIG_DNOTIFY=y 669 # CONFIG_AUTOFS_FS is not set ··· 729 # CONFIG_RPCSEC_GSS_SPKM3 is not set 730 # CONFIG_SMB_FS is not set 731 # CONFIG_CIFS is not set 732 + # CONFIG_CIFS_DEBUG2 is not set 733 # CONFIG_NCP_FS is not set 734 # CONFIG_CODA_FS is not set 735 # CONFIG_AFS_FS is not set ··· 755 # 756 # CONFIG_PRINTK_TIME is not set 757 # CONFIG_MAGIC_SYSRQ is not set 758 + # CONFIG_UNUSED_SYMBOLS is not set 759 # CONFIG_DEBUG_KERNEL is not set 760 CONFIG_LOG_BUF_SHIFT=14 761 # CONFIG_DEBUG_FS is not set ··· 796 CONFIG_CRYPTO_DEFLATE=y 797 CONFIG_CRYPTO_MICHAEL_MIC=y 798 CONFIG_CRYPTO_CRC32C=y 799 800 # 801 # Hardware crypto devices ··· 811 CONFIG_LIBCRC32C=y 812 CONFIG_ZLIB_INFLATE=y 813 CONFIG_ZLIB_DEFLATE=y 814 + CONFIG_PLIST=y
+42 -4
arch/mips/configs/ocelot_g_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:11 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_CPU_BIG_ENDIAN=y ··· 123 CONFIG_BOARD_SCACHE=y 124 CONFIG_RM7000_CPU_SCACHE=y 125 CONFIG_CPU_HAS_PREFETCH=y 126 - # CONFIG_MIPS_MT is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y 129 CONFIG_GENERIC_HARDIRQS=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 CONFIG_PREEMPT_NONE=y 155 # CONFIG_PREEMPT_VOLUNTARY is not set 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 186 CONFIG_BUG=y 187 CONFIG_ELF_CORE=y 188 CONFIG_BASE_FULL=y 189 CONFIG_FUTEX=y 190 CONFIG_EPOLL=y 191 CONFIG_SHMEM=y 192 CONFIG_SLAB=y 193 # CONFIG_TINY_SHMEM is not set 194 CONFIG_BASE_SMALL=0 195 # CONFIG_SLOB is not set ··· 279 # CONFIG_INET_IPCOMP is not set 280 # CONFIG_INET_XFRM_TUNNEL is not set 281 # CONFIG_INET_TUNNEL is not set 282 CONFIG_INET_DIAG=y 283 CONFIG_INET_TCP_DIAG=y 284 # CONFIG_TCP_CONG_ADVANCED is not set ··· 288 # CONFIG_IPV6 is not set 289 # CONFIG_INET6_XFRM_TUNNEL is not set 290 # CONFIG_INET6_TUNNEL is not set 291 # CONFIG_NETFILTER is not set 292 293 # ··· 348 CONFIG_STANDALONE=y 349 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 CONFIG_FW_LOADER=y 351 352 # 353 # Connector - unified userspace <-> kernelspace linker ··· 446 CONFIG_QSEMI_PHY=y 447 CONFIG_LXT_PHY=y 448 CONFIG_CICADA_PHY=y 449 450 # 451 # Ethernet (10 or 100Mbit) ··· 491 # CONFIG_CHELSIO_T1 is not set 492 # CONFIG_IXGB is not set 493 # CONFIG_S2IO is not set 494 495 # 496 # Token Ring devices ··· 569 CONFIG_VT=y 570 CONFIG_VT_CONSOLE=y 571 CONFIG_HW_CONSOLE=y 572 # CONFIG_SERIAL_NONSTANDARD is not set 573 574 # ··· 601 # Watchdog Cards 602 # 603 # CONFIG_WATCHDOG is not set 604 # CONFIG_RTC is not set 605 # CONFIG_GEN_RTC is not set 606 # CONFIG_DTLK is not set ··· 650 # Multimedia devices 651 # 652 # CONFIG_VIDEO_DEV is not set 653 654 # 655 # Digital Video Broadcasting Devices ··· 660 # 661 # Graphics support 662 # 663 # CONFIG_FB is not set 664 665 # ··· 724 # CONFIG_RTC_CLASS is not set 725 726 # 727 # File systems 728 # 729 CONFIG_EXT2_FS=y ··· 751 # CONFIG_MINIX_FS is not set 752 # CONFIG_ROMFS_FS is not set 753 CONFIG_INOTIFY=y 754 # CONFIG_QUOTA is not set 755 CONFIG_DNOTIFY=y 756 # CONFIG_AUTOFS_FS is not set ··· 818 # CONFIG_RPCSEC_GSS_SPKM3 is not set 819 # CONFIG_SMB_FS is not set 820 # CONFIG_CIFS is not set 821 # CONFIG_NCP_FS is not set 822 # CONFIG_CODA_FS is not set 823 # CONFIG_AFS_FS is not set ··· 845 # 846 # CONFIG_PRINTK_TIME is not set 847 # CONFIG_MAGIC_SYSRQ is not set 848 # CONFIG_DEBUG_KERNEL is not set 849 CONFIG_LOG_BUF_SHIFT=14 850 # CONFIG_DEBUG_FS is not set ··· 887 CONFIG_CRYPTO_DEFLATE=y 888 CONFIG_CRYPTO_MICHAEL_MIC=y 889 CONFIG_CRYPTO_CRC32C=y 890 - # CONFIG_CRYPTO_TEST is not set 891 892 # 893 # Hardware crypto devices ··· 901 CONFIG_LIBCRC32C=y 902 CONFIG_ZLIB_INFLATE=y 903 CONFIG_ZLIB_DEFLATE=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:16 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 119 CONFIG_BOARD_SCACHE=y 120 CONFIG_RM7000_CPU_SCACHE=y 121 CONFIG_CPU_HAS_PREFETCH=y 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 CONFIG_CPU_HAS_LLSC=y 127 CONFIG_CPU_HAS_SYNC=y 128 CONFIG_GENERIC_HARDIRQS=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + CONFIG_RESOURCES_64BIT=y 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 146 CONFIG_PREEMPT_NONE=y 147 # CONFIG_PREEMPT_VOLUNTARY is not set 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 177 CONFIG_BUG=y 178 CONFIG_ELF_CORE=y 179 CONFIG_BASE_FULL=y 180 + CONFIG_RT_MUTEXES=y 181 CONFIG_FUTEX=y 182 CONFIG_EPOLL=y 183 CONFIG_SHMEM=y 184 CONFIG_SLAB=y 185 + CONFIG_VM_EVENT_COUNTERS=y 186 # CONFIG_TINY_SHMEM is not set 187 CONFIG_BASE_SMALL=0 188 # CONFIG_SLOB is not set ··· 268 # CONFIG_INET_IPCOMP is not set 269 # CONFIG_INET_XFRM_TUNNEL is not set 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 272 + CONFIG_INET_XFRM_MODE_TUNNEL=y 273 CONFIG_INET_DIAG=y 274 CONFIG_INET_TCP_DIAG=y 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 275 # CONFIG_IPV6 is not set 276 # CONFIG_INET6_XFRM_TUNNEL is not set 277 # CONFIG_INET6_TUNNEL is not set 278 + CONFIG_NETWORK_SECMARK=y 279 # CONFIG_NETFILTER is not set 280 281 # ··· 334 CONFIG_STANDALONE=y 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 338 339 # 340 # Connector - unified userspace <-> kernelspace linker ··· 431 CONFIG_QSEMI_PHY=y 432 CONFIG_LXT_PHY=y 433 CONFIG_CICADA_PHY=y 434 + CONFIG_VITESSE_PHY=y 435 + CONFIG_SMSC_PHY=y 436 437 # 438 # Ethernet (10 or 100Mbit) ··· 474 # CONFIG_CHELSIO_T1 is not set 475 # CONFIG_IXGB is not set 476 # CONFIG_S2IO is not set 477 + # CONFIG_MYRI10GE is not set 478 479 # 480 # Token Ring devices ··· 551 CONFIG_VT=y 552 CONFIG_VT_CONSOLE=y 553 CONFIG_HW_CONSOLE=y 554 + CONFIG_VT_HW_CONSOLE_BINDING=y 555 # CONFIG_SERIAL_NONSTANDARD is not set 556 557 # ··· 582 # Watchdog Cards 583 # 584 # CONFIG_WATCHDOG is not set 585 + # CONFIG_HW_RANDOM is not set 586 # CONFIG_RTC is not set 587 # CONFIG_GEN_RTC is not set 588 # CONFIG_DTLK is not set ··· 630 # Multimedia devices 631 # 632 # CONFIG_VIDEO_DEV is not set 633 + CONFIG_VIDEO_V4L2=y 634 635 # 636 # Digital Video Broadcasting Devices ··· 639 # 640 # Graphics support 641 # 642 + # CONFIG_FIRMWARE_EDID is not set 643 # CONFIG_FB is not set 644 645 # ··· 702 # CONFIG_RTC_CLASS is not set 703 704 # 705 + # DMA Engine support 706 + # 707 + # CONFIG_DMA_ENGINE is not set 708 + 709 + # 710 + # DMA Clients 711 + # 712 + 713 + # 714 + # DMA Devices 715 + # 716 + 717 + # 718 # File systems 719 # 720 CONFIG_EXT2_FS=y ··· 716 # CONFIG_MINIX_FS is not set 717 # CONFIG_ROMFS_FS is not set 718 CONFIG_INOTIFY=y 719 + CONFIG_INOTIFY_USER=y 720 # CONFIG_QUOTA is not set 721 CONFIG_DNOTIFY=y 722 # CONFIG_AUTOFS_FS is not set ··· 782 # CONFIG_RPCSEC_GSS_SPKM3 is not set 783 # CONFIG_SMB_FS is not set 784 # CONFIG_CIFS is not set 785 + # CONFIG_CIFS_DEBUG2 is not set 786 # CONFIG_NCP_FS is not set 787 # CONFIG_CODA_FS is not set 788 # CONFIG_AFS_FS is not set ··· 808 # 809 # CONFIG_PRINTK_TIME is not set 810 # CONFIG_MAGIC_SYSRQ is not set 811 + # CONFIG_UNUSED_SYMBOLS is not set 812 # CONFIG_DEBUG_KERNEL is not set 813 CONFIG_LOG_BUF_SHIFT=14 814 # CONFIG_DEBUG_FS is not set ··· 849 CONFIG_CRYPTO_DEFLATE=y 850 CONFIG_CRYPTO_MICHAEL_MIC=y 851 CONFIG_CRYPTO_CRC32C=y 852 853 # 854 # Hardware crypto devices ··· 864 CONFIG_LIBCRC32C=y 865 CONFIG_ZLIB_INFLATE=y 866 CONFIG_ZLIB_DEFLATE=y 867 + CONFIG_PLIST=y
+44 -4
arch/mips/configs/pb1100_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:12 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 122 CONFIG_64BIT_PHYS_ADDR=y 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y ··· 137 CONFIG_FLAT_NODE_MEM_MAP=y 138 # CONFIG_SPARSEMEM_STATIC is not set 139 CONFIG_SPLIT_PTLOCK_CPUS=4 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 150 CONFIG_PREEMPT_NONE=y 151 # CONFIG_PREEMPT_VOLUNTARY is not set 152 # CONFIG_PREEMPT is not set 153 154 # 155 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set 192 - CONFIG_OBSOLETE_INTERMODULE=y 193 194 # 195 # Loadable module support ··· 288 # CONFIG_INET_IPCOMP is not set 289 # CONFIG_INET_XFRM_TUNNEL is not set 290 # CONFIG_INET_TUNNEL is not set 291 CONFIG_INET_DIAG=y 292 CONFIG_INET_TCP_DIAG=y 293 # CONFIG_TCP_CONG_ADVANCED is not set ··· 302 # CONFIG_IPV6 is not set 303 # CONFIG_INET6_XFRM_TUNNEL is not set 304 # CONFIG_INET6_TUNNEL is not set 305 CONFIG_NETFILTER=y 306 # CONFIG_NETFILTER_DEBUG is not set 307 ··· 317 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 318 CONFIG_NETFILTER_XT_TARGET_MARK=m 319 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 320 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 321 CONFIG_NETFILTER_XT_MATCH_DCCP=m 322 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 328 CONFIG_NETFILTER_XT_MATCH_POLICY=m 329 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 330 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 331 CONFIG_NETFILTER_XT_MATCH_REALM=m 332 CONFIG_NETFILTER_XT_MATCH_SCTP=m 333 CONFIG_NETFILTER_XT_MATCH_STRING=m 334 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 335 ··· 401 CONFIG_STANDALONE=y 402 CONFIG_PREVENT_FIRMWARE_BUILD=y 403 CONFIG_FW_LOADER=m 404 405 # 406 # Connector - unified userspace <-> kernelspace linker ··· 561 CONFIG_QSEMI_PHY=m 562 CONFIG_LXT_PHY=m 563 CONFIG_CICADA_PHY=m 564 565 # 566 # Ethernet (10 or 100Mbit) ··· 666 CONFIG_VT=y 667 CONFIG_VT_CONSOLE=y 668 CONFIG_HW_CONSOLE=y 669 # CONFIG_SERIAL_NONSTANDARD is not set 670 # CONFIG_AU1X00_GPIO is not set 671 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 700 # Watchdog Cards 701 # 702 # CONFIG_WATCHDOG is not set 703 # CONFIG_RTC is not set 704 # CONFIG_GEN_RTC is not set 705 # CONFIG_DTLK is not set ··· 754 # Multimedia devices 755 # 756 # CONFIG_VIDEO_DEV is not set 757 758 # 759 # Digital Video Broadcasting Devices ··· 764 # 765 # Graphics support 766 # 767 # CONFIG_FB is not set 768 769 # ··· 827 # CONFIG_RTC_CLASS is not set 828 829 # 830 # File systems 831 # 832 CONFIG_EXT2_FS=y ··· 867 # CONFIG_MINIX_FS is not set 868 # CONFIG_ROMFS_FS is not set 869 CONFIG_INOTIFY=y 870 # CONFIG_QUOTA is not set 871 CONFIG_DNOTIFY=y 872 CONFIG_AUTOFS_FS=m ··· 937 CONFIG_SMB_FS=m 938 # CONFIG_SMB_NLS_DEFAULT is not set 939 # CONFIG_CIFS is not set 940 # CONFIG_NCP_FS is not set 941 # CONFIG_CODA_FS is not set 942 # CONFIG_AFS_FS is not set ··· 1003 # 1004 # CONFIG_PRINTK_TIME is not set 1005 # CONFIG_MAGIC_SYSRQ is not set 1006 # CONFIG_DEBUG_KERNEL is not set 1007 CONFIG_LOG_BUF_SHIFT=14 1008 # CONFIG_DEBUG_FS is not set ··· 1063 CONFIG_TEXTSEARCH_KMP=m 1064 CONFIG_TEXTSEARCH_BM=m 1065 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 114 # CONFIG_PAGE_SIZE_16KB is not set 115 # CONFIG_PAGE_SIZE_64KB is not set 116 CONFIG_CPU_HAS_PREFETCH=y 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 121 CONFIG_64BIT_PHYS_ADDR=y 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 130 CONFIG_FLAT_NODE_MEM_MAP=y 131 # CONFIG_SPARSEMEM_STATIC is not set 132 CONFIG_SPLIT_PTLOCK_CPUS=4 133 + # CONFIG_RESOURCES_64BIT is not set 134 # CONFIG_HZ_48 is not set 135 # CONFIG_HZ_100 is not set 136 # CONFIG_HZ_128 is not set ··· 142 CONFIG_PREEMPT_NONE=y 143 # CONFIG_PREEMPT_VOLUNTARY is not set 144 # CONFIG_PREEMPT is not set 145 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 146 147 # 148 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set 185 186 # 187 # Loadable module support ··· 278 # CONFIG_INET_IPCOMP is not set 279 # CONFIG_INET_XFRM_TUNNEL is not set 280 # CONFIG_INET_TUNNEL is not set 281 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 282 + CONFIG_INET_XFRM_MODE_TUNNEL=m 283 CONFIG_INET_DIAG=y 284 CONFIG_INET_TCP_DIAG=y 285 # CONFIG_TCP_CONG_ADVANCED is not set ··· 290 # CONFIG_IPV6 is not set 291 # CONFIG_INET6_XFRM_TUNNEL is not set 292 # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 294 CONFIG_NETFILTER=y 295 # CONFIG_NETFILTER_DEBUG is not set 296 ··· 304 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 305 CONFIG_NETFILTER_XT_TARGET_MARK=m 306 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 307 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 308 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 309 CONFIG_NETFILTER_XT_MATCH_DCCP=m 310 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 314 CONFIG_NETFILTER_XT_MATCH_POLICY=m 315 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 316 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 317 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 318 CONFIG_NETFILTER_XT_MATCH_REALM=m 319 CONFIG_NETFILTER_XT_MATCH_SCTP=m 320 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 321 CONFIG_NETFILTER_XT_MATCH_STRING=m 322 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 323 ··· 385 CONFIG_STANDALONE=y 386 CONFIG_PREVENT_FIRMWARE_BUILD=y 387 CONFIG_FW_LOADER=m 388 + # CONFIG_SYS_HYPERVISOR is not set 389 390 # 391 # Connector - unified userspace <-> kernelspace linker ··· 544 CONFIG_QSEMI_PHY=m 545 CONFIG_LXT_PHY=m 546 CONFIG_CICADA_PHY=m 547 + CONFIG_VITESSE_PHY=m 548 + CONFIG_SMSC_PHY=m 549 550 # 551 # Ethernet (10 or 100Mbit) ··· 647 CONFIG_VT=y 648 CONFIG_VT_CONSOLE=y 649 CONFIG_HW_CONSOLE=y 650 + CONFIG_VT_HW_CONSOLE_BINDING=y 651 # CONFIG_SERIAL_NONSTANDARD is not set 652 # CONFIG_AU1X00_GPIO is not set 653 # CONFIG_TS_AU1X00_ADS7846 is not set ··· 680 # Watchdog Cards 681 # 682 # CONFIG_WATCHDOG is not set 683 + # CONFIG_HW_RANDOM is not set 684 # CONFIG_RTC is not set 685 # CONFIG_GEN_RTC is not set 686 # CONFIG_DTLK is not set ··· 733 # Multimedia devices 734 # 735 # CONFIG_VIDEO_DEV is not set 736 + CONFIG_VIDEO_V4L2=y 737 738 # 739 # Digital Video Broadcasting Devices ··· 742 # 743 # Graphics support 744 # 745 + # CONFIG_FIRMWARE_EDID is not set 746 # CONFIG_FB is not set 747 748 # ··· 804 # CONFIG_RTC_CLASS is not set 805 806 # 807 + # DMA Engine support 808 + # 809 + # CONFIG_DMA_ENGINE is not set 810 + 811 + # 812 + # DMA Clients 813 + # 814 + 815 + # 816 + # DMA Devices 817 + # 818 + 819 + # 820 # File systems 821 # 822 CONFIG_EXT2_FS=y ··· 831 # CONFIG_MINIX_FS is not set 832 # CONFIG_ROMFS_FS is not set 833 CONFIG_INOTIFY=y 834 + CONFIG_INOTIFY_USER=y 835 # CONFIG_QUOTA is not set 836 CONFIG_DNOTIFY=y 837 CONFIG_AUTOFS_FS=m ··· 900 CONFIG_SMB_FS=m 901 # CONFIG_SMB_NLS_DEFAULT is not set 902 # CONFIG_CIFS is not set 903 + # CONFIG_CIFS_DEBUG2 is not set 904 # CONFIG_NCP_FS is not set 905 # CONFIG_CODA_FS is not set 906 # CONFIG_AFS_FS is not set ··· 965 # 966 # CONFIG_PRINTK_TIME is not set 967 # CONFIG_MAGIC_SYSRQ is not set 968 + # CONFIG_UNUSED_SYMBOLS is not set 969 # CONFIG_DEBUG_KERNEL is not set 970 CONFIG_LOG_BUF_SHIFT=14 971 # CONFIG_DEBUG_FS is not set ··· 1024 CONFIG_TEXTSEARCH_KMP=m 1025 CONFIG_TEXTSEARCH_BM=m 1026 CONFIG_TEXTSEARCH_FSM=m 1027 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/pb1500_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:13 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 121 CONFIG_64BIT_PHYS_ADDR=y 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 CONFIG_PREEMPT_NONE=y 150 # CONFIG_PREEMPT_VOLUNTARY is not set 151 # CONFIG_PREEMPT is not set 152 153 # 154 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 193 # 194 # Loadable module support ··· 293 # CONFIG_INET_IPCOMP is not set 294 # CONFIG_INET_XFRM_TUNNEL is not set 295 # CONFIG_INET_TUNNEL is not set 296 CONFIG_INET_DIAG=y 297 CONFIG_INET_TCP_DIAG=y 298 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 # CONFIG_IPV6 is not set 308 # CONFIG_INET6_XFRM_TUNNEL is not set 309 # CONFIG_INET6_TUNNEL is not set 310 CONFIG_NETFILTER=y 311 # CONFIG_NETFILTER_DEBUG is not set 312 ··· 322 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 325 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 336 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 CONFIG_NETFILTER_XT_MATCH_SCTP=m 338 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 ··· 406 CONFIG_STANDALONE=y 407 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 CONFIG_FW_LOADER=m 409 410 # 411 # Connector - unified userspace <-> kernelspace linker ··· 621 # 622 # PHY device support 623 # 624 - CONFIG_PHYLIB=m 625 626 # 627 # MII PHY device drivers ··· 631 CONFIG_QSEMI_PHY=m 632 CONFIG_LXT_PHY=m 633 CONFIG_CICADA_PHY=m 634 635 # 636 # Ethernet (10 or 100Mbit) ··· 677 # CONFIG_CHELSIO_T1 is not set 678 # CONFIG_IXGB is not set 679 # CONFIG_S2IO is not set 680 681 # 682 # Token Ring devices ··· 809 # Watchdog Cards 810 # 811 # CONFIG_WATCHDOG is not set 812 # CONFIG_RTC is not set 813 # CONFIG_GEN_RTC is not set 814 # CONFIG_DTLK is not set ··· 865 # Multimedia devices 866 # 867 # CONFIG_VIDEO_DEV is not set 868 869 # 870 # Digital Video Broadcasting Devices ··· 875 # 876 # Graphics support 877 # 878 # CONFIG_FB is not set 879 880 # ··· 933 # CONFIG_RTC_CLASS is not set 934 935 # 936 # File systems 937 # 938 CONFIG_EXT2_FS=y ··· 973 # CONFIG_MINIX_FS is not set 974 # CONFIG_ROMFS_FS is not set 975 CONFIG_INOTIFY=y 976 # CONFIG_QUOTA is not set 977 CONFIG_DNOTIFY=y 978 CONFIG_AUTOFS_FS=m ··· 1043 CONFIG_SMB_FS=m 1044 # CONFIG_SMB_NLS_DEFAULT is not set 1045 # CONFIG_CIFS is not set 1046 # CONFIG_NCP_FS is not set 1047 # CONFIG_CODA_FS is not set 1048 # CONFIG_AFS_FS is not set ··· 1109 # 1110 # CONFIG_PRINTK_TIME is not set 1111 # CONFIG_MAGIC_SYSRQ is not set 1112 # CONFIG_DEBUG_KERNEL is not set 1113 CONFIG_LOG_BUF_SHIFT=14 1114 # CONFIG_DEBUG_FS is not set ··· 1169 CONFIG_TEXTSEARCH_KMP=m 1170 CONFIG_TEXTSEARCH_BM=m 1171 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 CONFIG_CPU_HAS_PREFETCH=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 129 CONFIG_FLAT_NODE_MEM_MAP=y 130 # CONFIG_SPARSEMEM_STATIC is not set 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 133 # CONFIG_HZ_48 is not set 134 # CONFIG_HZ_100 is not set 135 # CONFIG_HZ_128 is not set ··· 141 CONFIG_PREEMPT_NONE=y 142 # CONFIG_PREEMPT_VOLUNTARY is not set 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 145 146 # 147 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set 184 185 # 186 # Loadable module support ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 295 # CONFIG_IPV6 is not set 296 # CONFIG_INET6_XFRM_TUNNEL is not set 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 299 CONFIG_NETFILTER=y 300 # CONFIG_NETFILTER_DEBUG is not set 301 ··· 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 328 ··· 390 CONFIG_STANDALONE=y 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 394 395 # 396 # Connector - unified userspace <-> kernelspace linker ··· 604 # 605 # PHY device support 606 # 607 + CONFIG_PHYLIB=y 608 609 # 610 # MII PHY device drivers ··· 614 CONFIG_QSEMI_PHY=m 615 CONFIG_LXT_PHY=m 616 CONFIG_CICADA_PHY=m 617 + CONFIG_VITESSE_PHY=m 618 + CONFIG_SMSC_PHY=m 619 620 # 621 # Ethernet (10 or 100Mbit) ··· 658 # CONFIG_CHELSIO_T1 is not set 659 # CONFIG_IXGB is not set 660 # CONFIG_S2IO is not set 661 + # CONFIG_MYRI10GE is not set 662 663 # 664 # Token Ring devices ··· 789 # Watchdog Cards 790 # 791 # CONFIG_WATCHDOG is not set 792 + # CONFIG_HW_RANDOM is not set 793 # CONFIG_RTC is not set 794 # CONFIG_GEN_RTC is not set 795 # CONFIG_DTLK is not set ··· 844 # Multimedia devices 845 # 846 # CONFIG_VIDEO_DEV is not set 847 + CONFIG_VIDEO_V4L2=y 848 849 # 850 # Digital Video Broadcasting Devices ··· 853 # 854 # Graphics support 855 # 856 + # CONFIG_FIRMWARE_EDID is not set 857 # CONFIG_FB is not set 858 859 # ··· 910 # CONFIG_RTC_CLASS is not set 911 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 926 # File systems 927 # 928 CONFIG_EXT2_FS=y ··· 937 # CONFIG_MINIX_FS is not set 938 # CONFIG_ROMFS_FS is not set 939 CONFIG_INOTIFY=y 940 + CONFIG_INOTIFY_USER=y 941 # CONFIG_QUOTA is not set 942 CONFIG_DNOTIFY=y 943 CONFIG_AUTOFS_FS=m ··· 1006 CONFIG_SMB_FS=m 1007 # CONFIG_SMB_NLS_DEFAULT is not set 1008 # CONFIG_CIFS is not set 1009 + # CONFIG_CIFS_DEBUG2 is not set 1010 # CONFIG_NCP_FS is not set 1011 # CONFIG_CODA_FS is not set 1012 # CONFIG_AFS_FS is not set ··· 1071 # 1072 # CONFIG_PRINTK_TIME is not set 1073 # CONFIG_MAGIC_SYSRQ is not set 1074 + # CONFIG_UNUSED_SYMBOLS is not set 1075 # CONFIG_DEBUG_KERNEL is not set 1076 CONFIG_LOG_BUF_SHIFT=14 1077 # CONFIG_DEBUG_FS is not set ··· 1130 CONFIG_TEXTSEARCH_KMP=m 1131 CONFIG_TEXTSEARCH_BM=m 1132 CONFIG_TEXTSEARCH_FSM=m 1133 + CONFIG_PLIST=y
+45 -5
arch/mips/configs/pb1550_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:13 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 121 CONFIG_64BIT_PHYS_ADDR=y 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 CONFIG_PREEMPT_NONE=y 150 # CONFIG_PREEMPT_VOLUNTARY is not set 151 # CONFIG_PREEMPT is not set 152 153 # 154 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 CONFIG_FUTEX=y 185 CONFIG_EPOLL=y 186 CONFIG_SHMEM=y 187 CONFIG_SLAB=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 - CONFIG_OBSOLETE_INTERMODULE=y 192 193 # 194 # Loadable module support ··· 293 # CONFIG_INET_IPCOMP is not set 294 # CONFIG_INET_XFRM_TUNNEL is not set 295 # CONFIG_INET_TUNNEL is not set 296 CONFIG_INET_DIAG=y 297 CONFIG_INET_TCP_DIAG=y 298 # CONFIG_TCP_CONG_ADVANCED is not set ··· 307 # CONFIG_IPV6 is not set 308 # CONFIG_INET6_XFRM_TUNNEL is not set 309 # CONFIG_INET6_TUNNEL is not set 310 CONFIG_NETFILTER=y 311 # CONFIG_NETFILTER_DEBUG is not set 312 ··· 322 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 323 CONFIG_NETFILTER_XT_TARGET_MARK=m 324 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 325 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 326 CONFIG_NETFILTER_XT_MATCH_DCCP=m 327 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 333 CONFIG_NETFILTER_XT_MATCH_POLICY=m 334 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 336 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 CONFIG_NETFILTER_XT_MATCH_SCTP=m 338 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 ··· 406 CONFIG_STANDALONE=y 407 CONFIG_PREVENT_FIRMWARE_BUILD=y 408 CONFIG_FW_LOADER=m 409 410 # 411 # Connector - unified userspace <-> kernelspace linker ··· 621 # 622 # PHY device support 623 # 624 - CONFIG_PHYLIB=m 625 626 # 627 # MII PHY device drivers ··· 631 CONFIG_QSEMI_PHY=m 632 CONFIG_LXT_PHY=m 633 CONFIG_CICADA_PHY=m 634 635 # 636 # Ethernet (10 or 100Mbit) ··· 677 # CONFIG_CHELSIO_T1 is not set 678 # CONFIG_IXGB is not set 679 # CONFIG_S2IO is not set 680 681 # 682 # Token Ring devices ··· 801 # Watchdog Cards 802 # 803 # CONFIG_WATCHDOG is not set 804 # CONFIG_RTC is not set 805 # CONFIG_GEN_RTC is not set 806 # CONFIG_DTLK is not set ··· 857 # Multimedia devices 858 # 859 # CONFIG_VIDEO_DEV is not set 860 861 # 862 # Digital Video Broadcasting Devices ··· 867 # 868 # Graphics support 869 # 870 # CONFIG_FB is not set 871 872 # ··· 925 # CONFIG_RTC_CLASS is not set 926 927 # 928 # File systems 929 # 930 CONFIG_EXT2_FS=y ··· 965 # CONFIG_MINIX_FS is not set 966 # CONFIG_ROMFS_FS is not set 967 CONFIG_INOTIFY=y 968 # CONFIG_QUOTA is not set 969 CONFIG_DNOTIFY=y 970 CONFIG_AUTOFS_FS=m ··· 1035 CONFIG_SMB_FS=m 1036 # CONFIG_SMB_NLS_DEFAULT is not set 1037 # CONFIG_CIFS is not set 1038 # CONFIG_NCP_FS is not set 1039 # CONFIG_CODA_FS is not set 1040 # CONFIG_AFS_FS is not set ··· 1101 # 1102 # CONFIG_PRINTK_TIME is not set 1103 # CONFIG_MAGIC_SYSRQ is not set 1104 # CONFIG_DEBUG_KERNEL is not set 1105 CONFIG_LOG_BUF_SHIFT=14 1106 # CONFIG_DEBUG_FS is not set ··· 1161 CONFIG_TEXTSEARCH_KMP=m 1162 CONFIG_TEXTSEARCH_BM=m 1163 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_MIPS_DISABLE_OBSOLETE_IDE=y ··· 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 CONFIG_CPU_HAS_PREFETCH=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 CONFIG_64BIT_PHYS_ADDR=y 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 129 CONFIG_FLAT_NODE_MEM_MAP=y 130 # CONFIG_SPARSEMEM_STATIC is not set 131 CONFIG_SPLIT_PTLOCK_CPUS=4 132 + # CONFIG_RESOURCES_64BIT is not set 133 # CONFIG_HZ_48 is not set 134 # CONFIG_HZ_100 is not set 135 # CONFIG_HZ_128 is not set ··· 141 CONFIG_PREEMPT_NONE=y 142 # CONFIG_PREEMPT_VOLUNTARY is not set 143 # CONFIG_PREEMPT is not set 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 145 146 # 147 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set 184 185 # 186 # Loadable module support ··· 283 # CONFIG_INET_IPCOMP is not set 284 # CONFIG_INET_XFRM_TUNNEL is not set 285 # CONFIG_INET_TUNNEL is not set 286 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 287 + CONFIG_INET_XFRM_MODE_TUNNEL=m 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 295 # CONFIG_IPV6 is not set 296 # CONFIG_INET6_XFRM_TUNNEL is not set 297 # CONFIG_INET6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 299 CONFIG_NETFILTER=y 300 # CONFIG_NETFILTER_DEBUG is not set 301 ··· 309 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 310 CONFIG_NETFILTER_XT_TARGET_MARK=m 311 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 312 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 313 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 314 CONFIG_NETFILTER_XT_MATCH_DCCP=m 315 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 319 CONFIG_NETFILTER_XT_MATCH_POLICY=m 320 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 321 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 322 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 323 CONFIG_NETFILTER_XT_MATCH_REALM=m 324 CONFIG_NETFILTER_XT_MATCH_SCTP=m 325 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 326 CONFIG_NETFILTER_XT_MATCH_STRING=m 327 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 328 ··· 390 CONFIG_STANDALONE=y 391 CONFIG_PREVENT_FIRMWARE_BUILD=y 392 CONFIG_FW_LOADER=m 393 + # CONFIG_SYS_HYPERVISOR is not set 394 395 # 396 # Connector - unified userspace <-> kernelspace linker ··· 604 # 605 # PHY device support 606 # 607 + CONFIG_PHYLIB=y 608 609 # 610 # MII PHY device drivers ··· 614 CONFIG_QSEMI_PHY=m 615 CONFIG_LXT_PHY=m 616 CONFIG_CICADA_PHY=m 617 + CONFIG_VITESSE_PHY=m 618 + CONFIG_SMSC_PHY=m 619 620 # 621 # Ethernet (10 or 100Mbit) ··· 658 # CONFIG_CHELSIO_T1 is not set 659 # CONFIG_IXGB is not set 660 # CONFIG_S2IO is not set 661 + # CONFIG_MYRI10GE is not set 662 663 # 664 # Token Ring devices ··· 781 # Watchdog Cards 782 # 783 # CONFIG_WATCHDOG is not set 784 + # CONFIG_HW_RANDOM is not set 785 # CONFIG_RTC is not set 786 # CONFIG_GEN_RTC is not set 787 # CONFIG_DTLK is not set ··· 836 # Multimedia devices 837 # 838 # CONFIG_VIDEO_DEV is not set 839 + CONFIG_VIDEO_V4L2=y 840 841 # 842 # Digital Video Broadcasting Devices ··· 845 # 846 # Graphics support 847 # 848 + # CONFIG_FIRMWARE_EDID is not set 849 # CONFIG_FB is not set 850 851 # ··· 902 # CONFIG_RTC_CLASS is not set 903 904 # 905 + # DMA Engine support 906 + # 907 + # CONFIG_DMA_ENGINE is not set 908 + 909 + # 910 + # DMA Clients 911 + # 912 + 913 + # 914 + # DMA Devices 915 + # 916 + 917 + # 918 # File systems 919 # 920 CONFIG_EXT2_FS=y ··· 929 # CONFIG_MINIX_FS is not set 930 # CONFIG_ROMFS_FS is not set 931 CONFIG_INOTIFY=y 932 + CONFIG_INOTIFY_USER=y 933 # CONFIG_QUOTA is not set 934 CONFIG_DNOTIFY=y 935 CONFIG_AUTOFS_FS=m ··· 998 CONFIG_SMB_FS=m 999 # CONFIG_SMB_NLS_DEFAULT is not set 1000 # CONFIG_CIFS is not set 1001 + # CONFIG_CIFS_DEBUG2 is not set 1002 # CONFIG_NCP_FS is not set 1003 # CONFIG_CODA_FS is not set 1004 # CONFIG_AFS_FS is not set ··· 1063 # 1064 # CONFIG_PRINTK_TIME is not set 1065 # CONFIG_MAGIC_SYSRQ is not set 1066 + # CONFIG_UNUSED_SYMBOLS is not set 1067 # CONFIG_DEBUG_KERNEL is not set 1068 CONFIG_LOG_BUF_SHIFT=14 1069 # CONFIG_DEBUG_FS is not set ··· 1122 CONFIG_TEXTSEARCH_KMP=m 1123 CONFIG_TEXTSEARCH_BM=m 1124 CONFIG_TEXTSEARCH_FSM=m 1125 + CONFIG_PLIST=y
+79 -270
arch/mips/configs/pnx8550-jbs_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:14 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 42 # CONFIG_MOMENCO_OCELOT_G is not set 43 # CONFIG_MIPS_XXS1500 is not set 44 # CONFIG_PNX8550_V2PCI is not set 45 - CONFIG_PNX8550_JBS=y 46 # CONFIG_DDB5477 is not set 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 - # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set 53 # CONFIG_SIBYTE_BIGSUR is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 - # CONFIG_CPU_BIG_ENDIAN is not set 74 - CONFIG_CPU_LITTLE_ENDIAN=y 75 - CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y 76 - CONFIG_PNX8550=y 77 - CONFIG_SOC_PNX8550=y 78 CONFIG_MIPS_L1_CACHE_SHIFT=5 79 80 # 81 # CPU selection 82 # 83 - CONFIG_CPU_MIPS32_R1=y 84 # CONFIG_CPU_MIPS32_R2 is not set 85 # CONFIG_CPU_MIPS64_R1 is not set 86 # CONFIG_CPU_MIPS64_R2 is not set ··· 94 # CONFIG_CPU_TX39XX is not set 95 # CONFIG_CPU_VR41XX is not set 96 # CONFIG_CPU_R4300 is not set 97 - # CONFIG_CPU_R4X00 is not set 98 # CONFIG_CPU_TX49XX is not set 99 # CONFIG_CPU_R5000 is not set 100 # CONFIG_CPU_R5432 is not set ··· 105 # CONFIG_CPU_RM7000 is not set 106 # CONFIG_CPU_RM9000 is not set 107 # CONFIG_CPU_SB1 is not set 108 - CONFIG_SYS_HAS_CPU_MIPS32_R1=y 109 - CONFIG_CPU_MIPS32=y 110 - CONFIG_CPU_MIPSR1=y 111 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 112 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 113 114 # 115 # Kernel type ··· 121 # CONFIG_PAGE_SIZE_8KB is not set 122 # CONFIG_PAGE_SIZE_16KB is not set 123 # CONFIG_PAGE_SIZE_64KB is not set 124 - CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y 129 CONFIG_GENERIC_HARDIRQS=y 130 CONFIG_GENERIC_IRQ_PROBE=y 131 - CONFIG_CPU_SUPPORTS_HIGHMEM=y 132 CONFIG_ARCH_FLATMEM_ENABLE=y 133 CONFIG_SELECT_MEMORY_MODEL=y 134 CONFIG_FLATMEM_MANUAL=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 CONFIG_PREEMPT_NONE=y 155 # CONFIG_PREEMPT_VOLUNTARY is not set 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 188 CONFIG_BUG=y 189 CONFIG_ELF_CORE=y 190 CONFIG_BASE_FULL=y 191 CONFIG_FUTEX=y 192 CONFIG_EPOLL=y 193 CONFIG_SHMEM=y 194 CONFIG_SLAB=y 195 # CONFIG_TINY_SHMEM is not set 196 CONFIG_BASE_SMALL=0 197 # CONFIG_SLOB is not set ··· 230 # 231 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 232 # 233 - CONFIG_HW_HAS_PCI=y 234 - CONFIG_PCI=y 235 - # CONFIG_PCI_DEBUG is not set 236 CONFIG_MMU=y 237 238 # ··· 242 # 243 # PCI Hotplug Support 244 # 245 - # CONFIG_HOTPLUG_PCI is not set 246 247 # 248 # Executable file formats ··· 262 CONFIG_PACKET=y 263 # CONFIG_PACKET_MMAP is not set 264 CONFIG_UNIX=y 265 # CONFIG_NET_KEY is not set 266 CONFIG_INET=y 267 # CONFIG_IP_MULTICAST is not set ··· 282 # CONFIG_INET_IPCOMP is not set 283 # CONFIG_INET_XFRM_TUNNEL is not set 284 # CONFIG_INET_TUNNEL is not set 285 CONFIG_INET_DIAG=y 286 CONFIG_INET_TCP_DIAG=y 287 # CONFIG_TCP_CONG_ADVANCED is not set ··· 291 # CONFIG_IPV6 is not set 292 # CONFIG_INET6_XFRM_TUNNEL is not set 293 # CONFIG_INET6_TUNNEL is not set 294 # CONFIG_NETFILTER is not set 295 296 # ··· 346 CONFIG_PREVENT_FIRMWARE_BUILD=y 347 CONFIG_FW_LOADER=y 348 # CONFIG_DEBUG_DRIVER is not set 349 350 # 351 # Connector - unified userspace <-> kernelspace linker ··· 370 # 371 # Block devices 372 # 373 - # CONFIG_BLK_CPQ_DA is not set 374 - # CONFIG_BLK_CPQ_CISS_DA is not set 375 - # CONFIG_BLK_DEV_DAC960 is not set 376 - # CONFIG_BLK_DEV_UMEM is not set 377 # CONFIG_BLK_DEV_COW_COMMON is not set 378 CONFIG_BLK_DEV_LOOP=y 379 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 380 # CONFIG_BLK_DEV_NBD is not set 381 - # CONFIG_BLK_DEV_SX8 is not set 382 - # CONFIG_BLK_DEV_UB is not set 383 CONFIG_BLK_DEV_RAM=y 384 CONFIG_BLK_DEV_RAM_COUNT=16 385 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 403 # IDE chipset support/bugfixes 404 # 405 CONFIG_IDE_GENERIC=y 406 - CONFIG_BLK_DEV_IDEPCI=y 407 - CONFIG_IDEPCI_SHARE_IRQ=y 408 - CONFIG_BLK_DEV_OFFBOARD=y 409 - CONFIG_BLK_DEV_GENERIC=y 410 - # CONFIG_BLK_DEV_OPTI621 is not set 411 - CONFIG_BLK_DEV_IDEDMA_PCI=y 412 - # CONFIG_BLK_DEV_IDEDMA_FORCED is not set 413 - # CONFIG_IDEDMA_PCI_AUTO is not set 414 - # CONFIG_BLK_DEV_AEC62XX is not set 415 - # CONFIG_BLK_DEV_ALI15X3 is not set 416 - # CONFIG_BLK_DEV_AMD74XX is not set 417 - # CONFIG_BLK_DEV_CMD64X is not set 418 - # CONFIG_BLK_DEV_TRIFLEX is not set 419 - # CONFIG_BLK_DEV_CY82C693 is not set 420 - # CONFIG_BLK_DEV_CS5520 is not set 421 - # CONFIG_BLK_DEV_CS5530 is not set 422 - # CONFIG_BLK_DEV_HPT34X is not set 423 - CONFIG_BLK_DEV_HPT366=y 424 - # CONFIG_BLK_DEV_SC1200 is not set 425 - # CONFIG_BLK_DEV_PIIX is not set 426 - # CONFIG_BLK_DEV_IT821X is not set 427 - # CONFIG_BLK_DEV_NS87415 is not set 428 - # CONFIG_BLK_DEV_PDC202XX_OLD is not set 429 - # CONFIG_BLK_DEV_PDC202XX_NEW is not set 430 - # CONFIG_BLK_DEV_SVWKS is not set 431 - # CONFIG_BLK_DEV_SIIMAGE is not set 432 - # CONFIG_BLK_DEV_SLC90E66 is not set 433 - # CONFIG_BLK_DEV_TRM290 is not set 434 - # CONFIG_BLK_DEV_VIA82CXXX is not set 435 # CONFIG_IDE_ARM is not set 436 - CONFIG_BLK_DEV_IDEDMA=y 437 - # CONFIG_IDEDMA_IVB is not set 438 # CONFIG_IDEDMA_AUTO is not set 439 # CONFIG_BLK_DEV_HD is not set 440 ··· 444 # SCSI low-level drivers 445 # 446 CONFIG_ISCSI_TCP=m 447 - # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 448 - # CONFIG_SCSI_3W_9XXX is not set 449 - # CONFIG_SCSI_ACARD is not set 450 - # CONFIG_SCSI_AACRAID is not set 451 - # CONFIG_SCSI_AIC7XXX is not set 452 - # CONFIG_SCSI_AIC7XXX_OLD is not set 453 - # CONFIG_SCSI_AIC79XX is not set 454 - # CONFIG_SCSI_DPT_I2O is not set 455 - # CONFIG_MEGARAID_NEWGEN is not set 456 - # CONFIG_MEGARAID_LEGACY is not set 457 - # CONFIG_MEGARAID_SAS is not set 458 # CONFIG_SCSI_SATA is not set 459 - # CONFIG_SCSI_DMX3191D is not set 460 - # CONFIG_SCSI_FUTURE_DOMAIN is not set 461 - # CONFIG_SCSI_IPS is not set 462 - # CONFIG_SCSI_INITIO is not set 463 - # CONFIG_SCSI_INIA100 is not set 464 - # CONFIG_SCSI_SYM53C8XX_2 is not set 465 - # CONFIG_SCSI_IPR is not set 466 - # CONFIG_SCSI_QLOGIC_1280 is not set 467 - # CONFIG_SCSI_QLA_FC is not set 468 - # CONFIG_SCSI_LPFC is not set 469 - # CONFIG_SCSI_DC395x is not set 470 - # CONFIG_SCSI_DC390T is not set 471 - # CONFIG_SCSI_NSP32 is not set 472 # CONFIG_SCSI_DEBUG is not set 473 474 # ··· 457 # Fusion MPT device support 458 # 459 # CONFIG_FUSION is not set 460 - # CONFIG_FUSION_SPI is not set 461 - # CONFIG_FUSION_FC is not set 462 - # CONFIG_FUSION_SAS is not set 463 464 # 465 # IEEE 1394 (FireWire) support 466 # 467 - # CONFIG_IEEE1394 is not set 468 469 # 470 # I2O device support 471 # 472 - # CONFIG_I2O is not set 473 474 # 475 # Network device support ··· 476 # CONFIG_TUN is not set 477 478 # 479 - # ARCnet devices 480 - # 481 - # CONFIG_ARCNET is not set 482 - 483 - # 484 # PHY device support 485 # 486 # CONFIG_PHYLIB is not set ··· 485 # 486 CONFIG_NET_ETHERNET=y 487 CONFIG_MII=y 488 - # CONFIG_HAPPYMEAL is not set 489 - # CONFIG_SUNGEM is not set 490 - # CONFIG_CASSINI is not set 491 - # CONFIG_NET_VENDOR_3COM is not set 492 # CONFIG_DM9000 is not set 493 - 494 - # 495 - # Tulip family network device support 496 - # 497 - # CONFIG_NET_TULIP is not set 498 - # CONFIG_HP100 is not set 499 - CONFIG_NET_PCI=y 500 - # CONFIG_PCNET32 is not set 501 - # CONFIG_AMD8111_ETH is not set 502 - # CONFIG_ADAPTEC_STARFIRE is not set 503 - # CONFIG_B44 is not set 504 - # CONFIG_FORCEDETH is not set 505 - # CONFIG_DGRS is not set 506 - # CONFIG_EEPRO100 is not set 507 - # CONFIG_E100 is not set 508 - # CONFIG_FEALNX is not set 509 - # CONFIG_NATSEMI is not set 510 - # CONFIG_NE2K_PCI is not set 511 - # CONFIG_8139CP is not set 512 - CONFIG_8139TOO=y 513 - # CONFIG_8139TOO_PIO is not set 514 - CONFIG_8139TOO_TUNE_TWISTER=y 515 - CONFIG_8139TOO_8129=y 516 - # CONFIG_8139_OLD_RX_RESET is not set 517 - # CONFIG_SIS900 is not set 518 - # CONFIG_EPIC100 is not set 519 - # CONFIG_SUNDANCE is not set 520 - # CONFIG_TLAN is not set 521 - # CONFIG_VIA_RHINE is not set 522 - # CONFIG_LAN_SAA9730 is not set 523 524 # 525 # Ethernet (1000 Mbit) 526 # 527 - # CONFIG_ACENIC is not set 528 - # CONFIG_DL2K is not set 529 - # CONFIG_E1000 is not set 530 - # CONFIG_NS83820 is not set 531 - # CONFIG_HAMACHI is not set 532 - # CONFIG_YELLOWFIN is not set 533 - # CONFIG_R8169 is not set 534 - # CONFIG_SIS190 is not set 535 - # CONFIG_SKGE is not set 536 - # CONFIG_SKY2 is not set 537 - # CONFIG_SK98LIN is not set 538 - # CONFIG_VIA_VELOCITY is not set 539 - # CONFIG_TIGON3 is not set 540 - # CONFIG_BNX2 is not set 541 542 # 543 # Ethernet (10000 Mbit) 544 # 545 - # CONFIG_CHELSIO_T1 is not set 546 - # CONFIG_IXGB is not set 547 - # CONFIG_S2IO is not set 548 549 # 550 # Token Ring devices 551 # 552 - # CONFIG_TR is not set 553 554 # 555 # Wireless LAN (non-hamradio) ··· 509 # Wan interfaces 510 # 511 # CONFIG_WAN is not set 512 - # CONFIG_FDDI is not set 513 - # CONFIG_HIPPI is not set 514 # CONFIG_PPP is not set 515 # CONFIG_SLIP is not set 516 - # CONFIG_NET_FC is not set 517 # CONFIG_SHAPER is not set 518 # CONFIG_NETCONSOLE is not set 519 # CONFIG_NETPOLL is not set ··· 555 CONFIG_SERIO=y 556 # CONFIG_SERIO_I8042 is not set 557 # CONFIG_SERIO_SERPORT is not set 558 - # CONFIG_SERIO_PCIPS2 is not set 559 CONFIG_SERIO_LIBPS2=y 560 # CONFIG_SERIO_RAW is not set 561 # CONFIG_GAMEPORT is not set ··· 565 CONFIG_VT=y 566 CONFIG_VT_CONSOLE=y 567 CONFIG_HW_CONSOLE=y 568 # CONFIG_SERIAL_NONSTANDARD is not set 569 570 # ··· 576 # 577 # Non-8250 serial port support 578 # 579 - # CONFIG_SERIAL_IP3106 is not set 580 - # CONFIG_SERIAL_JSM is not set 581 CONFIG_UNIX98_PTYS=y 582 CONFIG_LEGACY_PTYS=y 583 CONFIG_LEGACY_PTY_COUNT=256 ··· 590 # Watchdog Cards 591 # 592 # CONFIG_WATCHDOG is not set 593 # CONFIG_RTC is not set 594 # CONFIG_GEN_RTC is not set 595 # CONFIG_DTLK is not set 596 # CONFIG_R3964 is not set 597 - # CONFIG_APPLICOM is not set 598 599 # 600 # Ftape, the floppy tape device driver 601 # 602 - # CONFIG_DRM is not set 603 # CONFIG_RAW_DRIVER is not set 604 605 # ··· 622 # 623 # Dallas's 1-wire bus 624 # 625 - # CONFIG_W1 is not set 626 627 # 628 # Hardware Monitoring support 629 # 630 CONFIG_HWMON=y 631 # CONFIG_HWMON_VID is not set 632 # CONFIG_SENSORS_F71805F is not set 633 # CONFIG_HWMON_DEBUG_CHIP is not set 634 ··· 640 # Multimedia devices 641 # 642 # CONFIG_VIDEO_DEV is not set 643 644 # 645 # Digital Video Broadcasting Devices 646 # 647 # CONFIG_DVB is not set 648 - # CONFIG_USB_DABUSB is not set 649 650 # 651 # Graphics support 652 # 653 # CONFIG_FB is not set 654 655 # 656 # Console display driver support 657 # 658 # CONFIG_VGA_CONSOLE is not set 659 CONFIG_DUMMY_CONSOLE=y 660 661 # ··· 668 # 669 # USB support 670 # 671 - CONFIG_USB_ARCH_HAS_HCD=y 672 - CONFIG_USB_ARCH_HAS_OHCI=y 673 - CONFIG_USB_ARCH_HAS_EHCI=y 674 - CONFIG_USB=y 675 - # CONFIG_USB_DEBUG is not set 676 - 677 - # 678 - # Miscellaneous USB options 679 - # 680 - # CONFIG_USB_DEVICEFS is not set 681 - # CONFIG_USB_BANDWIDTH is not set 682 - # CONFIG_USB_DYNAMIC_MINORS is not set 683 - # CONFIG_USB_OTG is not set 684 - 685 - # 686 - # USB Host Controller Drivers 687 - # 688 - # CONFIG_USB_EHCI_HCD is not set 689 - # CONFIG_USB_ISP116X_HCD is not set 690 - CONFIG_USB_OHCI_HCD=y 691 - # CONFIG_USB_OHCI_BIG_ENDIAN is not set 692 - CONFIG_USB_OHCI_LITTLE_ENDIAN=y 693 - # CONFIG_USB_UHCI_HCD is not set 694 - # CONFIG_USB_SL811_HCD is not set 695 - 696 - # 697 - # USB Device Class drivers 698 - # 699 - # CONFIG_USB_ACM is not set 700 - # CONFIG_USB_PRINTER is not set 701 702 # 703 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 704 - # 705 - 706 - # 707 - # may also be needed; see USB_STORAGE Help for more information 708 - # 709 - CONFIG_USB_STORAGE=y 710 - # CONFIG_USB_STORAGE_DEBUG is not set 711 - CONFIG_USB_STORAGE_DATAFAB=y 712 - CONFIG_USB_STORAGE_FREECOM=y 713 - CONFIG_USB_STORAGE_ISD200=y 714 - CONFIG_USB_STORAGE_DPCM=y 715 - CONFIG_USB_STORAGE_USBAT=y 716 - CONFIG_USB_STORAGE_SDDR09=y 717 - CONFIG_USB_STORAGE_SDDR55=y 718 - CONFIG_USB_STORAGE_JUMPSHOT=y 719 - # CONFIG_USB_STORAGE_ALAUDA is not set 720 - # CONFIG_USB_LIBUSUAL is not set 721 - 722 - # 723 - # USB Input Devices 724 - # 725 - # CONFIG_USB_HID is not set 726 - 727 - # 728 - # USB HID Boot Protocol drivers 729 - # 730 - # CONFIG_USB_KBD is not set 731 - # CONFIG_USB_MOUSE is not set 732 - # CONFIG_USB_AIPTEK is not set 733 - # CONFIG_USB_WACOM is not set 734 - # CONFIG_USB_ACECAD is not set 735 - # CONFIG_USB_KBTAB is not set 736 - # CONFIG_USB_POWERMATE is not set 737 - # CONFIG_USB_TOUCHSCREEN is not set 738 - # CONFIG_USB_YEALINK is not set 739 - # CONFIG_USB_XPAD is not set 740 - # CONFIG_USB_ATI_REMOTE is not set 741 - # CONFIG_USB_ATI_REMOTE2 is not set 742 - # CONFIG_USB_KEYSPAN_REMOTE is not set 743 - # CONFIG_USB_APPLETOUCH is not set 744 - 745 - # 746 - # USB Imaging devices 747 - # 748 - # CONFIG_USB_MDC800 is not set 749 - # CONFIG_USB_MICROTEK is not set 750 - 751 - # 752 - # USB Network Adapters 753 - # 754 - # CONFIG_USB_CATC is not set 755 - # CONFIG_USB_KAWETH is not set 756 - # CONFIG_USB_PEGASUS is not set 757 - # CONFIG_USB_RTL8150 is not set 758 - # CONFIG_USB_USBNET is not set 759 - CONFIG_USB_MON=y 760 - 761 - # 762 - # USB port drivers 763 - # 764 - 765 - # 766 - # USB Serial Converter support 767 - # 768 - # CONFIG_USB_SERIAL is not set 769 - 770 - # 771 - # USB Miscellaneous drivers 772 - # 773 - # CONFIG_USB_EMI62 is not set 774 - # CONFIG_USB_EMI26 is not set 775 - # CONFIG_USB_AUERSWALD is not set 776 - # CONFIG_USB_RIO500 is not set 777 - # CONFIG_USB_LEGOTOWER is not set 778 - # CONFIG_USB_LCD is not set 779 - # CONFIG_USB_LED is not set 780 - # CONFIG_USB_CYTHERM is not set 781 - # CONFIG_USB_PHIDGETKIT is not set 782 - # CONFIG_USB_PHIDGETSERVO is not set 783 - # CONFIG_USB_IDMOUSE is not set 784 - # CONFIG_USB_LD is not set 785 - 786 - # 787 - # USB DSL modem support 788 # 789 790 # ··· 702 # 703 # InfiniBand support 704 # 705 - # CONFIG_INFINIBAND is not set 706 707 # 708 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 711 # Real Time Clock 712 # 713 # CONFIG_RTC_CLASS is not set 714 715 # 716 # File systems ··· 740 # CONFIG_MINIX_FS is not set 741 # CONFIG_ROMFS_FS is not set 742 CONFIG_INOTIFY=y 743 # CONFIG_QUOTA is not set 744 # CONFIG_DNOTIFY is not set 745 # CONFIG_AUTOFS_FS is not set ··· 812 # CONFIG_RPCSEC_GSS_SPKM3 is not set 813 # CONFIG_SMB_FS is not set 814 # CONFIG_CIFS is not set 815 # CONFIG_NCP_FS is not set 816 # CONFIG_CODA_FS is not set 817 # CONFIG_AFS_FS is not set ··· 823 # 824 # CONFIG_PARTITION_ADVANCED is not set 825 CONFIG_MSDOS_PARTITION=y 826 827 # 828 # Native Language Support ··· 879 # 880 # CONFIG_PRINTK_TIME is not set 881 CONFIG_MAGIC_SYSRQ=y 882 CONFIG_DEBUG_KERNEL=y 883 CONFIG_LOG_BUF_SHIFT=14 884 CONFIG_DETECT_SOFTLOCKUP=y 885 # CONFIG_SCHEDSTATS is not set 886 CONFIG_DEBUG_SLAB=y 887 # CONFIG_DEBUG_SLAB_LEAK is not set 888 - CONFIG_DEBUG_MUTEXES=y 889 # CONFIG_DEBUG_SPINLOCK is not set 890 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 891 # CONFIG_DEBUG_KOBJECT is not set 892 # CONFIG_DEBUG_INFO is not set 893 # CONFIG_DEBUG_FS is not set ··· 952 # CONFIG_CRC16 is not set 953 CONFIG_CRC32=y 954 CONFIG_LIBCRC32C=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 40 # CONFIG_MOMENCO_OCELOT_G is not set 41 # CONFIG_MIPS_XXS1500 is not set 42 # CONFIG_PNX8550_V2PCI is not set 43 + # CONFIG_PNX8550_JBS is not set 44 # CONFIG_DDB5477 is not set 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 + CONFIG_SGI_IP22=y 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set 52 # CONFIG_SIBYTE_BIGSUR is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 + CONFIG_ARC=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 + CONFIG_CPU_BIG_ENDIAN=y 73 + # CONFIG_CPU_LITTLE_ENDIAN is not set 74 + CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y 75 + CONFIG_IRQ_CPU=y 76 + CONFIG_SWAP_IO_SPACE=y 77 + CONFIG_ARC32=y 78 + CONFIG_BOOT_ELF32=y 79 CONFIG_MIPS_L1_CACHE_SHIFT=5 80 + # CONFIG_ARC_CONSOLE is not set 81 + CONFIG_ARC_PROMLIB=y 82 83 # 84 # CPU selection 85 # 86 + # CONFIG_CPU_MIPS32_R1 is not set 87 # CONFIG_CPU_MIPS32_R2 is not set 88 # CONFIG_CPU_MIPS64_R1 is not set 89 # CONFIG_CPU_MIPS64_R2 is not set ··· 85 # CONFIG_CPU_TX39XX is not set 86 # CONFIG_CPU_VR41XX is not set 87 # CONFIG_CPU_R4300 is not set 88 + CONFIG_CPU_R4X00=y 89 # CONFIG_CPU_TX49XX is not set 90 # CONFIG_CPU_R5000 is not set 91 # CONFIG_CPU_R5432 is not set ··· 96 # CONFIG_CPU_RM7000 is not set 97 # CONFIG_CPU_RM9000 is not set 98 # CONFIG_CPU_SB1 is not set 99 + CONFIG_SYS_HAS_CPU_R4X00=y 100 + CONFIG_SYS_HAS_CPU_R5000=y 101 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 102 + CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 103 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 104 + CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y 105 106 # 107 # Kernel type ··· 111 # CONFIG_PAGE_SIZE_8KB is not set 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 + CONFIG_BOARD_SCACHE=y 115 + CONFIG_IP22_CPU_SCACHE=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 # CONFIG_64BIT_PHYS_ADDR is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y 124 CONFIG_GENERIC_IRQ_PROBE=y 125 CONFIG_ARCH_FLATMEM_ENABLE=y 126 CONFIG_SELECT_MEMORY_MODEL=y 127 CONFIG_FLATMEM_MANUAL=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set ··· 213 # 214 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 215 # 216 + CONFIG_HW_HAS_EISA=y 217 + # CONFIG_EISA is not set 218 CONFIG_MMU=y 219 220 # ··· 226 # 227 # PCI Hotplug Support 228 # 229 230 # 231 # Executable file formats ··· 247 CONFIG_PACKET=y 248 # CONFIG_PACKET_MMAP is not set 249 CONFIG_UNIX=y 250 + CONFIG_XFRM=y 251 + # CONFIG_XFRM_USER is not set 252 # CONFIG_NET_KEY is not set 253 CONFIG_INET=y 254 # CONFIG_IP_MULTICAST is not set ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 269 + CONFIG_INET_XFRM_MODE_TUNNEL=m 270 CONFIG_INET_DIAG=y 271 CONFIG_INET_TCP_DIAG=y 272 # CONFIG_TCP_CONG_ADVANCED is not set ··· 272 # CONFIG_IPV6 is not set 273 # CONFIG_INET6_XFRM_TUNNEL is not set 274 # CONFIG_INET6_TUNNEL is not set 275 + CONFIG_NETWORK_SECMARK=y 276 # CONFIG_NETFILTER is not set 277 278 # ··· 326 CONFIG_PREVENT_FIRMWARE_BUILD=y 327 CONFIG_FW_LOADER=y 328 # CONFIG_DEBUG_DRIVER is not set 329 + # CONFIG_SYS_HYPERVISOR is not set 330 331 # 332 # Connector - unified userspace <-> kernelspace linker ··· 349 # 350 # Block devices 351 # 352 # CONFIG_BLK_DEV_COW_COMMON is not set 353 CONFIG_BLK_DEV_LOOP=y 354 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 355 # CONFIG_BLK_DEV_NBD is not set 356 CONFIG_BLK_DEV_RAM=y 357 CONFIG_BLK_DEV_RAM_COUNT=16 358 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 388 # IDE chipset support/bugfixes 389 # 390 CONFIG_IDE_GENERIC=y 391 # CONFIG_IDE_ARM is not set 392 + # CONFIG_BLK_DEV_IDEDMA is not set 393 # CONFIG_IDEDMA_AUTO is not set 394 # CONFIG_BLK_DEV_HD is not set 395 ··· 459 # SCSI low-level drivers 460 # 461 CONFIG_ISCSI_TCP=m 462 + # CONFIG_SGIWD93_SCSI is not set 463 # CONFIG_SCSI_SATA is not set 464 # CONFIG_SCSI_DEBUG is not set 465 466 # ··· 495 # Fusion MPT device support 496 # 497 # CONFIG_FUSION is not set 498 499 # 500 # IEEE 1394 (FireWire) support 501 # 502 503 # 504 # I2O device support 505 # 506 507 # 508 # Network device support ··· 519 # CONFIG_TUN is not set 520 521 # 522 # PHY device support 523 # 524 # CONFIG_PHYLIB is not set ··· 533 # 534 CONFIG_NET_ETHERNET=y 535 CONFIG_MII=y 536 # CONFIG_DM9000 is not set 537 + # CONFIG_SGISEEQ is not set 538 539 # 540 # Ethernet (1000 Mbit) 541 # 542 543 # 544 # Ethernet (10000 Mbit) 545 # 546 547 # 548 # Token Ring devices 549 # 550 551 # 552 # Wireless LAN (non-hamradio) ··· 608 # Wan interfaces 609 # 610 # CONFIG_WAN is not set 611 # CONFIG_PPP is not set 612 # CONFIG_SLIP is not set 613 # CONFIG_SHAPER is not set 614 # CONFIG_NETCONSOLE is not set 615 # CONFIG_NETPOLL is not set ··· 657 CONFIG_SERIO=y 658 # CONFIG_SERIO_I8042 is not set 659 # CONFIG_SERIO_SERPORT is not set 660 CONFIG_SERIO_LIBPS2=y 661 # CONFIG_SERIO_RAW is not set 662 # CONFIG_GAMEPORT is not set ··· 668 CONFIG_VT=y 669 CONFIG_VT_CONSOLE=y 670 CONFIG_HW_CONSOLE=y 671 + CONFIG_VT_HW_CONSOLE_BINDING=y 672 # CONFIG_SERIAL_NONSTANDARD is not set 673 674 # ··· 678 # 679 # Non-8250 serial port support 680 # 681 + # CONFIG_SERIAL_IP22_ZILOG is not set 682 CONFIG_UNIX98_PTYS=y 683 CONFIG_LEGACY_PTYS=y 684 CONFIG_LEGACY_PTY_COUNT=256 ··· 693 # Watchdog Cards 694 # 695 # CONFIG_WATCHDOG is not set 696 + # CONFIG_HW_RANDOM is not set 697 # CONFIG_RTC is not set 698 + # CONFIG_SGI_DS1286 is not set 699 # CONFIG_GEN_RTC is not set 700 # CONFIG_DTLK is not set 701 # CONFIG_R3964 is not set 702 703 # 704 # Ftape, the floppy tape device driver 705 # 706 # CONFIG_RAW_DRIVER is not set 707 708 # ··· 725 # 726 # Dallas's 1-wire bus 727 # 728 729 # 730 # Hardware Monitoring support 731 # 732 CONFIG_HWMON=y 733 # CONFIG_HWMON_VID is not set 734 + # CONFIG_SENSORS_ABITUGURU is not set 735 # CONFIG_SENSORS_F71805F is not set 736 # CONFIG_HWMON_DEBUG_CHIP is not set 737 ··· 743 # Multimedia devices 744 # 745 # CONFIG_VIDEO_DEV is not set 746 + CONFIG_VIDEO_V4L2=y 747 748 # 749 # Digital Video Broadcasting Devices 750 # 751 # CONFIG_DVB is not set 752 753 # 754 # Graphics support 755 # 756 + # CONFIG_FIRMWARE_EDID is not set 757 # CONFIG_FB is not set 758 759 # 760 # Console display driver support 761 # 762 # CONFIG_VGA_CONSOLE is not set 763 + # CONFIG_SGI_NEWPORT_CONSOLE is not set 764 CONFIG_DUMMY_CONSOLE=y 765 766 # ··· 769 # 770 # USB support 771 # 772 + # CONFIG_USB_ARCH_HAS_HCD is not set 773 + # CONFIG_USB_ARCH_HAS_OHCI is not set 774 + # CONFIG_USB_ARCH_HAS_EHCI is not set 775 776 # 777 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 778 # 779 780 # ··· 914 # 915 # InfiniBand support 916 # 917 918 # 919 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 924 # Real Time Clock 925 # 926 # CONFIG_RTC_CLASS is not set 927 + 928 + # 929 + # DMA Engine support 930 + # 931 + # CONFIG_DMA_ENGINE is not set 932 + 933 + # 934 + # DMA Clients 935 + # 936 + 937 + # 938 + # DMA Devices 939 + # 940 941 # 942 # File systems ··· 940 # CONFIG_MINIX_FS is not set 941 # CONFIG_ROMFS_FS is not set 942 CONFIG_INOTIFY=y 943 + CONFIG_INOTIFY_USER=y 944 # CONFIG_QUOTA is not set 945 # CONFIG_DNOTIFY is not set 946 # CONFIG_AUTOFS_FS is not set ··· 1011 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1012 # CONFIG_SMB_FS is not set 1013 # CONFIG_CIFS is not set 1014 + # CONFIG_CIFS_DEBUG2 is not set 1015 # CONFIG_NCP_FS is not set 1016 # CONFIG_CODA_FS is not set 1017 # CONFIG_AFS_FS is not set ··· 1021 # 1022 # CONFIG_PARTITION_ADVANCED is not set 1023 CONFIG_MSDOS_PARTITION=y 1024 + CONFIG_SGI_PARTITION=y 1025 1026 # 1027 # Native Language Support ··· 1076 # 1077 # CONFIG_PRINTK_TIME is not set 1078 CONFIG_MAGIC_SYSRQ=y 1079 + # CONFIG_UNUSED_SYMBOLS is not set 1080 CONFIG_DEBUG_KERNEL=y 1081 CONFIG_LOG_BUF_SHIFT=14 1082 CONFIG_DETECT_SOFTLOCKUP=y 1083 # CONFIG_SCHEDSTATS is not set 1084 CONFIG_DEBUG_SLAB=y 1085 # CONFIG_DEBUG_SLAB_LEAK is not set 1086 + # CONFIG_DEBUG_RT_MUTEXES is not set 1087 + # CONFIG_RT_MUTEX_TESTER is not set 1088 # CONFIG_DEBUG_SPINLOCK is not set 1089 + CONFIG_DEBUG_MUTEXES=y 1090 + # CONFIG_DEBUG_RWSEMS is not set 1091 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 1092 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 1093 # CONFIG_DEBUG_KOBJECT is not set 1094 # CONFIG_DEBUG_INFO is not set 1095 # CONFIG_DEBUG_FS is not set ··· 1144 # CONFIG_CRC16 is not set 1145 CONFIG_CRC32=y 1146 CONFIG_LIBCRC32C=m 1147 + CONFIG_PLIST=y
+86 -315
arch/mips/configs/pnx8550-v2pci_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:14 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 41 # CONFIG_MOMENCO_OCELOT_C is not set 42 # CONFIG_MOMENCO_OCELOT_G is not set 43 # CONFIG_MIPS_XXS1500 is not set 44 - CONFIG_PNX8550_V2PCI=y 45 # CONFIG_PNX8550_JBS is not set 46 # CONFIG_DDB5477 is not set 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 - # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set 53 # CONFIG_SIBYTE_BIGSUR is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 - # CONFIG_CPU_BIG_ENDIAN is not set 74 - CONFIG_CPU_LITTLE_ENDIAN=y 75 - CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y 76 - CONFIG_PNX8550=y 77 - CONFIG_SOC_PNX8550=y 78 CONFIG_MIPS_L1_CACHE_SHIFT=5 79 80 # 81 # CPU selection 82 # 83 - CONFIG_CPU_MIPS32_R1=y 84 # CONFIG_CPU_MIPS32_R2 is not set 85 # CONFIG_CPU_MIPS64_R1 is not set 86 # CONFIG_CPU_MIPS64_R2 is not set ··· 94 # CONFIG_CPU_TX39XX is not set 95 # CONFIG_CPU_VR41XX is not set 96 # CONFIG_CPU_R4300 is not set 97 - # CONFIG_CPU_R4X00 is not set 98 # CONFIG_CPU_TX49XX is not set 99 # CONFIG_CPU_R5000 is not set 100 # CONFIG_CPU_R5432 is not set ··· 105 # CONFIG_CPU_RM7000 is not set 106 # CONFIG_CPU_RM9000 is not set 107 # CONFIG_CPU_SB1 is not set 108 - CONFIG_SYS_HAS_CPU_MIPS32_R1=y 109 - CONFIG_CPU_MIPS32=y 110 - CONFIG_CPU_MIPSR1=y 111 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 112 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 113 114 # 115 # Kernel type ··· 121 # CONFIG_PAGE_SIZE_8KB is not set 122 # CONFIG_PAGE_SIZE_16KB is not set 123 # CONFIG_PAGE_SIZE_64KB is not set 124 - CONFIG_CPU_HAS_PREFETCH=y 125 - # CONFIG_MIPS_MT is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y 129 CONFIG_GENERIC_HARDIRQS=y 130 CONFIG_GENERIC_IRQ_PROBE=y 131 - CONFIG_CPU_SUPPORTS_HIGHMEM=y 132 CONFIG_ARCH_FLATMEM_ENABLE=y 133 CONFIG_SELECT_MEMORY_MODEL=y 134 CONFIG_FLATMEM_MANUAL=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 CONFIG_PREEMPT_NONE=y 155 # CONFIG_PREEMPT_VOLUNTARY is not set 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 229 # 230 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 231 # 232 - CONFIG_HW_HAS_PCI=y 233 - CONFIG_PCI=y 234 CONFIG_MMU=y 235 236 # ··· 241 # 242 # PCI Hotplug Support 243 # 244 - # CONFIG_HOTPLUG_PCI is not set 245 246 # 247 # Executable file formats ··· 261 CONFIG_PACKET=y 262 # CONFIG_PACKET_MMAP is not set 263 CONFIG_UNIX=y 264 # CONFIG_NET_KEY is not set 265 CONFIG_INET=y 266 # CONFIG_IP_MULTICAST is not set ··· 281 # CONFIG_INET_IPCOMP is not set 282 # CONFIG_INET_XFRM_TUNNEL is not set 283 # CONFIG_INET_TUNNEL is not set 284 CONFIG_INET_DIAG=y 285 CONFIG_INET_TCP_DIAG=y 286 # CONFIG_TCP_CONG_ADVANCED is not set ··· 301 # CONFIG_INET6_IPCOMP is not set 302 # CONFIG_INET6_XFRM_TUNNEL is not set 303 # CONFIG_INET6_TUNNEL is not set 304 # CONFIG_IPV6_TUNNEL is not set 305 CONFIG_NETFILTER=y 306 # CONFIG_NETFILTER_DEBUG is not set 307 ··· 317 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 318 CONFIG_NETFILTER_XT_TARGET_MARK=m 319 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 320 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 321 CONFIG_NETFILTER_XT_MATCH_DCCP=m 322 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 325 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 326 CONFIG_NETFILTER_XT_MATCH_MAC=m 327 CONFIG_NETFILTER_XT_MATCH_MARK=m 328 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 329 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 330 CONFIG_NETFILTER_XT_MATCH_REALM=m 331 CONFIG_NETFILTER_XT_MATCH_SCTP=m 332 CONFIG_NETFILTER_XT_MATCH_STRING=m 333 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 334 ··· 401 CONFIG_STANDALONE=y 402 CONFIG_PREVENT_FIRMWARE_BUILD=y 403 CONFIG_FW_LOADER=y 404 405 # 406 # Connector - unified userspace <-> kernelspace linker ··· 425 # 426 # Block devices 427 # 428 - # CONFIG_BLK_CPQ_DA is not set 429 - # CONFIG_BLK_CPQ_CISS_DA is not set 430 - # CONFIG_BLK_DEV_DAC960 is not set 431 - # CONFIG_BLK_DEV_UMEM is not set 432 # CONFIG_BLK_DEV_COW_COMMON is not set 433 CONFIG_BLK_DEV_LOOP=y 434 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 435 # CONFIG_BLK_DEV_NBD is not set 436 - # CONFIG_BLK_DEV_SX8 is not set 437 - # CONFIG_BLK_DEV_UB is not set 438 CONFIG_BLK_DEV_RAM=y 439 CONFIG_BLK_DEV_RAM_COUNT=16 440 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 458 # IDE chipset support/bugfixes 459 # 460 CONFIG_IDE_GENERIC=y 461 - CONFIG_BLK_DEV_IDEPCI=y 462 - CONFIG_IDEPCI_SHARE_IRQ=y 463 - # CONFIG_BLK_DEV_OFFBOARD is not set 464 - # CONFIG_BLK_DEV_GENERIC is not set 465 - # CONFIG_BLK_DEV_OPTI621 is not set 466 - CONFIG_BLK_DEV_IDEDMA_PCI=y 467 - # CONFIG_BLK_DEV_IDEDMA_FORCED is not set 468 - CONFIG_IDEDMA_PCI_AUTO=y 469 - # CONFIG_IDEDMA_ONLYDISK is not set 470 - # CONFIG_BLK_DEV_AEC62XX is not set 471 - # CONFIG_BLK_DEV_ALI15X3 is not set 472 - # CONFIG_BLK_DEV_AMD74XX is not set 473 - CONFIG_BLK_DEV_CMD64X=y 474 - # CONFIG_BLK_DEV_TRIFLEX is not set 475 - # CONFIG_BLK_DEV_CY82C693 is not set 476 - # CONFIG_BLK_DEV_CS5520 is not set 477 - # CONFIG_BLK_DEV_CS5530 is not set 478 - # CONFIG_BLK_DEV_HPT34X is not set 479 - # CONFIG_BLK_DEV_HPT366 is not set 480 - # CONFIG_BLK_DEV_SC1200 is not set 481 - # CONFIG_BLK_DEV_PIIX is not set 482 - # CONFIG_BLK_DEV_IT821X is not set 483 - # CONFIG_BLK_DEV_NS87415 is not set 484 - # CONFIG_BLK_DEV_PDC202XX_OLD is not set 485 - # CONFIG_BLK_DEV_PDC202XX_NEW is not set 486 - # CONFIG_BLK_DEV_SVWKS is not set 487 - # CONFIG_BLK_DEV_SIIMAGE is not set 488 - # CONFIG_BLK_DEV_SLC90E66 is not set 489 - # CONFIG_BLK_DEV_TRM290 is not set 490 - # CONFIG_BLK_DEV_VIA82CXXX is not set 491 # CONFIG_IDE_ARM is not set 492 - CONFIG_BLK_DEV_IDEDMA=y 493 - # CONFIG_IDEDMA_IVB is not set 494 - CONFIG_IDEDMA_AUTO=y 495 # CONFIG_BLK_DEV_HD is not set 496 497 # ··· 499 # SCSI low-level drivers 500 # 501 CONFIG_ISCSI_TCP=m 502 - # CONFIG_BLK_DEV_3W_XXXX_RAID is not set 503 - # CONFIG_SCSI_3W_9XXX is not set 504 - # CONFIG_SCSI_ACARD is not set 505 - # CONFIG_SCSI_AACRAID is not set 506 - CONFIG_SCSI_AIC7XXX=m 507 - CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 508 - CONFIG_AIC7XXX_RESET_DELAY_MS=15000 509 - # CONFIG_AIC7XXX_DEBUG_ENABLE is not set 510 - CONFIG_AIC7XXX_DEBUG_MASK=0 511 - # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set 512 - # CONFIG_SCSI_AIC7XXX_OLD is not set 513 - # CONFIG_SCSI_AIC79XX is not set 514 - # CONFIG_SCSI_DPT_I2O is not set 515 - # CONFIG_MEGARAID_NEWGEN is not set 516 - # CONFIG_MEGARAID_LEGACY is not set 517 - # CONFIG_MEGARAID_SAS is not set 518 # CONFIG_SCSI_SATA is not set 519 - # CONFIG_SCSI_DMX3191D is not set 520 - # CONFIG_SCSI_FUTURE_DOMAIN is not set 521 - # CONFIG_SCSI_IPS is not set 522 - # CONFIG_SCSI_INITIO is not set 523 - # CONFIG_SCSI_INIA100 is not set 524 - # CONFIG_SCSI_SYM53C8XX_2 is not set 525 - # CONFIG_SCSI_IPR is not set 526 - # CONFIG_SCSI_QLOGIC_1280 is not set 527 - # CONFIG_SCSI_QLA_FC is not set 528 - # CONFIG_SCSI_LPFC is not set 529 - # CONFIG_SCSI_DC395x is not set 530 - # CONFIG_SCSI_DC390T is not set 531 - # CONFIG_SCSI_NSP32 is not set 532 # CONFIG_SCSI_DEBUG is not set 533 534 # ··· 512 # Fusion MPT device support 513 # 514 # CONFIG_FUSION is not set 515 - # CONFIG_FUSION_SPI is not set 516 - # CONFIG_FUSION_FC is not set 517 - # CONFIG_FUSION_SAS is not set 518 519 # 520 # IEEE 1394 (FireWire) support 521 # 522 - # CONFIG_IEEE1394 is not set 523 524 # 525 # I2O device support 526 # 527 - # CONFIG_I2O is not set 528 529 # 530 # Network device support ··· 531 CONFIG_TUN=m 532 533 # 534 - # ARCnet devices 535 - # 536 - # CONFIG_ARCNET is not set 537 - 538 - # 539 # PHY device support 540 # 541 # CONFIG_PHYLIB is not set ··· 540 # 541 CONFIG_NET_ETHERNET=y 542 CONFIG_MII=y 543 - # CONFIG_HAPPYMEAL is not set 544 - # CONFIG_SUNGEM is not set 545 - # CONFIG_CASSINI is not set 546 - # CONFIG_NET_VENDOR_3COM is not set 547 # CONFIG_DM9000 is not set 548 - 549 - # 550 - # Tulip family network device support 551 - # 552 - # CONFIG_NET_TULIP is not set 553 - # CONFIG_HP100 is not set 554 - CONFIG_NET_PCI=y 555 - # CONFIG_PCNET32 is not set 556 - # CONFIG_AMD8111_ETH is not set 557 - # CONFIG_ADAPTEC_STARFIRE is not set 558 - # CONFIG_B44 is not set 559 - # CONFIG_FORCEDETH is not set 560 - # CONFIG_DGRS is not set 561 - # CONFIG_EEPRO100 is not set 562 - # CONFIG_E100 is not set 563 - # CONFIG_FEALNX is not set 564 - CONFIG_NATSEMI=y 565 - # CONFIG_NE2K_PCI is not set 566 - # CONFIG_8139CP is not set 567 - CONFIG_8139TOO=y 568 - # CONFIG_8139TOO_PIO is not set 569 - # CONFIG_8139TOO_TUNE_TWISTER is not set 570 - # CONFIG_8139TOO_8129 is not set 571 - # CONFIG_8139_OLD_RX_RESET is not set 572 - # CONFIG_SIS900 is not set 573 - # CONFIG_EPIC100 is not set 574 - # CONFIG_SUNDANCE is not set 575 - # CONFIG_TLAN is not set 576 - # CONFIG_VIA_RHINE is not set 577 - # CONFIG_LAN_SAA9730 is not set 578 579 # 580 # Ethernet (1000 Mbit) 581 # 582 - # CONFIG_ACENIC is not set 583 - # CONFIG_DL2K is not set 584 - # CONFIG_E1000 is not set 585 - # CONFIG_NS83820 is not set 586 - # CONFIG_HAMACHI is not set 587 - # CONFIG_YELLOWFIN is not set 588 - # CONFIG_R8169 is not set 589 - # CONFIG_SIS190 is not set 590 - # CONFIG_SKGE is not set 591 - # CONFIG_SKY2 is not set 592 - # CONFIG_SK98LIN is not set 593 - # CONFIG_VIA_VELOCITY is not set 594 - # CONFIG_TIGON3 is not set 595 - # CONFIG_BNX2 is not set 596 597 # 598 # Ethernet (10000 Mbit) 599 # 600 - # CONFIG_CHELSIO_T1 is not set 601 - # CONFIG_IXGB is not set 602 - # CONFIG_S2IO is not set 603 604 # 605 # Token Ring devices 606 # 607 - # CONFIG_TR is not set 608 609 # 610 # Wireless LAN (non-hamradio) ··· 564 # Wan interfaces 565 # 566 # CONFIG_WAN is not set 567 - # CONFIG_FDDI is not set 568 - # CONFIG_HIPPI is not set 569 CONFIG_PPP=m 570 # CONFIG_PPP_MULTILINK is not set 571 # CONFIG_PPP_FILTER is not set ··· 574 CONFIG_PPP_MPPE=m 575 # CONFIG_PPPOE is not set 576 # CONFIG_SLIP is not set 577 - # CONFIG_NET_FC is not set 578 # CONFIG_SHAPER is not set 579 # CONFIG_NETCONSOLE is not set 580 # CONFIG_NETPOLL is not set ··· 629 CONFIG_SERIO=y 630 CONFIG_SERIO_I8042=y 631 CONFIG_SERIO_SERPORT=y 632 - # CONFIG_SERIO_PCIPS2 is not set 633 CONFIG_SERIO_LIBPS2=y 634 # CONFIG_SERIO_RAW is not set 635 # CONFIG_GAMEPORT is not set ··· 639 CONFIG_VT=y 640 # CONFIG_VT_CONSOLE is not set 641 CONFIG_HW_CONSOLE=y 642 CONFIG_SERIAL_NONSTANDARD=y 643 # CONFIG_COMPUTONE is not set 644 # CONFIG_ROCKETPORT is not set ··· 649 # CONFIG_MOXA_SMARTIO is not set 650 # CONFIG_ISI is not set 651 # CONFIG_SYNCLINKMP is not set 652 - # CONFIG_SYNCLINK_GT is not set 653 # CONFIG_N_HDLC is not set 654 # CONFIG_RISCOM8 is not set 655 # CONFIG_SPECIALIX is not set ··· 664 # 665 # Non-8250 serial port support 666 # 667 - # CONFIG_SERIAL_IP3106 is not set 668 - # CONFIG_SERIAL_JSM is not set 669 CONFIG_UNIX98_PTYS=y 670 CONFIG_LEGACY_PTYS=y 671 CONFIG_LEGACY_PTY_COUNT=256 ··· 678 # Watchdog Cards 679 # 680 # CONFIG_WATCHDOG is not set 681 # CONFIG_RTC is not set 682 # CONFIG_GEN_RTC is not set 683 # CONFIG_DTLK is not set 684 # CONFIG_R3964 is not set 685 - # CONFIG_APPLICOM is not set 686 687 # 688 # Ftape, the floppy tape device driver 689 # 690 - # CONFIG_DRM is not set 691 # CONFIG_RAW_DRIVER is not set 692 693 # ··· 708 CONFIG_I2C_ALGOBIT=m 709 # CONFIG_I2C_ALGOPCF is not set 710 # CONFIG_I2C_ALGOPCA is not set 711 712 # 713 # I2C Hardware Bus support 714 # 715 - # CONFIG_I2C_ALI1535 is not set 716 - # CONFIG_I2C_ALI1563 is not set 717 - # CONFIG_I2C_ALI15X3 is not set 718 - # CONFIG_I2C_AMD756 is not set 719 - # CONFIG_I2C_AMD8111 is not set 720 - # CONFIG_I2C_I801 is not set 721 - # CONFIG_I2C_I810 is not set 722 - # CONFIG_I2C_PIIX4 is not set 723 - # CONFIG_I2C_NFORCE2 is not set 724 # CONFIG_I2C_PARPORT_LIGHT is not set 725 - # CONFIG_I2C_PROSAVAGE is not set 726 - # CONFIG_I2C_SAVAGE4 is not set 727 - # CONFIG_I2C_SIS5595 is not set 728 - # CONFIG_I2C_SIS630 is not set 729 - # CONFIG_I2C_SIS96X is not set 730 # CONFIG_I2C_STUB is not set 731 - # CONFIG_I2C_VIA is not set 732 - # CONFIG_I2C_VIAPRO is not set 733 - # CONFIG_I2C_VOODOO3 is not set 734 # CONFIG_I2C_PCA_ISA is not set 735 736 # ··· 742 # 743 # Dallas's 1-wire bus 744 # 745 - # CONFIG_W1 is not set 746 747 # 748 # Hardware Monitoring support 749 # 750 CONFIG_HWMON=y 751 # CONFIG_HWMON_VID is not set 752 # CONFIG_SENSORS_ADM1021 is not set 753 # CONFIG_SENSORS_ADM1025 is not set 754 # CONFIG_SENSORS_ADM1026 is not set ··· 775 # CONFIG_SENSORS_LM92 is not set 776 # CONFIG_SENSORS_MAX1619 is not set 777 # CONFIG_SENSORS_PC87360 is not set 778 - # CONFIG_SENSORS_SIS5595 is not set 779 # CONFIG_SENSORS_SMSC47M1 is not set 780 # CONFIG_SENSORS_SMSC47B397 is not set 781 - # CONFIG_SENSORS_VIA686A is not set 782 - # CONFIG_SENSORS_VT8231 is not set 783 # CONFIG_SENSORS_W83781D is not set 784 # CONFIG_SENSORS_W83792D is not set 785 # CONFIG_SENSORS_W83L785TS is not set 786 # CONFIG_SENSORS_W83627HF is not set ··· 794 # Multimedia devices 795 # 796 # CONFIG_VIDEO_DEV is not set 797 798 # 799 # Digital Video Broadcasting Devices 800 # 801 # CONFIG_DVB is not set 802 - # CONFIG_USB_DABUSB is not set 803 804 # 805 # Graphics support 806 # 807 CONFIG_FB=y 808 # CONFIG_FB_CFB_FILLRECT is not set 809 # CONFIG_FB_CFB_COPYAREA is not set 810 # CONFIG_FB_CFB_IMAGEBLIT is not set 811 # CONFIG_FB_MACMODES is not set 812 - CONFIG_FB_FIRMWARE_EDID=y 813 # CONFIG_FB_MODE_HELPERS is not set 814 # CONFIG_FB_TILEBLITTING is not set 815 - # CONFIG_FB_CIRRUS is not set 816 - # CONFIG_FB_PM2 is not set 817 - # CONFIG_FB_CYBER2000 is not set 818 - # CONFIG_FB_ASILIANT is not set 819 - # CONFIG_FB_IMSTT is not set 820 # CONFIG_FB_S1D13XXX is not set 821 - # CONFIG_FB_NVIDIA is not set 822 - # CONFIG_FB_RIVA is not set 823 - # CONFIG_FB_MATROX is not set 824 - # CONFIG_FB_RADEON is not set 825 - # CONFIG_FB_ATY128 is not set 826 - # CONFIG_FB_ATY is not set 827 - # CONFIG_FB_SAVAGE is not set 828 - # CONFIG_FB_SIS is not set 829 - # CONFIG_FB_NEOMAGIC is not set 830 - # CONFIG_FB_KYRO is not set 831 - # CONFIG_FB_3DFX is not set 832 - # CONFIG_FB_VOODOO1 is not set 833 - # CONFIG_FB_SMIVGX is not set 834 - # CONFIG_FB_TRIDENT is not set 835 # CONFIG_FB_VIRTUAL is not set 836 837 # 838 # Console display driver support 839 # 840 # CONFIG_VGA_CONSOLE is not set 841 CONFIG_DUMMY_CONSOLE=y 842 # CONFIG_FRAMEBUFFER_CONSOLE is not set 843 ··· 838 # 839 # USB support 840 # 841 - CONFIG_USB_ARCH_HAS_HCD=y 842 - CONFIG_USB_ARCH_HAS_OHCI=y 843 - CONFIG_USB_ARCH_HAS_EHCI=y 844 - CONFIG_USB=y 845 - # CONFIG_USB_DEBUG is not set 846 - 847 - # 848 - # Miscellaneous USB options 849 - # 850 - CONFIG_USB_DEVICEFS=y 851 - # CONFIG_USB_BANDWIDTH is not set 852 - # CONFIG_USB_DYNAMIC_MINORS is not set 853 - # CONFIG_USB_OTG is not set 854 - 855 - # 856 - # USB Host Controller Drivers 857 - # 858 - # CONFIG_USB_EHCI_HCD is not set 859 - # CONFIG_USB_ISP116X_HCD is not set 860 - # CONFIG_USB_OHCI_HCD is not set 861 - # CONFIG_USB_UHCI_HCD is not set 862 - # CONFIG_USB_SL811_HCD is not set 863 - 864 - # 865 - # USB Device Class drivers 866 - # 867 - # CONFIG_USB_ACM is not set 868 - # CONFIG_USB_PRINTER is not set 869 870 # 871 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 872 - # 873 - 874 - # 875 - # may also be needed; see USB_STORAGE Help for more information 876 - # 877 - CONFIG_USB_STORAGE=y 878 - # CONFIG_USB_STORAGE_DEBUG is not set 879 - # CONFIG_USB_STORAGE_DATAFAB is not set 880 - # CONFIG_USB_STORAGE_FREECOM is not set 881 - # CONFIG_USB_STORAGE_ISD200 is not set 882 - # CONFIG_USB_STORAGE_DPCM is not set 883 - # CONFIG_USB_STORAGE_USBAT is not set 884 - # CONFIG_USB_STORAGE_SDDR09 is not set 885 - # CONFIG_USB_STORAGE_SDDR55 is not set 886 - # CONFIG_USB_STORAGE_JUMPSHOT is not set 887 - # CONFIG_USB_STORAGE_ALAUDA is not set 888 - # CONFIG_USB_STORAGE_ONETOUCH is not set 889 - # CONFIG_USB_LIBUSUAL is not set 890 - 891 - # 892 - # USB Input Devices 893 - # 894 - CONFIG_USB_HID=y 895 - CONFIG_USB_HIDINPUT=y 896 - # CONFIG_USB_HIDINPUT_POWERBOOK is not set 897 - # CONFIG_HID_FF is not set 898 - CONFIG_USB_HIDDEV=y 899 - # CONFIG_USB_AIPTEK is not set 900 - # CONFIG_USB_WACOM is not set 901 - # CONFIG_USB_ACECAD is not set 902 - # CONFIG_USB_KBTAB is not set 903 - # CONFIG_USB_POWERMATE is not set 904 - # CONFIG_USB_TOUCHSCREEN is not set 905 - # CONFIG_USB_YEALINK is not set 906 - # CONFIG_USB_XPAD is not set 907 - # CONFIG_USB_ATI_REMOTE is not set 908 - # CONFIG_USB_ATI_REMOTE2 is not set 909 - # CONFIG_USB_KEYSPAN_REMOTE is not set 910 - # CONFIG_USB_APPLETOUCH is not set 911 - 912 - # 913 - # USB Imaging devices 914 - # 915 - # CONFIG_USB_MDC800 is not set 916 - # CONFIG_USB_MICROTEK is not set 917 - 918 - # 919 - # USB Network Adapters 920 - # 921 - # CONFIG_USB_CATC is not set 922 - # CONFIG_USB_KAWETH is not set 923 - # CONFIG_USB_PEGASUS is not set 924 - # CONFIG_USB_RTL8150 is not set 925 - # CONFIG_USB_USBNET is not set 926 - CONFIG_USB_MON=y 927 - 928 - # 929 - # USB port drivers 930 - # 931 - 932 - # 933 - # USB Serial Converter support 934 - # 935 - # CONFIG_USB_SERIAL is not set 936 - 937 - # 938 - # USB Miscellaneous drivers 939 - # 940 - # CONFIG_USB_EMI62 is not set 941 - # CONFIG_USB_EMI26 is not set 942 - # CONFIG_USB_AUERSWALD is not set 943 - # CONFIG_USB_RIO500 is not set 944 - # CONFIG_USB_LEGOTOWER is not set 945 - # CONFIG_USB_LCD is not set 946 - # CONFIG_USB_LED is not set 947 - # CONFIG_USB_CYTHERM is not set 948 - # CONFIG_USB_PHIDGETKIT is not set 949 - # CONFIG_USB_PHIDGETSERVO is not set 950 - # CONFIG_USB_IDMOUSE is not set 951 - # CONFIG_USB_LD is not set 952 - # CONFIG_USB_TEST is not set 953 - 954 - # 955 - # USB DSL modem support 956 # 957 958 # ··· 872 # 873 # InfiniBand support 874 # 875 - # CONFIG_INFINIBAND is not set 876 877 # 878 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 881 # Real Time Clock 882 # 883 # CONFIG_RTC_CLASS is not set 884 885 # 886 # File systems ··· 912 # CONFIG_JFS_FS is not set 913 # CONFIG_FS_POSIX_ACL is not set 914 CONFIG_XFS_FS=m 915 - CONFIG_XFS_EXPORT=y 916 # CONFIG_XFS_QUOTA is not set 917 # CONFIG_XFS_SECURITY is not set 918 # CONFIG_XFS_POSIX_ACL is not set ··· 920 # CONFIG_MINIX_FS is not set 921 # CONFIG_ROMFS_FS is not set 922 CONFIG_INOTIFY=y 923 # CONFIG_QUOTA is not set 924 CONFIG_DNOTIFY=y 925 CONFIG_AUTOFS_FS=y ··· 993 CONFIG_SMB_FS=m 994 # CONFIG_SMB_NLS_DEFAULT is not set 995 # CONFIG_CIFS is not set 996 # CONFIG_NCP_FS is not set 997 # CONFIG_CODA_FS is not set 998 # CONFIG_AFS_FS is not set ··· 1004 # 1005 # CONFIG_PARTITION_ADVANCED is not set 1006 CONFIG_MSDOS_PARTITION=y 1007 1008 # 1009 # Native Language Support ··· 1060 # 1061 # CONFIG_PRINTK_TIME is not set 1062 # CONFIG_MAGIC_SYSRQ is not set 1063 # CONFIG_DEBUG_KERNEL is not set 1064 CONFIG_LOG_BUF_SHIFT=14 1065 # CONFIG_DEBUG_FS is not set ··· 1119 CONFIG_TEXTSEARCH_KMP=m 1120 CONFIG_TEXTSEARCH_BM=m 1121 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 39 # CONFIG_MOMENCO_OCELOT_C is not set 40 # CONFIG_MOMENCO_OCELOT_G is not set 41 # CONFIG_MIPS_XXS1500 is not set 42 + # CONFIG_PNX8550_V2PCI is not set 43 # CONFIG_PNX8550_JBS is not set 44 # CONFIG_DDB5477 is not set 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 + CONFIG_SGI_IP22=y 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set 52 # CONFIG_SIBYTE_BIGSUR is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 + CONFIG_ARC=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 + CONFIG_CPU_BIG_ENDIAN=y 73 + # CONFIG_CPU_LITTLE_ENDIAN is not set 74 + CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y 75 + CONFIG_IRQ_CPU=y 76 + CONFIG_SWAP_IO_SPACE=y 77 + CONFIG_ARC32=y 78 + CONFIG_BOOT_ELF32=y 79 CONFIG_MIPS_L1_CACHE_SHIFT=5 80 + # CONFIG_ARC_CONSOLE is not set 81 + CONFIG_ARC_PROMLIB=y 82 83 # 84 # CPU selection 85 # 86 + # CONFIG_CPU_MIPS32_R1 is not set 87 # CONFIG_CPU_MIPS32_R2 is not set 88 # CONFIG_CPU_MIPS64_R1 is not set 89 # CONFIG_CPU_MIPS64_R2 is not set ··· 85 # CONFIG_CPU_TX39XX is not set 86 # CONFIG_CPU_VR41XX is not set 87 # CONFIG_CPU_R4300 is not set 88 + CONFIG_CPU_R4X00=y 89 # CONFIG_CPU_TX49XX is not set 90 # CONFIG_CPU_R5000 is not set 91 # CONFIG_CPU_R5432 is not set ··· 96 # CONFIG_CPU_RM7000 is not set 97 # CONFIG_CPU_RM9000 is not set 98 # CONFIG_CPU_SB1 is not set 99 + CONFIG_SYS_HAS_CPU_R4X00=y 100 + CONFIG_SYS_HAS_CPU_R5000=y 101 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 102 + CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 103 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y 104 + CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y 105 106 # 107 # Kernel type ··· 111 # CONFIG_PAGE_SIZE_8KB is not set 112 # CONFIG_PAGE_SIZE_16KB is not set 113 # CONFIG_PAGE_SIZE_64KB is not set 114 + CONFIG_BOARD_SCACHE=y 115 + CONFIG_IP22_CPU_SCACHE=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 # CONFIG_64BIT_PHYS_ADDR is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y 124 CONFIG_GENERIC_IRQ_PROBE=y 125 CONFIG_ARCH_FLATMEM_ENABLE=y 126 CONFIG_SELECT_MEMORY_MODEL=y 127 CONFIG_FLATMEM_MANUAL=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 172 CONFIG_BUG=y 173 CONFIG_ELF_CORE=y 174 CONFIG_BASE_FULL=y 175 + CONFIG_RT_MUTEXES=y 176 CONFIG_FUTEX=y 177 CONFIG_EPOLL=y 178 CONFIG_SHMEM=y 179 CONFIG_SLAB=y 180 + CONFIG_VM_EVENT_COUNTERS=y 181 # CONFIG_TINY_SHMEM is not set 182 CONFIG_BASE_SMALL=0 183 # CONFIG_SLOB is not set ··· 212 # 213 # Bus options (PCI, PCMCIA, EISA, ISA, TC) 214 # 215 + CONFIG_HW_HAS_EISA=y 216 + # CONFIG_EISA is not set 217 CONFIG_MMU=y 218 219 # ··· 224 # 225 # PCI Hotplug Support 226 # 227 228 # 229 # Executable file formats ··· 245 CONFIG_PACKET=y 246 # CONFIG_PACKET_MMAP is not set 247 CONFIG_UNIX=y 248 + CONFIG_XFRM=y 249 + # CONFIG_XFRM_USER is not set 250 # CONFIG_NET_KEY is not set 251 CONFIG_INET=y 252 # CONFIG_IP_MULTICAST is not set ··· 263 # CONFIG_INET_IPCOMP is not set 264 # CONFIG_INET_XFRM_TUNNEL is not set 265 # CONFIG_INET_TUNNEL is not set 266 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 267 + CONFIG_INET_XFRM_MODE_TUNNEL=m 268 CONFIG_INET_DIAG=y 269 CONFIG_INET_TCP_DIAG=y 270 # CONFIG_TCP_CONG_ADVANCED is not set ··· 281 # CONFIG_INET6_IPCOMP is not set 282 # CONFIG_INET6_XFRM_TUNNEL is not set 283 # CONFIG_INET6_TUNNEL is not set 284 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 285 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 286 # CONFIG_IPV6_TUNNEL is not set 287 + CONFIG_NETWORK_SECMARK=y 288 CONFIG_NETFILTER=y 289 # CONFIG_NETFILTER_DEBUG is not set 290 ··· 294 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 295 CONFIG_NETFILTER_XT_TARGET_MARK=m 296 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 297 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 298 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 299 CONFIG_NETFILTER_XT_MATCH_DCCP=m 300 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 301 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 302 CONFIG_NETFILTER_XT_MATCH_MAC=m 303 CONFIG_NETFILTER_XT_MATCH_MARK=m 304 + # CONFIG_NETFILTER_XT_MATCH_POLICY is not set 305 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 306 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 307 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 308 CONFIG_NETFILTER_XT_MATCH_REALM=m 309 CONFIG_NETFILTER_XT_MATCH_SCTP=m 310 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 311 CONFIG_NETFILTER_XT_MATCH_STRING=m 312 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 313 ··· 374 CONFIG_STANDALONE=y 375 CONFIG_PREVENT_FIRMWARE_BUILD=y 376 CONFIG_FW_LOADER=y 377 + # CONFIG_SYS_HYPERVISOR is not set 378 379 # 380 # Connector - unified userspace <-> kernelspace linker ··· 397 # 398 # Block devices 399 # 400 # CONFIG_BLK_DEV_COW_COMMON is not set 401 CONFIG_BLK_DEV_LOOP=y 402 # CONFIG_BLK_DEV_CRYPTOLOOP is not set 403 # CONFIG_BLK_DEV_NBD is not set 404 CONFIG_BLK_DEV_RAM=y 405 CONFIG_BLK_DEV_RAM_COUNT=16 406 CONFIG_BLK_DEV_RAM_SIZE=8192 ··· 436 # IDE chipset support/bugfixes 437 # 438 CONFIG_IDE_GENERIC=y 439 # CONFIG_IDE_ARM is not set 440 + # CONFIG_BLK_DEV_IDEDMA is not set 441 + # CONFIG_IDEDMA_AUTO is not set 442 # CONFIG_BLK_DEV_HD is not set 443 444 # ··· 508 # SCSI low-level drivers 509 # 510 CONFIG_ISCSI_TCP=m 511 + # CONFIG_SGIWD93_SCSI is not set 512 # CONFIG_SCSI_SATA is not set 513 # CONFIG_SCSI_DEBUG is not set 514 515 # ··· 549 # Fusion MPT device support 550 # 551 # CONFIG_FUSION is not set 552 553 # 554 # IEEE 1394 (FireWire) support 555 # 556 557 # 558 # I2O device support 559 # 560 561 # 562 # Network device support ··· 573 CONFIG_TUN=m 574 575 # 576 # PHY device support 577 # 578 # CONFIG_PHYLIB is not set ··· 587 # 588 CONFIG_NET_ETHERNET=y 589 CONFIG_MII=y 590 # CONFIG_DM9000 is not set 591 + # CONFIG_SGISEEQ is not set 592 593 # 594 # Ethernet (1000 Mbit) 595 # 596 597 # 598 # Ethernet (10000 Mbit) 599 # 600 601 # 602 # Token Ring devices 603 # 604 605 # 606 # Wireless LAN (non-hamradio) ··· 662 # Wan interfaces 663 # 664 # CONFIG_WAN is not set 665 CONFIG_PPP=m 666 # CONFIG_PPP_MULTILINK is not set 667 # CONFIG_PPP_FILTER is not set ··· 674 CONFIG_PPP_MPPE=m 675 # CONFIG_PPPOE is not set 676 # CONFIG_SLIP is not set 677 # CONFIG_SHAPER is not set 678 # CONFIG_NETCONSOLE is not set 679 # CONFIG_NETPOLL is not set ··· 730 CONFIG_SERIO=y 731 CONFIG_SERIO_I8042=y 732 CONFIG_SERIO_SERPORT=y 733 CONFIG_SERIO_LIBPS2=y 734 # CONFIG_SERIO_RAW is not set 735 # CONFIG_GAMEPORT is not set ··· 741 CONFIG_VT=y 742 # CONFIG_VT_CONSOLE is not set 743 CONFIG_HW_CONSOLE=y 744 + CONFIG_VT_HW_CONSOLE_BINDING=y 745 CONFIG_SERIAL_NONSTANDARD=y 746 # CONFIG_COMPUTONE is not set 747 # CONFIG_ROCKETPORT is not set ··· 750 # CONFIG_MOXA_SMARTIO is not set 751 # CONFIG_ISI is not set 752 # CONFIG_SYNCLINKMP is not set 753 # CONFIG_N_HDLC is not set 754 # CONFIG_RISCOM8 is not set 755 # CONFIG_SPECIALIX is not set ··· 766 # 767 # Non-8250 serial port support 768 # 769 + # CONFIG_SERIAL_IP22_ZILOG is not set 770 CONFIG_UNIX98_PTYS=y 771 CONFIG_LEGACY_PTYS=y 772 CONFIG_LEGACY_PTY_COUNT=256 ··· 781 # Watchdog Cards 782 # 783 # CONFIG_WATCHDOG is not set 784 + # CONFIG_HW_RANDOM is not set 785 # CONFIG_RTC is not set 786 + # CONFIG_SGI_DS1286 is not set 787 # CONFIG_GEN_RTC is not set 788 # CONFIG_DTLK is not set 789 # CONFIG_R3964 is not set 790 791 # 792 # Ftape, the floppy tape device driver 793 # 794 # CONFIG_RAW_DRIVER is not set 795 796 # ··· 811 CONFIG_I2C_ALGOBIT=m 812 # CONFIG_I2C_ALGOPCF is not set 813 # CONFIG_I2C_ALGOPCA is not set 814 + # CONFIG_I2C_ALGO_SGI is not set 815 816 # 817 # I2C Hardware Bus support 818 # 819 + # CONFIG_I2C_OCORES is not set 820 # CONFIG_I2C_PARPORT_LIGHT is not set 821 # CONFIG_I2C_STUB is not set 822 # CONFIG_I2C_PCA_ISA is not set 823 824 # ··· 860 # 861 # Dallas's 1-wire bus 862 # 863 864 # 865 # Hardware Monitoring support 866 # 867 CONFIG_HWMON=y 868 # CONFIG_HWMON_VID is not set 869 + # CONFIG_SENSORS_ABITUGURU is not set 870 # CONFIG_SENSORS_ADM1021 is not set 871 # CONFIG_SENSORS_ADM1025 is not set 872 # CONFIG_SENSORS_ADM1026 is not set ··· 893 # CONFIG_SENSORS_LM92 is not set 894 # CONFIG_SENSORS_MAX1619 is not set 895 # CONFIG_SENSORS_PC87360 is not set 896 # CONFIG_SENSORS_SMSC47M1 is not set 897 + # CONFIG_SENSORS_SMSC47M192 is not set 898 # CONFIG_SENSORS_SMSC47B397 is not set 899 # CONFIG_SENSORS_W83781D is not set 900 + # CONFIG_SENSORS_W83791D is not set 901 # CONFIG_SENSORS_W83792D is not set 902 # CONFIG_SENSORS_W83L785TS is not set 903 # CONFIG_SENSORS_W83627HF is not set ··· 913 # Multimedia devices 914 # 915 # CONFIG_VIDEO_DEV is not set 916 + CONFIG_VIDEO_V4L2=y 917 918 # 919 # Digital Video Broadcasting Devices 920 # 921 # CONFIG_DVB is not set 922 923 # 924 # Graphics support 925 # 926 + # CONFIG_FIRMWARE_EDID is not set 927 CONFIG_FB=y 928 # CONFIG_FB_CFB_FILLRECT is not set 929 # CONFIG_FB_CFB_COPYAREA is not set 930 # CONFIG_FB_CFB_IMAGEBLIT is not set 931 # CONFIG_FB_MACMODES is not set 932 + # CONFIG_FB_BACKLIGHT is not set 933 # CONFIG_FB_MODE_HELPERS is not set 934 # CONFIG_FB_TILEBLITTING is not set 935 # CONFIG_FB_S1D13XXX is not set 936 # CONFIG_FB_VIRTUAL is not set 937 938 # 939 # Console display driver support 940 # 941 # CONFIG_VGA_CONSOLE is not set 942 + # CONFIG_SGI_NEWPORT_CONSOLE is not set 943 CONFIG_DUMMY_CONSOLE=y 944 # CONFIG_FRAMEBUFFER_CONSOLE is not set 945 ··· 974 # 975 # USB support 976 # 977 + # CONFIG_USB_ARCH_HAS_HCD is not set 978 + # CONFIG_USB_ARCH_HAS_OHCI is not set 979 + # CONFIG_USB_ARCH_HAS_EHCI is not set 980 981 # 982 # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' 983 # 984 985 # ··· 1117 # 1118 # InfiniBand support 1119 # 1120 1121 # 1122 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) ··· 1127 # Real Time Clock 1128 # 1129 # CONFIG_RTC_CLASS is not set 1130 + 1131 + # 1132 + # DMA Engine support 1133 + # 1134 + # CONFIG_DMA_ENGINE is not set 1135 + 1136 + # 1137 + # DMA Clients 1138 + # 1139 + 1140 + # 1141 + # DMA Devices 1142 + # 1143 1144 # 1145 # File systems ··· 1145 # CONFIG_JFS_FS is not set 1146 # CONFIG_FS_POSIX_ACL is not set 1147 CONFIG_XFS_FS=m 1148 # CONFIG_XFS_QUOTA is not set 1149 # CONFIG_XFS_SECURITY is not set 1150 # CONFIG_XFS_POSIX_ACL is not set ··· 1154 # CONFIG_MINIX_FS is not set 1155 # CONFIG_ROMFS_FS is not set 1156 CONFIG_INOTIFY=y 1157 + CONFIG_INOTIFY_USER=y 1158 # CONFIG_QUOTA is not set 1159 CONFIG_DNOTIFY=y 1160 CONFIG_AUTOFS_FS=y ··· 1226 CONFIG_SMB_FS=m 1227 # CONFIG_SMB_NLS_DEFAULT is not set 1228 # CONFIG_CIFS is not set 1229 + # CONFIG_CIFS_DEBUG2 is not set 1230 # CONFIG_NCP_FS is not set 1231 # CONFIG_CODA_FS is not set 1232 # CONFIG_AFS_FS is not set ··· 1236 # 1237 # CONFIG_PARTITION_ADVANCED is not set 1238 CONFIG_MSDOS_PARTITION=y 1239 + CONFIG_SGI_PARTITION=y 1240 1241 # 1242 # Native Language Support ··· 1291 # 1292 # CONFIG_PRINTK_TIME is not set 1293 # CONFIG_MAGIC_SYSRQ is not set 1294 + # CONFIG_UNUSED_SYMBOLS is not set 1295 # CONFIG_DEBUG_KERNEL is not set 1296 CONFIG_LOG_BUF_SHIFT=14 1297 # CONFIG_DEBUG_FS is not set ··· 1349 CONFIG_TEXTSEARCH_KMP=m 1350 CONFIG_TEXTSEARCH_BM=m 1351 CONFIG_TEXTSEARCH_FSM=m 1352 + CONFIG_PLIST=y
+40 -4
arch/mips/configs/qemu_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:15 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 CONFIG_QEMU=y 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_COHERENT=y 72 CONFIG_GENERIC_ISA_DMA=y 73 CONFIG_I8259=y ··· 117 # CONFIG_PAGE_SIZE_16KB is not set 118 # CONFIG_PAGE_SIZE_64KB is not set 119 CONFIG_CPU_HAS_PREFETCH=y 120 - # CONFIG_MIPS_MT is not set 121 # CONFIG_64BIT_PHYS_ADDR is not set 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y ··· 128 CONFIG_GENERIC_IRQ_PROBE=y 129 CONFIG_CPU_SUPPORTS_HIGHMEM=y 130 CONFIG_ARCH_FLATMEM_ENABLE=y 131 CONFIG_FLATMEM=y 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 - # CONFIG_SMP is not set 136 # CONFIG_HZ_48 is not set 137 CONFIG_HZ_100=y 138 # CONFIG_HZ_128 is not set ··· 146 CONFIG_PREEMPT_NONE=y 147 # CONFIG_PREEMPT_VOLUNTARY is not set 148 # CONFIG_PREEMPT is not set 149 150 # 151 # Code maturity level options ··· 180 # CONFIG_EPOLL is not set 181 # CONFIG_SHMEM is not set 182 CONFIG_SLAB=y 183 CONFIG_TINY_SHMEM=y 184 CONFIG_BASE_SMALL=1 185 # CONFIG_SLOB is not set ··· 245 CONFIG_PACKET=y 246 CONFIG_PACKET_MMAP=y 247 CONFIG_UNIX=y 248 # CONFIG_NET_KEY is not set 249 CONFIG_INET=y 250 CONFIG_IP_MULTICAST=y ··· 265 # CONFIG_INET_IPCOMP is not set 266 # CONFIG_INET_XFRM_TUNNEL is not set 267 # CONFIG_INET_TUNNEL is not set 268 CONFIG_INET_DIAG=y 269 CONFIG_INET_TCP_DIAG=y 270 # CONFIG_TCP_CONG_ADVANCED is not set ··· 274 # CONFIG_IPV6 is not set 275 # CONFIG_INET6_XFRM_TUNNEL is not set 276 # CONFIG_INET6_TUNNEL is not set 277 # CONFIG_NETFILTER is not set 278 # CONFIG_BRIDGE is not set 279 # CONFIG_VLAN_8021Q is not set ··· 307 CONFIG_STANDALONE=y 308 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 309 # CONFIG_FW_LOADER is not set 310 311 # 312 # Connector - unified userspace <-> kernelspace linker ··· 489 CONFIG_VT=y 490 CONFIG_VT_CONSOLE=y 491 CONFIG_HW_CONSOLE=y 492 # CONFIG_SERIAL_NONSTANDARD is not set 493 494 # ··· 519 # Watchdog Cards 520 # 521 # CONFIG_WATCHDOG is not set 522 # CONFIG_RTC is not set 523 # CONFIG_GEN_RTC is not set 524 # CONFIG_DTLK is not set ··· 564 # Multimedia devices 565 # 566 # CONFIG_VIDEO_DEV is not set 567 568 # 569 # Digital Video Broadcasting Devices ··· 574 # 575 # Graphics support 576 # 577 # CONFIG_FB is not set 578 579 # ··· 637 # 638 639 # 640 # File systems 641 # 642 # CONFIG_EXT2_FS is not set ··· 661 # CONFIG_MINIX_FS is not set 662 # CONFIG_ROMFS_FS is not set 663 CONFIG_INOTIFY=y 664 # CONFIG_QUOTA is not set 665 # CONFIG_DNOTIFY is not set 666 # CONFIG_AUTOFS_FS is not set ··· 716 CONFIG_SUNRPC=y 717 # CONFIG_SMB_FS is not set 718 # CONFIG_CIFS is not set 719 # CONFIG_NCP_FS is not set 720 # CONFIG_CODA_FS is not set 721 ··· 736 # 737 # CONFIG_PRINTK_TIME is not set 738 # CONFIG_MAGIC_SYSRQ is not set 739 # CONFIG_DEBUG_KERNEL is not set 740 CONFIG_LOG_BUF_SHIFT=14 741 # CONFIG_DEBUG_FS is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:18 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 CONFIG_QEMU=y 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_COHERENT=y 70 CONFIG_GENERIC_ISA_DMA=y 71 CONFIG_I8259=y ··· 113 # CONFIG_PAGE_SIZE_16KB is not set 114 # CONFIG_PAGE_SIZE_64KB is not set 115 CONFIG_CPU_HAS_PREFETCH=y 116 + CONFIG_MIPS_MT_DISABLED=y 117 + # CONFIG_MIPS_MT_SMTC is not set 118 + # CONFIG_MIPS_MT_SMP is not set 119 + # CONFIG_MIPS_VPE_LOADER is not set 120 # CONFIG_64BIT_PHYS_ADDR is not set 121 CONFIG_CPU_HAS_LLSC=y 122 CONFIG_CPU_HAS_SYNC=y ··· 121 CONFIG_GENERIC_IRQ_PROBE=y 122 CONFIG_CPU_SUPPORTS_HIGHMEM=y 123 CONFIG_ARCH_FLATMEM_ENABLE=y 124 + CONFIG_ARCH_SPARSEMEM_ENABLE=y 125 CONFIG_FLATMEM=y 126 CONFIG_FLAT_NODE_MEM_MAP=y 127 # CONFIG_SPARSEMEM_STATIC is not set 128 CONFIG_SPLIT_PTLOCK_CPUS=4 129 + # CONFIG_RESOURCES_64BIT is not set 130 # CONFIG_HZ_48 is not set 131 CONFIG_HZ_100=y 132 # CONFIG_HZ_128 is not set ··· 138 CONFIG_PREEMPT_NONE=y 139 # CONFIG_PREEMPT_VOLUNTARY is not set 140 # CONFIG_PREEMPT is not set 141 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 142 143 # 144 # Code maturity level options ··· 171 # CONFIG_EPOLL is not set 172 # CONFIG_SHMEM is not set 173 CONFIG_SLAB=y 174 + CONFIG_VM_EVENT_COUNTERS=y 175 CONFIG_TINY_SHMEM=y 176 CONFIG_BASE_SMALL=1 177 # CONFIG_SLOB is not set ··· 235 CONFIG_PACKET=y 236 CONFIG_PACKET_MMAP=y 237 CONFIG_UNIX=y 238 + CONFIG_XFRM=y 239 + # CONFIG_XFRM_USER is not set 240 # CONFIG_NET_KEY is not set 241 CONFIG_INET=y 242 CONFIG_IP_MULTICAST=y ··· 253 # CONFIG_INET_IPCOMP is not set 254 # CONFIG_INET_XFRM_TUNNEL is not set 255 # CONFIG_INET_TUNNEL is not set 256 + CONFIG_INET_XFRM_MODE_TRANSPORT=y 257 + CONFIG_INET_XFRM_MODE_TUNNEL=y 258 CONFIG_INET_DIAG=y 259 CONFIG_INET_TCP_DIAG=y 260 # CONFIG_TCP_CONG_ADVANCED is not set ··· 260 # CONFIG_IPV6 is not set 261 # CONFIG_INET6_XFRM_TUNNEL is not set 262 # CONFIG_INET6_TUNNEL is not set 263 + CONFIG_NETWORK_SECMARK=y 264 # CONFIG_NETFILTER is not set 265 # CONFIG_BRIDGE is not set 266 # CONFIG_VLAN_8021Q is not set ··· 292 CONFIG_STANDALONE=y 293 # CONFIG_PREVENT_FIRMWARE_BUILD is not set 294 # CONFIG_FW_LOADER is not set 295 + # CONFIG_SYS_HYPERVISOR is not set 296 297 # 298 # Connector - unified userspace <-> kernelspace linker ··· 473 CONFIG_VT=y 474 CONFIG_VT_CONSOLE=y 475 CONFIG_HW_CONSOLE=y 476 + CONFIG_VT_HW_CONSOLE_BINDING=y 477 # CONFIG_SERIAL_NONSTANDARD is not set 478 479 # ··· 502 # Watchdog Cards 503 # 504 # CONFIG_WATCHDOG is not set 505 + # CONFIG_HW_RANDOM is not set 506 # CONFIG_RTC is not set 507 # CONFIG_GEN_RTC is not set 508 # CONFIG_DTLK is not set ··· 546 # Multimedia devices 547 # 548 # CONFIG_VIDEO_DEV is not set 549 + CONFIG_VIDEO_V4L2=y 550 551 # 552 # Digital Video Broadcasting Devices ··· 555 # 556 # Graphics support 557 # 558 + # CONFIG_FIRMWARE_EDID is not set 559 # CONFIG_FB is not set 560 561 # ··· 617 # 618 619 # 620 + # DMA Engine support 621 + # 622 + # CONFIG_DMA_ENGINE is not set 623 + 624 + # 625 + # DMA Clients 626 + # 627 + 628 + # 629 + # DMA Devices 630 + # 631 + 632 + # 633 # File systems 634 # 635 # CONFIG_EXT2_FS is not set ··· 628 # CONFIG_MINIX_FS is not set 629 # CONFIG_ROMFS_FS is not set 630 CONFIG_INOTIFY=y 631 + CONFIG_INOTIFY_USER=y 632 # CONFIG_QUOTA is not set 633 # CONFIG_DNOTIFY is not set 634 # CONFIG_AUTOFS_FS is not set ··· 682 CONFIG_SUNRPC=y 683 # CONFIG_SMB_FS is not set 684 # CONFIG_CIFS is not set 685 + # CONFIG_CIFS_DEBUG2 is not set 686 # CONFIG_NCP_FS is not set 687 # CONFIG_CODA_FS is not set 688 ··· 701 # 702 # CONFIG_PRINTK_TIME is not set 703 # CONFIG_MAGIC_SYSRQ is not set 704 + # CONFIG_UNUSED_SYMBOLS is not set 705 # CONFIG_DEBUG_KERNEL is not set 706 CONFIG_LOG_BUF_SHIFT=14 707 # CONFIG_DEBUG_FS is not set
+56 -8
arch/mips/configs/rbhma4500_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:16 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 75 CONFIG_GENERIC_FIND_NEXT_BIT=y 76 CONFIG_GENERIC_HWEIGHT=y 77 CONFIG_GENERIC_CALIBRATE_DELAY=y 78 CONFIG_DMA_NONCOHERENT=y 79 CONFIG_DMA_NEED_PCI_MAP_STATE=y 80 CONFIG_GENERIC_ISA_DMA=y ··· 126 # CONFIG_PAGE_SIZE_16KB is not set 127 # CONFIG_PAGE_SIZE_64KB is not set 128 CONFIG_CPU_HAS_PREFETCH=y 129 - # CONFIG_MIPS_MT is not set 130 CONFIG_CPU_HAS_LLSC=y 131 CONFIG_CPU_HAS_SYNC=y 132 CONFIG_GENERIC_HARDIRQS=y ··· 143 CONFIG_FLAT_NODE_MEM_MAP=y 144 # CONFIG_SPARSEMEM_STATIC is not set 145 CONFIG_SPLIT_PTLOCK_CPUS=4 146 # CONFIG_HZ_48 is not set 147 # CONFIG_HZ_100 is not set 148 # CONFIG_HZ_128 is not set ··· 156 CONFIG_PREEMPT_NONE=y 157 # CONFIG_PREEMPT_VOLUNTARY is not set 158 # CONFIG_PREEMPT is not set 159 160 # 161 # Code maturity level options ··· 193 # CONFIG_EPOLL is not set 194 CONFIG_SHMEM=y 195 CONFIG_SLAB=y 196 # CONFIG_TINY_SHMEM is not set 197 CONFIG_BASE_SMALL=0 198 # CONFIG_SLOB is not set 199 - CONFIG_OBSOLETE_INTERMODULE=y 200 201 # 202 # Loadable module support ··· 264 CONFIG_PACKET=y 265 # CONFIG_PACKET_MMAP is not set 266 CONFIG_UNIX=y 267 # CONFIG_NET_KEY is not set 268 CONFIG_INET=y 269 CONFIG_IP_MULTICAST=y ··· 285 # CONFIG_INET_IPCOMP is not set 286 # CONFIG_INET_XFRM_TUNNEL is not set 287 # CONFIG_INET_TUNNEL is not set 288 CONFIG_INET_DIAG=y 289 CONFIG_INET_TCP_DIAG=y 290 # CONFIG_TCP_CONG_ADVANCED is not set ··· 305 # CONFIG_INET6_IPCOMP is not set 306 # CONFIG_INET6_XFRM_TUNNEL is not set 307 # CONFIG_INET6_TUNNEL is not set 308 # CONFIG_IPV6_TUNNEL is not set 309 CONFIG_NETFILTER=y 310 # CONFIG_NETFILTER_DEBUG is not set 311 ··· 323 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 324 CONFIG_NETFILTER_XT_TARGET_MARK=m 325 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 326 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 327 CONFIG_NETFILTER_XT_MATCH_DCCP=m 328 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 331 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 332 CONFIG_NETFILTER_XT_MATCH_MAC=m 333 CONFIG_NETFILTER_XT_MATCH_MARK=m 334 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 335 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 336 CONFIG_NETFILTER_XT_MATCH_REALM=m 337 CONFIG_NETFILTER_XT_MATCH_SCTP=m 338 CONFIG_NETFILTER_XT_MATCH_STRING=m 339 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 340 ··· 414 CONFIG_STANDALONE=y 415 CONFIG_PREVENT_FIRMWARE_BUILD=y 416 CONFIG_FW_LOADER=m 417 418 # 419 # Connector - unified userspace <-> kernelspace linker ··· 645 CONFIG_QSEMI_PHY=m 646 CONFIG_LXT_PHY=m 647 CONFIG_CICADA_PHY=m 648 649 # 650 # Ethernet (10 or 100Mbit) ··· 727 # CONFIG_CHELSIO_T1 is not set 728 # CONFIG_IXGB is not set 729 # CONFIG_S2IO is not set 730 731 # 732 # Token Ring devices ··· 753 # CONFIG_IPW2100 is not set 754 CONFIG_IPW2200=m 755 # CONFIG_IPW2200_MONITOR is not set 756 - # CONFIG_IPW_QOS is not set 757 # CONFIG_IPW2200_DEBUG is not set 758 # CONFIG_HERMES is not set 759 # CONFIG_ATMEL is not set ··· 762 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 763 # 764 # CONFIG_PRISM54 is not set 765 # CONFIG_HOSTAP is not set 766 # CONFIG_BCM43XX is not set 767 CONFIG_NET_WIRELESS=y 768 769 # ··· 853 CONFIG_VT=y 854 CONFIG_VT_CONSOLE=y 855 CONFIG_HW_CONSOLE=y 856 # CONFIG_SERIAL_NONSTANDARD is not set 857 858 # ··· 883 # Watchdog Cards 884 # 885 # CONFIG_WATCHDOG is not set 886 # CONFIG_RTC is not set 887 # CONFIG_GEN_RTC is not set 888 # CONFIG_DTLK is not set ··· 923 # 924 CONFIG_HWMON=y 925 # CONFIG_HWMON_VID is not set 926 # CONFIG_SENSORS_F71805F is not set 927 # CONFIG_HWMON_DEBUG_CHIP is not set 928 ··· 935 # Multimedia devices 936 # 937 # CONFIG_VIDEO_DEV is not set 938 939 # 940 # Digital Video Broadcasting Devices ··· 946 # 947 # Graphics support 948 # 949 CONFIG_FB=y 950 CONFIG_FB_CFB_FILLRECT=y 951 CONFIG_FB_CFB_COPYAREA=y 952 CONFIG_FB_CFB_IMAGEBLIT=y 953 # CONFIG_FB_MACMODES is not set 954 - CONFIG_FB_FIRMWARE_EDID=y 955 # CONFIG_FB_MODE_HELPERS is not set 956 # CONFIG_FB_TILEBLITTING is not set 957 # CONFIG_FB_CIRRUS is not set ··· 1076 # CONFIG_USB_PEGASUS is not set 1077 # CONFIG_USB_RTL8150 is not set 1078 # CONFIG_USB_USBNET is not set 1079 - # CONFIG_USB_ZD1201 is not set 1080 CONFIG_USB_MON=y 1081 1082 # ··· 1097 # CONFIG_USB_LEGOTOWER is not set 1098 # CONFIG_USB_LCD is not set 1099 # CONFIG_USB_LED is not set 1100 # CONFIG_USB_CYTHERM is not set 1101 # CONFIG_USB_PHIDGETKIT is not set 1102 # CONFIG_USB_PHIDGETSERVO is not set 1103 # CONFIG_USB_IDMOUSE is not set 1104 # CONFIG_USB_LD is not set 1105 1106 # ··· 1147 # CONFIG_RTC_CLASS is not set 1148 1149 # 1150 # File systems 1151 # 1152 CONFIG_EXT2_FS=y ··· 1179 # CONFIG_JFS_FS is not set 1180 # CONFIG_FS_POSIX_ACL is not set 1181 CONFIG_XFS_FS=m 1182 - CONFIG_XFS_EXPORT=y 1183 # CONFIG_XFS_QUOTA is not set 1184 # CONFIG_XFS_SECURITY is not set 1185 # CONFIG_XFS_POSIX_ACL is not set ··· 1187 # CONFIG_MINIX_FS is not set 1188 # CONFIG_ROMFS_FS is not set 1189 CONFIG_INOTIFY=y 1190 # CONFIG_QUOTA is not set 1191 # CONFIG_DNOTIFY is not set 1192 # CONFIG_AUTOFS_FS is not set ··· 1238 CONFIG_JFFS2_FS_DEBUG=0 1239 CONFIG_JFFS2_FS_WRITEBUFFER=y 1240 # CONFIG_JFFS2_SUMMARY is not set 1241 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1242 CONFIG_JFFS2_ZLIB=y 1243 CONFIG_JFFS2_RTIME=y ··· 1272 CONFIG_SMB_FS=m 1273 # CONFIG_SMB_NLS_DEFAULT is not set 1274 # CONFIG_CIFS is not set 1275 # CONFIG_NCP_FS is not set 1276 # CONFIG_CODA_FS is not set 1277 # CONFIG_AFS_FS is not set ··· 1338 # 1339 # CONFIG_PRINTK_TIME is not set 1340 # CONFIG_MAGIC_SYSRQ is not set 1341 # CONFIG_DEBUG_KERNEL is not set 1342 CONFIG_LOG_BUF_SHIFT=14 1343 # CONFIG_DEBUG_FS is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 72 CONFIG_GENERIC_FIND_NEXT_BIT=y 73 CONFIG_GENERIC_HWEIGHT=y 74 CONFIG_GENERIC_CALIBRATE_DELAY=y 75 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 76 CONFIG_DMA_NONCOHERENT=y 77 CONFIG_DMA_NEED_PCI_MAP_STATE=y 78 CONFIG_GENERIC_ISA_DMA=y ··· 122 # CONFIG_PAGE_SIZE_16KB is not set 123 # CONFIG_PAGE_SIZE_64KB is not set 124 CONFIG_CPU_HAS_PREFETCH=y 125 + CONFIG_MIPS_MT_DISABLED=y 126 + # CONFIG_MIPS_MT_SMTC is not set 127 + # CONFIG_MIPS_MT_SMP is not set 128 + # CONFIG_MIPS_VPE_LOADER is not set 129 CONFIG_CPU_HAS_LLSC=y 130 CONFIG_CPU_HAS_SYNC=y 131 CONFIG_GENERIC_HARDIRQS=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 153 # 154 # Code maturity level options ··· 184 # CONFIG_EPOLL is not set 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set 191 192 # 193 # Loadable module support ··· 255 CONFIG_PACKET=y 256 # CONFIG_PACKET_MMAP is not set 257 CONFIG_UNIX=y 258 + CONFIG_XFRM=y 259 + # CONFIG_XFRM_USER is not set 260 # CONFIG_NET_KEY is not set 261 CONFIG_INET=y 262 CONFIG_IP_MULTICAST=y ··· 274 # CONFIG_INET_IPCOMP is not set 275 # CONFIG_INET_XFRM_TUNNEL is not set 276 # CONFIG_INET_TUNNEL is not set 277 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 278 + CONFIG_INET_XFRM_MODE_TUNNEL=m 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 292 # CONFIG_INET6_IPCOMP is not set 293 # CONFIG_INET6_XFRM_TUNNEL is not set 294 # CONFIG_INET6_TUNNEL is not set 295 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 297 # CONFIG_IPV6_TUNNEL is not set 298 + CONFIG_NETWORK_SECMARK=y 299 CONFIG_NETFILTER=y 300 # CONFIG_NETFILTER_DEBUG is not set 301 ··· 307 CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m 308 CONFIG_NETFILTER_XT_TARGET_MARK=m 309 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 310 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 311 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 312 CONFIG_NETFILTER_XT_MATCH_DCCP=m 313 CONFIG_NETFILTER_XT_MATCH_ESP=m ··· 314 CONFIG_NETFILTER_XT_MATCH_LIMIT=m 315 CONFIG_NETFILTER_XT_MATCH_MAC=m 316 CONFIG_NETFILTER_XT_MATCH_MARK=m 317 + # CONFIG_NETFILTER_XT_MATCH_POLICY is not set 318 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 319 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 320 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 321 CONFIG_NETFILTER_XT_MATCH_REALM=m 322 CONFIG_NETFILTER_XT_MATCH_SCTP=m 323 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 324 CONFIG_NETFILTER_XT_MATCH_STRING=m 325 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 326 ··· 394 CONFIG_STANDALONE=y 395 CONFIG_PREVENT_FIRMWARE_BUILD=y 396 CONFIG_FW_LOADER=m 397 + # CONFIG_SYS_HYPERVISOR is not set 398 399 # 400 # Connector - unified userspace <-> kernelspace linker ··· 624 CONFIG_QSEMI_PHY=m 625 CONFIG_LXT_PHY=m 626 CONFIG_CICADA_PHY=m 627 + CONFIG_VITESSE_PHY=m 628 + CONFIG_SMSC_PHY=m 629 630 # 631 # Ethernet (10 or 100Mbit) ··· 704 # CONFIG_CHELSIO_T1 is not set 705 # CONFIG_IXGB is not set 706 # CONFIG_S2IO is not set 707 + # CONFIG_MYRI10GE is not set 708 709 # 710 # Token Ring devices ··· 729 # CONFIG_IPW2100 is not set 730 CONFIG_IPW2200=m 731 # CONFIG_IPW2200_MONITOR is not set 732 + # CONFIG_IPW2200_QOS is not set 733 # CONFIG_IPW2200_DEBUG is not set 734 # CONFIG_HERMES is not set 735 # CONFIG_ATMEL is not set ··· 738 # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support 739 # 740 # CONFIG_PRISM54 is not set 741 + # CONFIG_USB_ZD1201 is not set 742 # CONFIG_HOSTAP is not set 743 # CONFIG_BCM43XX is not set 744 + # CONFIG_ZD1211RW is not set 745 CONFIG_NET_WIRELESS=y 746 747 # ··· 827 CONFIG_VT=y 828 CONFIG_VT_CONSOLE=y 829 CONFIG_HW_CONSOLE=y 830 + CONFIG_VT_HW_CONSOLE_BINDING=y 831 # CONFIG_SERIAL_NONSTANDARD is not set 832 833 # ··· 856 # Watchdog Cards 857 # 858 # CONFIG_WATCHDOG is not set 859 + # CONFIG_HW_RANDOM is not set 860 # CONFIG_RTC is not set 861 # CONFIG_GEN_RTC is not set 862 # CONFIG_DTLK is not set ··· 895 # 896 CONFIG_HWMON=y 897 # CONFIG_HWMON_VID is not set 898 + # CONFIG_SENSORS_ABITUGURU is not set 899 # CONFIG_SENSORS_F71805F is not set 900 # CONFIG_HWMON_DEBUG_CHIP is not set 901 ··· 906 # Multimedia devices 907 # 908 # CONFIG_VIDEO_DEV is not set 909 + CONFIG_VIDEO_V4L2=y 910 911 # 912 # Digital Video Broadcasting Devices ··· 916 # 917 # Graphics support 918 # 919 + # CONFIG_FIRMWARE_EDID is not set 920 CONFIG_FB=y 921 CONFIG_FB_CFB_FILLRECT=y 922 CONFIG_FB_CFB_COPYAREA=y 923 CONFIG_FB_CFB_IMAGEBLIT=y 924 # CONFIG_FB_MACMODES is not set 925 + # CONFIG_FB_BACKLIGHT is not set 926 # CONFIG_FB_MODE_HELPERS is not set 927 # CONFIG_FB_TILEBLITTING is not set 928 # CONFIG_FB_CIRRUS is not set ··· 1045 # CONFIG_USB_PEGASUS is not set 1046 # CONFIG_USB_RTL8150 is not set 1047 # CONFIG_USB_USBNET is not set 1048 CONFIG_USB_MON=y 1049 1050 # ··· 1067 # CONFIG_USB_LEGOTOWER is not set 1068 # CONFIG_USB_LCD is not set 1069 # CONFIG_USB_LED is not set 1070 + # CONFIG_USB_CY7C63 is not set 1071 # CONFIG_USB_CYTHERM is not set 1072 # CONFIG_USB_PHIDGETKIT is not set 1073 # CONFIG_USB_PHIDGETSERVO is not set 1074 # CONFIG_USB_IDMOUSE is not set 1075 + # CONFIG_USB_APPLEDISPLAY is not set 1076 # CONFIG_USB_LD is not set 1077 1078 # ··· 1115 # CONFIG_RTC_CLASS is not set 1116 1117 # 1118 + # DMA Engine support 1119 + # 1120 + # CONFIG_DMA_ENGINE is not set 1121 + 1122 + # 1123 + # DMA Clients 1124 + # 1125 + 1126 + # 1127 + # DMA Devices 1128 + # 1129 + 1130 + # 1131 # File systems 1132 # 1133 CONFIG_EXT2_FS=y ··· 1134 # CONFIG_JFS_FS is not set 1135 # CONFIG_FS_POSIX_ACL is not set 1136 CONFIG_XFS_FS=m 1137 # CONFIG_XFS_QUOTA is not set 1138 # CONFIG_XFS_SECURITY is not set 1139 # CONFIG_XFS_POSIX_ACL is not set ··· 1143 # CONFIG_MINIX_FS is not set 1144 # CONFIG_ROMFS_FS is not set 1145 CONFIG_INOTIFY=y 1146 + CONFIG_INOTIFY_USER=y 1147 # CONFIG_QUOTA is not set 1148 # CONFIG_DNOTIFY is not set 1149 # CONFIG_AUTOFS_FS is not set ··· 1193 CONFIG_JFFS2_FS_DEBUG=0 1194 CONFIG_JFFS2_FS_WRITEBUFFER=y 1195 # CONFIG_JFFS2_SUMMARY is not set 1196 + # CONFIG_JFFS2_FS_XATTR is not set 1197 # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set 1198 CONFIG_JFFS2_ZLIB=y 1199 CONFIG_JFFS2_RTIME=y ··· 1226 CONFIG_SMB_FS=m 1227 # CONFIG_SMB_NLS_DEFAULT is not set 1228 # CONFIG_CIFS is not set 1229 + # CONFIG_CIFS_DEBUG2 is not set 1230 # CONFIG_NCP_FS is not set 1231 # CONFIG_CODA_FS is not set 1232 # CONFIG_AFS_FS is not set ··· 1291 # 1292 # CONFIG_PRINTK_TIME is not set 1293 # CONFIG_MAGIC_SYSRQ is not set 1294 + # CONFIG_UNUSED_SYMBOLS is not set 1295 # CONFIG_DEBUG_KERNEL is not set 1296 CONFIG_LOG_BUF_SHIFT=14 1297 # CONFIG_DEBUG_FS is not set
+67 -7
arch/mips/configs/rm200_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:16 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_ARC=y 72 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 73 CONFIG_DMA_NONCOHERENT=y ··· 110 # CONFIG_CPU_RM9000 is not set 111 # CONFIG_CPU_SB1 is not set 112 CONFIG_SYS_HAS_CPU_R4X00=y 113 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 114 CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 115 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y ··· 125 # CONFIG_PAGE_SIZE_8KB is not set 126 # CONFIG_PAGE_SIZE_16KB is not set 127 # CONFIG_PAGE_SIZE_64KB is not set 128 - # CONFIG_MIPS_MT is not set 129 # CONFIG_64BIT_PHYS_ADDR is not set 130 CONFIG_CPU_HAS_LLSC=y 131 CONFIG_CPU_HAS_SYNC=y ··· 146 CONFIG_FLAT_NODE_MEM_MAP=y 147 # CONFIG_SPARSEMEM_STATIC is not set 148 CONFIG_SPLIT_PTLOCK_CPUS=4 149 # CONFIG_HZ_48 is not set 150 # CONFIG_HZ_100 is not set 151 # CONFIG_HZ_128 is not set ··· 159 # CONFIG_PREEMPT_NONE is not set 160 CONFIG_PREEMPT_VOLUNTARY=y 161 # CONFIG_PREEMPT is not set 162 163 # 164 # Code maturity level options ··· 193 CONFIG_BUG=y 194 CONFIG_ELF_CORE=y 195 CONFIG_BASE_FULL=y 196 CONFIG_FUTEX=y 197 CONFIG_EPOLL=y 198 CONFIG_SHMEM=y 199 CONFIG_SLAB=y 200 # CONFIG_TINY_SHMEM is not set 201 CONFIG_BASE_SMALL=0 202 # CONFIG_SLOB is not set ··· 294 # CONFIG_INET_IPCOMP is not set 295 # CONFIG_INET_XFRM_TUNNEL is not set 296 CONFIG_INET_TUNNEL=m 297 CONFIG_INET_DIAG=y 298 CONFIG_INET_TCP_DIAG=y 299 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 CONFIG_INET6_IPCOMP=m 315 CONFIG_INET6_XFRM_TUNNEL=m 316 CONFIG_INET6_TUNNEL=m 317 CONFIG_IPV6_TUNNEL=m 318 CONFIG_NETFILTER=y 319 # CONFIG_NETFILTER_DEBUG is not set 320 CONFIG_BRIDGE_NETFILTER=y ··· 334 CONFIG_NETFILTER_XT_TARGET_MARK=m 335 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 336 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 337 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 338 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m 339 CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m ··· 350 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 351 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 352 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 353 CONFIG_NETFILTER_XT_MATCH_REALM=m 354 CONFIG_NETFILTER_XT_MATCH_SCTP=m 355 CONFIG_NETFILTER_XT_MATCH_STATE=m 356 CONFIG_NETFILTER_XT_MATCH_STRING=m 357 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 358 ··· 364 CONFIG_IP_NF_CONNTRACK=m 365 # CONFIG_IP_NF_CT_ACCT is not set 366 CONFIG_IP_NF_CONNTRACK_MARK=y 367 CONFIG_IP_NF_CONNTRACK_EVENTS=y 368 CONFIG_IP_NF_CONNTRACK_NETLINK=m 369 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 375 CONFIG_IP_NF_AMANDA=m 376 CONFIG_IP_NF_PPTP=m 377 CONFIG_IP_NF_H323=m 378 CONFIG_IP_NF_QUEUE=m 379 CONFIG_IP_NF_IPTABLES=m 380 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 406 CONFIG_IP_NF_NAT_AMANDA=m 407 CONFIG_IP_NF_NAT_PPTP=m 408 CONFIG_IP_NF_NAT_H323=m 409 CONFIG_IP_NF_MANGLE=m 410 CONFIG_IP_NF_TARGET_TOS=m 411 CONFIG_IP_NF_TARGET_ECN=m ··· 585 CONFIG_STANDALONE=y 586 CONFIG_PREVENT_FIRMWARE_BUILD=y 587 CONFIG_FW_LOADER=y 588 589 # 590 # Connector - unified userspace <-> kernelspace linker ··· 607 # CONFIG_PARPORT_PC_SUPERIO is not set 608 CONFIG_PARPORT_NOT_PC=y 609 # CONFIG_PARPORT_GSC is not set 610 CONFIG_PARPORT_1284=y 611 612 # ··· 727 # CONFIG_MEGARAID_LEGACY is not set 728 # CONFIG_MEGARAID_SAS is not set 729 # CONFIG_SCSI_SATA is not set 730 # CONFIG_SCSI_DMX3191D is not set 731 # CONFIG_SCSI_DTC3280 is not set 732 # CONFIG_SCSI_FUTURE_DOMAIN is not set ··· 774 CONFIG_MD_RAID0=m 775 CONFIG_MD_RAID1=m 776 CONFIG_MD_RAID10=m 777 - CONFIG_MD_RAID5=m 778 CONFIG_MD_RAID5_RESHAPE=y 779 - # CONFIG_MD_RAID6 is not set 780 CONFIG_MD_MULTIPATH=m 781 CONFIG_MD_FAULTY=m 782 CONFIG_BLK_DEV_DM=m ··· 831 CONFIG_QSEMI_PHY=m 832 CONFIG_LXT_PHY=m 833 CONFIG_CICADA_PHY=m 834 835 # 836 # Ethernet (10 or 100Mbit) ··· 914 # CONFIG_CHELSIO_T1 is not set 915 # CONFIG_IXGB is not set 916 # CONFIG_S2IO is not set 917 918 # 919 # Token Ring devices ··· 1006 CONFIG_VT=y 1007 CONFIG_VT_CONSOLE=y 1008 CONFIG_HW_CONSOLE=y 1009 # CONFIG_SERIAL_NONSTANDARD is not set 1010 1011 # ··· 1044 # Watchdog Cards 1045 # 1046 # CONFIG_WATCHDOG is not set 1047 CONFIG_RTC=m 1048 # CONFIG_GEN_RTC is not set 1049 # CONFIG_DTLK is not set ··· 1078 # Dallas's 1-wire bus 1079 # 1080 CONFIG_W1=m 1081 1082 # 1083 # 1-wire Bus Masters 1084 # 1085 # CONFIG_W1_MASTER_MATROX is not set 1086 - # CONFIG_W1_MASTER_DS9490 is not set 1087 1088 # 1089 # 1-wire Slaves ··· 1107 # Multimedia devices 1108 # 1109 # CONFIG_VIDEO_DEV is not set 1110 1111 # 1112 # Digital Video Broadcasting Devices ··· 1118 # 1119 # Graphics support 1120 # 1121 # CONFIG_FB is not set 1122 1123 # ··· 1157 CONFIG_USB_EHCI_HCD=m 1158 # CONFIG_USB_EHCI_SPLIT_ISO is not set 1159 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 1160 # CONFIG_USB_ISP116X_HCD is not set 1161 CONFIG_USB_OHCI_HCD=m 1162 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 1256 CONFIG_USB_SERIAL_GENERIC=y 1257 CONFIG_USB_SERIAL_AIRPRIME=m 1258 CONFIG_USB_SERIAL_ANYDATA=m 1259 CONFIG_USB_SERIAL_BELKIN=m 1260 CONFIG_USB_SERIAL_WHITEHEAT=m 1261 CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m ··· 1297 # CONFIG_USB_SERIAL_TI is not set 1298 CONFIG_USB_SERIAL_CYBERJACK=m 1299 CONFIG_USB_SERIAL_XIRCOM=m 1300 CONFIG_USB_SERIAL_OMNINET=m 1301 CONFIG_USB_EZUSB=y 1302 ··· 1311 CONFIG_USB_LEGOTOWER=m 1312 CONFIG_USB_LCD=m 1313 CONFIG_USB_LED=m 1314 CONFIG_USB_CYTHERM=m 1315 CONFIG_USB_PHIDGETKIT=m 1316 CONFIG_USB_PHIDGETSERVO=m 1317 # CONFIG_USB_IDMOUSE is not set 1318 CONFIG_USB_SISUSBVGA=m 1319 # CONFIG_USB_SISUSBVGA_CON is not set 1320 CONFIG_USB_LD=m ··· 1364 # CONFIG_RTC_CLASS is not set 1365 1366 # 1367 # File systems 1368 # 1369 CONFIG_EXT2_FS=m ··· 1398 # CONFIG_JFS_FS is not set 1399 CONFIG_FS_POSIX_ACL=y 1400 CONFIG_XFS_FS=m 1401 - CONFIG_XFS_EXPORT=y 1402 CONFIG_XFS_QUOTA=y 1403 CONFIG_XFS_SECURITY=y 1404 # CONFIG_XFS_POSIX_ACL is not set ··· 1406 CONFIG_MINIX_FS=m 1407 CONFIG_ROMFS_FS=m 1408 CONFIG_INOTIFY=y 1409 # CONFIG_QUOTA is not set 1410 CONFIG_QUOTACTL=y 1411 CONFIG_DNOTIFY=y ··· 1465 CONFIG_QNX4FS_FS=m 1466 CONFIG_SYSV_FS=m 1467 CONFIG_UFS_FS=m 1468 1469 # 1470 # Network File Systems ··· 1493 # CONFIG_SMB_NLS_DEFAULT is not set 1494 CONFIG_CIFS=m 1495 # CONFIG_CIFS_STATS is not set 1496 # CONFIG_CIFS_XATTR is not set 1497 # CONFIG_CIFS_EXPERIMENTAL is not set 1498 CONFIG_NCP_FS=m 1499 CONFIG_NCPFS_PACKET_SIGNING=y ··· 1587 # 1588 # CONFIG_PRINTK_TIME is not set 1589 # CONFIG_MAGIC_SYSRQ is not set 1590 # CONFIG_DEBUG_KERNEL is not set 1591 CONFIG_LOG_BUF_SHIFT=14 1592 # CONFIG_DEBUG_FS is not set ··· 1647 CONFIG_TEXTSEARCH_KMP=m 1648 CONFIG_TEXTSEARCH_BM=m 1649 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_ARC=y 70 CONFIG_ARCH_MAY_HAVE_PC_FDC=y 71 CONFIG_DMA_NONCOHERENT=y ··· 106 # CONFIG_CPU_RM9000 is not set 107 # CONFIG_CPU_SB1 is not set 108 CONFIG_SYS_HAS_CPU_R4X00=y 109 + CONFIG_SYS_HAS_CPU_R5000=y 110 CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y 111 CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y 112 CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y ··· 120 # CONFIG_PAGE_SIZE_8KB is not set 121 # CONFIG_PAGE_SIZE_16KB is not set 122 # CONFIG_PAGE_SIZE_64KB is not set 123 + CONFIG_BOARD_SCACHE=y 124 + CONFIG_R5000_CPU_SCACHE=y 125 + CONFIG_MIPS_MT_DISABLED=y 126 + # CONFIG_MIPS_MT_SMTC is not set 127 + # CONFIG_MIPS_MT_SMP is not set 128 + # CONFIG_MIPS_VPE_LOADER is not set 129 # CONFIG_64BIT_PHYS_ADDR is not set 130 CONFIG_CPU_HAS_LLSC=y 131 CONFIG_CPU_HAS_SYNC=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 148 # CONFIG_PREEMPT_NONE is not set 149 CONFIG_PREEMPT_VOLUNTARY=y 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 153 # 154 # Code maturity level options ··· 181 CONFIG_BUG=y 182 CONFIG_ELF_CORE=y 183 CONFIG_BASE_FULL=y 184 + CONFIG_RT_MUTEXES=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 + CONFIG_VM_EVENT_COUNTERS=y 190 # CONFIG_TINY_SHMEM is not set 191 CONFIG_BASE_SMALL=0 192 # CONFIG_SLOB is not set ··· 280 # CONFIG_INET_IPCOMP is not set 281 # CONFIG_INET_XFRM_TUNNEL is not set 282 CONFIG_INET_TUNNEL=m 283 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 284 + CONFIG_INET_XFRM_MODE_TUNNEL=m 285 CONFIG_INET_DIAG=y 286 CONFIG_INET_TCP_DIAG=y 287 # CONFIG_TCP_CONG_ADVANCED is not set ··· 298 CONFIG_INET6_IPCOMP=m 299 CONFIG_INET6_XFRM_TUNNEL=m 300 CONFIG_INET6_TUNNEL=m 301 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 302 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 303 CONFIG_IPV6_TUNNEL=m 304 + CONFIG_NETWORK_SECMARK=y 305 CONFIG_NETFILTER=y 306 # CONFIG_NETFILTER_DEBUG is not set 307 CONFIG_BRIDGE_NETFILTER=y ··· 315 CONFIG_NETFILTER_XT_TARGET_MARK=m 316 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 317 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 318 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 319 + # CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set 320 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 321 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m 322 CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m ··· 329 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 330 CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m 331 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 332 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 333 CONFIG_NETFILTER_XT_MATCH_REALM=m 334 CONFIG_NETFILTER_XT_MATCH_SCTP=m 335 CONFIG_NETFILTER_XT_MATCH_STATE=m 336 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 337 CONFIG_NETFILTER_XT_MATCH_STRING=m 338 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 339 ··· 341 CONFIG_IP_NF_CONNTRACK=m 342 # CONFIG_IP_NF_CT_ACCT is not set 343 CONFIG_IP_NF_CONNTRACK_MARK=y 344 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 345 CONFIG_IP_NF_CONNTRACK_EVENTS=y 346 CONFIG_IP_NF_CONNTRACK_NETLINK=m 347 CONFIG_IP_NF_CT_PROTO_SCTP=m ··· 351 CONFIG_IP_NF_AMANDA=m 352 CONFIG_IP_NF_PPTP=m 353 CONFIG_IP_NF_H323=m 354 + CONFIG_IP_NF_SIP=m 355 CONFIG_IP_NF_QUEUE=m 356 CONFIG_IP_NF_IPTABLES=m 357 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 381 CONFIG_IP_NF_NAT_AMANDA=m 382 CONFIG_IP_NF_NAT_PPTP=m 383 CONFIG_IP_NF_NAT_H323=m 384 + CONFIG_IP_NF_NAT_SIP=m 385 CONFIG_IP_NF_MANGLE=m 386 CONFIG_IP_NF_TARGET_TOS=m 387 CONFIG_IP_NF_TARGET_ECN=m ··· 559 CONFIG_STANDALONE=y 560 CONFIG_PREVENT_FIRMWARE_BUILD=y 561 CONFIG_FW_LOADER=y 562 + # CONFIG_SYS_HYPERVISOR is not set 563 564 # 565 # Connector - unified userspace <-> kernelspace linker ··· 580 # CONFIG_PARPORT_PC_SUPERIO is not set 581 CONFIG_PARPORT_NOT_PC=y 582 # CONFIG_PARPORT_GSC is not set 583 + # CONFIG_PARPORT_AX88796 is not set 584 CONFIG_PARPORT_1284=y 585 586 # ··· 699 # CONFIG_MEGARAID_LEGACY is not set 700 # CONFIG_MEGARAID_SAS is not set 701 # CONFIG_SCSI_SATA is not set 702 + # CONFIG_SCSI_HPTIOP is not set 703 # CONFIG_SCSI_DMX3191D is not set 704 # CONFIG_SCSI_DTC3280 is not set 705 # CONFIG_SCSI_FUTURE_DOMAIN is not set ··· 745 CONFIG_MD_RAID0=m 746 CONFIG_MD_RAID1=m 747 CONFIG_MD_RAID10=m 748 + CONFIG_MD_RAID456=m 749 CONFIG_MD_RAID5_RESHAPE=y 750 CONFIG_MD_MULTIPATH=m 751 CONFIG_MD_FAULTY=m 752 CONFIG_BLK_DEV_DM=m ··· 803 CONFIG_QSEMI_PHY=m 804 CONFIG_LXT_PHY=m 805 CONFIG_CICADA_PHY=m 806 + CONFIG_VITESSE_PHY=m 807 + CONFIG_SMSC_PHY=m 808 809 # 810 # Ethernet (10 or 100Mbit) ··· 884 # CONFIG_CHELSIO_T1 is not set 885 # CONFIG_IXGB is not set 886 # CONFIG_S2IO is not set 887 + # CONFIG_MYRI10GE is not set 888 889 # 890 # Token Ring devices ··· 975 CONFIG_VT=y 976 CONFIG_VT_CONSOLE=y 977 CONFIG_HW_CONSOLE=y 978 + CONFIG_VT_HW_CONSOLE_BINDING=y 979 # CONFIG_SERIAL_NONSTANDARD is not set 980 981 # ··· 1012 # Watchdog Cards 1013 # 1014 # CONFIG_WATCHDOG is not set 1015 + # CONFIG_HW_RANDOM is not set 1016 CONFIG_RTC=m 1017 # CONFIG_GEN_RTC is not set 1018 # CONFIG_DTLK is not set ··· 1045 # Dallas's 1-wire bus 1046 # 1047 CONFIG_W1=m 1048 + CONFIG_W1_CON=y 1049 1050 # 1051 # 1-wire Bus Masters 1052 # 1053 # CONFIG_W1_MASTER_MATROX is not set 1054 + # CONFIG_W1_MASTER_DS2490 is not set 1055 1056 # 1057 # 1-wire Slaves ··· 1073 # Multimedia devices 1074 # 1075 # CONFIG_VIDEO_DEV is not set 1076 + CONFIG_VIDEO_V4L2=y 1077 1078 # 1079 # Digital Video Broadcasting Devices ··· 1083 # 1084 # Graphics support 1085 # 1086 + # CONFIG_FIRMWARE_EDID is not set 1087 # CONFIG_FB is not set 1088 1089 # ··· 1121 CONFIG_USB_EHCI_HCD=m 1122 # CONFIG_USB_EHCI_SPLIT_ISO is not set 1123 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 1124 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 1125 # CONFIG_USB_ISP116X_HCD is not set 1126 CONFIG_USB_OHCI_HCD=m 1127 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 1219 CONFIG_USB_SERIAL_GENERIC=y 1220 CONFIG_USB_SERIAL_AIRPRIME=m 1221 CONFIG_USB_SERIAL_ANYDATA=m 1222 + # CONFIG_USB_SERIAL_ARK3116 is not set 1223 CONFIG_USB_SERIAL_BELKIN=m 1224 CONFIG_USB_SERIAL_WHITEHEAT=m 1225 CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m ··· 1259 # CONFIG_USB_SERIAL_TI is not set 1260 CONFIG_USB_SERIAL_CYBERJACK=m 1261 CONFIG_USB_SERIAL_XIRCOM=m 1262 + # CONFIG_USB_SERIAL_OPTION is not set 1263 CONFIG_USB_SERIAL_OMNINET=m 1264 CONFIG_USB_EZUSB=y 1265 ··· 1272 CONFIG_USB_LEGOTOWER=m 1273 CONFIG_USB_LCD=m 1274 CONFIG_USB_LED=m 1275 + # CONFIG_USB_CY7C63 is not set 1276 CONFIG_USB_CYTHERM=m 1277 CONFIG_USB_PHIDGETKIT=m 1278 CONFIG_USB_PHIDGETSERVO=m 1279 # CONFIG_USB_IDMOUSE is not set 1280 + # CONFIG_USB_APPLEDISPLAY is not set 1281 CONFIG_USB_SISUSBVGA=m 1282 # CONFIG_USB_SISUSBVGA_CON is not set 1283 CONFIG_USB_LD=m ··· 1323 # CONFIG_RTC_CLASS is not set 1324 1325 # 1326 + # DMA Engine support 1327 + # 1328 + # CONFIG_DMA_ENGINE is not set 1329 + 1330 + # 1331 + # DMA Clients 1332 + # 1333 + 1334 + # 1335 + # DMA Devices 1336 + # 1337 + 1338 + # 1339 # File systems 1340 # 1341 CONFIG_EXT2_FS=m ··· 1344 # CONFIG_JFS_FS is not set 1345 CONFIG_FS_POSIX_ACL=y 1346 CONFIG_XFS_FS=m 1347 CONFIG_XFS_QUOTA=y 1348 CONFIG_XFS_SECURITY=y 1349 # CONFIG_XFS_POSIX_ACL is not set ··· 1353 CONFIG_MINIX_FS=m 1354 CONFIG_ROMFS_FS=m 1355 CONFIG_INOTIFY=y 1356 + CONFIG_INOTIFY_USER=y 1357 # CONFIG_QUOTA is not set 1358 CONFIG_QUOTACTL=y 1359 CONFIG_DNOTIFY=y ··· 1411 CONFIG_QNX4FS_FS=m 1412 CONFIG_SYSV_FS=m 1413 CONFIG_UFS_FS=m 1414 + # CONFIG_UFS_FS_WRITE is not set 1415 + # CONFIG_UFS_DEBUG is not set 1416 1417 # 1418 # Network File Systems ··· 1437 # CONFIG_SMB_NLS_DEFAULT is not set 1438 CONFIG_CIFS=m 1439 # CONFIG_CIFS_STATS is not set 1440 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1441 # CONFIG_CIFS_XATTR is not set 1442 + # CONFIG_CIFS_DEBUG2 is not set 1443 # CONFIG_CIFS_EXPERIMENTAL is not set 1444 CONFIG_NCP_FS=m 1445 CONFIG_NCPFS_PACKET_SIGNING=y ··· 1529 # 1530 # CONFIG_PRINTK_TIME is not set 1531 # CONFIG_MAGIC_SYSRQ is not set 1532 + # CONFIG_UNUSED_SYMBOLS is not set 1533 # CONFIG_DEBUG_KERNEL is not set 1534 CONFIG_LOG_BUF_SHIFT=14 1535 # CONFIG_DEBUG_FS is not set ··· 1588 CONFIG_TEXTSEARCH_KMP=m 1589 CONFIG_TEXTSEARCH_BM=m 1590 CONFIG_TEXTSEARCH_FSM=m 1591 + CONFIG_PLIST=y
+46 -5
arch/mips/configs/sb1250-swarm_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 85 CONFIG_GENERIC_FIND_NEXT_BIT=y 86 CONFIG_GENERIC_HWEIGHT=y 87 CONFIG_GENERIC_CALIBRATE_DELAY=y 88 CONFIG_DMA_COHERENT=y 89 CONFIG_CPU_BIG_ENDIAN=y 90 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 134 # CONFIG_PAGE_SIZE_64KB is not set 135 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 136 CONFIG_CPU_HAS_PREFETCH=y 137 - # CONFIG_MIPS_MT is not set 138 CONFIG_SB1_PASS_1_WORKAROUNDS=y 139 CONFIG_CPU_HAS_LLSC=y 140 CONFIG_CPU_HAS_SYNC=y 141 CONFIG_GENERIC_HARDIRQS=y 142 CONFIG_GENERIC_IRQ_PROBE=y 143 CONFIG_CPU_SUPPORTS_HIGHMEM=y 144 CONFIG_SYS_SUPPORTS_HIGHMEM=y 145 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 155 CONFIG_FLAT_NODE_MEM_MAP=y 156 # CONFIG_SPARSEMEM_STATIC is not set 157 CONFIG_SPLIT_PTLOCK_CPUS=4 158 # CONFIG_HZ_48 is not set 159 # CONFIG_HZ_100 is not set 160 # CONFIG_HZ_128 is not set ··· 168 # CONFIG_HZ_1024 is not set 169 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 170 CONFIG_HZ=1000 171 - CONFIG_SMP=y 172 - CONFIG_NR_CPUS=2 173 CONFIG_PREEMPT_NONE=y 174 # CONFIG_PREEMPT_VOLUNTARY is not set 175 # CONFIG_PREEMPT is not set 176 CONFIG_PREEMPT_BKL=y 177 178 # 179 # Code maturity level options ··· 205 CONFIG_BUG=y 206 CONFIG_ELF_CORE=y 207 CONFIG_BASE_FULL=y 208 CONFIG_FUTEX=y 209 CONFIG_EPOLL=y 210 CONFIG_SHMEM=y 211 CONFIG_SLAB=y 212 # CONFIG_TINY_SHMEM is not set 213 CONFIG_BASE_SMALL=0 214 # CONFIG_SLOB is not set ··· 305 # CONFIG_INET_IPCOMP is not set 306 # CONFIG_INET_XFRM_TUNNEL is not set 307 # CONFIG_INET_TUNNEL is not set 308 CONFIG_INET_DIAG=y 309 CONFIG_INET_TCP_DIAG=y 310 # CONFIG_TCP_CONG_ADVANCED is not set ··· 314 # CONFIG_IPV6 is not set 315 # CONFIG_INET6_XFRM_TUNNEL is not set 316 # CONFIG_INET6_TUNNEL is not set 317 # CONFIG_NETFILTER is not set 318 319 # ··· 374 CONFIG_STANDALONE=y 375 CONFIG_PREVENT_FIRMWARE_BUILD=y 376 CONFIG_FW_LOADER=m 377 378 # 379 # Connector - unified userspace <-> kernelspace linker ··· 496 CONFIG_QSEMI_PHY=m 497 CONFIG_LXT_PHY=m 498 CONFIG_CICADA_PHY=m 499 500 # 501 # Ethernet (10 or 100Mbit) ··· 541 # CONFIG_CHELSIO_T1 is not set 542 # CONFIG_IXGB is not set 543 # CONFIG_S2IO is not set 544 545 # 546 # Token Ring devices ··· 609 # CONFIG_N_HDLC is not set 610 # CONFIG_SPECIALIX is not set 611 # CONFIG_SX is not set 612 # CONFIG_STALDRV is not set 613 CONFIG_SIBYTE_SB1250_DUART=y 614 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 636 # Watchdog Cards 637 # 638 # CONFIG_WATCHDOG is not set 639 # CONFIG_RTC is not set 640 # CONFIG_GEN_RTC is not set 641 # CONFIG_DTLK is not set ··· 685 # Multimedia devices 686 # 687 # CONFIG_VIDEO_DEV is not set 688 689 # 690 # Digital Video Broadcasting Devices ··· 695 # 696 # Graphics support 697 # 698 # CONFIG_FB is not set 699 700 # ··· 753 # CONFIG_RTC_CLASS is not set 754 755 # 756 # File systems 757 # 758 CONFIG_EXT2_FS=y ··· 783 # CONFIG_MINIX_FS is not set 784 # CONFIG_ROMFS_FS is not set 785 CONFIG_INOTIFY=y 786 # CONFIG_QUOTA is not set 787 CONFIG_DNOTIFY=y 788 # CONFIG_AUTOFS_FS is not set ··· 849 # CONFIG_RPCSEC_GSS_SPKM3 is not set 850 # CONFIG_SMB_FS is not set 851 # CONFIG_CIFS is not set 852 # CONFIG_NCP_FS is not set 853 # CONFIG_CODA_FS is not set 854 # CONFIG_AFS_FS is not set ··· 876 # 877 # CONFIG_PRINTK_TIME is not set 878 # CONFIG_MAGIC_SYSRQ is not set 879 # CONFIG_DEBUG_KERNEL is not set 880 CONFIG_LOG_BUF_SHIFT=15 881 # CONFIG_DEBUG_FS is not set ··· 933 CONFIG_LIBCRC32C=m 934 CONFIG_ZLIB_INFLATE=m 935 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:19 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 82 CONFIG_GENERIC_FIND_NEXT_BIT=y 83 CONFIG_GENERIC_HWEIGHT=y 84 CONFIG_GENERIC_CALIBRATE_DELAY=y 85 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 86 CONFIG_DMA_COHERENT=y 87 CONFIG_CPU_BIG_ENDIAN=y 88 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 130 # CONFIG_PAGE_SIZE_64KB is not set 131 # CONFIG_SIBYTE_DMA_PAGEOPS is not set 132 CONFIG_CPU_HAS_PREFETCH=y 133 + CONFIG_MIPS_MT_DISABLED=y 134 + # CONFIG_MIPS_MT_SMTC is not set 135 + # CONFIG_MIPS_MT_SMP is not set 136 + # CONFIG_MIPS_VPE_LOADER is not set 137 CONFIG_SB1_PASS_1_WORKAROUNDS=y 138 CONFIG_CPU_HAS_LLSC=y 139 CONFIG_CPU_HAS_SYNC=y 140 CONFIG_GENERIC_HARDIRQS=y 141 CONFIG_GENERIC_IRQ_PROBE=y 142 + CONFIG_IRQ_PER_CPU=y 143 CONFIG_CPU_SUPPORTS_HIGHMEM=y 144 CONFIG_SYS_SUPPORTS_HIGHMEM=y 145 CONFIG_ARCH_FLATMEM_ENABLE=y ··· 147 CONFIG_FLAT_NODE_MEM_MAP=y 148 # CONFIG_SPARSEMEM_STATIC is not set 149 CONFIG_SPLIT_PTLOCK_CPUS=4 150 + CONFIG_RESOURCES_64BIT=y 151 + CONFIG_SMP=y 152 + CONFIG_SYS_SUPPORTS_SMP=y 153 + CONFIG_NR_CPUS=2 154 # CONFIG_HZ_48 is not set 155 # CONFIG_HZ_100 is not set 156 # CONFIG_HZ_128 is not set ··· 156 # CONFIG_HZ_1024 is not set 157 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 158 CONFIG_HZ=1000 159 CONFIG_PREEMPT_NONE=y 160 # CONFIG_PREEMPT_VOLUNTARY is not set 161 # CONFIG_PREEMPT is not set 162 CONFIG_PREEMPT_BKL=y 163 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 164 165 # 166 # Code maturity level options ··· 194 CONFIG_BUG=y 195 CONFIG_ELF_CORE=y 196 CONFIG_BASE_FULL=y 197 + CONFIG_RT_MUTEXES=y 198 CONFIG_FUTEX=y 199 CONFIG_EPOLL=y 200 CONFIG_SHMEM=y 201 CONFIG_SLAB=y 202 + CONFIG_VM_EVENT_COUNTERS=y 203 # CONFIG_TINY_SHMEM is not set 204 CONFIG_BASE_SMALL=0 205 # CONFIG_SLOB is not set ··· 292 # CONFIG_INET_IPCOMP is not set 293 # CONFIG_INET_XFRM_TUNNEL is not set 294 # CONFIG_INET_TUNNEL is not set 295 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 296 + CONFIG_INET_XFRM_MODE_TUNNEL=m 297 CONFIG_INET_DIAG=y 298 CONFIG_INET_TCP_DIAG=y 299 # CONFIG_TCP_CONG_ADVANCED is not set ··· 299 # CONFIG_IPV6 is not set 300 # CONFIG_INET6_XFRM_TUNNEL is not set 301 # CONFIG_INET6_TUNNEL is not set 302 + CONFIG_NETWORK_SECMARK=y 303 # CONFIG_NETFILTER is not set 304 305 # ··· 358 CONFIG_STANDALONE=y 359 CONFIG_PREVENT_FIRMWARE_BUILD=y 360 CONFIG_FW_LOADER=m 361 + # CONFIG_SYS_HYPERVISOR is not set 362 363 # 364 # Connector - unified userspace <-> kernelspace linker ··· 479 CONFIG_QSEMI_PHY=m 480 CONFIG_LXT_PHY=m 481 CONFIG_CICADA_PHY=m 482 + CONFIG_VITESSE_PHY=m 483 + CONFIG_SMSC_PHY=m 484 485 # 486 # Ethernet (10 or 100Mbit) ··· 522 # CONFIG_CHELSIO_T1 is not set 523 # CONFIG_IXGB is not set 524 # CONFIG_S2IO is not set 525 + # CONFIG_MYRI10GE is not set 526 527 # 528 # Token Ring devices ··· 589 # CONFIG_N_HDLC is not set 590 # CONFIG_SPECIALIX is not set 591 # CONFIG_SX is not set 592 + # CONFIG_RIO is not set 593 # CONFIG_STALDRV is not set 594 CONFIG_SIBYTE_SB1250_DUART=y 595 CONFIG_SIBYTE_SB1250_DUART_CONSOLE=y ··· 615 # Watchdog Cards 616 # 617 # CONFIG_WATCHDOG is not set 618 + # CONFIG_HW_RANDOM is not set 619 # CONFIG_RTC is not set 620 # CONFIG_GEN_RTC is not set 621 # CONFIG_DTLK is not set ··· 663 # Multimedia devices 664 # 665 # CONFIG_VIDEO_DEV is not set 666 + CONFIG_VIDEO_V4L2=y 667 668 # 669 # Digital Video Broadcasting Devices ··· 672 # 673 # Graphics support 674 # 675 + # CONFIG_FIRMWARE_EDID is not set 676 # CONFIG_FB is not set 677 678 # ··· 729 # CONFIG_RTC_CLASS is not set 730 731 # 732 + # DMA Engine support 733 + # 734 + # CONFIG_DMA_ENGINE is not set 735 + 736 + # 737 + # DMA Clients 738 + # 739 + 740 + # 741 + # DMA Devices 742 + # 743 + 744 + # 745 # File systems 746 # 747 CONFIG_EXT2_FS=y ··· 746 # CONFIG_MINIX_FS is not set 747 # CONFIG_ROMFS_FS is not set 748 CONFIG_INOTIFY=y 749 + CONFIG_INOTIFY_USER=y 750 # CONFIG_QUOTA is not set 751 CONFIG_DNOTIFY=y 752 # CONFIG_AUTOFS_FS is not set ··· 811 # CONFIG_RPCSEC_GSS_SPKM3 is not set 812 # CONFIG_SMB_FS is not set 813 # CONFIG_CIFS is not set 814 + # CONFIG_CIFS_DEBUG2 is not set 815 # CONFIG_NCP_FS is not set 816 # CONFIG_CODA_FS is not set 817 # CONFIG_AFS_FS is not set ··· 837 # 838 # CONFIG_PRINTK_TIME is not set 839 # CONFIG_MAGIC_SYSRQ is not set 840 + # CONFIG_UNUSED_SYMBOLS is not set 841 # CONFIG_DEBUG_KERNEL is not set 842 CONFIG_LOG_BUF_SHIFT=15 843 # CONFIG_DEBUG_FS is not set ··· 893 CONFIG_LIBCRC32C=m 894 CONFIG_ZLIB_INFLATE=m 895 CONFIG_ZLIB_DEFLATE=m 896 + CONFIG_PLIST=y
+34 -4
arch/mips/configs/sead_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 CONFIG_MIPS_SEAD=y 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_DMA_NONCOHERENT=y 72 CONFIG_DMA_NEED_PCI_MAP_STATE=y 73 # CONFIG_CPU_BIG_ENDIAN is not set ··· 120 # CONFIG_PAGE_SIZE_16KB is not set 121 # CONFIG_PAGE_SIZE_64KB is not set 122 CONFIG_CPU_HAS_PREFETCH=y 123 - # CONFIG_MIPS_MT is not set 124 # CONFIG_64BIT_PHYS_ADDR is not set 125 CONFIG_CPU_HAS_LLSC=y 126 CONFIG_CPU_HAS_SYNC=y ··· 139 CONFIG_FLAT_NODE_MEM_MAP=y 140 # CONFIG_SPARSEMEM_STATIC is not set 141 CONFIG_SPLIT_PTLOCK_CPUS=4 142 # CONFIG_HZ_48 is not set 143 # CONFIG_HZ_100 is not set 144 # CONFIG_HZ_128 is not set ··· 152 CONFIG_PREEMPT_NONE=y 153 # CONFIG_PREEMPT_VOLUNTARY is not set 154 # CONFIG_PREEMPT is not set 155 156 # 157 # Code maturity level options ··· 182 CONFIG_BUG=y 183 CONFIG_ELF_CORE=y 184 CONFIG_BASE_FULL=y 185 CONFIG_FUTEX=y 186 CONFIG_EPOLL=y 187 CONFIG_SHMEM=y 188 CONFIG_SLAB=y 189 # CONFIG_TINY_SHMEM is not set 190 CONFIG_BASE_SMALL=0 191 # CONFIG_SLOB is not set ··· 253 CONFIG_STANDALONE=y 254 CONFIG_PREVENT_FIRMWARE_BUILD=y 255 # CONFIG_FW_LOADER is not set 256 257 # 258 # Connector - unified userspace <-> kernelspace linker ··· 367 # Watchdog Cards 368 # 369 # CONFIG_WATCHDOG is not set 370 # CONFIG_RTC is not set 371 # CONFIG_GEN_RTC is not set 372 # CONFIG_DTLK is not set ··· 398 # 399 # Dallas's 1-wire bus 400 # 401 - # CONFIG_W1 is not set 402 403 # 404 # Hardware Monitoring support ··· 413 # Multimedia devices 414 # 415 # CONFIG_VIDEO_DEV is not set 416 417 # 418 # Digital Video Broadcasting Devices ··· 422 # 423 # Graphics support 424 # 425 # CONFIG_FB is not set 426 427 # ··· 478 # CONFIG_RTC_CLASS is not set 479 480 # 481 # File systems 482 # 483 CONFIG_EXT2_FS=y ··· 504 # CONFIG_MINIX_FS is not set 505 # CONFIG_ROMFS_FS is not set 506 CONFIG_INOTIFY=y 507 # CONFIG_QUOTA is not set 508 CONFIG_DNOTIFY=y 509 # CONFIG_AUTOFS_FS is not set ··· 584 # 585 # CONFIG_PRINTK_TIME is not set 586 # CONFIG_MAGIC_SYSRQ is not set 587 # CONFIG_DEBUG_KERNEL is not set 588 CONFIG_LOG_BUF_SHIFT=14 589 # CONFIG_DEBUG_FS is not set ··· 614 CONFIG_CRC16=y 615 # CONFIG_CRC32 is not set 616 # CONFIG_LIBCRC32C is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 CONFIG_MIPS_SEAD=y 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 # CONFIG_CPU_BIG_ENDIAN is not set ··· 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 CONFIG_CPU_HAS_PREFETCH=y 119 + CONFIG_MIPS_MT_DISABLED=y 120 + # CONFIG_MIPS_MT_SMTC is not set 121 + # CONFIG_MIPS_MT_SMP is not set 122 + # CONFIG_MIPS_VPE_LOADER is not set 123 # CONFIG_64BIT_PHYS_ADDR is not set 124 CONFIG_CPU_HAS_LLSC=y 125 CONFIG_CPU_HAS_SYNC=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 # CONFIG_HZ_128 is not set ··· 144 CONFIG_PREEMPT_NONE=y 145 # CONFIG_PREEMPT_VOLUNTARY is not set 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 148 149 # 150 # Code maturity level options ··· 173 CONFIG_BUG=y 174 CONFIG_ELF_CORE=y 175 CONFIG_BASE_FULL=y 176 + CONFIG_RT_MUTEXES=y 177 CONFIG_FUTEX=y 178 CONFIG_EPOLL=y 179 CONFIG_SHMEM=y 180 CONFIG_SLAB=y 181 + CONFIG_VM_EVENT_COUNTERS=y 182 # CONFIG_TINY_SHMEM is not set 183 CONFIG_BASE_SMALL=0 184 # CONFIG_SLOB is not set ··· 242 CONFIG_STANDALONE=y 243 CONFIG_PREVENT_FIRMWARE_BUILD=y 244 # CONFIG_FW_LOADER is not set 245 + # CONFIG_SYS_HYPERVISOR is not set 246 247 # 248 # Connector - unified userspace <-> kernelspace linker ··· 355 # Watchdog Cards 356 # 357 # CONFIG_WATCHDOG is not set 358 + # CONFIG_HW_RANDOM is not set 359 # CONFIG_RTC is not set 360 # CONFIG_GEN_RTC is not set 361 # CONFIG_DTLK is not set ··· 385 # 386 # Dallas's 1-wire bus 387 # 388 389 # 390 # Hardware Monitoring support ··· 401 # Multimedia devices 402 # 403 # CONFIG_VIDEO_DEV is not set 404 + CONFIG_VIDEO_V4L2=y 405 406 # 407 # Digital Video Broadcasting Devices ··· 409 # 410 # Graphics support 411 # 412 + # CONFIG_FIRMWARE_EDID is not set 413 # CONFIG_FB is not set 414 415 # ··· 464 # CONFIG_RTC_CLASS is not set 465 466 # 467 + # DMA Engine support 468 + # 469 + # CONFIG_DMA_ENGINE is not set 470 + 471 + # 472 + # DMA Clients 473 + # 474 + 475 + # 476 + # DMA Devices 477 + # 478 + 479 + # 480 # File systems 481 # 482 CONFIG_EXT2_FS=y ··· 477 # CONFIG_MINIX_FS is not set 478 # CONFIG_ROMFS_FS is not set 479 CONFIG_INOTIFY=y 480 + CONFIG_INOTIFY_USER=y 481 # CONFIG_QUOTA is not set 482 CONFIG_DNOTIFY=y 483 # CONFIG_AUTOFS_FS is not set ··· 556 # 557 # CONFIG_PRINTK_TIME is not set 558 # CONFIG_MAGIC_SYSRQ is not set 559 + # CONFIG_UNUSED_SYMBOLS is not set 560 # CONFIG_DEBUG_KERNEL is not set 561 CONFIG_LOG_BUF_SHIFT=14 562 # CONFIG_DEBUG_FS is not set ··· 585 CONFIG_CRC16=y 586 # CONFIG_CRC32 is not set 587 # CONFIG_LIBCRC32C is not set 588 + CONFIG_PLIST=y
+52 -3
arch/mips/configs/tb0226_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:41 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 78 CONFIG_GENERIC_FIND_NEXT_BIT=y 79 CONFIG_GENERIC_HWEIGHT=y 80 CONFIG_GENERIC_CALIBRATE_DELAY=y 81 CONFIG_DMA_NONCOHERENT=y 82 CONFIG_DMA_NEED_PCI_MAP_STATE=y 83 # CONFIG_CPU_BIG_ENDIAN is not set ··· 123 # CONFIG_PAGE_SIZE_8KB is not set 124 # CONFIG_PAGE_SIZE_16KB is not set 125 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 127 CONFIG_CPU_HAS_SYNC=y 128 CONFIG_GENERIC_HARDIRQS=y 129 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 CONFIG_FLAT_NODE_MEM_MAP=y 140 # CONFIG_SPARSEMEM_STATIC is not set 141 CONFIG_SPLIT_PTLOCK_CPUS=4 142 # CONFIG_HZ_48 is not set 143 # CONFIG_HZ_100 is not set 144 # CONFIG_HZ_128 is not set ··· 152 CONFIG_PREEMPT_NONE=y 153 # CONFIG_PREEMPT_VOLUNTARY is not set 154 # CONFIG_PREEMPT is not set 155 156 # 157 # Code maturity level options ··· 184 CONFIG_BUG=y 185 CONFIG_ELF_CORE=y 186 CONFIG_BASE_FULL=y 187 CONFIG_FUTEX=y 188 CONFIG_EPOLL=y 189 CONFIG_SHMEM=y 190 CONFIG_SLAB=y 191 # CONFIG_TINY_SHMEM is not set 192 CONFIG_BASE_SMALL=0 193 # CONFIG_SLOB is not set ··· 260 CONFIG_PACKET=y 261 # CONFIG_PACKET_MMAP is not set 262 CONFIG_UNIX=y 263 # CONFIG_NET_KEY is not set 264 CONFIG_INET=y 265 CONFIG_IP_MULTICAST=y ··· 287 # CONFIG_INET_IPCOMP is not set 288 # CONFIG_INET_XFRM_TUNNEL is not set 289 # CONFIG_INET_TUNNEL is not set 290 CONFIG_INET_DIAG=y 291 CONFIG_INET_TCP_DIAG=y 292 # CONFIG_TCP_CONG_ADVANCED is not set ··· 296 # CONFIG_IPV6 is not set 297 # CONFIG_INET6_XFRM_TUNNEL is not set 298 # CONFIG_INET6_TUNNEL is not set 299 # CONFIG_NETFILTER is not set 300 301 # ··· 350 CONFIG_STANDALONE=y 351 CONFIG_PREVENT_FIRMWARE_BUILD=y 352 CONFIG_FW_LOADER=y 353 354 # 355 # Connector - unified userspace <-> kernelspace linker ··· 444 # CONFIG_MEGARAID_LEGACY is not set 445 # CONFIG_MEGARAID_SAS is not set 446 # CONFIG_SCSI_SATA is not set 447 # CONFIG_SCSI_DMX3191D is not set 448 # CONFIG_SCSI_FUTURE_DOMAIN is not set 449 # CONFIG_SCSI_IPS is not set ··· 510 CONFIG_QSEMI_PHY=m 511 CONFIG_LXT_PHY=m 512 CONFIG_CICADA_PHY=m 513 514 # 515 # Ethernet (10 or 100Mbit) ··· 574 # CONFIG_CHELSIO_T1 is not set 575 # CONFIG_IXGB is not set 576 # CONFIG_S2IO is not set 577 578 # 579 # Token Ring devices ··· 645 CONFIG_VT=y 646 CONFIG_VT_CONSOLE=y 647 CONFIG_HW_CONSOLE=y 648 # CONFIG_SERIAL_NONSTANDARD is not set 649 650 # ··· 674 # Watchdog Cards 675 # 676 # CONFIG_WATCHDOG is not set 677 # CONFIG_RTC is not set 678 # CONFIG_GEN_RTC is not set 679 # CONFIG_DTLK is not set ··· 725 # Multimedia devices 726 # 727 # CONFIG_VIDEO_DEV is not set 728 729 # 730 # Digital Video Broadcasting Devices ··· 736 # 737 # Graphics support 738 # 739 # CONFIG_FB is not set 740 741 # ··· 773 CONFIG_USB_EHCI_HCD=y 774 # CONFIG_USB_EHCI_SPLIT_ISO is not set 775 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 776 # CONFIG_USB_ISP116X_HCD is not set 777 CONFIG_USB_OHCI_HCD=y 778 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 864 # CONFIG_USB_LEGOTOWER is not set 865 # CONFIG_USB_LCD is not set 866 # CONFIG_USB_LED is not set 867 # CONFIG_USB_CYTHERM is not set 868 # CONFIG_USB_PHIDGETKIT is not set 869 # CONFIG_USB_PHIDGETSERVO is not set 870 # CONFIG_USB_IDMOUSE is not set 871 # CONFIG_USB_SISUSBVGA is not set 872 # CONFIG_USB_LD is not set 873 # CONFIG_USB_TEST is not set ··· 924 CONFIG_RTC_INTF_SYSFS=y 925 CONFIG_RTC_INTF_PROC=y 926 CONFIG_RTC_INTF_DEV=y 927 928 # 929 # RTC drivers 930 # 931 # CONFIG_RTC_DRV_M48T86 is not set 932 CONFIG_RTC_DRV_VR41XX=y 933 # CONFIG_RTC_DRV_TEST is not set 934 935 # 936 # File systems ··· 964 # CONFIG_MINIX_FS is not set 965 CONFIG_ROMFS_FS=m 966 CONFIG_INOTIFY=y 967 # CONFIG_QUOTA is not set 968 CONFIG_DNOTIFY=y 969 # CONFIG_AUTOFS_FS is not set ··· 1035 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1036 # CONFIG_SMB_FS is not set 1037 # CONFIG_CIFS is not set 1038 # CONFIG_NCP_FS is not set 1039 # CONFIG_CODA_FS is not set 1040 # CONFIG_AFS_FS is not set ··· 1062 # 1063 # CONFIG_PRINTK_TIME is not set 1064 # CONFIG_MAGIC_SYSRQ is not set 1065 # CONFIG_DEBUG_KERNEL is not set 1066 CONFIG_LOG_BUF_SHIFT=14 1067 # CONFIG_DEBUG_FS is not set ··· 1092 # CONFIG_CRC32 is not set 1093 # CONFIG_LIBCRC32C is not set 1094 CONFIG_ZLIB_INFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 75 CONFIG_GENERIC_FIND_NEXT_BIT=y 76 CONFIG_GENERIC_HWEIGHT=y 77 CONFIG_GENERIC_CALIBRATE_DELAY=y 78 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 79 CONFIG_DMA_NONCOHERENT=y 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 # CONFIG_PAGE_SIZE_8KB is not set 120 # CONFIG_PAGE_SIZE_16KB is not set 121 # CONFIG_PAGE_SIZE_64KB is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 CONFIG_CPU_HAS_SYNC=y 127 CONFIG_GENERIC_HARDIRQS=y 128 CONFIG_GENERIC_IRQ_PROBE=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 # CONFIG_HZ_128 is not set ··· 144 CONFIG_PREEMPT_NONE=y 145 # CONFIG_PREEMPT_VOLUNTARY is not set 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 148 149 # 150 # Code maturity level options ··· 175 CONFIG_BUG=y 176 CONFIG_ELF_CORE=y 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 179 CONFIG_FUTEX=y 180 CONFIG_EPOLL=y 181 CONFIG_SHMEM=y 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 184 # CONFIG_TINY_SHMEM is not set 185 CONFIG_BASE_SMALL=0 186 # CONFIG_SLOB is not set ··· 249 CONFIG_PACKET=y 250 # CONFIG_PACKET_MMAP is not set 251 CONFIG_UNIX=y 252 + CONFIG_XFRM=y 253 + # CONFIG_XFRM_USER is not set 254 # CONFIG_NET_KEY is not set 255 CONFIG_INET=y 256 CONFIG_IP_MULTICAST=y ··· 274 # CONFIG_INET_IPCOMP is not set 275 # CONFIG_INET_XFRM_TUNNEL is not set 276 # CONFIG_INET_TUNNEL is not set 277 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 278 + CONFIG_INET_XFRM_MODE_TUNNEL=m 279 CONFIG_INET_DIAG=y 280 CONFIG_INET_TCP_DIAG=y 281 # CONFIG_TCP_CONG_ADVANCED is not set ··· 281 # CONFIG_IPV6 is not set 282 # CONFIG_INET6_XFRM_TUNNEL is not set 283 # CONFIG_INET6_TUNNEL is not set 284 + CONFIG_NETWORK_SECMARK=y 285 # CONFIG_NETFILTER is not set 286 287 # ··· 334 CONFIG_STANDALONE=y 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 338 339 # 340 # Connector - unified userspace <-> kernelspace linker ··· 427 # CONFIG_MEGARAID_LEGACY is not set 428 # CONFIG_MEGARAID_SAS is not set 429 # CONFIG_SCSI_SATA is not set 430 + # CONFIG_SCSI_HPTIOP is not set 431 # CONFIG_SCSI_DMX3191D is not set 432 # CONFIG_SCSI_FUTURE_DOMAIN is not set 433 # CONFIG_SCSI_IPS is not set ··· 492 CONFIG_QSEMI_PHY=m 493 CONFIG_LXT_PHY=m 494 CONFIG_CICADA_PHY=m 495 + CONFIG_VITESSE_PHY=m 496 + CONFIG_SMSC_PHY=m 497 498 # 499 # Ethernet (10 or 100Mbit) ··· 554 # CONFIG_CHELSIO_T1 is not set 555 # CONFIG_IXGB is not set 556 # CONFIG_S2IO is not set 557 + # CONFIG_MYRI10GE is not set 558 559 # 560 # Token Ring devices ··· 624 CONFIG_VT=y 625 CONFIG_VT_CONSOLE=y 626 CONFIG_HW_CONSOLE=y 627 + CONFIG_VT_HW_CONSOLE_BINDING=y 628 # CONFIG_SERIAL_NONSTANDARD is not set 629 630 # ··· 652 # Watchdog Cards 653 # 654 # CONFIG_WATCHDOG is not set 655 + # CONFIG_HW_RANDOM is not set 656 # CONFIG_RTC is not set 657 # CONFIG_GEN_RTC is not set 658 # CONFIG_DTLK is not set ··· 702 # Multimedia devices 703 # 704 # CONFIG_VIDEO_DEV is not set 705 + CONFIG_VIDEO_V4L2=y 706 707 # 708 # Digital Video Broadcasting Devices ··· 712 # 713 # Graphics support 714 # 715 + # CONFIG_FIRMWARE_EDID is not set 716 # CONFIG_FB is not set 717 718 # ··· 748 CONFIG_USB_EHCI_HCD=y 749 # CONFIG_USB_EHCI_SPLIT_ISO is not set 750 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 751 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 752 # CONFIG_USB_ISP116X_HCD is not set 753 CONFIG_USB_OHCI_HCD=y 754 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 838 # CONFIG_USB_LEGOTOWER is not set 839 # CONFIG_USB_LCD is not set 840 # CONFIG_USB_LED is not set 841 + # CONFIG_USB_CY7C63 is not set 842 # CONFIG_USB_CYTHERM is not set 843 # CONFIG_USB_PHIDGETKIT is not set 844 # CONFIG_USB_PHIDGETSERVO is not set 845 # CONFIG_USB_IDMOUSE is not set 846 + # CONFIG_USB_APPLEDISPLAY is not set 847 # CONFIG_USB_SISUSBVGA is not set 848 # CONFIG_USB_LD is not set 849 # CONFIG_USB_TEST is not set ··· 896 CONFIG_RTC_INTF_SYSFS=y 897 CONFIG_RTC_INTF_PROC=y 898 CONFIG_RTC_INTF_DEV=y 899 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 900 901 # 902 # RTC drivers 903 # 904 + # CONFIG_RTC_DRV_DS1553 is not set 905 + # CONFIG_RTC_DRV_DS1742 is not set 906 # CONFIG_RTC_DRV_M48T86 is not set 907 CONFIG_RTC_DRV_VR41XX=y 908 # CONFIG_RTC_DRV_TEST is not set 909 + # CONFIG_RTC_DRV_V3020 is not set 910 + 911 + # 912 + # DMA Engine support 913 + # 914 + # CONFIG_DMA_ENGINE is not set 915 + 916 + # 917 + # DMA Clients 918 + # 919 + 920 + # 921 + # DMA Devices 922 + # 923 924 # 925 # File systems ··· 919 # CONFIG_MINIX_FS is not set 920 CONFIG_ROMFS_FS=m 921 CONFIG_INOTIFY=y 922 + CONFIG_INOTIFY_USER=y 923 # CONFIG_QUOTA is not set 924 CONFIG_DNOTIFY=y 925 # CONFIG_AUTOFS_FS is not set ··· 989 # CONFIG_RPCSEC_GSS_SPKM3 is not set 990 # CONFIG_SMB_FS is not set 991 # CONFIG_CIFS is not set 992 + # CONFIG_CIFS_DEBUG2 is not set 993 # CONFIG_NCP_FS is not set 994 # CONFIG_CODA_FS is not set 995 # CONFIG_AFS_FS is not set ··· 1015 # 1016 # CONFIG_PRINTK_TIME is not set 1017 # CONFIG_MAGIC_SYSRQ is not set 1018 + # CONFIG_UNUSED_SYMBOLS is not set 1019 # CONFIG_DEBUG_KERNEL is not set 1020 CONFIG_LOG_BUF_SHIFT=14 1021 # CONFIG_DEBUG_FS is not set ··· 1044 # CONFIG_CRC32 is not set 1045 # CONFIG_LIBCRC32C is not set 1046 CONFIG_ZLIB_INFLATE=m 1047 + CONFIG_PLIST=y
+51 -4
arch/mips/configs/tb0229_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:08:59 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 78 CONFIG_GENERIC_FIND_NEXT_BIT=y 79 CONFIG_GENERIC_HWEIGHT=y 80 CONFIG_GENERIC_CALIBRATE_DELAY=y 81 CONFIG_DMA_NONCOHERENT=y 82 CONFIG_DMA_NEED_PCI_MAP_STATE=y 83 # CONFIG_CPU_BIG_ENDIAN is not set ··· 123 # CONFIG_PAGE_SIZE_8KB is not set 124 # CONFIG_PAGE_SIZE_16KB is not set 125 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 127 CONFIG_CPU_HAS_SYNC=y 128 CONFIG_GENERIC_HARDIRQS=y 129 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 CONFIG_FLAT_NODE_MEM_MAP=y 140 # CONFIG_SPARSEMEM_STATIC is not set 141 CONFIG_SPLIT_PTLOCK_CPUS=4 142 # CONFIG_HZ_48 is not set 143 # CONFIG_HZ_100 is not set 144 # CONFIG_HZ_128 is not set ··· 152 CONFIG_PREEMPT_NONE=y 153 # CONFIG_PREEMPT_VOLUNTARY is not set 154 # CONFIG_PREEMPT is not set 155 156 # 157 # Code maturity level options ··· 184 CONFIG_BUG=y 185 CONFIG_ELF_CORE=y 186 CONFIG_BASE_FULL=y 187 CONFIG_FUTEX=y 188 CONFIG_EPOLL=y 189 CONFIG_SHMEM=y 190 CONFIG_SLAB=y 191 # CONFIG_TINY_SHMEM is not set 192 CONFIG_BASE_SMALL=0 193 # CONFIG_SLOB is not set ··· 260 CONFIG_PACKET=y 261 # CONFIG_PACKET_MMAP is not set 262 CONFIG_UNIX=y 263 # CONFIG_NET_KEY is not set 264 CONFIG_INET=y 265 CONFIG_IP_MULTICAST=y ··· 288 # CONFIG_INET_IPCOMP is not set 289 # CONFIG_INET_XFRM_TUNNEL is not set 290 CONFIG_INET_TUNNEL=m 291 CONFIG_INET_DIAG=y 292 CONFIG_INET_TCP_DIAG=y 293 # CONFIG_TCP_CONG_ADVANCED is not set ··· 297 # CONFIG_IPV6 is not set 298 # CONFIG_INET6_XFRM_TUNNEL is not set 299 # CONFIG_INET6_TUNNEL is not set 300 # CONFIG_NETFILTER is not set 301 302 # ··· 351 CONFIG_STANDALONE=y 352 CONFIG_PREVENT_FIRMWARE_BUILD=y 353 # CONFIG_FW_LOADER is not set 354 355 # 356 # Connector - unified userspace <-> kernelspace linker ··· 450 CONFIG_QSEMI_PHY=m 451 CONFIG_LXT_PHY=m 452 CONFIG_CICADA_PHY=m 453 454 # 455 # Ethernet (10 or 100Mbit) ··· 495 # CONFIG_CHELSIO_T1 is not set 496 # CONFIG_IXGB is not set 497 # CONFIG_S2IO is not set 498 499 # 500 # Token Ring devices ··· 565 CONFIG_VT=y 566 CONFIG_VT_CONSOLE=y 567 CONFIG_HW_CONSOLE=y 568 # CONFIG_SERIAL_NONSTANDARD is not set 569 570 # ··· 594 # Watchdog Cards 595 # 596 # CONFIG_WATCHDOG is not set 597 # CONFIG_RTC is not set 598 # CONFIG_GEN_RTC is not set 599 # CONFIG_DTLK is not set ··· 629 # 630 # Dallas's 1-wire bus 631 # 632 - # CONFIG_W1 is not set 633 634 # 635 # Hardware Monitoring support ··· 644 # Multimedia devices 645 # 646 # CONFIG_VIDEO_DEV is not set 647 648 # 649 # Digital Video Broadcasting Devices ··· 655 # 656 # Graphics support 657 # 658 # CONFIG_FB is not set 659 660 # ··· 692 CONFIG_USB_EHCI_HCD=m 693 # CONFIG_USB_EHCI_SPLIT_ISO is not set 694 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 695 # CONFIG_USB_ISP116X_HCD is not set 696 CONFIG_USB_OHCI_HCD=m 697 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 773 # CONFIG_USB_LEGOTOWER is not set 774 # CONFIG_USB_LCD is not set 775 # CONFIG_USB_LED is not set 776 # CONFIG_USB_CYTHERM is not set 777 # CONFIG_USB_PHIDGETKIT is not set 778 # CONFIG_USB_PHIDGETSERVO is not set 779 # CONFIG_USB_IDMOUSE is not set 780 # CONFIG_USB_SISUSBVGA is not set 781 # CONFIG_USB_LD is not set 782 # CONFIG_USB_TEST is not set ··· 833 CONFIG_RTC_INTF_SYSFS=y 834 CONFIG_RTC_INTF_PROC=y 835 CONFIG_RTC_INTF_DEV=y 836 837 # 838 # RTC drivers 839 # 840 # CONFIG_RTC_DRV_M48T86 is not set 841 CONFIG_RTC_DRV_VR41XX=y 842 # CONFIG_RTC_DRV_TEST is not set 843 844 # 845 # File systems ··· 873 # CONFIG_MINIX_FS is not set 874 CONFIG_ROMFS_FS=m 875 CONFIG_INOTIFY=y 876 # CONFIG_QUOTA is not set 877 CONFIG_DNOTIFY=y 878 # CONFIG_AUTOFS_FS is not set ··· 944 # CONFIG_RPCSEC_GSS_SPKM3 is not set 945 # CONFIG_SMB_FS is not set 946 # CONFIG_CIFS is not set 947 # CONFIG_NCP_FS is not set 948 # CONFIG_CODA_FS is not set 949 # CONFIG_AFS_FS is not set ··· 971 # 972 # CONFIG_PRINTK_TIME is not set 973 # CONFIG_MAGIC_SYSRQ is not set 974 # CONFIG_DEBUG_KERNEL is not set 975 CONFIG_LOG_BUF_SHIFT=14 976 # CONFIG_DEBUG_FS is not set ··· 1001 CONFIG_CRC32=y 1002 # CONFIG_LIBCRC32C is not set 1003 CONFIG_ZLIB_INFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:20 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 75 CONFIG_GENERIC_FIND_NEXT_BIT=y 76 CONFIG_GENERIC_HWEIGHT=y 77 CONFIG_GENERIC_CALIBRATE_DELAY=y 78 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 79 CONFIG_DMA_NONCOHERENT=y 80 CONFIG_DMA_NEED_PCI_MAP_STATE=y 81 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 # CONFIG_PAGE_SIZE_8KB is not set 120 # CONFIG_PAGE_SIZE_16KB is not set 121 # CONFIG_PAGE_SIZE_64KB is not set 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 CONFIG_CPU_HAS_SYNC=y 127 CONFIG_GENERIC_HARDIRQS=y 128 CONFIG_GENERIC_IRQ_PROBE=y ··· 132 CONFIG_FLAT_NODE_MEM_MAP=y 133 # CONFIG_SPARSEMEM_STATIC is not set 134 CONFIG_SPLIT_PTLOCK_CPUS=4 135 + # CONFIG_RESOURCES_64BIT is not set 136 # CONFIG_HZ_48 is not set 137 # CONFIG_HZ_100 is not set 138 # CONFIG_HZ_128 is not set ··· 144 CONFIG_PREEMPT_NONE=y 145 # CONFIG_PREEMPT_VOLUNTARY is not set 146 # CONFIG_PREEMPT is not set 147 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 148 149 # 150 # Code maturity level options ··· 175 CONFIG_BUG=y 176 CONFIG_ELF_CORE=y 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 179 CONFIG_FUTEX=y 180 CONFIG_EPOLL=y 181 CONFIG_SHMEM=y 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 184 # CONFIG_TINY_SHMEM is not set 185 CONFIG_BASE_SMALL=0 186 # CONFIG_SLOB is not set ··· 249 CONFIG_PACKET=y 250 # CONFIG_PACKET_MMAP is not set 251 CONFIG_UNIX=y 252 + CONFIG_XFRM=y 253 + # CONFIG_XFRM_USER is not set 254 # CONFIG_NET_KEY is not set 255 CONFIG_INET=y 256 CONFIG_IP_MULTICAST=y ··· 275 # CONFIG_INET_IPCOMP is not set 276 # CONFIG_INET_XFRM_TUNNEL is not set 277 CONFIG_INET_TUNNEL=m 278 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 279 + CONFIG_INET_XFRM_MODE_TUNNEL=m 280 CONFIG_INET_DIAG=y 281 CONFIG_INET_TCP_DIAG=y 282 # CONFIG_TCP_CONG_ADVANCED is not set ··· 282 # CONFIG_IPV6 is not set 283 # CONFIG_INET6_XFRM_TUNNEL is not set 284 # CONFIG_INET6_TUNNEL is not set 285 + CONFIG_NETWORK_SECMARK=y 286 # CONFIG_NETFILTER is not set 287 288 # ··· 335 CONFIG_STANDALONE=y 336 CONFIG_PREVENT_FIRMWARE_BUILD=y 337 # CONFIG_FW_LOADER is not set 338 + # CONFIG_SYS_HYPERVISOR is not set 339 340 # 341 # Connector - unified userspace <-> kernelspace linker ··· 433 CONFIG_QSEMI_PHY=m 434 CONFIG_LXT_PHY=m 435 CONFIG_CICADA_PHY=m 436 + CONFIG_VITESSE_PHY=m 437 + CONFIG_SMSC_PHY=m 438 439 # 440 # Ethernet (10 or 100Mbit) ··· 476 # CONFIG_CHELSIO_T1 is not set 477 # CONFIG_IXGB is not set 478 # CONFIG_S2IO is not set 479 + # CONFIG_MYRI10GE is not set 480 481 # 482 # Token Ring devices ··· 545 CONFIG_VT=y 546 CONFIG_VT_CONSOLE=y 547 CONFIG_HW_CONSOLE=y 548 + CONFIG_VT_HW_CONSOLE_BINDING=y 549 # CONFIG_SERIAL_NONSTANDARD is not set 550 551 # ··· 573 # Watchdog Cards 574 # 575 # CONFIG_WATCHDOG is not set 576 + # CONFIG_HW_RANDOM is not set 577 # CONFIG_RTC is not set 578 # CONFIG_GEN_RTC is not set 579 # CONFIG_DTLK is not set ··· 607 # 608 # Dallas's 1-wire bus 609 # 610 611 # 612 # Hardware Monitoring support ··· 623 # Multimedia devices 624 # 625 # CONFIG_VIDEO_DEV is not set 626 + CONFIG_VIDEO_V4L2=y 627 628 # 629 # Digital Video Broadcasting Devices ··· 633 # 634 # Graphics support 635 # 636 + # CONFIG_FIRMWARE_EDID is not set 637 # CONFIG_FB is not set 638 639 # ··· 669 CONFIG_USB_EHCI_HCD=m 670 # CONFIG_USB_EHCI_SPLIT_ISO is not set 671 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 672 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 673 # CONFIG_USB_ISP116X_HCD is not set 674 CONFIG_USB_OHCI_HCD=m 675 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 749 # CONFIG_USB_LEGOTOWER is not set 750 # CONFIG_USB_LCD is not set 751 # CONFIG_USB_LED is not set 752 + # CONFIG_USB_CY7C63 is not set 753 # CONFIG_USB_CYTHERM is not set 754 # CONFIG_USB_PHIDGETKIT is not set 755 # CONFIG_USB_PHIDGETSERVO is not set 756 # CONFIG_USB_IDMOUSE is not set 757 + # CONFIG_USB_APPLEDISPLAY is not set 758 # CONFIG_USB_SISUSBVGA is not set 759 # CONFIG_USB_LD is not set 760 # CONFIG_USB_TEST is not set ··· 807 CONFIG_RTC_INTF_SYSFS=y 808 CONFIG_RTC_INTF_PROC=y 809 CONFIG_RTC_INTF_DEV=y 810 + # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set 811 812 # 813 # RTC drivers 814 # 815 + # CONFIG_RTC_DRV_DS1553 is not set 816 + # CONFIG_RTC_DRV_DS1742 is not set 817 # CONFIG_RTC_DRV_M48T86 is not set 818 CONFIG_RTC_DRV_VR41XX=y 819 # CONFIG_RTC_DRV_TEST is not set 820 + # CONFIG_RTC_DRV_V3020 is not set 821 + 822 + # 823 + # DMA Engine support 824 + # 825 + # CONFIG_DMA_ENGINE is not set 826 + 827 + # 828 + # DMA Clients 829 + # 830 + 831 + # 832 + # DMA Devices 833 + # 834 835 # 836 # File systems ··· 830 # CONFIG_MINIX_FS is not set 831 CONFIG_ROMFS_FS=m 832 CONFIG_INOTIFY=y 833 + CONFIG_INOTIFY_USER=y 834 # CONFIG_QUOTA is not set 835 CONFIG_DNOTIFY=y 836 # CONFIG_AUTOFS_FS is not set ··· 900 # CONFIG_RPCSEC_GSS_SPKM3 is not set 901 # CONFIG_SMB_FS is not set 902 # CONFIG_CIFS is not set 903 + # CONFIG_CIFS_DEBUG2 is not set 904 # CONFIG_NCP_FS is not set 905 # CONFIG_CODA_FS is not set 906 # CONFIG_AFS_FS is not set ··· 926 # 927 # CONFIG_PRINTK_TIME is not set 928 # CONFIG_MAGIC_SYSRQ is not set 929 + # CONFIG_UNUSED_SYMBOLS is not set 930 # CONFIG_DEBUG_KERNEL is not set 931 CONFIG_LOG_BUF_SHIFT=14 932 # CONFIG_DEBUG_FS is not set ··· 955 CONFIG_CRC32=y 956 # CONFIG_LIBCRC32C is not set 957 CONFIG_ZLIB_INFLATE=m 958 + CONFIG_PLIST=y
+49 -6
arch/mips/configs/tb0287_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:09:17 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 123 # CONFIG_PAGE_SIZE_8KB is not set 124 # CONFIG_PAGE_SIZE_16KB is not set 125 # CONFIG_PAGE_SIZE_64KB is not set 126 - # CONFIG_MIPS_MT is not set 127 CONFIG_CPU_HAS_SYNC=y 128 CONFIG_GENERIC_HARDIRQS=y 129 CONFIG_GENERIC_IRQ_PROBE=y ··· 139 CONFIG_FLAT_NODE_MEM_MAP=y 140 # CONFIG_SPARSEMEM_STATIC is not set 141 CONFIG_SPLIT_PTLOCK_CPUS=4 142 # CONFIG_HZ_48 is not set 143 # CONFIG_HZ_100 is not set 144 # CONFIG_HZ_128 is not set ··· 152 CONFIG_PREEMPT_NONE=y 153 # CONFIG_PREEMPT_VOLUNTARY is not set 154 # CONFIG_PREEMPT is not set 155 156 # 157 # Code maturity level options ··· 184 CONFIG_BUG=y 185 CONFIG_ELF_CORE=y 186 CONFIG_BASE_FULL=y 187 CONFIG_FUTEX=y 188 CONFIG_EPOLL=y 189 CONFIG_SHMEM=y 190 CONFIG_SLAB=y 191 # CONFIG_TINY_SHMEM is not set 192 CONFIG_BASE_SMALL=0 193 # CONFIG_SLOB is not set ··· 260 CONFIG_PACKET=y 261 # CONFIG_PACKET_MMAP is not set 262 CONFIG_UNIX=y 263 # CONFIG_NET_KEY is not set 264 CONFIG_INET=y 265 CONFIG_IP_MULTICAST=y ··· 288 # CONFIG_INET_IPCOMP is not set 289 # CONFIG_INET_XFRM_TUNNEL is not set 290 CONFIG_INET_TUNNEL=m 291 CONFIG_INET_DIAG=y 292 CONFIG_INET_TCP_DIAG=y 293 CONFIG_TCP_CONG_ADVANCED=y ··· 305 # CONFIG_TCP_CONG_HYBLA is not set 306 # CONFIG_TCP_CONG_VEGAS is not set 307 # CONFIG_TCP_CONG_SCALABLE is not set 308 # CONFIG_IPV6 is not set 309 # CONFIG_INET6_XFRM_TUNNEL is not set 310 # CONFIG_INET6_TUNNEL is not set 311 # CONFIG_NETFILTER is not set 312 313 # ··· 365 CONFIG_STANDALONE=y 366 CONFIG_PREVENT_FIRMWARE_BUILD=y 367 # CONFIG_FW_LOADER is not set 368 369 # 370 # Connector - unified userspace <-> kernelspace linker ··· 511 # CONFIG_MEGARAID_LEGACY is not set 512 # CONFIG_MEGARAID_SAS is not set 513 # CONFIG_SCSI_SATA is not set 514 # CONFIG_SCSI_DMX3191D is not set 515 # CONFIG_SCSI_FUTURE_DOMAIN is not set 516 # CONFIG_SCSI_IPS is not set ··· 568 # 569 CONFIG_IEEE1394_VIDEO1394=m 570 CONFIG_IEEE1394_SBP2=m 571 - # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set 572 CONFIG_IEEE1394_ETH1394=m 573 CONFIG_IEEE1394_DV1394=m 574 CONFIG_IEEE1394_RAWIO=m ··· 638 # CONFIG_CHELSIO_T1 is not set 639 # CONFIG_IXGB is not set 640 # CONFIG_S2IO is not set 641 642 # 643 # Token Ring devices ··· 709 CONFIG_VT=y 710 CONFIG_VT_CONSOLE=y 711 CONFIG_HW_CONSOLE=y 712 # CONFIG_SERIAL_NONSTANDARD is not set 713 714 # ··· 738 # Watchdog Cards 739 # 740 # CONFIG_WATCHDOG is not set 741 # CONFIG_RTC is not set 742 # CONFIG_GEN_RTC is not set 743 # CONFIG_DTLK is not set ··· 773 # 774 # Dallas's 1-wire bus 775 # 776 - # CONFIG_W1 is not set 777 778 # 779 # Hardware Monitoring support ··· 788 # Multimedia devices 789 # 790 # CONFIG_VIDEO_DEV is not set 791 792 # 793 # Digital Video Broadcasting Devices ··· 799 # 800 # Graphics support 801 # 802 CONFIG_FB=y 803 CONFIG_FB_CFB_FILLRECT=y 804 CONFIG_FB_CFB_COPYAREA=y 805 CONFIG_FB_CFB_IMAGEBLIT=y 806 # CONFIG_FB_MACMODES is not set 807 - CONFIG_FB_FIRMWARE_EDID=y 808 # CONFIG_FB_MODE_HELPERS is not set 809 # CONFIG_FB_TILEBLITTING is not set 810 # CONFIG_FB_CIRRUS is not set ··· 871 CONFIG_USB_EHCI_HCD=m 872 # CONFIG_USB_EHCI_SPLIT_ISO is not set 873 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 874 # CONFIG_USB_ISP116X_HCD is not set 875 CONFIG_USB_OHCI_HCD=m 876 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 967 # CONFIG_USB_LEGOTOWER is not set 968 # CONFIG_USB_LCD is not set 969 # CONFIG_USB_LED is not set 970 # CONFIG_USB_CYTHERM is not set 971 # CONFIG_USB_PHIDGETKIT is not set 972 # CONFIG_USB_PHIDGETSERVO is not set 973 # CONFIG_USB_IDMOUSE is not set 974 # CONFIG_USB_SISUSBVGA is not set 975 # CONFIG_USB_LD is not set 976 ··· 1018 # CONFIG_RTC_CLASS is not set 1019 1020 # 1021 # File systems 1022 # 1023 CONFIG_EXT2_FS=y ··· 1055 # CONFIG_MINIX_FS is not set 1056 CONFIG_ROMFS_FS=m 1057 CONFIG_INOTIFY=y 1058 # CONFIG_QUOTA is not set 1059 CONFIG_QUOTACTL=y 1060 # CONFIG_DNOTIFY is not set ··· 1122 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1123 # CONFIG_SMB_FS is not set 1124 # CONFIG_CIFS is not set 1125 # CONFIG_NCP_FS is not set 1126 # CONFIG_CODA_FS is not set 1127 # CONFIG_AFS_FS is not set ··· 1149 # 1150 # CONFIG_PRINTK_TIME is not set 1151 # CONFIG_MAGIC_SYSRQ is not set 1152 # CONFIG_DEBUG_KERNEL is not set 1153 CONFIG_LOG_BUF_SHIFT=14 1154 # CONFIG_DEBUG_FS is not set ··· 1179 CONFIG_CRC32=y 1180 # CONFIG_LIBCRC32C is not set 1181 CONFIG_ZLIB_INFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 120 # CONFIG_PAGE_SIZE_8KB is not set 121 # CONFIG_PAGE_SIZE_16KB is not set 122 # CONFIG_PAGE_SIZE_64KB is not set 123 + CONFIG_MIPS_MT_DISABLED=y 124 + # CONFIG_MIPS_MT_SMTC is not set 125 + # CONFIG_MIPS_MT_SMP is not set 126 + # CONFIG_MIPS_VPE_LOADER is not set 127 CONFIG_CPU_HAS_SYNC=y 128 CONFIG_GENERIC_HARDIRQS=y 129 CONFIG_GENERIC_IRQ_PROBE=y ··· 133 CONFIG_FLAT_NODE_MEM_MAP=y 134 # CONFIG_SPARSEMEM_STATIC is not set 135 CONFIG_SPLIT_PTLOCK_CPUS=4 136 + # CONFIG_RESOURCES_64BIT is not set 137 # CONFIG_HZ_48 is not set 138 # CONFIG_HZ_100 is not set 139 # CONFIG_HZ_128 is not set ··· 145 CONFIG_PREEMPT_NONE=y 146 # CONFIG_PREEMPT_VOLUNTARY is not set 147 # CONFIG_PREEMPT is not set 148 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 149 150 # 151 # Code maturity level options ··· 176 CONFIG_BUG=y 177 CONFIG_ELF_CORE=y 178 CONFIG_BASE_FULL=y 179 + CONFIG_RT_MUTEXES=y 180 CONFIG_FUTEX=y 181 CONFIG_EPOLL=y 182 CONFIG_SHMEM=y 183 CONFIG_SLAB=y 184 + CONFIG_VM_EVENT_COUNTERS=y 185 # CONFIG_TINY_SHMEM is not set 186 CONFIG_BASE_SMALL=0 187 # CONFIG_SLOB is not set ··· 250 CONFIG_PACKET=y 251 # CONFIG_PACKET_MMAP is not set 252 CONFIG_UNIX=y 253 + CONFIG_XFRM=y 254 + # CONFIG_XFRM_USER is not set 255 # CONFIG_NET_KEY is not set 256 CONFIG_INET=y 257 CONFIG_IP_MULTICAST=y ··· 276 # CONFIG_INET_IPCOMP is not set 277 # CONFIG_INET_XFRM_TUNNEL is not set 278 CONFIG_INET_TUNNEL=m 279 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 280 + CONFIG_INET_XFRM_MODE_TUNNEL=m 281 CONFIG_INET_DIAG=y 282 CONFIG_INET_TCP_DIAG=y 283 CONFIG_TCP_CONG_ADVANCED=y ··· 291 # CONFIG_TCP_CONG_HYBLA is not set 292 # CONFIG_TCP_CONG_VEGAS is not set 293 # CONFIG_TCP_CONG_SCALABLE is not set 294 + # CONFIG_TCP_CONG_LP is not set 295 + # CONFIG_TCP_CONG_VENO is not set 296 + # CONFIG_TCP_CONG_COMPOUND is not set 297 # CONFIG_IPV6 is not set 298 # CONFIG_INET6_XFRM_TUNNEL is not set 299 # CONFIG_INET6_TUNNEL is not set 300 + CONFIG_NETWORK_SECMARK=y 301 # CONFIG_NETFILTER is not set 302 303 # ··· 347 CONFIG_STANDALONE=y 348 CONFIG_PREVENT_FIRMWARE_BUILD=y 349 # CONFIG_FW_LOADER is not set 350 + # CONFIG_SYS_HYPERVISOR is not set 351 352 # 353 # Connector - unified userspace <-> kernelspace linker ··· 492 # CONFIG_MEGARAID_LEGACY is not set 493 # CONFIG_MEGARAID_SAS is not set 494 # CONFIG_SCSI_SATA is not set 495 + # CONFIG_SCSI_HPTIOP is not set 496 # CONFIG_SCSI_DMX3191D is not set 497 # CONFIG_SCSI_FUTURE_DOMAIN is not set 498 # CONFIG_SCSI_IPS is not set ··· 548 # 549 CONFIG_IEEE1394_VIDEO1394=m 550 CONFIG_IEEE1394_SBP2=m 551 CONFIG_IEEE1394_ETH1394=m 552 CONFIG_IEEE1394_DV1394=m 553 CONFIG_IEEE1394_RAWIO=m ··· 619 # CONFIG_CHELSIO_T1 is not set 620 # CONFIG_IXGB is not set 621 # CONFIG_S2IO is not set 622 + # CONFIG_MYRI10GE is not set 623 624 # 625 # Token Ring devices ··· 689 CONFIG_VT=y 690 CONFIG_VT_CONSOLE=y 691 CONFIG_HW_CONSOLE=y 692 + CONFIG_VT_HW_CONSOLE_BINDING=y 693 # CONFIG_SERIAL_NONSTANDARD is not set 694 695 # ··· 717 # Watchdog Cards 718 # 719 # CONFIG_WATCHDOG is not set 720 + # CONFIG_HW_RANDOM is not set 721 # CONFIG_RTC is not set 722 # CONFIG_GEN_RTC is not set 723 # CONFIG_DTLK is not set ··· 751 # 752 # Dallas's 1-wire bus 753 # 754 755 # 756 # Hardware Monitoring support ··· 767 # Multimedia devices 768 # 769 # CONFIG_VIDEO_DEV is not set 770 + CONFIG_VIDEO_V4L2=y 771 772 # 773 # Digital Video Broadcasting Devices ··· 777 # 778 # Graphics support 779 # 780 + # CONFIG_FIRMWARE_EDID is not set 781 CONFIG_FB=y 782 CONFIG_FB_CFB_FILLRECT=y 783 CONFIG_FB_CFB_COPYAREA=y 784 CONFIG_FB_CFB_IMAGEBLIT=y 785 # CONFIG_FB_MACMODES is not set 786 + # CONFIG_FB_BACKLIGHT is not set 787 # CONFIG_FB_MODE_HELPERS is not set 788 # CONFIG_FB_TILEBLITTING is not set 789 # CONFIG_FB_CIRRUS is not set ··· 848 CONFIG_USB_EHCI_HCD=m 849 # CONFIG_USB_EHCI_SPLIT_ISO is not set 850 # CONFIG_USB_EHCI_ROOT_HUB_TT is not set 851 + # CONFIG_USB_EHCI_TT_NEWSCHED is not set 852 # CONFIG_USB_ISP116X_HCD is not set 853 CONFIG_USB_OHCI_HCD=m 854 # CONFIG_USB_OHCI_BIG_ENDIAN is not set ··· 943 # CONFIG_USB_LEGOTOWER is not set 944 # CONFIG_USB_LCD is not set 945 # CONFIG_USB_LED is not set 946 + # CONFIG_USB_CY7C63 is not set 947 # CONFIG_USB_CYTHERM is not set 948 # CONFIG_USB_PHIDGETKIT is not set 949 # CONFIG_USB_PHIDGETSERVO is not set 950 # CONFIG_USB_IDMOUSE is not set 951 + # CONFIG_USB_APPLEDISPLAY is not set 952 # CONFIG_USB_SISUSBVGA is not set 953 # CONFIG_USB_LD is not set 954 ··· 992 # CONFIG_RTC_CLASS is not set 993 994 # 995 + # DMA Engine support 996 + # 997 + # CONFIG_DMA_ENGINE is not set 998 + 999 + # 1000 + # DMA Clients 1001 + # 1002 + 1003 + # 1004 + # DMA Devices 1005 + # 1006 + 1007 + # 1008 # File systems 1009 # 1010 CONFIG_EXT2_FS=y ··· 1016 # CONFIG_MINIX_FS is not set 1017 CONFIG_ROMFS_FS=m 1018 CONFIG_INOTIFY=y 1019 + CONFIG_INOTIFY_USER=y 1020 # CONFIG_QUOTA is not set 1021 CONFIG_QUOTACTL=y 1022 # CONFIG_DNOTIFY is not set ··· 1082 # CONFIG_RPCSEC_GSS_SPKM3 is not set 1083 # CONFIG_SMB_FS is not set 1084 # CONFIG_CIFS is not set 1085 + # CONFIG_CIFS_DEBUG2 is not set 1086 # CONFIG_NCP_FS is not set 1087 # CONFIG_CODA_FS is not set 1088 # CONFIG_AFS_FS is not set ··· 1108 # 1109 # CONFIG_PRINTK_TIME is not set 1110 # CONFIG_MAGIC_SYSRQ is not set 1111 + # CONFIG_UNUSED_SYMBOLS is not set 1112 # CONFIG_DEBUG_KERNEL is not set 1113 CONFIG_LOG_BUF_SHIFT=14 1114 # CONFIG_DEBUG_FS is not set ··· 1137 CONFIG_CRC32=y 1138 # CONFIG_LIBCRC32C is not set 1139 CONFIG_ZLIB_INFLATE=m 1140 + CONFIG_PLIST=y
+41 -3
arch/mips/configs/workpad_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Tue Apr 25 00:09:33 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 CONFIG_MACH_VR41XX=y 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 74 CONFIG_GENERIC_FIND_NEXT_BIT=y 75 CONFIG_GENERIC_HWEIGHT=y 76 CONFIG_GENERIC_CALIBRATE_DELAY=y 77 CONFIG_DMA_NONCOHERENT=y 78 CONFIG_DMA_NEED_PCI_MAP_STATE=y 79 # CONFIG_CPU_BIG_ENDIAN is not set ··· 119 # CONFIG_PAGE_SIZE_8KB is not set 120 # CONFIG_PAGE_SIZE_16KB is not set 121 # CONFIG_PAGE_SIZE_64KB is not set 122 - # CONFIG_MIPS_MT is not set 123 CONFIG_CPU_HAS_SYNC=y 124 CONFIG_GENERIC_HARDIRQS=y 125 CONFIG_GENERIC_IRQ_PROBE=y ··· 135 CONFIG_FLAT_NODE_MEM_MAP=y 136 # CONFIG_SPARSEMEM_STATIC is not set 137 CONFIG_SPLIT_PTLOCK_CPUS=4 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 152 # 153 # Code maturity level options ··· 180 CONFIG_BUG=y 181 CONFIG_ELF_CORE=y 182 CONFIG_BASE_FULL=y 183 CONFIG_FUTEX=y 184 CONFIG_EPOLL=y 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set ··· 284 # CONFIG_INET_IPCOMP is not set 285 # CONFIG_INET_XFRM_TUNNEL is not set 286 # CONFIG_INET_TUNNEL is not set 287 CONFIG_INET_DIAG=y 288 CONFIG_INET_TCP_DIAG=y 289 # CONFIG_TCP_CONG_ADVANCED is not set ··· 293 # CONFIG_IPV6 is not set 294 # CONFIG_INET6_XFRM_TUNNEL is not set 295 # CONFIG_INET6_TUNNEL is not set 296 # CONFIG_NETFILTER is not set 297 298 # ··· 348 CONFIG_STANDALONE=y 349 CONFIG_PREVENT_FIRMWARE_BUILD=y 350 CONFIG_FW_LOADER=y 351 352 # 353 # Connector - unified userspace <-> kernelspace linker ··· 467 CONFIG_QSEMI_PHY=m 468 CONFIG_LXT_PHY=m 469 CONFIG_CICADA_PHY=m 470 471 # 472 # Ethernet (10 or 100Mbit) ··· 603 CONFIG_VT=y 604 CONFIG_VT_CONSOLE=y 605 CONFIG_HW_CONSOLE=y 606 # CONFIG_SERIAL_NONSTANDARD is not set 607 608 # ··· 631 # Watchdog Cards 632 # 633 # CONFIG_WATCHDOG is not set 634 # CONFIG_RTC is not set 635 # CONFIG_GEN_RTC is not set 636 # CONFIG_DTLK is not set ··· 686 # Multimedia devices 687 # 688 # CONFIG_VIDEO_DEV is not set 689 690 # 691 # Digital Video Broadcasting Devices ··· 696 # 697 # Graphics support 698 # 699 # CONFIG_FB is not set 700 701 # ··· 759 # CONFIG_RTC_CLASS is not set 760 761 # 762 # File systems 763 # 764 CONFIG_EXT2_FS=y ··· 789 # CONFIG_MINIX_FS is not set 790 # CONFIG_ROMFS_FS is not set 791 CONFIG_INOTIFY=y 792 # CONFIG_QUOTA is not set 793 CONFIG_DNOTIFY=y 794 # CONFIG_AUTOFS_FS is not set ··· 855 # CONFIG_RPCSEC_GSS_SPKM3 is not set 856 # CONFIG_SMB_FS is not set 857 # CONFIG_CIFS is not set 858 # CONFIG_NCP_FS is not set 859 # CONFIG_CODA_FS is not set 860 # CONFIG_AFS_FS is not set ··· 882 # 883 # CONFIG_PRINTK_TIME is not set 884 # CONFIG_MAGIC_SYSRQ is not set 885 # CONFIG_DEBUG_KERNEL is not set 886 CONFIG_LOG_BUF_SHIFT=14 887 # CONFIG_DEBUG_FS is not set ··· 911 # CONFIG_CRC16 is not set 912 CONFIG_CRC32=y 913 # CONFIG_LIBCRC32C is not set
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 CONFIG_MACH_VR41XX=y 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 71 CONFIG_GENERIC_FIND_NEXT_BIT=y 72 CONFIG_GENERIC_HWEIGHT=y 73 CONFIG_GENERIC_CALIBRATE_DELAY=y 74 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 75 CONFIG_DMA_NONCOHERENT=y 76 CONFIG_DMA_NEED_PCI_MAP_STATE=y 77 # CONFIG_CPU_BIG_ENDIAN is not set ··· 115 # CONFIG_PAGE_SIZE_8KB is not set 116 # CONFIG_PAGE_SIZE_16KB is not set 117 # CONFIG_PAGE_SIZE_64KB is not set 118 + CONFIG_MIPS_MT_DISABLED=y 119 + # CONFIG_MIPS_MT_SMTC is not set 120 + # CONFIG_MIPS_MT_SMP is not set 121 + # CONFIG_MIPS_VPE_LOADER is not set 122 CONFIG_CPU_HAS_SYNC=y 123 CONFIG_GENERIC_HARDIRQS=y 124 CONFIG_GENERIC_IRQ_PROBE=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 # CONFIG_HZ_48 is not set 133 # CONFIG_HZ_100 is not set 134 # CONFIG_HZ_128 is not set ··· 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 144 145 # 146 # Code maturity level options ··· 171 CONFIG_BUG=y 172 CONFIG_ELF_CORE=y 173 CONFIG_BASE_FULL=y 174 + CONFIG_RT_MUTEXES=y 175 CONFIG_FUTEX=y 176 CONFIG_EPOLL=y 177 CONFIG_SHMEM=y 178 CONFIG_SLAB=y 179 + CONFIG_VM_EVENT_COUNTERS=y 180 # CONFIG_TINY_SHMEM is not set 181 CONFIG_BASE_SMALL=0 182 # CONFIG_SLOB is not set ··· 273 # CONFIG_INET_IPCOMP is not set 274 # CONFIG_INET_XFRM_TUNNEL is not set 275 # CONFIG_INET_TUNNEL is not set 276 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 277 + CONFIG_INET_XFRM_MODE_TUNNEL=m 278 CONFIG_INET_DIAG=y 279 CONFIG_INET_TCP_DIAG=y 280 # CONFIG_TCP_CONG_ADVANCED is not set ··· 280 # CONFIG_IPV6 is not set 281 # CONFIG_INET6_XFRM_TUNNEL is not set 282 # CONFIG_INET6_TUNNEL is not set 283 + CONFIG_NETWORK_SECMARK=y 284 # CONFIG_NETFILTER is not set 285 286 # ··· 334 CONFIG_STANDALONE=y 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 CONFIG_FW_LOADER=y 337 + # CONFIG_SYS_HYPERVISOR is not set 338 339 # 340 # Connector - unified userspace <-> kernelspace linker ··· 452 CONFIG_QSEMI_PHY=m 453 CONFIG_LXT_PHY=m 454 CONFIG_CICADA_PHY=m 455 + CONFIG_VITESSE_PHY=m 456 + CONFIG_SMSC_PHY=m 457 458 # 459 # Ethernet (10 or 100Mbit) ··· 586 CONFIG_VT=y 587 CONFIG_VT_CONSOLE=y 588 CONFIG_HW_CONSOLE=y 589 + CONFIG_VT_HW_CONSOLE_BINDING=y 590 # CONFIG_SERIAL_NONSTANDARD is not set 591 592 # ··· 613 # Watchdog Cards 614 # 615 # CONFIG_WATCHDOG is not set 616 + # CONFIG_HW_RANDOM is not set 617 # CONFIG_RTC is not set 618 # CONFIG_GEN_RTC is not set 619 # CONFIG_DTLK is not set ··· 667 # Multimedia devices 668 # 669 # CONFIG_VIDEO_DEV is not set 670 + CONFIG_VIDEO_V4L2=y 671 672 # 673 # Digital Video Broadcasting Devices ··· 676 # 677 # Graphics support 678 # 679 + # CONFIG_FIRMWARE_EDID is not set 680 # CONFIG_FB is not set 681 682 # ··· 738 # CONFIG_RTC_CLASS is not set 739 740 # 741 + # DMA Engine support 742 + # 743 + # CONFIG_DMA_ENGINE is not set 744 + 745 + # 746 + # DMA Clients 747 + # 748 + 749 + # 750 + # DMA Devices 751 + # 752 + 753 + # 754 # File systems 755 # 756 CONFIG_EXT2_FS=y ··· 755 # CONFIG_MINIX_FS is not set 756 # CONFIG_ROMFS_FS is not set 757 CONFIG_INOTIFY=y 758 + CONFIG_INOTIFY_USER=y 759 # CONFIG_QUOTA is not set 760 CONFIG_DNOTIFY=y 761 # CONFIG_AUTOFS_FS is not set ··· 820 # CONFIG_RPCSEC_GSS_SPKM3 is not set 821 # CONFIG_SMB_FS is not set 822 # CONFIG_CIFS is not set 823 + # CONFIG_CIFS_DEBUG2 is not set 824 # CONFIG_NCP_FS is not set 825 # CONFIG_CODA_FS is not set 826 # CONFIG_AFS_FS is not set ··· 846 # 847 # CONFIG_PRINTK_TIME is not set 848 # CONFIG_MAGIC_SYSRQ is not set 849 + # CONFIG_UNUSED_SYMBOLS is not set 850 # CONFIG_DEBUG_KERNEL is not set 851 CONFIG_LOG_BUF_SHIFT=14 852 # CONFIG_DEBUG_FS is not set ··· 874 # CONFIG_CRC16 is not set 875 CONFIG_CRC32=y 876 # CONFIG_LIBCRC32C is not set 877 + CONFIG_PLIST=y
+72 -16
arch/mips/configs/wrppmc_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.16.11 4 - # Fri May 5 17:11:22 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 65 # CONFIG_TOSHIBA_RBTX4927 is not set 66 # CONFIG_TOSHIBA_RBTX4938 is not set 67 CONFIG_RWSEM_GENERIC_SPINLOCK=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 CONFIG_DMA_NONCOHERENT=y 70 CONFIG_DMA_NEED_PCI_MAP_STATE=y 71 CONFIG_CPU_BIG_ENDIAN=y ··· 124 # CONFIG_PAGE_SIZE_16KB is not set 125 # CONFIG_PAGE_SIZE_64KB is not set 126 CONFIG_CPU_HAS_PREFETCH=y 127 - # CONFIG_MIPS_MT is not set 128 # CONFIG_64BIT_PHYS_ADDR is not set 129 - # CONFIG_CPU_ADVANCED is not set 130 CONFIG_CPU_HAS_LLSC=y 131 CONFIG_CPU_HAS_SYNC=y 132 CONFIG_GENERIC_HARDIRQS=y ··· 143 CONFIG_FLAT_NODE_MEM_MAP=y 144 # CONFIG_SPARSEMEM_STATIC is not set 145 CONFIG_SPLIT_PTLOCK_CPUS=4 146 # CONFIG_HZ_48 is not set 147 # CONFIG_HZ_100 is not set 148 # CONFIG_HZ_128 is not set ··· 156 CONFIG_PREEMPT_NONE=y 157 # CONFIG_PREEMPT_VOLUNTARY is not set 158 # CONFIG_PREEMPT is not set 159 160 # 161 # Code maturity level options ··· 178 CONFIG_SYSCTL=y 179 # CONFIG_AUDIT is not set 180 # CONFIG_IKCONFIG is not set 181 CONFIG_INITRAMFS_SOURCE="" 182 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 183 CONFIG_EMBEDDED=y ··· 189 CONFIG_BUG=y 190 CONFIG_ELF_CORE=y 191 CONFIG_BASE_FULL=y 192 CONFIG_FUTEX=y 193 # CONFIG_EPOLL is not set 194 CONFIG_SHMEM=y 195 - CONFIG_CC_ALIGN_FUNCTIONS=0 196 - CONFIG_CC_ALIGN_LABELS=0 197 - CONFIG_CC_ALIGN_LOOPS=0 198 - CONFIG_CC_ALIGN_JUMPS=0 199 CONFIG_SLAB=y 200 # CONFIG_TINY_SHMEM is not set 201 CONFIG_BASE_SMALL=0 202 # CONFIG_SLOB is not set ··· 205 CONFIG_MODULES=y 206 CONFIG_MODULE_UNLOAD=y 207 # CONFIG_MODULE_FORCE_UNLOAD is not set 208 - CONFIG_OBSOLETE_MODPARM=y 209 CONFIG_MODVERSIONS=y 210 CONFIG_MODULE_SRCVERSION_ALL=y 211 # CONFIG_KMOD is not set ··· 213 # Block layer 214 # 215 # CONFIG_LBD is not set 216 217 # 218 # IO Schedulers ··· 234 # 235 CONFIG_HW_HAS_PCI=y 236 CONFIG_PCI=y 237 - CONFIG_PCI_LEGACY_PROC=y 238 CONFIG_MMU=y 239 240 # ··· 268 CONFIG_PACKET=y 269 CONFIG_PACKET_MMAP=y 270 CONFIG_UNIX=y 271 # CONFIG_NET_KEY is not set 272 CONFIG_INET=y 273 CONFIG_IP_MULTICAST=y ··· 289 # CONFIG_INET_AH is not set 290 # CONFIG_INET_ESP is not set 291 # CONFIG_INET_IPCOMP is not set 292 # CONFIG_INET_TUNNEL is not set 293 CONFIG_INET_DIAG=y 294 CONFIG_INET_TCP_DIAG=y 295 # CONFIG_TCP_CONG_ADVANCED is not set 296 CONFIG_TCP_CONG_BIC=y 297 # CONFIG_IPV6 is not set 298 # CONFIG_NETFILTER is not set 299 300 # ··· 354 CONFIG_STANDALONE=y 355 CONFIG_PREVENT_FIRMWARE_BUILD=y 356 # CONFIG_FW_LOADER is not set 357 358 # 359 # Connector - unified userspace <-> kernelspace linker ··· 451 # CONFIG_QSEMI_PHY is not set 452 # CONFIG_LXT_PHY is not set 453 # CONFIG_CICADA_PHY is not set 454 455 # 456 # Ethernet (10 or 100Mbit) ··· 515 # CONFIG_CHELSIO_T1 is not set 516 # CONFIG_IXGB is not set 517 # CONFIG_S2IO is not set 518 519 # 520 # Token Ring devices ··· 572 # 573 CONFIG_SERIAL_8250=y 574 CONFIG_SERIAL_8250_CONSOLE=y 575 CONFIG_SERIAL_8250_NR_UARTS=1 576 CONFIG_SERIAL_8250_RUNTIME_UARTS=1 577 # CONFIG_SERIAL_8250_EXTENDED is not set ··· 596 # Watchdog Cards 597 # 598 # CONFIG_WATCHDOG is not set 599 CONFIG_RTC=y 600 # CONFIG_DTLK is not set 601 # CONFIG_R3964 is not set ··· 628 # 629 # Dallas's 1-wire bus 630 # 631 - # CONFIG_W1 is not set 632 633 # 634 # Hardware Monitoring support 635 # 636 CONFIG_HWMON=y 637 # CONFIG_HWMON_VID is not set 638 # CONFIG_SENSORS_F71805F is not set 639 # CONFIG_HWMON_DEBUG_CHIP is not set 640 ··· 643 # 644 645 # 646 - # Multimedia Capabilities Port drivers 647 - # 648 - 649 - # 650 # Multimedia devices 651 # 652 # CONFIG_VIDEO_DEV is not set 653 654 # 655 # Digital Video Broadcasting Devices ··· 656 # 657 # Graphics support 658 # 659 # CONFIG_FB is not set 660 661 # ··· 669 # 670 CONFIG_USB_ARCH_HAS_HCD=y 671 CONFIG_USB_ARCH_HAS_OHCI=y 672 # CONFIG_USB is not set 673 674 # ··· 687 # CONFIG_MMC is not set 688 689 # 690 # InfiniBand support 691 # 692 # CONFIG_INFINIBAND is not set 693 694 # 695 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) 696 # 697 698 # ··· 739 # CONFIG_MINIX_FS is not set 740 # CONFIG_ROMFS_FS is not set 741 CONFIG_INOTIFY=y 742 # CONFIG_QUOTA is not set 743 CONFIG_DNOTIFY=y 744 # CONFIG_AUTOFS_FS is not set ··· 768 CONFIG_TMPFS=y 769 # CONFIG_HUGETLB_PAGE is not set 770 CONFIG_RAMFS=y 771 - # CONFIG_RELAYFS_FS is not set 772 # CONFIG_CONFIGFS_FS is not set 773 774 # ··· 805 # CONFIG_RPCSEC_GSS_SPKM3 is not set 806 # CONFIG_SMB_FS is not set 807 # CONFIG_CIFS is not set 808 # CONFIG_NCP_FS is not set 809 # CONFIG_CODA_FS is not set 810 # CONFIG_AFS_FS is not set ··· 832 # 833 # CONFIG_PRINTK_TIME is not set 834 # CONFIG_MAGIC_SYSRQ is not set 835 # CONFIG_DEBUG_KERNEL is not set 836 CONFIG_LOG_BUF_SHIFT=14 837 CONFIG_CROSSCOMPILE=y 838 CONFIG_CMDLINE="console=ttyS0,115200n8" 839 ··· 861 CONFIG_CRC16=y 862 CONFIG_CRC32=y 863 CONFIG_LIBCRC32C=y
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 46 # CONFIG_MACH_VR41XX is not set 47 # CONFIG_PMC_YOSEMITE is not set 48 # CONFIG_QEMU is not set 49 + # CONFIG_MARKEINS is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 63 # CONFIG_TOSHIBA_RBTX4927 is not set 64 # CONFIG_TOSHIBA_RBTX4938 is not set 65 CONFIG_RWSEM_GENERIC_SPINLOCK=y 66 + CONFIG_GENERIC_FIND_NEXT_BIT=y 67 + CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y 72 CONFIG_CPU_BIG_ENDIAN=y ··· 119 # CONFIG_PAGE_SIZE_16KB is not set 120 # CONFIG_PAGE_SIZE_64KB is not set 121 CONFIG_CPU_HAS_PREFETCH=y 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y 129 CONFIG_GENERIC_HARDIRQS=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 + # CONFIG_RESOURCES_64BIT is not set 140 # CONFIG_HZ_48 is not set 141 # CONFIG_HZ_100 is not set 142 # CONFIG_HZ_128 is not set ··· 148 CONFIG_PREEMPT_NONE=y 149 # CONFIG_PREEMPT_VOLUNTARY is not set 150 # CONFIG_PREEMPT is not set 151 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 152 153 # 154 # Code maturity level options ··· 169 CONFIG_SYSCTL=y 170 # CONFIG_AUDIT is not set 171 # CONFIG_IKCONFIG is not set 172 + # CONFIG_RELAY is not set 173 CONFIG_INITRAMFS_SOURCE="" 174 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 175 CONFIG_EMBEDDED=y ··· 179 CONFIG_BUG=y 180 CONFIG_ELF_CORE=y 181 CONFIG_BASE_FULL=y 182 + CONFIG_RT_MUTEXES=y 183 CONFIG_FUTEX=y 184 # CONFIG_EPOLL is not set 185 CONFIG_SHMEM=y 186 CONFIG_SLAB=y 187 + CONFIG_VM_EVENT_COUNTERS=y 188 # CONFIG_TINY_SHMEM is not set 189 CONFIG_BASE_SMALL=0 190 # CONFIG_SLOB is not set ··· 197 CONFIG_MODULES=y 198 CONFIG_MODULE_UNLOAD=y 199 # CONFIG_MODULE_FORCE_UNLOAD is not set 200 CONFIG_MODVERSIONS=y 201 CONFIG_MODULE_SRCVERSION_ALL=y 202 # CONFIG_KMOD is not set ··· 206 # Block layer 207 # 208 # CONFIG_LBD is not set 209 + # CONFIG_BLK_DEV_IO_TRACE is not set 210 + # CONFIG_LSF is not set 211 212 # 213 # IO Schedulers ··· 225 # 226 CONFIG_HW_HAS_PCI=y 227 CONFIG_PCI=y 228 CONFIG_MMU=y 229 230 # ··· 260 CONFIG_PACKET=y 261 CONFIG_PACKET_MMAP=y 262 CONFIG_UNIX=y 263 + CONFIG_XFRM=y 264 + # CONFIG_XFRM_USER is not set 265 # CONFIG_NET_KEY is not set 266 CONFIG_INET=y 267 CONFIG_IP_MULTICAST=y ··· 279 # CONFIG_INET_AH is not set 280 # CONFIG_INET_ESP is not set 281 # CONFIG_INET_IPCOMP is not set 282 + # CONFIG_INET_XFRM_TUNNEL is not set 283 # CONFIG_INET_TUNNEL is not set 284 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 285 + CONFIG_INET_XFRM_MODE_TUNNEL=m 286 CONFIG_INET_DIAG=y 287 CONFIG_INET_TCP_DIAG=y 288 # CONFIG_TCP_CONG_ADVANCED is not set 289 CONFIG_TCP_CONG_BIC=y 290 # CONFIG_IPV6 is not set 291 + # CONFIG_INET6_XFRM_TUNNEL is not set 292 + # CONFIG_INET6_TUNNEL is not set 293 + CONFIG_NETWORK_SECMARK=y 294 # CONFIG_NETFILTER is not set 295 296 # ··· 338 CONFIG_STANDALONE=y 339 CONFIG_PREVENT_FIRMWARE_BUILD=y 340 # CONFIG_FW_LOADER is not set 341 + # CONFIG_SYS_HYPERVISOR is not set 342 343 # 344 # Connector - unified userspace <-> kernelspace linker ··· 434 # CONFIG_QSEMI_PHY is not set 435 # CONFIG_LXT_PHY is not set 436 # CONFIG_CICADA_PHY is not set 437 + CONFIG_VITESSE_PHY=m 438 + CONFIG_SMSC_PHY=m 439 440 # 441 # Ethernet (10 or 100Mbit) ··· 496 # CONFIG_CHELSIO_T1 is not set 497 # CONFIG_IXGB is not set 498 # CONFIG_S2IO is not set 499 + # CONFIG_MYRI10GE is not set 500 501 # 502 # Token Ring devices ··· 552 # 553 CONFIG_SERIAL_8250=y 554 CONFIG_SERIAL_8250_CONSOLE=y 555 + CONFIG_SERIAL_8250_PCI=y 556 CONFIG_SERIAL_8250_NR_UARTS=1 557 CONFIG_SERIAL_8250_RUNTIME_UARTS=1 558 # CONFIG_SERIAL_8250_EXTENDED is not set ··· 575 # Watchdog Cards 576 # 577 # CONFIG_WATCHDOG is not set 578 + # CONFIG_HW_RANDOM is not set 579 CONFIG_RTC=y 580 # CONFIG_DTLK is not set 581 # CONFIG_R3964 is not set ··· 606 # 607 # Dallas's 1-wire bus 608 # 609 610 # 611 # Hardware Monitoring support 612 # 613 CONFIG_HWMON=y 614 # CONFIG_HWMON_VID is not set 615 + # CONFIG_SENSORS_ABITUGURU is not set 616 # CONFIG_SENSORS_F71805F is not set 617 # CONFIG_HWMON_DEBUG_CHIP is not set 618 ··· 621 # 622 623 # 624 # Multimedia devices 625 # 626 # CONFIG_VIDEO_DEV is not set 627 + CONFIG_VIDEO_V4L2=y 628 629 # 630 # Digital Video Broadcasting Devices ··· 637 # 638 # Graphics support 639 # 640 + # CONFIG_FIRMWARE_EDID is not set 641 # CONFIG_FB is not set 642 643 # ··· 649 # 650 CONFIG_USB_ARCH_HAS_HCD=y 651 CONFIG_USB_ARCH_HAS_OHCI=y 652 + CONFIG_USB_ARCH_HAS_EHCI=y 653 # CONFIG_USB is not set 654 655 # ··· 666 # CONFIG_MMC is not set 667 668 # 669 + # LED devices 670 + # 671 + # CONFIG_NEW_LEDS is not set 672 + 673 + # 674 + # LED drivers 675 + # 676 + 677 + # 678 + # LED Triggers 679 + # 680 + 681 + # 682 # InfiniBand support 683 # 684 # CONFIG_INFINIBAND is not set 685 686 # 687 # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) 688 + # 689 + 690 + # 691 + # Real Time Clock 692 + # 693 + # CONFIG_RTC_CLASS is not set 694 + 695 + # 696 + # DMA Engine support 697 + # 698 + # CONFIG_DMA_ENGINE is not set 699 + 700 + # 701 + # DMA Clients 702 + # 703 + 704 + # 705 + # DMA Devices 706 # 707 708 # ··· 687 # CONFIG_MINIX_FS is not set 688 # CONFIG_ROMFS_FS is not set 689 CONFIG_INOTIFY=y 690 + CONFIG_INOTIFY_USER=y 691 # CONFIG_QUOTA is not set 692 CONFIG_DNOTIFY=y 693 # CONFIG_AUTOFS_FS is not set ··· 715 CONFIG_TMPFS=y 716 # CONFIG_HUGETLB_PAGE is not set 717 CONFIG_RAMFS=y 718 # CONFIG_CONFIGFS_FS is not set 719 720 # ··· 753 # CONFIG_RPCSEC_GSS_SPKM3 is not set 754 # CONFIG_SMB_FS is not set 755 # CONFIG_CIFS is not set 756 + # CONFIG_CIFS_DEBUG2 is not set 757 # CONFIG_NCP_FS is not set 758 # CONFIG_CODA_FS is not set 759 # CONFIG_AFS_FS is not set ··· 779 # 780 # CONFIG_PRINTK_TIME is not set 781 # CONFIG_MAGIC_SYSRQ is not set 782 + # CONFIG_UNUSED_SYMBOLS is not set 783 # CONFIG_DEBUG_KERNEL is not set 784 CONFIG_LOG_BUF_SHIFT=14 785 + # CONFIG_DEBUG_FS is not set 786 CONFIG_CROSSCOMPILE=y 787 CONFIG_CMDLINE="console=ttyS0,115200n8" 788 ··· 806 CONFIG_CRC16=y 807 CONFIG_CRC32=y 808 CONFIG_LIBCRC32C=y 809 + CONFIG_PLIST=y
+52 -6
arch/mips/configs/yosemite_defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:51:20 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 CONFIG_PMC_YOSEMITE=y 49 # CONFIG_QEMU is not set 50 # CONFIG_SGI_IP22 is not set 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 69 CONFIG_GENERIC_FIND_NEXT_BIT=y 70 CONFIG_GENERIC_HWEIGHT=y 71 CONFIG_GENERIC_CALIBRATE_DELAY=y 72 CONFIG_DMA_COHERENT=y 73 CONFIG_CPU_BIG_ENDIAN=y 74 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 118 # CONFIG_PAGE_SIZE_16KB is not set 119 # CONFIG_PAGE_SIZE_64KB is not set 120 CONFIG_CPU_HAS_PREFETCH=y 121 - # CONFIG_MIPS_MT is not set 122 # CONFIG_64BIT_PHYS_ADDR is not set 123 CONFIG_CPU_HAS_LLSC=y 124 CONFIG_CPU_HAS_SYNC=y 125 CONFIG_GENERIC_HARDIRQS=y 126 CONFIG_GENERIC_IRQ_PROBE=y 127 CONFIG_HIGHMEM=y 128 CONFIG_CPU_SUPPORTS_HIGHMEM=y 129 CONFIG_SYS_SUPPORTS_HIGHMEM=y ··· 136 CONFIG_FLAT_NODE_MEM_MAP=y 137 # CONFIG_SPARSEMEM_STATIC is not set 138 CONFIG_SPLIT_PTLOCK_CPUS=4 139 # CONFIG_HZ_48 is not set 140 # CONFIG_HZ_100 is not set 141 # CONFIG_HZ_128 is not set ··· 149 # CONFIG_HZ_1024 is not set 150 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 151 CONFIG_HZ=1000 152 - CONFIG_SMP=y 153 - CONFIG_NR_CPUS=2 154 CONFIG_PREEMPT_NONE=y 155 # CONFIG_PREEMPT_VOLUNTARY is not set 156 # CONFIG_PREEMPT is not set 157 CONFIG_PREEMPT_BKL=y 158 159 # 160 # Code maturity level options ··· 186 CONFIG_BUG=y 187 CONFIG_ELF_CORE=y 188 CONFIG_BASE_FULL=y 189 CONFIG_FUTEX=y 190 CONFIG_EPOLL=y 191 CONFIG_SHMEM=y 192 CONFIG_SLAB=y 193 # CONFIG_TINY_SHMEM is not set 194 CONFIG_BASE_SMALL=0 195 # CONFIG_SLOB is not set ··· 281 # CONFIG_INET_IPCOMP is not set 282 # CONFIG_INET_XFRM_TUNNEL is not set 283 # CONFIG_INET_TUNNEL is not set 284 CONFIG_INET_DIAG=y 285 CONFIG_INET_TCP_DIAG=y 286 # CONFIG_TCP_CONG_ADVANCED is not set ··· 295 CONFIG_INET6_IPCOMP=m 296 CONFIG_INET6_XFRM_TUNNEL=m 297 CONFIG_INET6_TUNNEL=m 298 CONFIG_IPV6_TUNNEL=m 299 # CONFIG_NETFILTER is not set 300 # CONFIG_BRIDGE is not set 301 # CONFIG_VLAN_8021Q is not set ··· 335 CONFIG_PREVENT_FIRMWARE_BUILD=y 336 CONFIG_FW_LOADER=m 337 # CONFIG_DEBUG_DRIVER is not set 338 339 # 340 # Connector - unified userspace <-> kernelspace linker ··· 430 CONFIG_QSEMI_PHY=m 431 CONFIG_LXT_PHY=m 432 CONFIG_CICADA_PHY=m 433 434 # 435 # Ethernet (10 or 100Mbit) ··· 473 # CONFIG_CHELSIO_T1 is not set 474 # CONFIG_IXGB is not set 475 # CONFIG_S2IO is not set 476 477 # 478 # Token Ring devices ··· 551 # Watchdog Cards 552 # 553 # CONFIG_WATCHDOG is not set 554 # CONFIG_RTC is not set 555 CONFIG_GEN_RTC=y 556 CONFIG_GEN_RTC_X=y ··· 599 # Multimedia devices 600 # 601 # CONFIG_VIDEO_DEV is not set 602 603 # 604 # Digital Video Broadcasting Devices ··· 609 # 610 # Graphics support 611 # 612 # CONFIG_FB is not set 613 614 # ··· 666 # 667 668 # 669 # File systems 670 # 671 # CONFIG_EXT2_FS is not set ··· 690 # CONFIG_MINIX_FS is not set 691 # CONFIG_ROMFS_FS is not set 692 CONFIG_INOTIFY=y 693 # CONFIG_QUOTA is not set 694 CONFIG_DNOTIFY=y 695 # CONFIG_AUTOFS_FS is not set ··· 743 CONFIG_SUNRPC=y 744 # CONFIG_SMB_FS is not set 745 # CONFIG_CIFS is not set 746 # CONFIG_NCP_FS is not set 747 # CONFIG_CODA_FS is not set 748 ··· 763 # 764 # CONFIG_PRINTK_TIME is not set 765 # CONFIG_MAGIC_SYSRQ is not set 766 CONFIG_DEBUG_KERNEL=y 767 CONFIG_LOG_BUF_SHIFT=14 768 CONFIG_DETECT_SOFTLOCKUP=y 769 # CONFIG_SCHEDSTATS is not set 770 # CONFIG_DEBUG_SLAB is not set 771 - CONFIG_DEBUG_MUTEXES=y 772 # CONFIG_DEBUG_SPINLOCK is not set 773 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 774 # CONFIG_DEBUG_KOBJECT is not set 775 # CONFIG_DEBUG_HIGHMEM is not set 776 # CONFIG_DEBUG_INFO is not set ··· 838 CONFIG_LIBCRC32C=m 839 CONFIG_ZLIB_INFLATE=m 840 CONFIG_ZLIB_DEFLATE=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 10:04:21 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 CONFIG_PMC_YOSEMITE=y 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 # CONFIG_SGI_IP22 is not set 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 66 CONFIG_GENERIC_FIND_NEXT_BIT=y 67 CONFIG_GENERIC_HWEIGHT=y 68 CONFIG_GENERIC_CALIBRATE_DELAY=y 69 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 70 CONFIG_DMA_COHERENT=y 71 CONFIG_CPU_BIG_ENDIAN=y 72 # CONFIG_CPU_LITTLE_ENDIAN is not set ··· 114 # CONFIG_PAGE_SIZE_16KB is not set 115 # CONFIG_PAGE_SIZE_64KB is not set 116 CONFIG_CPU_HAS_PREFETCH=y 117 + CONFIG_MIPS_MT_DISABLED=y 118 + # CONFIG_MIPS_MT_SMTC is not set 119 + # CONFIG_MIPS_MT_SMP is not set 120 + # CONFIG_MIPS_VPE_LOADER is not set 121 # CONFIG_64BIT_PHYS_ADDR is not set 122 CONFIG_CPU_HAS_LLSC=y 123 CONFIG_CPU_HAS_SYNC=y 124 CONFIG_GENERIC_HARDIRQS=y 125 CONFIG_GENERIC_IRQ_PROBE=y 126 + CONFIG_IRQ_PER_CPU=y 127 CONFIG_HIGHMEM=y 128 CONFIG_CPU_SUPPORTS_HIGHMEM=y 129 CONFIG_SYS_SUPPORTS_HIGHMEM=y ··· 128 CONFIG_FLAT_NODE_MEM_MAP=y 129 # CONFIG_SPARSEMEM_STATIC is not set 130 CONFIG_SPLIT_PTLOCK_CPUS=4 131 + # CONFIG_RESOURCES_64BIT is not set 132 + CONFIG_SMP=y 133 + CONFIG_SYS_SUPPORTS_SMP=y 134 + CONFIG_NR_CPUS=2 135 # CONFIG_HZ_48 is not set 136 # CONFIG_HZ_100 is not set 137 # CONFIG_HZ_128 is not set ··· 137 # CONFIG_HZ_1024 is not set 138 CONFIG_SYS_SUPPORTS_ARBIT_HZ=y 139 CONFIG_HZ=1000 140 CONFIG_PREEMPT_NONE=y 141 # CONFIG_PREEMPT_VOLUNTARY is not set 142 # CONFIG_PREEMPT is not set 143 CONFIG_PREEMPT_BKL=y 144 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 145 146 # 147 # Code maturity level options ··· 175 CONFIG_BUG=y 176 CONFIG_ELF_CORE=y 177 CONFIG_BASE_FULL=y 178 + CONFIG_RT_MUTEXES=y 179 CONFIG_FUTEX=y 180 CONFIG_EPOLL=y 181 CONFIG_SHMEM=y 182 CONFIG_SLAB=y 183 + CONFIG_VM_EVENT_COUNTERS=y 184 # CONFIG_TINY_SHMEM is not set 185 CONFIG_BASE_SMALL=0 186 # CONFIG_SLOB is not set ··· 268 # CONFIG_INET_IPCOMP is not set 269 # CONFIG_INET_XFRM_TUNNEL is not set 270 # CONFIG_INET_TUNNEL is not set 271 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 272 + CONFIG_INET_XFRM_MODE_TUNNEL=m 273 CONFIG_INET_DIAG=y 274 CONFIG_INET_TCP_DIAG=y 275 # CONFIG_TCP_CONG_ADVANCED is not set ··· 280 CONFIG_INET6_IPCOMP=m 281 CONFIG_INET6_XFRM_TUNNEL=m 282 CONFIG_INET6_TUNNEL=m 283 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 284 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 285 CONFIG_IPV6_TUNNEL=m 286 + CONFIG_NETWORK_SECMARK=y 287 # CONFIG_NETFILTER is not set 288 # CONFIG_BRIDGE is not set 289 # CONFIG_VLAN_8021Q is not set ··· 317 CONFIG_PREVENT_FIRMWARE_BUILD=y 318 CONFIG_FW_LOADER=m 319 # CONFIG_DEBUG_DRIVER is not set 320 + # CONFIG_SYS_HYPERVISOR is not set 321 322 # 323 # Connector - unified userspace <-> kernelspace linker ··· 411 CONFIG_QSEMI_PHY=m 412 CONFIG_LXT_PHY=m 413 CONFIG_CICADA_PHY=m 414 + CONFIG_VITESSE_PHY=m 415 + CONFIG_SMSC_PHY=m 416 417 # 418 # Ethernet (10 or 100Mbit) ··· 452 # CONFIG_CHELSIO_T1 is not set 453 # CONFIG_IXGB is not set 454 # CONFIG_S2IO is not set 455 + # CONFIG_MYRI10GE is not set 456 457 # 458 # Token Ring devices ··· 529 # Watchdog Cards 530 # 531 # CONFIG_WATCHDOG is not set 532 + # CONFIG_HW_RANDOM is not set 533 # CONFIG_RTC is not set 534 CONFIG_GEN_RTC=y 535 CONFIG_GEN_RTC_X=y ··· 576 # Multimedia devices 577 # 578 # CONFIG_VIDEO_DEV is not set 579 + CONFIG_VIDEO_V4L2=y 580 581 # 582 # Digital Video Broadcasting Devices ··· 585 # 586 # Graphics support 587 # 588 + # CONFIG_FIRMWARE_EDID is not set 589 # CONFIG_FB is not set 590 591 # ··· 641 # 642 643 # 644 + # DMA Engine support 645 + # 646 + # CONFIG_DMA_ENGINE is not set 647 + 648 + # 649 + # DMA Clients 650 + # 651 + 652 + # 653 + # DMA Devices 654 + # 655 + 656 + # 657 # File systems 658 # 659 # CONFIG_EXT2_FS is not set ··· 652 # CONFIG_MINIX_FS is not set 653 # CONFIG_ROMFS_FS is not set 654 CONFIG_INOTIFY=y 655 + CONFIG_INOTIFY_USER=y 656 # CONFIG_QUOTA is not set 657 CONFIG_DNOTIFY=y 658 # CONFIG_AUTOFS_FS is not set ··· 704 CONFIG_SUNRPC=y 705 # CONFIG_SMB_FS is not set 706 # CONFIG_CIFS is not set 707 + # CONFIG_CIFS_DEBUG2 is not set 708 # CONFIG_NCP_FS is not set 709 # CONFIG_CODA_FS is not set 710 ··· 723 # 724 # CONFIG_PRINTK_TIME is not set 725 # CONFIG_MAGIC_SYSRQ is not set 726 + # CONFIG_UNUSED_SYMBOLS is not set 727 CONFIG_DEBUG_KERNEL=y 728 CONFIG_LOG_BUF_SHIFT=14 729 CONFIG_DETECT_SOFTLOCKUP=y 730 # CONFIG_SCHEDSTATS is not set 731 # CONFIG_DEBUG_SLAB is not set 732 + # CONFIG_DEBUG_RT_MUTEXES is not set 733 + # CONFIG_RT_MUTEX_TESTER is not set 734 # CONFIG_DEBUG_SPINLOCK is not set 735 + CONFIG_DEBUG_MUTEXES=y 736 + # CONFIG_DEBUG_RWSEMS is not set 737 # CONFIG_DEBUG_SPINLOCK_SLEEP is not set 738 + # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set 739 # CONFIG_DEBUG_KOBJECT is not set 740 # CONFIG_DEBUG_HIGHMEM is not set 741 # CONFIG_DEBUG_INFO is not set ··· 793 CONFIG_LIBCRC32C=m 794 CONFIG_ZLIB_INFLATE=m 795 CONFIG_ZLIB_DEFLATE=m 796 + CONFIG_PLIST=y
-1
arch/mips/ddb5xxx/ddb5477/irq.c
··· 74 75 extern void vrc5477_irq_init(u32 base); 76 extern void mips_cpu_irq_init(u32 base); 77 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 78 static struct irqaction irq_cascade = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL }; 79 80 void __init arch_init_irq(void)
··· 74 75 extern void vrc5477_irq_init(u32 base); 76 extern void mips_cpu_irq_init(u32 base); 77 static struct irqaction irq_cascade = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL }; 78 79 void __init arch_init_irq(void)
+1 -1
arch/mips/ddb5xxx/ddb5477/irq_5477.c
··· 89 ll_vrc5477_irq_enable( irq - vrc5477_irq_base); 90 } 91 92 - hw_irq_controller vrc5477_irq_controller = { 93 .typename = "vrc5477_irq", 94 .startup = vrc5477_irq_startup, 95 .shutdown = vrc5477_irq_shutdown,
··· 89 ll_vrc5477_irq_enable( irq - vrc5477_irq_base); 90 } 91 92 + struct irq_chip vrc5477_irq_controller = { 93 .typename = "vrc5477_irq", 94 .startup = vrc5477_irq_startup, 95 .shutdown = vrc5477_irq_shutdown,
+2 -4
arch/mips/ddb5xxx/ddb5477/setup.c
··· 19 #include <linux/sched.h> 20 #include <linux/pci.h> 21 #include <linux/ide.h> 22 #include <linux/fs.h> 23 #include <linux/ioport.h> 24 #include <linux/param.h> /* for HZ */ ··· 147 mips_hpt_frequency = bus_frequency*(i+4)/4; 148 } 149 150 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 151 - 152 - static void __init ddb_timer_setup(struct irqaction *irq) 153 { 154 #if defined(USE_CPU_COUNTER_TIMER) 155 ··· 177 set_io_port_base(KSEG1ADDR(DDB_PCI_IO_BASE)); 178 179 board_time_init = ddb_time_init; 180 - board_timer_setup = ddb_timer_setup; 181 182 _machine_restart = ddb_machine_restart; 183 _machine_halt = ddb_machine_halt;
··· 19 #include <linux/sched.h> 20 #include <linux/pci.h> 21 #include <linux/ide.h> 22 + #include <linux/irq.h> 23 #include <linux/fs.h> 24 #include <linux/ioport.h> 25 #include <linux/param.h> /* for HZ */ ··· 146 mips_hpt_frequency = bus_frequency*(i+4)/4; 147 } 148 149 + void __init plat_timer_setup(struct irqaction *irq) 150 { 151 #if defined(USE_CPU_COUNTER_TIMER) 152 ··· 178 set_io_port_base(KSEG1ADDR(DDB_PCI_IO_BASE)); 179 180 board_time_init = ddb_time_init; 181 182 _machine_restart = ddb_machine_restart; 183 _machine_halt = ddb_machine_halt;
+2 -2
arch/mips/dec/ioasic-irq.c
··· 93 enable_ioasic_irq(irq); 94 } 95 96 - static struct hw_interrupt_type ioasic_irq_type = { 97 .typename = "IO-ASIC", 98 .startup = startup_ioasic_irq, 99 .shutdown = shutdown_ioasic_irq, ··· 121 end_ioasic_irq(irq); 122 } 123 124 - static struct hw_interrupt_type ioasic_dma_irq_type = { 125 .typename = "IO-ASIC-DMA", 126 .startup = startup_ioasic_dma_irq, 127 .shutdown = shutdown_ioasic_dma_irq,
··· 93 enable_ioasic_irq(irq); 94 } 95 96 + static struct irq_chip ioasic_irq_type = { 97 .typename = "IO-ASIC", 98 .startup = startup_ioasic_irq, 99 .shutdown = shutdown_ioasic_irq, ··· 121 end_ioasic_irq(irq); 122 } 123 124 + static struct irq_chip ioasic_dma_irq_type = { 125 .typename = "IO-ASIC-DMA", 126 .startup = startup_ioasic_dma_irq, 127 .shutdown = shutdown_ioasic_dma_irq,
+1 -1
arch/mips/dec/kn02-irq.c
··· 94 enable_kn02_irq(irq); 95 } 96 97 - static struct hw_interrupt_type kn02_irq_type = { 98 .typename = "KN02-CSR", 99 .startup = startup_kn02_irq, 100 .shutdown = shutdown_kn02_irq,
··· 94 enable_kn02_irq(irq); 95 } 96 97 + static struct irq_chip kn02_irq_type = { 98 .typename = "KN02-CSR", 99 .startup = startup_kn02_irq, 100 .shutdown = shutdown_kn02_irq,
-2
arch/mips/dec/setup.c
··· 145 146 147 extern void dec_time_init(void); 148 - extern void dec_timer_setup(struct irqaction *); 149 150 void __init plat_mem_setup(void) 151 { 152 board_be_init = dec_be_init; 153 board_time_init = dec_time_init; 154 - board_timer_setup = dec_timer_setup; 155 156 wbflush_setup(); 157
··· 145 146 147 extern void dec_time_init(void); 148 149 void __init plat_mem_setup(void) 150 { 151 board_be_init = dec_be_init; 152 board_time_init = dec_time_init; 153 154 wbflush_setup(); 155
+1 -1
arch/mips/dec/time.c
··· 186 187 EXPORT_SYMBOL(do_settimeofday); 188 189 - void __init dec_timer_setup(struct irqaction *irq) 190 { 191 setup_irq(dec_interrupt[DEC_IRQ_RTC], irq); 192
··· 186 187 EXPORT_SYMBOL(do_settimeofday); 188 189 + void __init plat_timer_setup(struct irqaction *irq) 190 { 191 setup_irq(dec_interrupt[DEC_IRQ_RTC], irq); 192
+53 -4
arch/mips/defconfig
··· 1 # 2 # Automatically generated make config: don't edit 3 - # Linux kernel version: 2.6.17-rc2 4 - # Mon Apr 24 14:50:54 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 # CONFIG_MIPS_COBALT is not set 25 # CONFIG_MACH_DECSTATION is not set 26 # CONFIG_MIPS_EV64120 is not set ··· 33 # CONFIG_MIPS_ATLAS is not set 34 # CONFIG_MIPS_MALTA is not set 35 # CONFIG_MIPS_SEAD is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 47 # CONFIG_MACH_VR41XX is not set 48 # CONFIG_PMC_YOSEMITE is not set 49 # CONFIG_QEMU is not set 50 CONFIG_SGI_IP22=y 51 # CONFIG_SGI_IP27 is not set 52 # CONFIG_SGI_IP32 is not set ··· 68 CONFIG_GENERIC_FIND_NEXT_BIT=y 69 CONFIG_GENERIC_HWEIGHT=y 70 CONFIG_GENERIC_CALIBRATE_DELAY=y 71 CONFIG_ARC=y 72 CONFIG_DMA_NONCOHERENT=y 73 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 123 # CONFIG_PAGE_SIZE_64KB is not set 124 CONFIG_BOARD_SCACHE=y 125 CONFIG_IP22_CPU_SCACHE=y 126 - # CONFIG_MIPS_MT is not set 127 # CONFIG_64BIT_PHYS_ADDR is not set 128 CONFIG_CPU_HAS_LLSC=y 129 CONFIG_CPU_HAS_SYNC=y ··· 141 CONFIG_FLAT_NODE_MEM_MAP=y 142 # CONFIG_SPARSEMEM_STATIC is not set 143 CONFIG_SPLIT_PTLOCK_CPUS=4 144 # CONFIG_HZ_48 is not set 145 # CONFIG_HZ_100 is not set 146 # CONFIG_HZ_128 is not set ··· 154 # CONFIG_PREEMPT_NONE is not set 155 CONFIG_PREEMPT_VOLUNTARY=y 156 # CONFIG_PREEMPT is not set 157 158 # 159 # Code maturity level options ··· 187 CONFIG_BUG=y 188 CONFIG_ELF_CORE=y 189 CONFIG_BASE_FULL=y 190 CONFIG_FUTEX=y 191 CONFIG_EPOLL=y 192 CONFIG_SHMEM=y 193 CONFIG_SLAB=y 194 # CONFIG_TINY_SHMEM is not set 195 CONFIG_BASE_SMALL=0 196 # CONFIG_SLOB is not set ··· 283 CONFIG_INET_IPCOMP=m 284 CONFIG_INET_XFRM_TUNNEL=m 285 CONFIG_INET_TUNNEL=m 286 CONFIG_INET_DIAG=y 287 CONFIG_INET_TCP_DIAG=y 288 # CONFIG_TCP_CONG_ADVANCED is not set ··· 332 CONFIG_INET6_IPCOMP=m 333 CONFIG_INET6_XFRM_TUNNEL=m 334 CONFIG_INET6_TUNNEL=m 335 CONFIG_IPV6_TUNNEL=m 336 CONFIG_NETFILTER=y 337 # CONFIG_NETFILTER_DEBUG is not set 338 ··· 351 CONFIG_NETFILTER_XT_TARGET_MARK=m 352 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 353 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 354 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 355 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 356 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 367 CONFIG_NETFILTER_XT_MATCH_POLICY=m 368 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 369 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 370 CONFIG_NETFILTER_XT_MATCH_REALM=m 371 CONFIG_NETFILTER_XT_MATCH_SCTP=m 372 CONFIG_NETFILTER_XT_MATCH_STATE=m 373 CONFIG_NETFILTER_XT_MATCH_STRING=m 374 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 375 ··· 381 CONFIG_IP_NF_CONNTRACK=m 382 CONFIG_IP_NF_CT_ACCT=y 383 CONFIG_IP_NF_CONNTRACK_MARK=y 384 CONFIG_IP_NF_CONNTRACK_EVENTS=y 385 CONFIG_IP_NF_CONNTRACK_NETLINK=m 386 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 392 CONFIG_IP_NF_AMANDA=m 393 CONFIG_IP_NF_PPTP=m 394 CONFIG_IP_NF_H323=m 395 CONFIG_IP_NF_QUEUE=m 396 CONFIG_IP_NF_IPTABLES=m 397 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 423 CONFIG_IP_NF_NAT_AMANDA=m 424 CONFIG_IP_NF_NAT_PPTP=m 425 CONFIG_IP_NF_NAT_H323=m 426 CONFIG_IP_NF_MANGLE=m 427 CONFIG_IP_NF_TARGET_TOS=m 428 CONFIG_IP_NF_TARGET_ECN=m ··· 556 CONFIG_STANDALONE=y 557 CONFIG_PREVENT_FIRMWARE_BUILD=y 558 # CONFIG_FW_LOADER is not set 559 560 # 561 # Connector - unified userspace <-> kernelspace linker ··· 676 CONFIG_QSEMI_PHY=m 677 CONFIG_LXT_PHY=m 678 CONFIG_CICADA_PHY=m 679 680 # 681 # Ethernet (10 or 100Mbit) ··· 775 CONFIG_VT=y 776 CONFIG_VT_CONSOLE=y 777 CONFIG_HW_CONSOLE=y 778 # CONFIG_SERIAL_NONSTANDARD is not set 779 780 # ··· 808 # 809 # CONFIG_SOFT_WATCHDOG is not set 810 CONFIG_INDYDOG=m 811 # CONFIG_RTC is not set 812 CONFIG_SGI_DS1286=m 813 # CONFIG_GEN_RTC is not set ··· 857 # Multimedia devices 858 # 859 # CONFIG_VIDEO_DEV is not set 860 861 # 862 # Digital Video Broadcasting Devices ··· 867 # 868 # Graphics support 869 # 870 # CONFIG_FB is not set 871 872 # ··· 940 # CONFIG_RTC_CLASS is not set 941 942 # 943 # File systems 944 # 945 CONFIG_EXT2_FS=m ··· 969 # CONFIG_JFS_FS is not set 970 CONFIG_FS_POSIX_ACL=y 971 CONFIG_XFS_FS=m 972 - CONFIG_XFS_EXPORT=y 973 CONFIG_XFS_QUOTA=y 974 CONFIG_XFS_SECURITY=y 975 # CONFIG_XFS_POSIX_ACL is not set ··· 977 CONFIG_MINIX_FS=m 978 # CONFIG_ROMFS_FS is not set 979 CONFIG_INOTIFY=y 980 CONFIG_QUOTA=y 981 # CONFIG_QFMT_V1 is not set 982 CONFIG_QFMT_V2=m ··· 1034 # CONFIG_QNX4FS_FS is not set 1035 # CONFIG_SYSV_FS is not set 1036 CONFIG_UFS_FS=m 1037 1038 # 1039 # Network File Systems ··· 1065 CONFIG_SMB_NLS_REMOTE="cp437" 1066 CONFIG_CIFS=m 1067 # CONFIG_CIFS_STATS is not set 1068 # CONFIG_CIFS_XATTR is not set 1069 # CONFIG_CIFS_EXPERIMENTAL is not set 1070 # CONFIG_NCP_FS is not set 1071 CONFIG_CODA_FS=m ··· 1150 # 1151 # CONFIG_PRINTK_TIME is not set 1152 # CONFIG_MAGIC_SYSRQ is not set 1153 # CONFIG_DEBUG_KERNEL is not set 1154 CONFIG_LOG_BUF_SHIFT=14 1155 # CONFIG_DEBUG_FS is not set ··· 1210 CONFIG_TEXTSEARCH_KMP=m 1211 CONFIG_TEXTSEARCH_BM=m 1212 CONFIG_TEXTSEARCH_FSM=m
··· 1 # 2 # Automatically generated make config: don't edit 3 + # Linux kernel version: 2.6.18-rc1 4 + # Thu Jul 6 09:49:33 2006 5 # 6 CONFIG_MIPS=y 7 ··· 21 # CONFIG_MIPS_DB1550 is not set 22 # CONFIG_MIPS_DB1200 is not set 23 # CONFIG_MIPS_MIRAGE is not set 24 + # CONFIG_BASLER_EXCITE is not set 25 # CONFIG_MIPS_COBALT is not set 26 # CONFIG_MACH_DECSTATION is not set 27 # CONFIG_MIPS_EV64120 is not set ··· 32 # CONFIG_MIPS_ATLAS is not set 33 # CONFIG_MIPS_MALTA is not set 34 # CONFIG_MIPS_SEAD is not set 35 + # CONFIG_WR_PPMC is not set 36 # CONFIG_MIPS_SIM is not set 37 # CONFIG_MOMENCO_JAGUAR_ATX is not set 38 # CONFIG_MOMENCO_OCELOT is not set ··· 45 # CONFIG_MACH_VR41XX is not set 46 # CONFIG_PMC_YOSEMITE is not set 47 # CONFIG_QEMU is not set 48 + # CONFIG_MARKEINS is not set 49 CONFIG_SGI_IP22=y 50 # CONFIG_SGI_IP27 is not set 51 # CONFIG_SGI_IP32 is not set ··· 65 CONFIG_GENERIC_FIND_NEXT_BIT=y 66 CONFIG_GENERIC_HWEIGHT=y 67 CONFIG_GENERIC_CALIBRATE_DELAY=y 68 + CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y 69 CONFIG_ARC=y 70 CONFIG_DMA_NONCOHERENT=y 71 CONFIG_DMA_NEED_PCI_MAP_STATE=y ··· 119 # CONFIG_PAGE_SIZE_64KB is not set 120 CONFIG_BOARD_SCACHE=y 121 CONFIG_IP22_CPU_SCACHE=y 122 + CONFIG_MIPS_MT_DISABLED=y 123 + # CONFIG_MIPS_MT_SMTC is not set 124 + # CONFIG_MIPS_MT_SMP is not set 125 + # CONFIG_MIPS_VPE_LOADER is not set 126 # CONFIG_64BIT_PHYS_ADDR is not set 127 CONFIG_CPU_HAS_LLSC=y 128 CONFIG_CPU_HAS_SYNC=y ··· 134 CONFIG_FLAT_NODE_MEM_MAP=y 135 # CONFIG_SPARSEMEM_STATIC is not set 136 CONFIG_SPLIT_PTLOCK_CPUS=4 137 + # CONFIG_RESOURCES_64BIT is not set 138 # CONFIG_HZ_48 is not set 139 # CONFIG_HZ_100 is not set 140 # CONFIG_HZ_128 is not set ··· 146 # CONFIG_PREEMPT_NONE is not set 147 CONFIG_PREEMPT_VOLUNTARY=y 148 # CONFIG_PREEMPT is not set 149 + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" 150 151 # 152 # Code maturity level options ··· 178 CONFIG_BUG=y 179 CONFIG_ELF_CORE=y 180 CONFIG_BASE_FULL=y 181 + CONFIG_RT_MUTEXES=y 182 CONFIG_FUTEX=y 183 CONFIG_EPOLL=y 184 CONFIG_SHMEM=y 185 CONFIG_SLAB=y 186 + CONFIG_VM_EVENT_COUNTERS=y 187 # CONFIG_TINY_SHMEM is not set 188 CONFIG_BASE_SMALL=0 189 # CONFIG_SLOB is not set ··· 272 CONFIG_INET_IPCOMP=m 273 CONFIG_INET_XFRM_TUNNEL=m 274 CONFIG_INET_TUNNEL=m 275 + CONFIG_INET_XFRM_MODE_TRANSPORT=m 276 + CONFIG_INET_XFRM_MODE_TUNNEL=m 277 CONFIG_INET_DIAG=y 278 CONFIG_INET_TCP_DIAG=y 279 # CONFIG_TCP_CONG_ADVANCED is not set ··· 319 CONFIG_INET6_IPCOMP=m 320 CONFIG_INET6_XFRM_TUNNEL=m 321 CONFIG_INET6_TUNNEL=m 322 + CONFIG_INET6_XFRM_MODE_TRANSPORT=m 323 + CONFIG_INET6_XFRM_MODE_TUNNEL=m 324 CONFIG_IPV6_TUNNEL=m 325 + CONFIG_NETWORK_SECMARK=y 326 CONFIG_NETFILTER=y 327 # CONFIG_NETFILTER_DEBUG is not set 328 ··· 335 CONFIG_NETFILTER_XT_TARGET_MARK=m 336 CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m 337 CONFIG_NETFILTER_XT_TARGET_NOTRACK=m 338 + CONFIG_NETFILTER_XT_TARGET_SECMARK=m 339 + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m 340 CONFIG_NETFILTER_XT_MATCH_COMMENT=m 341 CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m 342 CONFIG_NETFILTER_XT_MATCH_CONNMARK=m ··· 349 CONFIG_NETFILTER_XT_MATCH_POLICY=m 350 CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m 351 CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m 352 + CONFIG_NETFILTER_XT_MATCH_QUOTA=m 353 CONFIG_NETFILTER_XT_MATCH_REALM=m 354 CONFIG_NETFILTER_XT_MATCH_SCTP=m 355 CONFIG_NETFILTER_XT_MATCH_STATE=m 356 + CONFIG_NETFILTER_XT_MATCH_STATISTIC=m 357 CONFIG_NETFILTER_XT_MATCH_STRING=m 358 CONFIG_NETFILTER_XT_MATCH_TCPMSS=m 359 ··· 361 CONFIG_IP_NF_CONNTRACK=m 362 CONFIG_IP_NF_CT_ACCT=y 363 CONFIG_IP_NF_CONNTRACK_MARK=y 364 + CONFIG_IP_NF_CONNTRACK_SECMARK=y 365 CONFIG_IP_NF_CONNTRACK_EVENTS=y 366 CONFIG_IP_NF_CONNTRACK_NETLINK=m 367 # CONFIG_IP_NF_CT_PROTO_SCTP is not set ··· 371 CONFIG_IP_NF_AMANDA=m 372 CONFIG_IP_NF_PPTP=m 373 CONFIG_IP_NF_H323=m 374 + CONFIG_IP_NF_SIP=m 375 CONFIG_IP_NF_QUEUE=m 376 CONFIG_IP_NF_IPTABLES=m 377 CONFIG_IP_NF_MATCH_IPRANGE=m ··· 401 CONFIG_IP_NF_NAT_AMANDA=m 402 CONFIG_IP_NF_NAT_PPTP=m 403 CONFIG_IP_NF_NAT_H323=m 404 + CONFIG_IP_NF_NAT_SIP=m 405 CONFIG_IP_NF_MANGLE=m 406 CONFIG_IP_NF_TARGET_TOS=m 407 CONFIG_IP_NF_TARGET_ECN=m ··· 533 CONFIG_STANDALONE=y 534 CONFIG_PREVENT_FIRMWARE_BUILD=y 535 # CONFIG_FW_LOADER is not set 536 + # CONFIG_SYS_HYPERVISOR is not set 537 538 # 539 # Connector - unified userspace <-> kernelspace linker ··· 652 CONFIG_QSEMI_PHY=m 653 CONFIG_LXT_PHY=m 654 CONFIG_CICADA_PHY=m 655 + # CONFIG_VITESSE_PHY is not set 656 + # CONFIG_SMSC_PHY is not set 657 658 # 659 # Ethernet (10 or 100Mbit) ··· 749 CONFIG_VT=y 750 CONFIG_VT_CONSOLE=y 751 CONFIG_HW_CONSOLE=y 752 + CONFIG_VT_HW_CONSOLE_BINDING=y 753 # CONFIG_SERIAL_NONSTANDARD is not set 754 755 # ··· 781 # 782 # CONFIG_SOFT_WATCHDOG is not set 783 CONFIG_INDYDOG=m 784 + # CONFIG_HW_RANDOM is not set 785 # CONFIG_RTC is not set 786 CONFIG_SGI_DS1286=m 787 # CONFIG_GEN_RTC is not set ··· 829 # Multimedia devices 830 # 831 # CONFIG_VIDEO_DEV is not set 832 + CONFIG_VIDEO_V4L2=y 833 834 # 835 # Digital Video Broadcasting Devices ··· 838 # 839 # Graphics support 840 # 841 + CONFIG_FIRMWARE_EDID=y 842 # CONFIG_FB is not set 843 844 # ··· 910 # CONFIG_RTC_CLASS is not set 911 912 # 913 + # DMA Engine support 914 + # 915 + # CONFIG_DMA_ENGINE is not set 916 + 917 + # 918 + # DMA Clients 919 + # 920 + 921 + # 922 + # DMA Devices 923 + # 924 + 925 + # 926 # File systems 927 # 928 CONFIG_EXT2_FS=m ··· 926 # CONFIG_JFS_FS is not set 927 CONFIG_FS_POSIX_ACL=y 928 CONFIG_XFS_FS=m 929 CONFIG_XFS_QUOTA=y 930 CONFIG_XFS_SECURITY=y 931 # CONFIG_XFS_POSIX_ACL is not set ··· 935 CONFIG_MINIX_FS=m 936 # CONFIG_ROMFS_FS is not set 937 CONFIG_INOTIFY=y 938 + CONFIG_INOTIFY_USER=y 939 CONFIG_QUOTA=y 940 # CONFIG_QFMT_V1 is not set 941 CONFIG_QFMT_V2=m ··· 991 # CONFIG_QNX4FS_FS is not set 992 # CONFIG_SYSV_FS is not set 993 CONFIG_UFS_FS=m 994 + # CONFIG_UFS_FS_WRITE is not set 995 + # CONFIG_UFS_DEBUG is not set 996 997 # 998 # Network File Systems ··· 1020 CONFIG_SMB_NLS_REMOTE="cp437" 1021 CONFIG_CIFS=m 1022 # CONFIG_CIFS_STATS is not set 1023 + # CONFIG_CIFS_WEAK_PW_HASH is not set 1024 # CONFIG_CIFS_XATTR is not set 1025 + # CONFIG_CIFS_DEBUG2 is not set 1026 # CONFIG_CIFS_EXPERIMENTAL is not set 1027 # CONFIG_NCP_FS is not set 1028 CONFIG_CODA_FS=m ··· 1103 # 1104 # CONFIG_PRINTK_TIME is not set 1105 # CONFIG_MAGIC_SYSRQ is not set 1106 + # CONFIG_UNUSED_SYMBOLS is not set 1107 # CONFIG_DEBUG_KERNEL is not set 1108 CONFIG_LOG_BUF_SHIFT=14 1109 # CONFIG_DEBUG_FS is not set ··· 1162 CONFIG_TEXTSEARCH_KMP=m 1163 CONFIG_TEXTSEARCH_BM=m 1164 CONFIG_TEXTSEARCH_FSM=m 1165 + CONFIG_PLIST=y
-1
arch/mips/emma2rh/common/irq.c
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 - #include <linux/config.h> 26 #include <linux/init.h> 27 #include <linux/interrupt.h> 28 #include <linux/irq.h>
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 #include <linux/init.h> 26 #include <linux/interrupt.h> 27 #include <linux/irq.h>
+1 -1
arch/mips/emma2rh/common/irq_emma2rh.c
··· 78 ll_emma2rh_irq_enable(irq - emma2rh_irq_base); 79 } 80 81 - hw_irq_controller emma2rh_irq_controller = { 82 .typename = "emma2rh_irq", 83 .startup = emma2rh_irq_startup, 84 .shutdown = emma2rh_irq_shutdown,
··· 78 ll_emma2rh_irq_enable(irq - emma2rh_irq_base); 79 } 80 81 + struct irq_chip emma2rh_irq_controller = { 82 .typename = "emma2rh_irq", 83 .startup = emma2rh_irq_startup, 84 .shutdown = emma2rh_irq_shutdown,
-1
arch/mips/emma2rh/common/prom.c
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 - #include <linux/config.h> 26 #include <linux/init.h> 27 #include <linux/mm.h> 28 #include <linux/sched.h>
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 #include <linux/init.h> 26 #include <linux/mm.h> 27 #include <linux/sched.h>
-1
arch/mips/emma2rh/markeins/irq.c
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 - #include <linux/config.h> 26 #include <linux/init.h> 27 #include <linux/interrupt.h> 28 #include <linux/irq.h>
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 #include <linux/init.h> 26 #include <linux/interrupt.h> 27 #include <linux/irq.h>
+2 -2
arch/mips/emma2rh/markeins/irq_markeins.c
··· 67 ll_emma2rh_sw_irq_enable(irq - emma2rh_sw_irq_base); 68 } 69 70 - hw_irq_controller emma2rh_sw_irq_controller = { 71 .typename = "emma2rh_sw_irq", 72 .startup = emma2rh_sw_irq_startup, 73 .shutdown = emma2rh_sw_irq_shutdown, ··· 147 ll_emma2rh_gpio_irq_enable(irq - emma2rh_gpio_irq_base); 148 } 149 150 - hw_irq_controller emma2rh_gpio_irq_controller = { 151 .typename = "emma2rh_gpio_irq", 152 .startup = emma2rh_gpio_irq_startup, 153 .shutdown = emma2rh_gpio_irq_shutdown,
··· 67 ll_emma2rh_sw_irq_enable(irq - emma2rh_sw_irq_base); 68 } 69 70 + struct irq_chip emma2rh_sw_irq_controller = { 71 .typename = "emma2rh_sw_irq", 72 .startup = emma2rh_sw_irq_startup, 73 .shutdown = emma2rh_sw_irq_shutdown, ··· 147 ll_emma2rh_gpio_irq_enable(irq - emma2rh_gpio_irq_base); 148 } 149 150 + struct irq_chip emma2rh_gpio_irq_controller = { 151 .typename = "emma2rh_gpio_irq", 152 .startup = emma2rh_gpio_irq_startup, 153 .shutdown = emma2rh_gpio_irq_shutdown,
-1
arch/mips/emma2rh/markeins/platform.c
··· 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 */ 23 - #include <linux/config.h> 24 #include <linux/init.h> 25 #include <linux/kernel.h> 26 #include <linux/types.h>
··· 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 */ 23 #include <linux/init.h> 24 #include <linux/kernel.h> 25 #include <linux/types.h>
+1 -3
arch/mips/emma2rh/markeins/setup.c
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 - #include <linux/config.h> 26 #include <linux/init.h> 27 #include <linux/kernel.h> 28 #include <linux/types.h> ··· 104 mips_hpt_frequency = (bus_frequency * (4 + reg)) / 4 / 2; 105 } 106 107 - static void __init emma2rh_timer_setup(struct irqaction *irq) 108 { 109 /* we are using the cpu counter for timer interrupts */ 110 setup_irq(CPU_IRQ_BASE + 7, irq); ··· 149 set_io_port_base(KSEG1ADDR(EMMA2RH_PCI_IO_BASE)); 150 151 board_time_init = emma2rh_time_init; 152 - board_timer_setup = emma2rh_timer_setup; 153 154 _machine_restart = markeins_machine_restart; 155 _machine_halt = markeins_machine_halt;
··· 22 * along with this program; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 #include <linux/init.h> 26 #include <linux/kernel.h> 27 #include <linux/types.h> ··· 105 mips_hpt_frequency = (bus_frequency * (4 + reg)) / 4 / 2; 106 } 107 108 + void __init plat_timer_setup(struct irqaction *irq) 109 { 110 /* we are using the cpu counter for timer interrupts */ 111 setup_irq(CPU_IRQ_BASE + 7, irq); ··· 150 set_io_port_base(KSEG1ADDR(EMMA2RH_PCI_IO_BASE)); 151 152 board_time_init = emma2rh_time_init; 153 154 _machine_restart = markeins_machine_restart; 155 _machine_halt = markeins_machine_halt;
+2 -2
arch/mips/gt64120/ev64120/irq.c
··· 104 enable_ev64120_irq(irq); 105 } 106 107 - static struct hw_interrupt_type ev64120_irq_type = { 108 .typename = "EV64120", 109 .startup = startup_ev64120_irq, 110 .shutdown = shutdown_ev64120_irq, ··· 138 /* Let's initialize our IRQ descriptors */ 139 for (i = 0; i < NR_IRQS; i++) { 140 irq_desc[i].status = 0; 141 - irq_desc[i].chip = &no_irq_type; 142 irq_desc[i].action = NULL; 143 irq_desc[i].depth = 0; 144 spin_lock_init(&irq_desc[i].lock);
··· 104 enable_ev64120_irq(irq); 105 } 106 107 + static struct irq_chip ev64120_irq_type = { 108 .typename = "EV64120", 109 .startup = startup_ev64120_irq, 110 .shutdown = shutdown_ev64120_irq, ··· 138 /* Let's initialize our IRQ descriptors */ 139 for (i = 0; i < NR_IRQS; i++) { 140 irq_desc[i].status = 0; 141 + irq_desc[i].chip = &no_irq_chip; 142 irq_desc[i].action = NULL; 143 irq_desc[i].depth = 0; 144 spin_lock_init(&irq_desc[i].lock);
-3
arch/mips/gt64120/wrppmc/setup.c
··· 8 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 9 * Copyright (C) 2006, Wind River System Inc. Rongkai.zhan <rongkai.zhan@windriver.com> 10 */ 11 - #include <linux/config.h> 12 #include <linux/init.h> 13 #include <linux/string.h> 14 #include <linux/kernel.h> ··· 127 void __init plat_mem_setup(void) 128 { 129 extern void wrppmc_time_init(void); 130 - extern void wrppmc_timer_setup(struct irqaction *); 131 extern void wrppmc_machine_restart(char *command); 132 extern void wrppmc_machine_halt(void); 133 extern void wrppmc_machine_power_off(void); ··· 137 138 /* Use MIPS Count/Compare Timer */ 139 board_time_init = wrppmc_time_init; 140 - board_timer_setup = wrppmc_timer_setup; 141 142 /* This makes the operations of 'in/out[bwl]' to the 143 * physical address ( < KSEG0) can work via KSEG1
··· 8 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 9 * Copyright (C) 2006, Wind River System Inc. Rongkai.zhan <rongkai.zhan@windriver.com> 10 */ 11 #include <linux/init.h> 12 #include <linux/string.h> 13 #include <linux/kernel.h> ··· 128 void __init plat_mem_setup(void) 129 { 130 extern void wrppmc_time_init(void); 131 extern void wrppmc_machine_restart(char *command); 132 extern void wrppmc_machine_halt(void); 133 extern void wrppmc_machine_power_off(void); ··· 139 140 /* Use MIPS Count/Compare Timer */ 141 board_time_init = wrppmc_time_init; 142 143 /* This makes the operations of 'in/out[bwl]' to the 144 * physical address ( < KSEG0) can work via KSEG1
+1 -2
arch/mips/gt64120/wrppmc/time.c
··· 10 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 11 * Copyright (C) 2006, Wind River System Inc. 12 */ 13 - #include <linux/config.h> 14 #include <linux/init.h> 15 #include <linux/string.h> 16 #include <linux/kernel.h> ··· 26 27 #define WRPPMC_CPU_CLK_FREQ 40000000 /* 40MHZ */ 28 29 - void __init wrppmc_timer_setup(struct irqaction *irq) 30 { 31 /* Install ISR for timer interrupt */ 32 setup_irq(WRPPMC_MIPS_TIMER_IRQ, irq);
··· 10 * Copyright (C) 1996, 1997, 2004 by Ralf Baechle (ralf@linux-mips.org) 11 * Copyright (C) 2006, Wind River System Inc. 12 */ 13 #include <linux/init.h> 14 #include <linux/string.h> 15 #include <linux/kernel.h> ··· 27 28 #define WRPPMC_CPU_CLK_FREQ 40000000 /* 40MHZ */ 29 30 + void __init plat_timer_setup(struct irqaction *irq) 31 { 32 /* Install ISR for timer interrupt */ 33 setup_irq(WRPPMC_MIPS_TIMER_IRQ, irq);
+2 -2
arch/mips/ite-boards/generic/irq.c
··· 133 enable_it8172_irq(irq); 134 } 135 136 - static struct hw_interrupt_type it8172_irq_type = { 137 .typename = "ITE8172", 138 .startup = startup_ite_irq, 139 .shutdown = shutdown_ite_irq, ··· 153 #define shutdown_none disable_none 154 #define end_none enable_none 155 156 - static struct hw_interrupt_type cp0_irq_type = { 157 .typename = "CP0 Count", 158 .startup = startup_none, 159 .shutdown = shutdown_none,
··· 133 enable_it8172_irq(irq); 134 } 135 136 + static struct irq_chip it8172_irq_type = { 137 .typename = "ITE8172", 138 .startup = startup_ite_irq, 139 .shutdown = shutdown_ite_irq, ··· 153 #define shutdown_none disable_none 154 #define end_none enable_none 155 156 + static struct irq_chip cp0_irq_type = { 157 .typename = "CP0 Count", 158 .startup = startup_none, 159 .shutdown = shutdown_none,
+1 -4
arch/mips/ite-boards/generic/it8172_setup.c
··· 29 #include <linux/init.h> 30 #include <linux/sched.h> 31 #include <linux/ioport.h> 32 #include <linux/serial_reg.h> 33 #include <linux/major.h> 34 #include <linux/kdev_t.h> ··· 59 extern void it8172_halt(void); 60 extern void it8172_power_off(void); 61 62 - extern void (*board_time_init)(void); 63 - extern void (*board_timer_setup)(struct irqaction *irq); 64 extern void it8172_time_init(void); 65 - extern void it8172_timer_setup(struct irqaction *irq); 66 67 #ifdef CONFIG_IT8172_REVC 68 struct { ··· 167 clear_c0_status(ST0_FR); 168 169 board_time_init = it8172_time_init; 170 - board_timer_setup = it8172_timer_setup; 171 172 _machine_restart = it8172_restart; 173 _machine_halt = it8172_halt;
··· 29 #include <linux/init.h> 30 #include <linux/sched.h> 31 #include <linux/ioport.h> 32 + #include <linux/irq.h> 33 #include <linux/serial_reg.h> 34 #include <linux/major.h> 35 #include <linux/kdev_t.h> ··· 58 extern void it8172_halt(void); 59 extern void it8172_power_off(void); 60 61 extern void it8172_time_init(void); 62 63 #ifdef CONFIG_IT8172_REVC 64 struct { ··· 169 clear_c0_status(ST0_FR); 170 171 board_time_init = it8172_time_init; 172 173 _machine_restart = it8172_restart; 174 _machine_halt = it8172_halt;
+2 -1
arch/mips/ite-boards/generic/time.c
··· 233 } 234 235 #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5) 236 - void __init it8172_timer_setup(struct irqaction *irq) 237 { 238 puts("timer_setup\n"); 239 put32(NR_IRQS);
··· 233 } 234 235 #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5) 236 + 237 + void __init plat_timer_setup(struct irqaction *irq) 238 { 239 puts("timer_setup\n"); 240 put32(NR_IRQS);
+1 -1
arch/mips/jazz/irq.c
··· 55 enable_r4030_irq(irq); 56 } 57 58 - static struct hw_interrupt_type r4030_irq_type = { 59 .typename = "R4030", 60 .startup = startup_r4030_irq, 61 .shutdown = shutdown_r4030_irq,
··· 55 enable_r4030_irq(irq); 56 } 57 58 + static struct irq_chip r4030_irq_type = { 59 .typename = "R4030", 60 .startup = startup_r4030_irq, 61 .shutdown = shutdown_r4030_irq,
+1 -2
arch/mips/jazz/setup.c
··· 37 extern void jazz_machine_halt(void); 38 extern void jazz_machine_power_off(void); 39 40 - static void __init jazz_time_init(struct irqaction *irq) 41 { 42 /* set the clock to 100 Hz */ 43 r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9); ··· 75 for (i = 0; i < ARRAY_SIZE(jazz_io_resources); i++) 76 request_resource(&ioport_resource, jazz_io_resources + i); 77 78 - board_timer_setup = jazz_time_init; 79 /* The RTC is outside the port address space */ 80 81 _machine_restart = jazz_machine_restart;
··· 37 extern void jazz_machine_halt(void); 38 extern void jazz_machine_power_off(void); 39 40 + void __init plat_time_init(struct irqaction *irq) 41 { 42 /* set the clock to 100 Hz */ 43 r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9); ··· 75 for (i = 0; i < ARRAY_SIZE(jazz_io_resources); i++) 76 request_resource(&ioport_resource, jazz_io_resources + i); 77 78 /* The RTC is outside the port address space */ 79 80 _machine_restart = jazz_machine_restart;
+1 -1
arch/mips/jmr3927/rbhma3100/irq.c
··· 416 set_c0_status(ST0_IM); /* IE bit is still 0. */ 417 } 418 419 - static hw_irq_controller jmr3927_irq_controller = { 420 .typename = "jmr3927_irq", 421 .startup = jmr3927_irq_startup, 422 .shutdown = jmr3927_irq_shutdown,
··· 416 set_c0_status(ST0_IM); /* IE bit is still 0. */ 417 } 418 419 + static struct irq_chip jmr3927_irq_controller = { 420 .typename = "jmr3927_irq", 421 .startup = jmr3927_irq_startup, 422 .shutdown = jmr3927_irq_shutdown,
+2 -3
arch/mips/jmr3927/rbhma3100/setup.c
··· 40 #include <linux/sched.h> 41 #include <linux/pci.h> 42 #include <linux/ide.h> 43 #include <linux/ioport.h> 44 #include <linux/param.h> /* for HZ */ 45 #include <linux/delay.h> ··· 184 } 185 186 unsigned long jmr3927_do_gettimeoffset(void); 187 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 188 189 - static void __init jmr3927_timer_setup(struct irqaction *irq) 190 { 191 do_gettimeoffset = jmr3927_do_gettimeoffset; 192 ··· 244 set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); 245 246 board_time_init = jmr3927_time_init; 247 - board_timer_setup = jmr3927_timer_setup; 248 249 _machine_restart = jmr3927_machine_restart; 250 _machine_halt = jmr3927_machine_halt;
··· 40 #include <linux/sched.h> 41 #include <linux/pci.h> 42 #include <linux/ide.h> 43 + #include <linux/irq.h> 44 #include <linux/ioport.h> 45 #include <linux/param.h> /* for HZ */ 46 #include <linux/delay.h> ··· 183 } 184 185 unsigned long jmr3927_do_gettimeoffset(void); 186 187 + void __init plat_timer_setup(struct irqaction *irq) 188 { 189 do_gettimeoffset = jmr3927_do_gettimeoffset; 190 ··· 244 set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); 245 246 board_time_init = jmr3927_time_init; 247 248 _machine_restart = jmr3927_machine_restart; 249 _machine_halt = jmr3927_machine_halt;
-1
arch/mips/kernel/apm.c
··· 10 * [This document is available from Microsoft at: 11 * http://www.microsoft.com/hwdev/busbios/amp_12.htm] 12 */ 13 - #include <linux/config.h> 14 #include <linux/module.h> 15 #include <linux/poll.h> 16 #include <linux/timer.h>
··· 10 * [This document is available from Microsoft at: 11 * http://www.microsoft.com/hwdev/busbios/amp_12.htm] 12 */ 13 #include <linux/module.h> 14 #include <linux/poll.h> 15 #include <linux/timer.h>
+3 -3
arch/mips/kernel/cpu-probe.c
··· 459 isa = (config0 & MIPS_CONF_AT) >> 13; 460 switch (isa) { 461 case 0: 462 - switch ((config0 >> 10) & 7) { 463 case 0: 464 c->isa_level = MIPS_CPU_ISA_M32R1; 465 break; ··· 471 } 472 break; 473 case 2: 474 - switch ((config0 >> 10) & 7) { 475 case 0: 476 c->isa_level = MIPS_CPU_ISA_M64R1; 477 break; ··· 548 return config3 & MIPS_CONF_M; 549 } 550 551 - static inline void decode_configs(struct cpuinfo_mips *c) 552 { 553 /* MIPS32 or MIPS64 compliant CPU. */ 554 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
··· 459 isa = (config0 & MIPS_CONF_AT) >> 13; 460 switch (isa) { 461 case 0: 462 + switch ((config0 & MIPS_CONF_AR) >> 10) { 463 case 0: 464 c->isa_level = MIPS_CPU_ISA_M32R1; 465 break; ··· 471 } 472 break; 473 case 2: 474 + switch ((config0 & MIPS_CONF_AR) >> 10) { 475 case 0: 476 c->isa_level = MIPS_CPU_ISA_M64R1; 477 break; ··· 548 return config3 & MIPS_CONF_M; 549 } 550 551 + static void __init decode_configs(struct cpuinfo_mips *c) 552 { 553 /* MIPS32 or MIPS64 compliant CPU. */ 554 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
+15
arch/mips/kernel/entry.S
··· 113 RESTORE_AT 114 RESTORE_STATIC 115 FEXPORT(restore_partial) # restore partial frame 116 RESTORE_SOME 117 RESTORE_SP_AND_RET 118 .set at
··· 113 RESTORE_AT 114 RESTORE_STATIC 115 FEXPORT(restore_partial) # restore partial frame 116 + #ifdef CONFIG_TRACE_IRQFLAGS 117 + SAVE_STATIC 118 + SAVE_AT 119 + SAVE_TEMP 120 + LONG_L v0, PT_STATUS(sp) 121 + and v0, 1 122 + beqz v0, 1f 123 + jal trace_hardirqs_on 124 + b 2f 125 + 1: jal trace_hardirqs_off 126 + 2: 127 + RESTORE_TEMP 128 + RESTORE_AT 129 + RESTORE_STATIC 130 + #endif 131 RESTORE_SOME 132 RESTORE_SP_AND_RET 133 .set at
+2
arch/mips/kernel/gdb-low.S
··· 7 8 #include <asm/asm.h> 9 #include <asm/errno.h> 10 #include <asm/mipsregs.h> 11 #include <asm/regdef.h> 12 #include <asm/stackframe.h> ··· 121 LONG_S $31, GDB_FR_REG31(sp) 122 123 CLI /* disable interrupts */ 124 125 /* 126 * Followed by the floating point registers
··· 7 8 #include <asm/asm.h> 9 #include <asm/errno.h> 10 + #include <asm/irqflags.h> 11 #include <asm/mipsregs.h> 12 #include <asm/regdef.h> 13 #include <asm/stackframe.h> ··· 120 LONG_S $31, GDB_FR_REG31(sp) 121 122 CLI /* disable interrupts */ 123 + TRACE_IRQS_OFF 124 125 /* 126 * Followed by the floating point registers
+7 -1
arch/mips/kernel/genex.S
··· 13 #include <asm/asm.h> 14 #include <asm/asmmacro.h> 15 #include <asm/cacheops.h> 16 #include <asm/regdef.h> 17 #include <asm/fpregdef.h> 18 #include <asm/mipsregs.h> ··· 129 NESTED(handle_int, PT_SIZE, sp) 130 SAVE_ALL 131 CLI 132 133 PTR_LA ra, ret_from_irq 134 move a0, sp ··· 218 _ehb 219 #endif /* CONFIG_MIPS_MT_SMTC */ 220 CLI 221 move a0, sp 222 jalr v0 223 j ret_from_irq ··· 291 .endm 292 293 .macro __build_clear_sti 294 STI 295 .endm 296 297 .macro __build_clear_cli 298 CLI 299 .endm 300 301 .macro __build_clear_fpe ··· 305 li a2, ~(0x3f << 12) 306 and a2, a1 307 ctc1 a2, fcr31 308 STI 309 .endm 310 ··· 371 BUILD_HANDLER mdmx mdmx sti silent /* #22 */ 372 BUILD_HANDLER watch watch sti verbose /* #23 */ 373 BUILD_HANDLER mcheck mcheck cli verbose /* #24 */ 374 - BUILD_HANDLER mt mt sti verbose /* #25 */ 375 BUILD_HANDLER dsp dsp sti silent /* #26 */ 376 BUILD_HANDLER reserved reserved sti verbose /* others */ 377
··· 13 #include <asm/asm.h> 14 #include <asm/asmmacro.h> 15 #include <asm/cacheops.h> 16 + #include <asm/irqflags.h> 17 #include <asm/regdef.h> 18 #include <asm/fpregdef.h> 19 #include <asm/mipsregs.h> ··· 128 NESTED(handle_int, PT_SIZE, sp) 129 SAVE_ALL 130 CLI 131 + TRACE_IRQS_OFF 132 133 PTR_LA ra, ret_from_irq 134 move a0, sp ··· 216 _ehb 217 #endif /* CONFIG_MIPS_MT_SMTC */ 218 CLI 219 + TRACE_IRQS_OFF 220 move a0, sp 221 jalr v0 222 j ret_from_irq ··· 288 .endm 289 290 .macro __build_clear_sti 291 + TRACE_IRQS_ON 292 STI 293 .endm 294 295 .macro __build_clear_cli 296 CLI 297 + TRACE_IRQS_OFF 298 .endm 299 300 .macro __build_clear_fpe ··· 300 li a2, ~(0x3f << 12) 301 and a2, a1 302 ctc1 a2, fcr31 303 + TRACE_IRQS_ON 304 STI 305 .endm 306 ··· 365 BUILD_HANDLER mdmx mdmx sti silent /* #22 */ 366 BUILD_HANDLER watch watch sti verbose /* #23 */ 367 BUILD_HANDLER mcheck mcheck cli verbose /* #24 */ 368 + BUILD_HANDLER mt mt sti silent /* #25 */ 369 BUILD_HANDLER dsp dsp sti silent /* #26 */ 370 BUILD_HANDLER reserved reserved sti verbose /* others */ 371
+2 -1
arch/mips/kernel/head.S
··· 5 * 6 * Copyright (C) 1994, 1995 Waldorf Electronics 7 * Written by Ralf Baechle and Andreas Busse 8 - * Copyright (C) 1994, 95, 96, 97, 98, 99, 2003 Ralf Baechle 9 * Copyright (C) 1996 Paul M. Antoine 10 * Modified for DECStation and hence R3000 support by Paul M. Antoine 11 * Further modifications by David S. Miller and Harald Koerfgen ··· 18 19 #include <asm/asm.h> 20 #include <asm/asmmacro.h> 21 #include <asm/regdef.h> 22 #include <asm/page.h> 23 #include <asm/mipsregs.h>
··· 5 * 6 * Copyright (C) 1994, 1995 Waldorf Electronics 7 * Written by Ralf Baechle and Andreas Busse 8 + * Copyright (C) 1994 - 99, 2003, 06 Ralf Baechle 9 * Copyright (C) 1996 Paul M. Antoine 10 * Modified for DECStation and hence R3000 support by Paul M. Antoine 11 * Further modifications by David S. Miller and Harald Koerfgen ··· 18 19 #include <asm/asm.h> 20 #include <asm/asmmacro.h> 21 + #include <asm/irqflags.h> 22 #include <asm/regdef.h> 23 #include <asm/page.h> 24 #include <asm/mipsregs.h>
+1 -1
arch/mips/kernel/i8259.c
··· 51 return 0; /* never anything pending */ 52 } 53 54 - static struct hw_interrupt_type i8259A_irq_type = { 55 .typename = "XT-PIC", 56 .startup = startup_8259A_irq, 57 .shutdown = shutdown_8259A_irq,
··· 51 return 0; /* never anything pending */ 52 } 53 54 + static struct irq_chip i8259A_irq_type = { 55 .typename = "XT-PIC", 56 .startup = startup_8259A_irq, 57 .shutdown = shutdown_8259A_irq,
+2 -2
arch/mips/kernel/irq-msc01.c
··· 137 138 #define shutdown_msc_irq disable_msc_irq 139 140 - struct hw_interrupt_type msc_levelirq_type = { 141 .typename = "SOC-it-Level", 142 .startup = startup_msc_irq, 143 .shutdown = shutdown_msc_irq, ··· 147 .end = end_msc_irq, 148 }; 149 150 - struct hw_interrupt_type msc_edgeirq_type = { 151 .typename = "SOC-it-Edge", 152 .startup =startup_msc_irq, 153 .shutdown = shutdown_msc_irq,
··· 137 138 #define shutdown_msc_irq disable_msc_irq 139 140 + struct irq_chip msc_levelirq_type = { 141 .typename = "SOC-it-Level", 142 .startup = startup_msc_irq, 143 .shutdown = shutdown_msc_irq, ··· 147 .end = end_msc_irq, 148 }; 149 150 + struct irq_chip msc_edgeirq_type = { 151 .typename = "SOC-it-Edge", 152 .startup =startup_msc_irq, 153 .shutdown = shutdown_msc_irq,
+1 -1
arch/mips/kernel/irq-mv6434x.c
··· 136 137 #define shutdown_mv64340_irq disable_mv64340_irq 138 139 - struct hw_interrupt_type mv64340_irq_type = { 140 .typename = "MV-64340", 141 .startup = startup_mv64340_irq, 142 .shutdown = shutdown_mv64340_irq,
··· 136 137 #define shutdown_mv64340_irq disable_mv64340_irq 138 139 + struct irq_chip mv64340_irq_type = { 140 .typename = "MV-64340", 141 .startup = startup_mv64340_irq, 142 .shutdown = shutdown_mv64340_irq,
+1 -1
arch/mips/kernel/irq-rm7000.c
··· 71 unmask_rm7k_irq(irq); 72 } 73 74 - static hw_irq_controller rm7k_irq_controller = { 75 .typename = "RM7000", 76 .startup = rm7k_cpu_irq_startup, 77 .shutdown = rm7k_cpu_irq_shutdown,
··· 71 unmask_rm7k_irq(irq); 72 } 73 74 + static struct irq_chip rm7k_irq_controller = { 75 .typename = "RM7000", 76 .startup = rm7k_cpu_irq_startup, 77 .shutdown = rm7k_cpu_irq_shutdown,
+2 -2
arch/mips/kernel/irq-rm9000.c
··· 105 unmask_rm9k_irq(irq); 106 } 107 108 - static hw_irq_controller rm9k_irq_controller = { 109 .typename = "RM9000", 110 .startup = rm9k_cpu_irq_startup, 111 .shutdown = rm9k_cpu_irq_shutdown, ··· 115 .end = rm9k_cpu_irq_end, 116 }; 117 118 - static hw_irq_controller rm9k_perfcounter_irq = { 119 .typename = "RM9000", 120 .startup = rm9k_perfcounter_irq_startup, 121 .shutdown = rm9k_perfcounter_irq_shutdown,
··· 105 unmask_rm9k_irq(irq); 106 } 107 108 + static struct irq_chip rm9k_irq_controller = { 109 .typename = "RM9000", 110 .startup = rm9k_cpu_irq_startup, 111 .shutdown = rm9k_cpu_irq_shutdown, ··· 115 .end = rm9k_cpu_irq_end, 116 }; 117 118 + static struct irq_chip rm9k_perfcounter_irq = { 119 .typename = "RM9000", 120 .startup = rm9k_perfcounter_irq_startup, 121 .shutdown = rm9k_perfcounter_irq_shutdown,
+1 -1
arch/mips/kernel/irq.c
··· 136 irq_desc[i].status = IRQ_DISABLED; 137 irq_desc[i].action = NULL; 138 irq_desc[i].depth = 1; 139 - irq_desc[i].chip = &no_irq_type; 140 spin_lock_init(&irq_desc[i].lock); 141 #ifdef CONFIG_MIPS_MT_SMTC 142 irq_hwmask[i] = 0;
··· 136 irq_desc[i].status = IRQ_DISABLED; 137 irq_desc[i].action = NULL; 138 irq_desc[i].depth = 1; 139 + irq_desc[i].chip = &no_irq_chip; 140 spin_lock_init(&irq_desc[i].lock); 141 #ifdef CONFIG_MIPS_MT_SMTC 142 irq_hwmask[i] = 0;
+2 -2
arch/mips/kernel/irq_cpu.c
··· 94 unmask_mips_irq(irq); 95 } 96 97 - static hw_irq_controller mips_cpu_irq_controller = { 98 .typename = "MIPS", 99 .startup = mips_cpu_irq_startup, 100 .shutdown = mips_cpu_irq_shutdown, ··· 140 141 #define mips_mt_cpu_irq_end mips_cpu_irq_end 142 143 - static hw_irq_controller mips_mt_cpu_irq_controller = { 144 .typename = "MIPS", 145 .startup = mips_mt_cpu_irq_startup, 146 .shutdown = mips_mt_cpu_irq_shutdown,
··· 94 unmask_mips_irq(irq); 95 } 96 97 + static struct irq_chip mips_cpu_irq_controller = { 98 .typename = "MIPS", 99 .startup = mips_cpu_irq_startup, 100 .shutdown = mips_cpu_irq_shutdown, ··· 140 141 #define mips_mt_cpu_irq_end mips_cpu_irq_end 142 143 + static struct irq_chip mips_mt_cpu_irq_controller = { 144 .typename = "MIPS", 145 .startup = mips_mt_cpu_irq_startup, 146 .shutdown = mips_mt_cpu_irq_shutdown,
+1
arch/mips/kernel/mips-mt.c
··· 7 #include <linux/sched.h> 8 #include <linux/cpumask.h> 9 #include <linux/interrupt.h> 10 11 #include <asm/cpu.h> 12 #include <asm/processor.h>
··· 7 #include <linux/sched.h> 8 #include <linux/cpumask.h> 9 #include <linux/interrupt.h> 10 + #include <linux/security.h> 11 12 #include <asm/cpu.h> 13 #include <asm/processor.h>
+16 -1
arch/mips/kernel/scall32-o32.S
··· 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 - * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02 by Ralf Baechle 7 * Copyright (C) 2001 MIPS Technologies, Inc. 8 * Copyright (C) 2004 Thiemo Seufer 9 */ 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 #include <asm/mipsregs.h> 14 #include <asm/regdef.h> 15 #include <asm/stackframe.h> ··· 28 NESTED(handle_sys, PT_SIZE, sp) 29 .set noat 30 SAVE_SOME 31 STI 32 .set at 33 ··· 660 sys sys_splice 4 661 sys sys_sync_file_range 7 /* 4305 */ 662 sys sys_tee 4 663 .endm 664 665 /* We pre-compute the number of _instruction_ bytes needed to
··· 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 + * Copyright (C) 1995-99, 2000- 02, 06 Ralf Baechle <ralf@linux-mips.org> 7 * Copyright (C) 2001 MIPS Technologies, Inc. 8 * Copyright (C) 2004 Thiemo Seufer 9 */ 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 14 #include <asm/mipsregs.h> 15 #include <asm/regdef.h> 16 #include <asm/stackframe.h> ··· 27 NESTED(handle_sys, PT_SIZE, sp) 28 .set noat 29 SAVE_SOME 30 + #ifdef CONFIG_TRACE_IRQFLAGS 31 + TRACE_IRQS_ON 32 + #ifdef CONFIG_64BIT 33 + LONG_L $8, PT_R8(sp) 34 + LONG_L $9, PT_R9(sp) 35 + #endif 36 + LONG_L $7, PT_R7(sp) 37 + LONG_L $6, PT_R6(sp) 38 + LONG_L $5, PT_R5(sp) 39 + LONG_L $4, PT_R4(sp) 40 + LONG_L $2, PT_R2(sp) 41 + #endif 42 STI 43 .set at 44 ··· 647 sys sys_splice 4 648 sys sys_sync_file_range 7 /* 4305 */ 649 sys sys_tee 4 650 + sys sys_vmsplice 4 651 + sys sys_move_pages 6 652 .endm 653 654 /* We pre-compute the number of _instruction_ bytes needed to
+4
arch/mips/kernel/scall64-64.S
··· 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 #include <asm/mipsregs.h> 14 #include <asm/regdef.h> 15 #include <asm/stackframe.h> ··· 34 */ 35 .set noat 36 SAVE_SOME 37 STI 38 .set at 39 #endif ··· 464 PTR sys_splice 465 PTR sys_sync_file_range 466 PTR sys_tee /* 5265 */
··· 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 14 #include <asm/mipsregs.h> 15 #include <asm/regdef.h> 16 #include <asm/stackframe.h> ··· 33 */ 34 .set noat 35 SAVE_SOME 36 + TRACE_IRQS_ON 37 STI 38 .set at 39 #endif ··· 462 PTR sys_splice 463 PTR sys_sync_file_range 464 PTR sys_tee /* 5265 */ 465 + PTR sys_vmsplice 466 + PTR sys_move_pages
+4
arch/mips/kernel/scall64-n32.S
··· 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 #include <asm/mipsregs.h> 14 #include <asm/regdef.h> 15 #include <asm/stackframe.h> ··· 33 #ifndef CONFIG_MIPS32_O32 34 .set noat 35 SAVE_SOME 36 STI 37 .set at 38 #endif ··· 390 PTR sys_splice 391 PTR sys_sync_file_range 392 PTR sys_tee
··· 10 #include <linux/errno.h> 11 #include <asm/asm.h> 12 #include <asm/asmmacro.h> 13 + #include <asm/irqflags.h> 14 #include <asm/mipsregs.h> 15 #include <asm/regdef.h> 16 #include <asm/stackframe.h> ··· 32 #ifndef CONFIG_MIPS32_O32 33 .set noat 34 SAVE_SOME 35 + TRACE_IRQS_ON 36 STI 37 .set at 38 #endif ··· 388 PTR sys_splice 389 PTR sys_sync_file_range 390 PTR sys_tee 391 + PTR sys_vmsplice /* 6271 */ 392 + PTR sys_move_pages
+4
arch/mips/kernel/scall64-o32.S
··· 16 #include <linux/errno.h> 17 #include <asm/asm.h> 18 #include <asm/asmmacro.h> 19 #include <asm/mipsregs.h> 20 #include <asm/regdef.h> 21 #include <asm/stackframe.h> ··· 28 NESTED(handle_sys, PT_SIZE, sp) 29 .set noat 30 SAVE_SOME 31 STI 32 .set at 33 ld t1, PT_EPC(sp) # skip syscall on return ··· 512 PTR sys_splice 513 PTR sys32_sync_file_range /* 4305 */ 514 PTR sys_tee 515 .size sys_call_table,.-sys_call_table
··· 16 #include <linux/errno.h> 17 #include <asm/asm.h> 18 #include <asm/asmmacro.h> 19 + #include <asm/irqflags.h> 20 #include <asm/mipsregs.h> 21 #include <asm/regdef.h> 22 #include <asm/stackframe.h> ··· 27 NESTED(handle_sys, PT_SIZE, sp) 28 .set noat 29 SAVE_SOME 30 + TRACE_IRQS_ON 31 STI 32 .set at 33 ld t1, PT_EPC(sp) # skip syscall on return ··· 510 PTR sys_splice 511 PTR sys32_sync_file_range /* 4305 */ 512 PTR sys_tee 513 + PTR sys_vmsplice 514 + PTR compat_sys_move_pages 515 .size sys_call_table,.-sys_call_table
+30 -5
arch/mips/kernel/smp.c
··· 319 } 320 321 /* 322 * The following tlb flush calls are invoked when old translations are 323 * being torn down, or pte attributes are changing. For single threaded 324 * address spaces, a new context is obtained on the current cpu, and tlb ··· 362 preempt_disable(); 363 364 if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) { 365 - smp_call_function(flush_tlb_mm_ipi, (void *)mm, 1, 1); 366 } else { 367 int i; 368 for (i = 0; i < num_online_cpus(); i++) ··· 398 fd.vma = vma; 399 fd.addr1 = start; 400 fd.addr2 = end; 401 - smp_call_function(flush_tlb_range_ipi, (void *)&fd, 1, 1); 402 } else { 403 int i; 404 for (i = 0; i < num_online_cpus(); i++) ··· 440 441 fd.vma = vma; 442 fd.addr1 = page; 443 - smp_call_function(flush_tlb_page_ipi, (void *)&fd, 1, 1); 444 } else { 445 int i; 446 for (i = 0; i < num_online_cpus(); i++) ··· 460 461 void flush_tlb_one(unsigned long vaddr) 462 { 463 - smp_call_function(flush_tlb_one_ipi, (void *) vaddr, 1, 1); 464 - local_flush_tlb_one(vaddr); 465 } 466 467 static DEFINE_PER_CPU(struct cpu, cpu_devices);
··· 319 } 320 321 /* 322 + * Special Variant of smp_call_function for use by TLB functions: 323 + * 324 + * o No return value 325 + * o collapses to normal function call on UP kernels 326 + * o collapses to normal function call on systems with a single shared 327 + * primary cache. 328 + * o CONFIG_MIPS_MT_SMTC currently implies there is only one physical core. 329 + */ 330 + static inline void smp_on_other_tlbs(void (*func) (void *info), void *info) 331 + { 332 + #ifndef CONFIG_MIPS_MT_SMTC 333 + smp_call_function(func, info, 1, 1); 334 + #endif 335 + } 336 + 337 + static inline void smp_on_each_tlb(void (*func) (void *info), void *info) 338 + { 339 + preempt_disable(); 340 + 341 + smp_on_other_tlbs(func, info); 342 + func(info); 343 + 344 + preempt_enable(); 345 + } 346 + 347 + /* 348 * The following tlb flush calls are invoked when old translations are 349 * being torn down, or pte attributes are changing. For single threaded 350 * address spaces, a new context is obtained on the current cpu, and tlb ··· 336 preempt_disable(); 337 338 if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) { 339 + smp_on_other_tlbs(flush_tlb_mm_ipi, (void *)mm); 340 } else { 341 int i; 342 for (i = 0; i < num_online_cpus(); i++) ··· 372 fd.vma = vma; 373 fd.addr1 = start; 374 fd.addr2 = end; 375 + smp_on_other_tlbs(flush_tlb_range_ipi, (void *)&fd); 376 } else { 377 int i; 378 for (i = 0; i < num_online_cpus(); i++) ··· 414 415 fd.vma = vma; 416 fd.addr1 = page; 417 + smp_on_other_tlbs(flush_tlb_page_ipi, (void *)&fd); 418 } else { 419 int i; 420 for (i = 0; i < num_online_cpus(); i++) ··· 434 435 void flush_tlb_one(unsigned long vaddr) 436 { 437 + smp_on_each_tlb(flush_tlb_one_ipi, (void *) vaddr); 438 } 439 440 static DEFINE_PER_CPU(struct cpu, cpu_devices);
+1
arch/mips/kernel/smtc-asm.S
··· 96 /* Save all will redundantly recompute the SP, but use it for now */ 97 SAVE_ALL 98 CLI 99 move a0,sp 100 /* Function to be invoked passed stack pad slot 5 */ 101 lw t0,PT_PADSLOT5(sp)
··· 96 /* Save all will redundantly recompute the SP, but use it for now */ 97 SAVE_ALL 98 CLI 99 + TRACE_IRQS_OFF 100 move a0,sp 101 /* Function to be invoked passed stack pad slot 5 */ 102 lw t0,PT_PADSLOT5(sp)
+30 -30
arch/mips/kernel/smtc.c
··· 127 static int __init asidmask_set(char *str) 128 { 129 get_option(&str, &asidmask); 130 - switch(asidmask) { 131 case 0x1: 132 case 0x3: 133 case 0x7: ··· 249 /* 250 * Only count if the MMU Type indicated is TLB 251 */ 252 - if(((read_vpe_c0_config() & MIPS_CONF_MT) >> 7) == 1) { 253 config1val = read_vpe_c0_config1(); 254 tlbsiz += ((config1val >> 25) & 0x3f) + 1; 255 } ··· 500 /* Set up coprocessor affinity CPU mask(s) */ 501 502 for (tc = 0; tc < ntc; tc++) { 503 - if(cpu_data[tc].options & MIPS_CPU_FPU) 504 cpu_set(tc, mt_fpu_cpumask); 505 } 506 ··· 577 { 578 /* 579 * Start timer on secondary VPEs if necessary. 580 - * mips_timer_setup should already have been invoked by init/main 581 * on "boot" TC. Like per_cpu_trap_init() hack, this assumes that 582 * SMTC init code assigns TCs consdecutively and in ascending order 583 * to across available VPEs. 584 */ 585 - if(((read_c0_tcbind() & TCBIND_CURTC) != 0) 586 - && ((read_c0_tcbind() & TCBIND_CURVPE) 587 != cpu_data[smp_processor_id() - 1].vpe_id)){ 588 write_c0_compare (read_c0_count() + mips_hpt_frequency/HZ); 589 } ··· 757 write_tc_c0_tchalt(0); 758 UNLOCK_CORE_PRA(); 759 /* Try to reduce redundant timer interrupt messages */ 760 - if(type == SMTC_CLOCK_TICK) { 761 - if(atomic_postincrement(&ipi_timer_latch[cpu])!=0) { 762 smtc_ipi_nq(&freeIPIq, pipi); 763 return; 764 } ··· 797 * CU bit of Status is indicator that TC was 798 * already running on a kernel stack... 799 */ 800 - if(tcstatus & ST0_CU0) { 801 /* Note that this "- 1" is pointer arithmetic */ 802 kstack = ((struct pt_regs *)read_tc_gpr_sp()) - 1; 803 } else { ··· 840 841 smtc_ipi_nq(&freeIPIq, pipi); 842 switch (type_copy) { 843 - case SMTC_CLOCK_TICK: 844 - /* Invoke Clock "Interrupt" */ 845 - ipi_timer_latch[dest_copy] = 0; 846 #ifdef SMTC_IDLE_HOOK_DEBUG 847 - clock_hang_reported[dest_copy] = 0; 848 #endif /* SMTC_IDLE_HOOK_DEBUG */ 849 - local_timer_interrupt(0, NULL, regs); 850 break; 851 - case LINUX_SMP_IPI: 852 - switch ((int)arg_copy) { 853 - case SMP_RESCHEDULE_YOURSELF: 854 - ipi_resched_interrupt(regs); 855 - break; 856 - case SMP_CALL_FUNCTION: 857 - ipi_call_interrupt(regs); 858 - break; 859 - default: 860 - printk("Impossible SMTC IPI Argument 0x%x\n", 861 - (int)arg_copy); 862 - break; 863 - } 864 break; 865 default: 866 - printk("Impossible SMTC IPI Type 0x%x\n", type_copy); 867 break; 868 } 869 } 870 ··· 879 * Test is not atomic, but much faster than a dequeue, 880 * and the vast majority of invocations will have a null queue. 881 */ 882 - if(IPIQ[q].head != NULL) { 883 while((pipi = smtc_ipi_dq(&IPIQ[q])) != NULL) { 884 /* ipi_decode() should be called with interrupts off */ 885 local_irq_save(flags); ··· 1254 tlb_read(); 1255 ehb(); 1256 ehi = read_c0_entryhi(); 1257 - if((ehi & ASID_MASK) == asid) { 1258 /* 1259 * Invalidate only entries with specified ASID, 1260 * makiing sure all entries differ.
··· 127 static int __init asidmask_set(char *str) 128 { 129 get_option(&str, &asidmask); 130 + switch (asidmask) { 131 case 0x1: 132 case 0x3: 133 case 0x7: ··· 249 /* 250 * Only count if the MMU Type indicated is TLB 251 */ 252 + if (((read_vpe_c0_config() & MIPS_CONF_MT) >> 7) == 1) { 253 config1val = read_vpe_c0_config1(); 254 tlbsiz += ((config1val >> 25) & 0x3f) + 1; 255 } ··· 500 /* Set up coprocessor affinity CPU mask(s) */ 501 502 for (tc = 0; tc < ntc; tc++) { 503 + if (cpu_data[tc].options & MIPS_CPU_FPU) 504 cpu_set(tc, mt_fpu_cpumask); 505 } 506 ··· 577 { 578 /* 579 * Start timer on secondary VPEs if necessary. 580 + * plat_timer_setup has already have been invoked by init/main 581 * on "boot" TC. Like per_cpu_trap_init() hack, this assumes that 582 * SMTC init code assigns TCs consdecutively and in ascending order 583 * to across available VPEs. 584 */ 585 + if (((read_c0_tcbind() & TCBIND_CURTC) != 0) && 586 + ((read_c0_tcbind() & TCBIND_CURVPE) 587 != cpu_data[smp_processor_id() - 1].vpe_id)){ 588 write_c0_compare (read_c0_count() + mips_hpt_frequency/HZ); 589 } ··· 757 write_tc_c0_tchalt(0); 758 UNLOCK_CORE_PRA(); 759 /* Try to reduce redundant timer interrupt messages */ 760 + if (type == SMTC_CLOCK_TICK) { 761 + if (atomic_postincrement(&ipi_timer_latch[cpu])!=0){ 762 smtc_ipi_nq(&freeIPIq, pipi); 763 return; 764 } ··· 797 * CU bit of Status is indicator that TC was 798 * already running on a kernel stack... 799 */ 800 + if (tcstatus & ST0_CU0) { 801 /* Note that this "- 1" is pointer arithmetic */ 802 kstack = ((struct pt_regs *)read_tc_gpr_sp()) - 1; 803 } else { ··· 840 841 smtc_ipi_nq(&freeIPIq, pipi); 842 switch (type_copy) { 843 + case SMTC_CLOCK_TICK: 844 + /* Invoke Clock "Interrupt" */ 845 + ipi_timer_latch[dest_copy] = 0; 846 #ifdef SMTC_IDLE_HOOK_DEBUG 847 + clock_hang_reported[dest_copy] = 0; 848 #endif /* SMTC_IDLE_HOOK_DEBUG */ 849 + local_timer_interrupt(0, NULL, regs); 850 + break; 851 + case LINUX_SMP_IPI: 852 + switch ((int)arg_copy) { 853 + case SMP_RESCHEDULE_YOURSELF: 854 + ipi_resched_interrupt(regs); 855 break; 856 + case SMP_CALL_FUNCTION: 857 + ipi_call_interrupt(regs); 858 break; 859 default: 860 + printk("Impossible SMTC IPI Argument 0x%x\n", 861 + (int)arg_copy); 862 break; 863 + } 864 + break; 865 + default: 866 + printk("Impossible SMTC IPI Type 0x%x\n", type_copy); 867 + break; 868 } 869 } 870 ··· 879 * Test is not atomic, but much faster than a dequeue, 880 * and the vast majority of invocations will have a null queue. 881 */ 882 + if (IPIQ[q].head != NULL) { 883 while((pipi = smtc_ipi_dq(&IPIQ[q])) != NULL) { 884 /* ipi_decode() should be called with interrupts off */ 885 local_irq_save(flags); ··· 1254 tlb_read(); 1255 ehb(); 1256 ehi = read_c0_entryhi(); 1257 + if ((ehi & ASID_MASK) == asid) { 1258 /* 1259 * Invalidate only entries with specified ASID, 1260 * makiing sure all entries differ.
+2 -3
arch/mips/kernel/time.c
··· 566 * 2) setup xtime based on rtc_mips_get_time(). 567 * 3) choose a appropriate gettimeoffset routine. 568 * 4) calculate a couple of cached variables for later usage 569 - * 5) board_timer_setup() - 570 * a) (optional) over-write any choices made above by time_init(). 571 * b) machine specific code should setup the timer irqaction. 572 * c) enable the timer interrupt 573 */ 574 575 void (*board_time_init)(void); 576 - void (*board_timer_setup)(struct irqaction *irq); 577 578 unsigned int mips_hpt_frequency; 579 ··· 717 * to be NULL function so that we are sure the high-level code 718 * is not invoked accidentally. 719 */ 720 - board_timer_setup(&timer_irqaction); 721 } 722 723 #define FEBRUARY 2
··· 566 * 2) setup xtime based on rtc_mips_get_time(). 567 * 3) choose a appropriate gettimeoffset routine. 568 * 4) calculate a couple of cached variables for later usage 569 + * 5) plat_timer_setup() - 570 * a) (optional) over-write any choices made above by time_init(). 571 * b) machine specific code should setup the timer irqaction. 572 * c) enable the timer interrupt 573 */ 574 575 void (*board_time_init)(void); 576 577 unsigned int mips_hpt_frequency; 578 ··· 718 * to be NULL function so that we are sure the high-level code 719 * is not invoked accidentally. 720 */ 721 + plat_timer_setup(&timer_irqaction); 722 } 723 724 #define FEBRUARY 2
+12 -12
arch/mips/kernel/traps.c
··· 569 */ 570 asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31) 571 { 572 if (fcr31 & FPU_CSR_UNI_X) { 573 int sig; 574 ··· 849 { 850 int subcode; 851 852 - die_if_kernel("MIPS MT Thread exception in kernel", regs); 853 - 854 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT) 855 >> VPECONTROL_EXCPT_SHIFT; 856 switch (subcode) { 857 case 0: 858 - printk(KERN_ERR "Thread Underflow\n"); 859 break; 860 case 1: 861 - printk(KERN_ERR "Thread Overflow\n"); 862 break; 863 case 2: 864 - printk(KERN_ERR "Invalid YIELD Qualifier\n"); 865 break; 866 case 3: 867 - printk(KERN_ERR "Gating Storage Exception\n"); 868 break; 869 case 4: 870 - printk(KERN_ERR "YIELD Scheduler Exception\n"); 871 break; 872 case 5: 873 - printk(KERN_ERR "Gating Storage Schedulier Exception\n"); 874 break; 875 default: 876 - printk(KERN_ERR "*** UNKNOWN THREAD EXCEPTION %d ***\n", 877 subcode); 878 break; 879 } ··· 980 unsigned long depc, old_epc; 981 unsigned int debug; 982 983 - printk("SDBBP EJTAG debug exception - not handled yet, just ignored!\n"); 984 depc = read_c0_depc(); 985 debug = read_c0_debug(); 986 - printk("c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug); 987 if (debug & 0x80000000) { 988 /* 989 * In branch delay slot. ··· 1001 write_c0_depc(depc); 1002 1003 #if 0 1004 - printk("\n\n----- Enable EJTAG single stepping ----\n\n"); 1005 write_c0_debug(debug | 0x100); 1006 #endif 1007 }
··· 569 */ 570 asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31) 571 { 572 + die_if_kernel("FP exception in kernel code", regs); 573 + 574 if (fcr31 & FPU_CSR_UNI_X) { 575 int sig; 576 ··· 847 { 848 int subcode; 849 850 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT) 851 >> VPECONTROL_EXCPT_SHIFT; 852 switch (subcode) { 853 case 0: 854 + printk(KERN_DEBUG "Thread Underflow\n"); 855 break; 856 case 1: 857 + printk(KERN_DEBUG "Thread Overflow\n"); 858 break; 859 case 2: 860 + printk(KERN_DEBUG "Invalid YIELD Qualifier\n"); 861 break; 862 case 3: 863 + printk(KERN_DEBUG "Gating Storage Exception\n"); 864 break; 865 case 4: 866 + printk(KERN_DEBUG "YIELD Scheduler Exception\n"); 867 break; 868 case 5: 869 + printk(KERN_DEBUG "Gating Storage Schedulier Exception\n"); 870 break; 871 default: 872 + printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n", 873 subcode); 874 break; 875 } ··· 980 unsigned long depc, old_epc; 981 unsigned int debug; 982 983 + printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n"); 984 depc = read_c0_depc(); 985 debug = read_c0_debug(); 986 + printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug); 987 if (debug & 0x80000000) { 988 /* 989 * In branch delay slot. ··· 1001 write_c0_depc(depc); 1002 1003 #if 0 1004 + printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n"); 1005 write_c0_debug(debug | 0x100); 1006 #endif 1007 }
-1
arch/mips/kernel/vpe.c
··· 28 * i.e cat spapp >/dev/vpe1. 29 */ 30 31 - #include <linux/config.h> 32 #include <linux/kernel.h> 33 #include <linux/module.h> 34 #include <linux/fs.h>
··· 28 * i.e cat spapp >/dev/vpe1. 29 */ 30 31 #include <linux/kernel.h> 32 #include <linux/module.h> 33 #include <linux/fs.h>
+1 -1
arch/mips/lasat/interrupt.c
··· 69 enable_lasat_irq(irq); 70 } 71 72 - static struct hw_interrupt_type lasat_irq_type = { 73 .typename = "Lasat", 74 .startup = startup_lasat_irq, 75 .shutdown = shutdown_lasat_irq,
··· 69 enable_lasat_irq(irq); 70 } 71 72 + static struct irq_chip lasat_irq_type = { 73 .typename = "Lasat", 74 .startup = startup_lasat_irq, 75 .shutdown = shutdown_lasat_irq,
+2 -6
arch/mips/lasat/setup.c
··· 115 mips_hpt_frequency = lasat_board_info.li_cpu_hz / 2; 116 } 117 118 - static void lasat_timer_setup(struct irqaction *irq) 119 { 120 - 121 - write_c0_compare( 122 - read_c0_count() + 123 - mips_hpt_frequency / HZ); 124 change_c0_status(ST0_IM, IE_IRQ0 | IE_IRQ5); 125 } 126 ··· 167 lasat_reboot_setup(); 168 169 board_time_init = lasat_time_init; 170 - board_timer_setup = lasat_timer_setup; 171 172 #ifdef CONFIG_DS1603 173 ds1603 = &ds_defs[mips_machtype];
··· 115 mips_hpt_frequency = lasat_board_info.li_cpu_hz / 2; 116 } 117 118 + void __init plat_timer_setup(struct irqaction *irq) 119 { 120 + write_c0_compare( read_c0_count() + mips_hpt_frequency / HZ); 121 change_c0_status(ST0_IM, IE_IRQ0 | IE_IRQ5); 122 } 123 ··· 170 lasat_reboot_setup(); 171 172 board_time_init = lasat_time_init; 173 174 #ifdef CONFIG_DS1603 175 ds1603 = &ds_defs[mips_machtype];
+1 -1
arch/mips/mips-boards/atlas/atlas_int.c
··· 73 enable_atlas_irq(irq); 74 } 75 76 - static struct hw_interrupt_type atlas_irq_type = { 77 .typename = "Atlas", 78 .startup = startup_atlas_irq, 79 .shutdown = shutdown_atlas_irq,
··· 73 enable_atlas_irq(irq); 74 } 75 76 + static struct irq_chip atlas_irq_type = { 77 .typename = "Atlas", 78 .startup = startup_atlas_irq, 79 .shutdown = shutdown_atlas_irq,
-2
arch/mips/mips-boards/atlas/atlas_setup.c
··· 35 36 extern void mips_reboot_setup(void); 37 extern void mips_time_init(void); 38 - extern void mips_timer_setup(struct irqaction *irq); 39 extern unsigned long mips_rtc_get_time(void); 40 41 #ifdef CONFIG_KGDB ··· 62 mips_reboot_setup(); 63 64 board_time_init = mips_time_init; 65 - board_timer_setup = mips_timer_setup; 66 rtc_mips_get_time = mips_rtc_get_time; 67 } 68
··· 35 36 extern void mips_reboot_setup(void); 37 extern void mips_time_init(void); 38 extern unsigned long mips_rtc_get_time(void); 39 40 #ifdef CONFIG_KGDB ··· 63 mips_reboot_setup(); 64 65 board_time_init = mips_time_init; 66 rtc_mips_get_time = mips_rtc_get_time; 67 } 68
+26 -24
arch/mips/mips-boards/generic/memory.c
··· 47 }; 48 #endif 49 50 struct prom_pmemblock * __init prom_getmdesc(void) 51 { 52 char *memsize_str; 53 unsigned int memsize; 54 char cmdline[CL_SIZE], *ptr; 55 56 - /* Check the command line first for a memsize directive */ 57 strcpy(cmdline, arcs_cmdline); 58 ptr = strstr(cmdline, "memsize="); 59 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' ')) 60 ptr = strstr(ptr, " memsize="); 61 62 - if (ptr) { 63 memsize = memparse(ptr + 8, &ptr); 64 - } 65 - else { 66 - /* otherwise look in the environment */ 67 - memsize_str = prom_getenv("memsize"); 68 - if (!memsize_str) { 69 - prom_printf("memsize not set in boot prom, set to default (32Mb)\n"); 70 - memsize = 0x02000000; 71 - } else { 72 - #ifdef DEBUG 73 - prom_printf("prom_memsize = %s\n", memsize_str); 74 - #endif 75 - memsize = simple_strtol(memsize_str, NULL, 0); 76 - } 77 - } 78 - 79 - #ifdef CONFIG_CPU_BIG_ENDIAN 80 - /* 81 - * SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last 82 - * word of physical memory 83 - */ 84 - memsize -= PAGE_SIZE; 85 - #endif 86 87 memset(mdesc, 0, sizeof(mdesc)); 88
··· 47 }; 48 #endif 49 50 + /* determined physical memory size, not overridden by command line args */ 51 + unsigned long physical_memsize = 0L; 52 + 53 struct prom_pmemblock * __init prom_getmdesc(void) 54 { 55 char *memsize_str; 56 unsigned int memsize; 57 char cmdline[CL_SIZE], *ptr; 58 59 + /* otherwise look in the environment */ 60 + memsize_str = prom_getenv("memsize"); 61 + if (!memsize_str) { 62 + prom_printf("memsize not set in boot prom, set to default (32Mb)\n"); 63 + physical_memsize = 0x02000000; 64 + } else { 65 + #ifdef DEBUG 66 + prom_printf("prom_memsize = %s\n", memsize_str); 67 + #endif 68 + physical_memsize = simple_strtol(memsize_str, NULL, 0); 69 + } 70 + 71 + #ifdef CONFIG_CPU_BIG_ENDIAN 72 + /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last 73 + word of physical memory */ 74 + physical_memsize -= PAGE_SIZE; 75 + #endif 76 + 77 + /* Check the command line for a memsize directive that overrides 78 + the physical/default amount */ 79 strcpy(cmdline, arcs_cmdline); 80 ptr = strstr(cmdline, "memsize="); 81 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' ')) 82 ptr = strstr(ptr, " memsize="); 83 84 + if (ptr) 85 memsize = memparse(ptr + 8, &ptr); 86 + else 87 + memsize = physical_memsize; 88 89 memset(mdesc, 0, sizeof(mdesc)); 90
+2 -6
arch/mips/mips-boards/generic/time.c
··· 228 229 void __init mips_time_init(void) 230 { 231 - unsigned int est_freq, flags; 232 - 233 - local_irq_save(flags); 234 235 /* Set Data mode - binary. */ 236 CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL); ··· 239 (est_freq%1000000)*100/1000000); 240 241 cpu_khz = est_freq / 1000; 242 - 243 - local_irq_restore(flags); 244 } 245 246 - void __init mips_timer_setup(struct irqaction *irq) 247 { 248 if (cpu_has_veic) { 249 set_vi_handler (MSC01E_INT_CPUCTR, mips_timer_dispatch);
··· 228 229 void __init mips_time_init(void) 230 { 231 + unsigned int est_freq; 232 233 /* Set Data mode - binary. */ 234 CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL); ··· 241 (est_freq%1000000)*100/1000000); 242 243 cpu_khz = est_freq / 1000; 244 } 245 246 + void __init plat_timer_setup(struct irqaction *irq) 247 { 248 if (cpu_has_veic) { 249 set_vi_handler (MSC01E_INT_CPUCTR, mips_timer_dispatch);
-2
arch/mips/mips-boards/malta/malta_setup.c
··· 44 45 extern void mips_reboot_setup(void); 46 extern void mips_time_init(void); 47 - extern void mips_timer_setup(struct irqaction *irq); 48 extern unsigned long mips_rtc_get_time(void); 49 50 #ifdef CONFIG_KGDB ··· 222 mips_reboot_setup(); 223 224 board_time_init = mips_time_init; 225 - board_timer_setup = mips_timer_setup; 226 rtc_mips_get_time = mips_rtc_get_time; 227 }
··· 44 45 extern void mips_reboot_setup(void); 46 extern void mips_time_init(void); 47 extern unsigned long mips_rtc_get_time(void); 48 49 #ifdef CONFIG_KGDB ··· 223 mips_reboot_setup(); 224 225 board_time_init = mips_time_init; 226 rtc_mips_get_time = mips_rtc_get_time; 227 }
-2
arch/mips/mips-boards/sead/sead_setup.c
··· 35 36 extern void mips_reboot_setup(void); 37 extern void mips_time_init(void); 38 - extern void mips_timer_setup(struct irqaction *irq); 39 40 static void __init serial_init(void); 41 ··· 50 serial_init (); 51 52 board_time_init = mips_time_init; 53 - board_timer_setup = mips_timer_setup; 54 55 mips_reboot_setup(); 56 }
··· 35 36 extern void mips_reboot_setup(void); 37 extern void mips_time_init(void); 38 39 static void __init serial_init(void); 40 ··· 51 serial_init (); 52 53 board_time_init = mips_time_init; 54 55 mips_reboot_setup(); 56 }
+1 -2
arch/mips/mips-boards/sim/Makefile
··· 15 # 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 16 # 17 18 - obj-y := sim_setup.o sim_mem.o sim_time.o sim_printf.o sim_int.o sim_irq.o \ 19 - sim_cmdline.o 20 obj-$(CONFIG_SMP) += sim_smp.o
··· 15 # 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 16 # 17 18 + obj-y := sim_setup.o sim_mem.o sim_time.o sim_printf.o sim_int.o sim_cmdline.o 19 obj-$(CONFIG_SMP) += sim_smp.o
-147
arch/mips/mips-boards/sim/sim_IRQ.c
··· 1 - /* 2 - * Carsten Langgaard, carstenl@mips.com 3 - * Copyright (C) 1999, 2000 MIPS Technologies, Inc. All rights reserved. 4 - * 5 - * This program is free software; you can distribute it and/or modify it 6 - * under the terms of the GNU General Public License (Version 2) as 7 - * published by the Free Software Foundation. 8 - * 9 - * This program is distributed in the hope it will be useful, but WITHOUT 10 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 - * for more details. 13 - * 14 - * You should have received a copy of the GNU General Public License along 15 - * with this program; if not, write to the Free Software Foundation, Inc., 16 - * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 17 - * 18 - * Interrupt exception dispatch code. 19 - */ 20 - 21 - #include <asm/asm.h> 22 - #include <asm/mipsregs.h> 23 - #include <asm/regdef.h> 24 - #include <asm/stackframe.h> 25 - 26 - /* A lot of complication here is taken away because: 27 - * 28 - * 1) We handle one interrupt and return, sitting in a loop and moving across 29 - * all the pending IRQ bits in the cause register is _NOT_ the answer, the 30 - * common case is one pending IRQ so optimize in that direction. 31 - * 32 - * 2) We need not check against bits in the status register IRQ mask, that 33 - * would make this routine slow as hell. 34 - * 35 - * 3) Linux only thinks in terms of all IRQs on or all IRQs off, nothing in 36 - * between like BSD spl() brain-damage. 37 - * 38 - * Furthermore, the IRQs on the MIPS board look basically (barring software 39 - * IRQs which we don't use at all and all external interrupt sources are 40 - * combined together on hardware interrupt 0 (MIPS IRQ 2)) like: 41 - * 42 - * MIPS IRQ Source 43 - * -------- ------ 44 - * 0 Software (ignored) 45 - * 1 Software (ignored) 46 - * 2 Combined hardware interrupt (hw0) 47 - * 3 Hardware (ignored) 48 - * 4 Hardware (ignored) 49 - * 5 Hardware (ignored) 50 - * 6 Hardware (ignored) 51 - * 7 R4k timer (what we use) 52 - * 53 - * Note: On the SEAD board thing are a little bit different. 54 - * Here IRQ 2 (hw0) is wired to the UART0 and IRQ 3 (hw1) is wired 55 - * wired to UART1. 56 - * 57 - * We handle the IRQ according to _our_ priority which is: 58 - * 59 - * Highest ---- R4k Timer 60 - * Lowest ---- Combined hardware interrupt 61 - * 62 - * then we just return, if multiple IRQs are pending then we will just take 63 - * another exception, big deal. 64 - */ 65 - 66 - .text 67 - .set noreorder 68 - .set noat 69 - .align 5 70 - NESTED(mipsIRQ, PT_SIZE, sp) 71 - SAVE_ALL 72 - CLI 73 - .set at 74 - 75 - mfc0 s0, CP0_CAUSE # get irq bits 76 - mfc0 s1, CP0_STATUS # get irq mask 77 - and s0, s1 78 - 79 - /* First we check for r4k counter/timer IRQ. */ 80 - andi a0, s0, CAUSEF_IP7 81 - beq a0, zero, 1f 82 - andi a0, s0, CAUSEF_IP2 # delay slot, check hw0 interrupt 83 - 84 - /* Wheee, a timer interrupt. */ 85 - move a0, sp 86 - jal mips_timer_interrupt 87 - nop 88 - 89 - j ret_from_irq 90 - nop 91 - 92 - 1: 93 - #if defined(CONFIG_MIPS_SEAD) 94 - beq a0, zero, 1f 95 - andi a0, s0, CAUSEF_IP3 # delay slot, check hw1 interrupt 96 - #else 97 - beq a0, zero, 1f # delay slot, check hw3 interrupt 98 - andi a0, s0, CAUSEF_IP5 99 - #endif 100 - 101 - /* Wheee, combined hardware level zero interrupt. */ 102 - #if defined(CONFIG_MIPS_ATLAS) 103 - jal atlas_hw0_irqdispatch 104 - #elif defined(CONFIG_MIPS_MALTA) 105 - jal malta_hw0_irqdispatch 106 - #elif defined(CONFIG_MIPS_SEAD) 107 - jal sead_hw0_irqdispatch 108 - #else 109 - #error "MIPS board not supported\n" 110 - #endif 111 - move a0, sp # delay slot 112 - 113 - j ret_from_irq 114 - nop # delay slot 115 - 116 - 1: 117 - #if defined(CONFIG_MIPS_SEAD) 118 - beq a0, zero, 1f 119 - andi a0, s0, CAUSEF_IP5 # delay slot, check hw3 interrupt 120 - jal sead_hw1_irqdispatch 121 - move a0, sp # delay slot 122 - j ret_from_irq 123 - nop # delay slot 124 - 1: 125 - #endif 126 - #if defined(CONFIG_MIPS_MALTA) 127 - beq a0, zero, 1f # check hw3 (coreHI) interrupt 128 - nop 129 - jal corehi_irqdispatch 130 - move a0, sp 131 - j ret_from_irq 132 - nop 133 - 1: 134 - #endif 135 - /* 136 - * Here by mistake? This is possible, what can happen is that by the 137 - * time we take the exception the IRQ pin goes low, so just leave if 138 - * this is the case. 139 - */ 140 - move a1,s0 141 - PRINT("Got interrupt: c0_cause = %08x\n") 142 - mfc0 a1, CP0_EPC 143 - PRINT("c0_epc = %08x\n") 144 - 145 - j ret_from_irq 146 - nop 147 - END(mipsIRQ)
···
-100
arch/mips/mips-boards/sim/sim_irq.S
··· 1 - /* 2 - * Copyright (C) 1999, 2005 MIPS Technologies, Inc. All rights reserved. 3 - * 4 - * This program is free software; you can distribute it and/or modify it 5 - * under the terms of the GNU General Public License (Version 2) as 6 - * published by the Free Software Foundation. 7 - * 8 - * This program is distributed in the hope it will be useful, but WITHOUT 9 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 11 - * for more details. 12 - * 13 - * You should have received a copy of the GNU General Public License along 14 - * with this program; if not, write to the Free Software Foundation, Inc., 15 - * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. 16 - * 17 - * Interrupt exception dispatch code. 18 - * 19 - */ 20 - 21 - #include <asm/asm.h> 22 - #include <asm/mipsregs.h> 23 - #include <asm/regdef.h> 24 - #include <asm/stackframe.h> 25 - 26 - #include <asm/mips-boards/simint.h> 27 - 28 - 29 - .text 30 - .set noreorder 31 - .set noat 32 - .align 5 33 - NESTED(simIRQ, PT_SIZE, sp) 34 - SAVE_ALL 35 - CLI 36 - .set at 37 - 38 - mfc0 s0, CP0_CAUSE # get irq bits 39 - mfc0 s1, CP0_STATUS # get irq mask 40 - andi s0, ST0_IM # CAUSE.CE may be non-zero! 41 - and s0, s1 42 - 43 - #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) 44 - .set mips32 45 - clz a0, s0 46 - .set mips0 47 - negu a0 48 - addu a0, 31-CAUSEB_IP 49 - bltz a0, spurious 50 - #else 51 - beqz s0, spurious 52 - li a0, 7 53 - 54 - and t0, s0, 0xf000 55 - sltiu t0, t0, 1 56 - sll t0, 2 57 - subu a0, t0 58 - sll s0, t0 59 - 60 - and t0, s0, 0xc000 61 - sltiu t0, t0, 1 62 - sll t0, 1 63 - subu a0, t0 64 - sll s0, t0 65 - 66 - and t0, s0, 0x8000 67 - sltiu t0, t0, 1 68 - # sll t0, 0 69 - subu a0, t0 70 - # sll s0, t0 71 - #endif 72 - 73 - #ifdef CASCADE_IRQ 74 - li a1, CASCADE_IRQ 75 - bne a0, a1, 1f 76 - addu a0, MIPSCPU_INT_BASE 77 - 78 - jal CASCADE_DISPATCH 79 - move a0, sp 80 - 81 - j ret_from_irq 82 - nop 83 - 1: 84 - #else 85 - addu a0, MIPSCPU_INT_BASE 86 - #endif 87 - 88 - jal do_IRQ 89 - move a1, sp 90 - 91 - j ret_from_irq 92 - nop 93 - 94 - 95 - spurious: 96 - jal spurious_interrupt 97 - nop 98 - j ret_from_irq 99 - nop 100 - END(simIRQ)
···
-2
arch/mips/mips-boards/sim/sim_setup.c
··· 37 38 39 extern void sim_time_init(void); 40 - extern void sim_timer_setup(struct irqaction *irq); 41 static void __init serial_init(void); 42 unsigned int _isbonito = 0; 43 ··· 55 serial_init(); 56 57 board_time_init = sim_time_init; 58 - board_timer_setup = sim_timer_setup; 59 prom_printf("Linux started...\n"); 60 61 #ifdef CONFIG_MT_SMP
··· 37 38 39 extern void sim_time_init(void); 40 static void __init serial_init(void); 41 unsigned int _isbonito = 0; 42 ··· 56 serial_init(); 57 58 board_time_init = sim_time_init; 59 prom_printf("Linux started...\n"); 60 61 #ifdef CONFIG_MT_SMP
+1 -3
arch/mips/mips-boards/sim/sim_time.c
··· 33 34 unsigned long cpu_khz; 35 36 - extern asmlinkage void ll_local_timer_interrupt(int irq, struct pt_regs *regs); 37 - 38 irqreturn_t sim_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) 39 { 40 #ifdef CONFIG_SMP ··· 183 } 184 185 186 - void __init sim_timer_setup(struct irqaction *irq) 187 { 188 if (cpu_has_veic) { 189 set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
··· 33 34 unsigned long cpu_khz; 35 36 irqreturn_t sim_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) 37 { 38 #ifdef CONFIG_SMP ··· 185 } 186 187 188 + void __init plat_timer_setup(struct irqaction *irq) 189 { 190 if (cpu_has_veic) { 191 set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
+11 -10
arch/mips/mm/c-r4k.c
··· 578 * secondary cache will result in any entries in the primary caches 579 * also getting invalidated which hopefully is a bit more economical. 580 */ 581 - if (cpu_has_subset_pcaches) { 582 unsigned long addr = (unsigned long) page_address(page); 583 584 r4k_blast_scache_page(addr); ··· 634 /* Catch bad driver code */ 635 BUG_ON(size == 0); 636 637 - if (cpu_has_subset_pcaches) { 638 if (size >= scache_size) 639 r4k_blast_scache(); 640 else ··· 662 /* Catch bad driver code */ 663 BUG_ON(size == 0); 664 665 - if (cpu_has_subset_pcaches) { 666 if (size >= scache_size) 667 r4k_blast_scache(); 668 else ··· 862 break; 863 864 case CPU_VR4133: 865 - write_c0_config(config & ~CONF_EB); 866 case CPU_VR4131: 867 /* Workaround for cache instruction bug of VR4131 */ 868 if (c->processor_id == 0x0c80U || c->processor_id == 0x0c81U || 869 c->processor_id == 0x0c82U) { 870 - config &= ~0x00000030U; 871 - config |= 0x00410000U; 872 write_c0_config(config); 873 - } 874 icache_size = 1 << (10 + ((config & CONF_IC) >> 9)); 875 c->icache.linesz = 16 << ((config & CONF_IB) >> 5); 876 c->icache.ways = 2; ··· 883 c->dcache.linesz = 16 << ((config & CONF_DB) >> 4); 884 c->dcache.ways = 2; 885 c->dcache.waybit = __ffs(dcache_size/2); 886 - 887 - c->options |= MIPS_CPU_CACHE_CDEX_P; 888 break; 889 890 case CPU_VR41XX: ··· 1193 printk("Unified secondary cache %ldkB %s, linesize %d bytes.\n", 1194 scache_size >> 10, way_string[c->scache.ways], c->scache.linesz); 1195 1196 - c->options |= MIPS_CPU_SUBSET_CACHES; 1197 } 1198 1199 void au1x00_fixup_config_od(void)
··· 578 * secondary cache will result in any entries in the primary caches 579 * also getting invalidated which hopefully is a bit more economical. 580 */ 581 + if (cpu_has_inclusive_pcaches) { 582 unsigned long addr = (unsigned long) page_address(page); 583 584 r4k_blast_scache_page(addr); ··· 634 /* Catch bad driver code */ 635 BUG_ON(size == 0); 636 637 + if (cpu_has_inclusive_pcaches) { 638 if (size >= scache_size) 639 r4k_blast_scache(); 640 else ··· 662 /* Catch bad driver code */ 663 BUG_ON(size == 0); 664 665 + if (cpu_has_inclusive_pcaches) { 666 if (size >= scache_size) 667 r4k_blast_scache(); 668 else ··· 862 break; 863 864 case CPU_VR4133: 865 + write_c0_config(config & ~VR41_CONF_P4K); 866 case CPU_VR4131: 867 /* Workaround for cache instruction bug of VR4131 */ 868 if (c->processor_id == 0x0c80U || c->processor_id == 0x0c81U || 869 c->processor_id == 0x0c82U) { 870 + config |= 0x00400000U; 871 + if (c->processor_id == 0x0c80U) 872 + config |= VR41_CONF_BP; 873 write_c0_config(config); 874 + } else 875 + c->options |= MIPS_CPU_CACHE_CDEX_P; 876 + 877 icache_size = 1 << (10 + ((config & CONF_IC) >> 9)); 878 c->icache.linesz = 16 << ((config & CONF_IB) >> 5); 879 c->icache.ways = 2; ··· 880 c->dcache.linesz = 16 << ((config & CONF_DB) >> 4); 881 c->dcache.ways = 2; 882 c->dcache.waybit = __ffs(dcache_size/2); 883 break; 884 885 case CPU_VR41XX: ··· 1192 printk("Unified secondary cache %ldkB %s, linesize %d bytes.\n", 1193 scache_size >> 10, way_string[c->scache.ways], c->scache.linesz); 1194 1195 + c->options |= MIPS_CPU_INCLUSIVE_CACHES; 1196 } 1197 1198 void au1x00_fixup_config_od(void)
+40 -25
arch/mips/mm/init.c
··· 139 #ifndef CONFIG_NEED_MULTIPLE_NODES 140 extern void pagetable_init(void); 141 142 void __init paging_init(void) 143 { 144 - unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0}; 145 unsigned long max_dma, high, low; 146 147 pagetable_init(); 148 ··· 200 zones_size[ZONE_HIGHMEM] = high - low; 201 #endif 202 203 free_area_init(zones_size); 204 - } 205 - 206 - static inline int page_is_ram(unsigned long pagenr) 207 - { 208 - int i; 209 - 210 - for (i = 0; i < boot_mem_map.nr_map; i++) { 211 - unsigned long addr, end; 212 - 213 - if (boot_mem_map.map[i].type != BOOT_MEM_RAM) 214 - /* not usable memory */ 215 - continue; 216 - 217 - addr = PFN_UP(boot_mem_map.map[i].addr); 218 - end = PFN_DOWN(boot_mem_map.map[i].addr + 219 - boot_mem_map.map[i].size); 220 - 221 - if (pagenr >= addr && pagenr < end) 222 - return 1; 223 - } 224 - 225 - return 0; 226 } 227 228 static struct kcore_list kcore_mem, kcore_vmalloc; ··· 226 #ifdef CONFIG_DISCONTIGMEM 227 #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet" 228 #endif 229 - max_mapnr = num_physpages = highend_pfn; 230 #else 231 - max_mapnr = num_physpages = max_low_pfn; 232 #endif 233 high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); 234 ··· 242 if (PageReserved(pfn_to_page(tmp))) 243 reservedpages++; 244 } 245 246 #ifdef CONFIG_HIGHMEM 247 for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { ··· 261 totalhigh_pages++; 262 } 263 totalram_pages += totalhigh_pages; 264 #endif 265 266 codesize = (unsigned long) &_etext - (unsigned long) &_text;
··· 139 #ifndef CONFIG_NEED_MULTIPLE_NODES 140 extern void pagetable_init(void); 141 142 + static int __init page_is_ram(unsigned long pagenr) 143 + { 144 + int i; 145 + 146 + for (i = 0; i < boot_mem_map.nr_map; i++) { 147 + unsigned long addr, end; 148 + 149 + if (boot_mem_map.map[i].type != BOOT_MEM_RAM) 150 + /* not usable memory */ 151 + continue; 152 + 153 + addr = PFN_UP(boot_mem_map.map[i].addr); 154 + end = PFN_DOWN(boot_mem_map.map[i].addr + 155 + boot_mem_map.map[i].size); 156 + 157 + if (pagenr >= addr && pagenr < end) 158 + return 1; 159 + } 160 + 161 + return 0; 162 + } 163 + 164 void __init paging_init(void) 165 { 166 + unsigned long zones_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 }; 167 unsigned long max_dma, high, low; 168 + #ifndef CONFIG_FLATMEM 169 + unsigned long zholes_size[] = { [0 ... MAX_NR_ZONES - 1] = 0 }; 170 + unsigned long i, j, pfn; 171 + #endif 172 173 pagetable_init(); 174 ··· 174 zones_size[ZONE_HIGHMEM] = high - low; 175 #endif 176 177 + #ifdef CONFIG_FLATMEM 178 free_area_init(zones_size); 179 + #else 180 + pfn = 0; 181 + for (i = 0; i < MAX_NR_ZONES; i++) 182 + for (j = 0; j < zones_size[i]; j++, pfn++) 183 + if (!page_is_ram(pfn)) 184 + zholes_size[i]++; 185 + free_area_init_node(0, NODE_DATA(0), zones_size, 0, zholes_size); 186 + #endif 187 } 188 189 static struct kcore_list kcore_mem, kcore_vmalloc; ··· 213 #ifdef CONFIG_DISCONTIGMEM 214 #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet" 215 #endif 216 + max_mapnr = highend_pfn; 217 #else 218 + max_mapnr = max_low_pfn; 219 #endif 220 high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); 221 ··· 229 if (PageReserved(pfn_to_page(tmp))) 230 reservedpages++; 231 } 232 + num_physpages = ram; 233 234 #ifdef CONFIG_HIGHMEM 235 for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { ··· 247 totalhigh_pages++; 248 } 249 totalram_pages += totalhigh_pages; 250 + num_physpages += totalhigh_pages; 251 #endif 252 253 codesize = (unsigned long) &_etext - (unsigned long) &_text;
+2
arch/mips/mm/pgtable.c
··· 15 printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); 16 pfn = max_mapnr; 17 while (pfn-- > 0) { 18 page = pfn_to_page(pfn); 19 total++; 20 if (PageHighMem(page))
··· 15 printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); 16 pfn = max_mapnr; 17 while (pfn-- > 0) { 18 + if (!pfn_valid(pfn)) 19 + continue; 20 page = pfn_to_page(pfn); 21 total++; 22 if (PageHighMem(page))
+70 -87
arch/mips/mm/tlbex.c
··· 5 * 6 * Synthesize TLB refill handlers at runtime. 7 * 8 - * Copyright (C) 2004,2005 by Thiemo Seufer 9 * Copyright (C) 2005 Maciej W. Rozycki 10 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 11 * ··· 34 #include <asm/elf.h> 35 #include <asm/smp.h> 36 #include <asm/war.h> 37 - 38 - /* #define DEBUG_TLB */ 39 40 static __init int __attribute__((unused)) r45k_bvahwbug(void) 41 { ··· 726 { 727 long pgdc = (long)pgd_current; 728 u32 *p; 729 730 memset(tlb_handler, 0, sizeof(tlb_handler)); 731 p = tlb_handler; ··· 752 if (p > tlb_handler + 32) 753 panic("TLB refill handler space exceeded"); 754 755 - printk("Synthesized TLB refill handler (%u instructions).\n", 756 - (unsigned int)(p - tlb_handler)); 757 - #ifdef DEBUG_TLB 758 - { 759 - int i; 760 761 - for (i = 0; i < (p - tlb_handler); i++) 762 - printk("%08x\n", tlb_handler[i]); 763 - } 764 - #endif 765 766 memcpy((void *)ebase, tlb_handler, 0x80); 767 } ··· 1172 struct reloc *r = relocs; 1173 u32 *f; 1174 unsigned int final_len; 1175 1176 memset(tlb_handler, 0, sizeof(tlb_handler)); 1177 memset(labels, 0, sizeof(labels)); ··· 1270 #endif /* CONFIG_64BIT */ 1271 1272 resolve_relocs(relocs, labels); 1273 - printk("Synthesized TLB refill handler (%u instructions).\n", 1274 - final_len); 1275 1276 - #ifdef DEBUG_TLB 1277 - { 1278 - int i; 1279 - 1280 - f = final_handler; 1281 #ifdef CONFIG_64BIT 1282 - if (final_len > 32) 1283 - final_len = 64; 1284 - else 1285 - f = final_handler + 32; 1286 #endif /* CONFIG_64BIT */ 1287 - for (i = 0; i < final_len; i++) 1288 - printk("%08x\n", f[i]); 1289 - } 1290 - #endif 1291 1292 memcpy((void *)ebase, final_handler, 0x100); 1293 } ··· 1517 u32 *p = handle_tlbl; 1518 struct label *l = labels; 1519 struct reloc *r = relocs; 1520 1521 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1522 memset(labels, 0, sizeof(labels)); ··· 1537 panic("TLB load handler fastpath space exceeded"); 1538 1539 resolve_relocs(relocs, labels); 1540 - printk("Synthesized TLB load handler fastpath (%u instructions).\n", 1541 - (unsigned int)(p - handle_tlbl)); 1542 1543 - #ifdef DEBUG_TLB 1544 - { 1545 - int i; 1546 - 1547 - for (i = 0; i < (p - handle_tlbl); i++) 1548 - printk("%08x\n", handle_tlbl[i]); 1549 - } 1550 - #endif 1551 } 1552 1553 static void __init build_r3000_tlb_store_handler(void) ··· 1552 u32 *p = handle_tlbs; 1553 struct label *l = labels; 1554 struct reloc *r = relocs; 1555 1556 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1557 memset(labels, 0, sizeof(labels)); ··· 1572 panic("TLB store handler fastpath space exceeded"); 1573 1574 resolve_relocs(relocs, labels); 1575 - printk("Synthesized TLB store handler fastpath (%u instructions).\n", 1576 - (unsigned int)(p - handle_tlbs)); 1577 1578 - #ifdef DEBUG_TLB 1579 - { 1580 - int i; 1581 - 1582 - for (i = 0; i < (p - handle_tlbs); i++) 1583 - printk("%08x\n", handle_tlbs[i]); 1584 - } 1585 - #endif 1586 } 1587 1588 static void __init build_r3000_tlb_modify_handler(void) ··· 1587 u32 *p = handle_tlbm; 1588 struct label *l = labels; 1589 struct reloc *r = relocs; 1590 1591 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1592 memset(labels, 0, sizeof(labels)); ··· 1607 panic("TLB modify handler fastpath space exceeded"); 1608 1609 resolve_relocs(relocs, labels); 1610 - printk("Synthesized TLB modify handler fastpath (%u instructions).\n", 1611 - (unsigned int)(p - handle_tlbm)); 1612 1613 - #ifdef DEBUG_TLB 1614 - { 1615 - int i; 1616 - 1617 - for (i = 0; i < (p - handle_tlbm); i++) 1618 - printk("%08x\n", handle_tlbm[i]); 1619 - } 1620 - #endif 1621 } 1622 1623 /* ··· 1666 u32 *p = handle_tlbl; 1667 struct label *l = labels; 1668 struct reloc *r = relocs; 1669 1670 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1671 memset(labels, 0, sizeof(labels)); ··· 1694 panic("TLB load handler fastpath space exceeded"); 1695 1696 resolve_relocs(relocs, labels); 1697 - printk("Synthesized TLB load handler fastpath (%u instructions).\n", 1698 - (unsigned int)(p - handle_tlbl)); 1699 1700 - #ifdef DEBUG_TLB 1701 - { 1702 - int i; 1703 - 1704 - for (i = 0; i < (p - handle_tlbl); i++) 1705 - printk("%08x\n", handle_tlbl[i]); 1706 - } 1707 - #endif 1708 } 1709 1710 static void __init build_r4000_tlb_store_handler(void) ··· 1709 u32 *p = handle_tlbs; 1710 struct label *l = labels; 1711 struct reloc *r = relocs; 1712 1713 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1714 memset(labels, 0, sizeof(labels)); ··· 1728 panic("TLB store handler fastpath space exceeded"); 1729 1730 resolve_relocs(relocs, labels); 1731 - printk("Synthesized TLB store handler fastpath (%u instructions).\n", 1732 - (unsigned int)(p - handle_tlbs)); 1733 1734 - #ifdef DEBUG_TLB 1735 - { 1736 - int i; 1737 - 1738 - for (i = 0; i < (p - handle_tlbs); i++) 1739 - printk("%08x\n", handle_tlbs[i]); 1740 - } 1741 - #endif 1742 } 1743 1744 static void __init build_r4000_tlb_modify_handler(void) ··· 1743 u32 *p = handle_tlbm; 1744 struct label *l = labels; 1745 struct reloc *r = relocs; 1746 1747 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1748 memset(labels, 0, sizeof(labels)); ··· 1763 panic("TLB modify handler fastpath space exceeded"); 1764 1765 resolve_relocs(relocs, labels); 1766 - printk("Synthesized TLB modify handler fastpath (%u instructions).\n", 1767 - (unsigned int)(p - handle_tlbm)); 1768 1769 - #ifdef DEBUG_TLB 1770 - { 1771 - int i; 1772 - 1773 - for (i = 0; i < (p - handle_tlbm); i++) 1774 - printk("%08x\n", handle_tlbm[i]); 1775 - } 1776 - #endif 1777 } 1778 1779 void __init build_tlb_refill_handler(void)
··· 5 * 6 * Synthesize TLB refill handlers at runtime. 7 * 8 + * Copyright (C) 2004,2005,2006 by Thiemo Seufer 9 * Copyright (C) 2005 Maciej W. Rozycki 10 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 11 * ··· 34 #include <asm/elf.h> 35 #include <asm/smp.h> 36 #include <asm/war.h> 37 38 static __init int __attribute__((unused)) r45k_bvahwbug(void) 39 { ··· 728 { 729 long pgdc = (long)pgd_current; 730 u32 *p; 731 + int i; 732 733 memset(tlb_handler, 0, sizeof(tlb_handler)); 734 p = tlb_handler; ··· 753 if (p > tlb_handler + 32) 754 panic("TLB refill handler space exceeded"); 755 756 + pr_info("Synthesized TLB refill handler (%u instructions).\n", 757 + (unsigned int)(p - tlb_handler)); 758 759 + pr_debug("\t.set push\n"); 760 + pr_debug("\t.set noreorder\n"); 761 + for (i = 0; i < (p - tlb_handler); i++) 762 + pr_debug("\t.word 0x%08x\n", tlb_handler[i]); 763 + pr_debug("\t.set pop\n"); 764 765 memcpy((void *)ebase, tlb_handler, 0x80); 766 } ··· 1175 struct reloc *r = relocs; 1176 u32 *f; 1177 unsigned int final_len; 1178 + int i; 1179 1180 memset(tlb_handler, 0, sizeof(tlb_handler)); 1181 memset(labels, 0, sizeof(labels)); ··· 1272 #endif /* CONFIG_64BIT */ 1273 1274 resolve_relocs(relocs, labels); 1275 + pr_info("Synthesized TLB refill handler (%u instructions).\n", 1276 + final_len); 1277 1278 + f = final_handler; 1279 #ifdef CONFIG_64BIT 1280 + if (final_len > 32) 1281 + final_len = 64; 1282 + else 1283 + f = final_handler + 32; 1284 #endif /* CONFIG_64BIT */ 1285 + pr_debug("\t.set push\n"); 1286 + pr_debug("\t.set noreorder\n"); 1287 + for (i = 0; i < final_len; i++) 1288 + pr_debug("\t.word 0x%08x\n", f[i]); 1289 + pr_debug("\t.set pop\n"); 1290 1291 memcpy((void *)ebase, final_handler, 0x100); 1292 } ··· 1522 u32 *p = handle_tlbl; 1523 struct label *l = labels; 1524 struct reloc *r = relocs; 1525 + int i; 1526 1527 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1528 memset(labels, 0, sizeof(labels)); ··· 1541 panic("TLB load handler fastpath space exceeded"); 1542 1543 resolve_relocs(relocs, labels); 1544 + pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", 1545 + (unsigned int)(p - handle_tlbl)); 1546 1547 + pr_debug("\t.set push\n"); 1548 + pr_debug("\t.set noreorder\n"); 1549 + for (i = 0; i < (p - handle_tlbl); i++) 1550 + pr_debug("\t.word 0x%08x\n", handle_tlbl[i]); 1551 + pr_debug("\t.set pop\n"); 1552 } 1553 1554 static void __init build_r3000_tlb_store_handler(void) ··· 1559 u32 *p = handle_tlbs; 1560 struct label *l = labels; 1561 struct reloc *r = relocs; 1562 + int i; 1563 1564 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1565 memset(labels, 0, sizeof(labels)); ··· 1578 panic("TLB store handler fastpath space exceeded"); 1579 1580 resolve_relocs(relocs, labels); 1581 + pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", 1582 + (unsigned int)(p - handle_tlbs)); 1583 1584 + pr_debug("\t.set push\n"); 1585 + pr_debug("\t.set noreorder\n"); 1586 + for (i = 0; i < (p - handle_tlbs); i++) 1587 + pr_debug("\t.word 0x%08x\n", handle_tlbs[i]); 1588 + pr_debug("\t.set pop\n"); 1589 } 1590 1591 static void __init build_r3000_tlb_modify_handler(void) ··· 1596 u32 *p = handle_tlbm; 1597 struct label *l = labels; 1598 struct reloc *r = relocs; 1599 + int i; 1600 1601 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1602 memset(labels, 0, sizeof(labels)); ··· 1615 panic("TLB modify handler fastpath space exceeded"); 1616 1617 resolve_relocs(relocs, labels); 1618 + pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", 1619 + (unsigned int)(p - handle_tlbm)); 1620 1621 + pr_debug("\t.set push\n"); 1622 + pr_debug("\t.set noreorder\n"); 1623 + for (i = 0; i < (p - handle_tlbm); i++) 1624 + pr_debug("\t.word 0x%08x\n", handle_tlbm[i]); 1625 + pr_debug("\t.set pop\n"); 1626 } 1627 1628 /* ··· 1677 u32 *p = handle_tlbl; 1678 struct label *l = labels; 1679 struct reloc *r = relocs; 1680 + int i; 1681 1682 memset(handle_tlbl, 0, sizeof(handle_tlbl)); 1683 memset(labels, 0, sizeof(labels)); ··· 1704 panic("TLB load handler fastpath space exceeded"); 1705 1706 resolve_relocs(relocs, labels); 1707 + pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", 1708 + (unsigned int)(p - handle_tlbl)); 1709 1710 + pr_debug("\t.set push\n"); 1711 + pr_debug("\t.set noreorder\n"); 1712 + for (i = 0; i < (p - handle_tlbl); i++) 1713 + pr_debug("\t.word 0x%08x\n", handle_tlbl[i]); 1714 + pr_debug("\t.set pop\n"); 1715 } 1716 1717 static void __init build_r4000_tlb_store_handler(void) ··· 1722 u32 *p = handle_tlbs; 1723 struct label *l = labels; 1724 struct reloc *r = relocs; 1725 + int i; 1726 1727 memset(handle_tlbs, 0, sizeof(handle_tlbs)); 1728 memset(labels, 0, sizeof(labels)); ··· 1740 panic("TLB store handler fastpath space exceeded"); 1741 1742 resolve_relocs(relocs, labels); 1743 + pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", 1744 + (unsigned int)(p - handle_tlbs)); 1745 1746 + pr_debug("\t.set push\n"); 1747 + pr_debug("\t.set noreorder\n"); 1748 + for (i = 0; i < (p - handle_tlbs); i++) 1749 + pr_debug("\t.word 0x%08x\n", handle_tlbs[i]); 1750 + pr_debug("\t.set pop\n"); 1751 } 1752 1753 static void __init build_r4000_tlb_modify_handler(void) ··· 1758 u32 *p = handle_tlbm; 1759 struct label *l = labels; 1760 struct reloc *r = relocs; 1761 + int i; 1762 1763 memset(handle_tlbm, 0, sizeof(handle_tlbm)); 1764 memset(labels, 0, sizeof(labels)); ··· 1777 panic("TLB modify handler fastpath space exceeded"); 1778 1779 resolve_relocs(relocs, labels); 1780 + pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", 1781 + (unsigned int)(p - handle_tlbm)); 1782 1783 + pr_debug("\t.set push\n"); 1784 + pr_debug("\t.set noreorder\n"); 1785 + for (i = 0; i < (p - handle_tlbm); i++) 1786 + pr_debug("\t.word 0x%08x\n", handle_tlbm[i]); 1787 + pr_debug("\t.set pop\n"); 1788 } 1789 1790 void __init build_tlb_refill_handler(void)
+1 -2
arch/mips/momentum/jaguar_atx/setup.c
··· 212 return 0; 213 } 214 215 - void momenco_timer_setup(struct irqaction *irq) 216 { 217 setup_irq(8, irq); 218 } ··· 226 wire_stupidity_into_tlb(); 227 228 mips_hpt_frequency = cpu_clock / 2; 229 - board_timer_setup = momenco_timer_setup; 230 231 rtc_mips_get_time = m48t37y_get_time; 232 rtc_mips_set_time = m48t37y_set_time;
··· 212 return 0; 213 } 214 215 + void __init plat_timer_setup(struct irqaction *irq) 216 { 217 setup_irq(8, irq); 218 } ··· 226 wire_stupidity_into_tlb(); 227 228 mips_hpt_frequency = cpu_clock / 2; 229 230 rtc_mips_get_time = m48t37y_get_time; 231 rtc_mips_set_time = m48t37y_set_time;
+1 -2
arch/mips/momentum/ocelot_3/setup.c
··· 197 return 0; 198 } 199 200 - void momenco_timer_setup(struct irqaction *irq) 201 { 202 setup_irq(7, irq); /* Timer interrupt, unmask status IM7 */ 203 } ··· 211 * the Rm7900 and the Rm7065C 212 */ 213 mips_hpt_frequency = cpu_clock / 2; 214 - board_timer_setup = momenco_timer_setup; 215 216 rtc_mips_get_time = m48t37y_get_time; 217 rtc_mips_set_time = m48t37y_set_time;
··· 197 return 0; 198 } 199 200 + void __init plat_timer_setup(struct irqaction *irq) 201 { 202 setup_irq(7, irq); /* Timer interrupt, unmask status IM7 */ 203 } ··· 211 * the Rm7900 and the Rm7065C 212 */ 213 mips_hpt_frequency = cpu_clock / 2; 214 215 rtc_mips_get_time = m48t37y_get_time; 216 rtc_mips_set_time = m48t37y_set_time;
+1 -1
arch/mips/momentum/ocelot_c/cpci-irq.c
··· 128 129 #define shutdown_cpci_irq disable_cpci_irq 130 131 - struct hw_interrupt_type cpci_irq_type = { 132 .typename = "CPCI/FPGA", 133 .startup = startup_cpci_irq, 134 .shutdown = shutdown_cpci_irq,
··· 128 129 #define shutdown_cpci_irq disable_cpci_irq 130 131 + struct irq_chip cpci_irq_type = { 132 .typename = "CPCI/FPGA", 133 .startup = startup_cpci_irq, 134 .shutdown = shutdown_cpci_irq,
+1 -2
arch/mips/momentum/ocelot_c/setup.c
··· 209 return 0; 210 } 211 212 - void momenco_timer_setup(struct irqaction *irq) 213 { 214 setup_irq(7, irq); 215 } ··· 224 #error Unknown CPU for this board 225 #endif 226 printk("momenco_time_init cpu_clock=%d\n", cpu_clock); 227 - board_timer_setup = momenco_timer_setup; 228 229 rtc_mips_get_time = m48t37y_get_time; 230 rtc_mips_set_time = m48t37y_set_time;
··· 209 return 0; 210 } 211 212 + void __init plat_timer_setup(struct irqaction *irq) 213 { 214 setup_irq(7, irq); 215 } ··· 224 #error Unknown CPU for this board 225 #endif 226 printk("momenco_time_init cpu_clock=%d\n", cpu_clock); 227 228 rtc_mips_get_time = m48t37y_get_time; 229 rtc_mips_set_time = m48t37y_set_time;
+1 -1
arch/mips/momentum/ocelot_c/uart-irq.c
··· 121 122 #define shutdown_uart_irq disable_uart_irq 123 124 - struct hw_interrupt_type uart_irq_type = { 125 .typename = "UART/FPGA", 126 .startup = startup_uart_irq, 127 .shutdown = shutdown_uart_irq,
··· 121 122 #define shutdown_uart_irq disable_uart_irq 123 124 + struct irq_chip uart_irq_type = { 125 .typename = "UART/FPGA", 126 .startup = startup_uart_irq, 127 .shutdown = shutdown_uart_irq,
+2
arch/mips/oprofile/op_model_mipsxx.c
··· 49 default: \ 50 BUG(); \ 51 } \ 52 } \ 53 \ 54 static inline void w_c0_ ## r ## n(unsigned int value) \ ··· 66 default: \ 67 BUG(); \ 68 } \ 69 } \ 70 71 __define_perf_accessors(perfcntr, 0, 2)
··· 49 default: \ 50 BUG(); \ 51 } \ 52 + return 0; \ 53 } \ 54 \ 55 static inline void w_c0_ ## r ## n(unsigned int value) \ ··· 65 default: \ 66 BUG(); \ 67 } \ 68 + return; \ 69 } \ 70 71 __define_perf_accessors(perfcntr, 0, 2)
-1
arch/mips/pci/fixup-emma2rh.c
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 - #include <linux/config.h> 27 #include <linux/kernel.h> 28 #include <linux/init.h> 29 #include <linux/types.h>
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 #include <linux/kernel.h> 27 #include <linux/init.h> 28 #include <linux/types.h>
-1
arch/mips/pci/fixup-mpc30x.c
··· 21 #include <linux/pci.h> 22 23 #include <asm/vr41xx/mpc30x.h> 24 - #include <asm/vr41xx/vrc4173.h> 25 26 static const int internal_func_irqs[] __initdata = { 27 VRC4173_CASCADE_IRQ,
··· 21 #include <linux/pci.h> 22 23 #include <asm/vr41xx/mpc30x.h> 24 25 static const int internal_func_irqs[] __initdata = { 26 VRC4173_CASCADE_IRQ,
-1
arch/mips/pci/ops-emma2rh.c
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 - #include <linux/config.h> 27 #include <linux/pci.h> 28 #include <linux/kernel.h> 29 #include <linux/types.h>
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 #include <linux/pci.h> 27 #include <linux/kernel.h> 28 #include <linux/types.h>
-1
arch/mips/pci/pci-emma2rh.c
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 - #include <linux/config.h> 27 #include <linux/kernel.h> 28 #include <linux/init.h> 29 #include <linux/types.h>
··· 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 */ 25 26 #include <linux/kernel.h> 27 #include <linux/init.h> 28 #include <linux/types.h>
+1 -1
arch/mips/philips/pnx8550/common/int.c
··· 207 } 208 } 209 210 - static struct hw_interrupt_type level_irq_type = { 211 .typename = "PNX Level IRQ", 212 .startup = startup_irq, 213 .shutdown = shutdown_irq,
··· 207 } 208 } 209 210 + static struct irq_chip level_irq_type = { 211 .typename = "PNX Level IRQ", 212 .startup = startup_irq, 213 .shutdown = shutdown_irq,
+1 -4
arch/mips/philips/pnx8550/common/setup.c
··· 20 #include <linux/init.h> 21 #include <linux/sched.h> 22 #include <linux/ioport.h> 23 #include <linux/mm.h> 24 #include <linux/delay.h> 25 #include <linux/interrupt.h> ··· 49 extern void pnx8550_machine_power_off(void); 50 extern struct resource ioport_resource; 51 extern struct resource iomem_resource; 52 - extern void (*board_time_init)(void); 53 extern void pnx8550_time_init(void); 54 - extern void (*board_timer_setup)(struct irqaction *irq); 55 - extern void pnx8550_timer_setup(struct irqaction *irq); 56 extern void rs_kgdb_hook(int tty_no); 57 extern void prom_printf(char *fmt, ...); 58 extern char *prom_getcmdline(void); ··· 108 pm_power_off = pnx8550_machine_power_off; 109 110 board_time_init = pnx8550_time_init; 111 - board_timer_setup = pnx8550_timer_setup; 112 113 /* Clear the Global 2 Register, PCI Inta Output Enable Registers 114 Bit 1:Enable DAC Powerdown
··· 20 #include <linux/init.h> 21 #include <linux/sched.h> 22 #include <linux/ioport.h> 23 + #include <linux/irq.h> 24 #include <linux/mm.h> 25 #include <linux/delay.h> 26 #include <linux/interrupt.h> ··· 48 extern void pnx8550_machine_power_off(void); 49 extern struct resource ioport_resource; 50 extern struct resource iomem_resource; 51 extern void pnx8550_time_init(void); 52 extern void rs_kgdb_hook(int tty_no); 53 extern void prom_printf(char *fmt, ...); 54 extern char *prom_getcmdline(void); ··· 110 pm_power_off = pnx8550_machine_power_off; 111 112 board_time_init = pnx8550_time_init; 113 114 /* Clear the Global 2 Register, PCI Inta Output Enable Registers 115 Bit 1:Enable DAC Powerdown
+1 -10
arch/mips/philips/pnx8550/common/time.c
··· 70 mips_hpt_frequency = 27UL * ((1000000UL * n)/(m * pow2p)); 71 } 72 73 - /* 74 - * pnx8550_timer_setup() - it does the following things: 75 - * 76 - * 5) board_timer_setup() - 77 - * a) (optional) over-write any choices made above by time_init(). 78 - * b) machine specific code should setup the timer irqaction. 79 - * c) enable the timer interrupt 80 - */ 81 - 82 - void __init pnx8550_timer_setup(struct irqaction *irq) 83 { 84 int configPR; 85
··· 70 mips_hpt_frequency = 27UL * ((1000000UL * n)/(m * pow2p)); 71 } 72 73 + void __init plat_timer_setup(struct irqaction *irq) 74 { 75 int configPR; 76
+1 -2
arch/mips/pmc-sierra/yosemite/setup.c
··· 133 return 0; 134 } 135 136 - void yosemite_timer_setup(struct irqaction *irq) 137 { 138 setup_irq(7, irq); 139 } 140 141 void yosemite_time_init(void) 142 { 143 - board_timer_setup = yosemite_timer_setup; 144 mips_hpt_frequency = cpu_clock / 2; 145 mips_hpt_frequency = 33000000 * 3 * 5; 146 }
··· 133 return 0; 134 } 135 136 + void __init plat_timer_setup(struct irqaction *irq) 137 { 138 setup_irq(7, irq); 139 } 140 141 void yosemite_time_init(void) 142 { 143 mips_hpt_frequency = cpu_clock / 2; 144 mips_hpt_frequency = 33000000 * 3 * 5; 145 }
-1
arch/mips/qemu/q-reset.c
··· 1 - #include <linux/config.h> 2 3 #include <asm/io.h> 4 #include <asm/reboot.h>
··· 1 2 #include <asm/io.h> 3 #include <asm/reboot.h>
+1 -3
arch/mips/qemu/q-setup.c
··· 11 return "Qemu"; 12 } 13 14 - static void __init qemu_timer_setup(struct irqaction *irq) 15 { 16 /* set the clock to 100 Hz */ 17 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 23 void __init plat_mem_setup(void) 24 { 25 set_io_port_base(QEMU_PORT_BASE); 26 - board_timer_setup = qemu_timer_setup; 27 - 28 qemu_reboot_setup(); 29 }
··· 11 return "Qemu"; 12 } 13 14 + void __init plat_timer_setup(struct irqaction *irq) 15 { 16 /* set the clock to 100 Hz */ 17 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 23 void __init plat_mem_setup(void) 24 { 25 set_io_port_base(QEMU_PORT_BASE); 26 qemu_reboot_setup(); 27 }
+2 -2
arch/mips/sgi-ip22/ip22-eisa.c
··· 144 enable_eisa1_irq(irq); 145 } 146 147 - static struct hw_interrupt_type ip22_eisa1_irq_type = { 148 .typename = "IP22 EISA", 149 .startup = startup_eisa1_irq, 150 .shutdown = shutdown_eisa1_irq, ··· 206 enable_eisa2_irq(irq); 207 } 208 209 - static struct hw_interrupt_type ip22_eisa2_irq_type = { 210 .typename = "IP22 EISA", 211 .startup = startup_eisa2_irq, 212 .shutdown = shutdown_eisa2_irq,
··· 144 enable_eisa1_irq(irq); 145 } 146 147 + static struct irq_chip ip22_eisa1_irq_type = { 148 .typename = "IP22 EISA", 149 .startup = startup_eisa1_irq, 150 .shutdown = shutdown_eisa1_irq, ··· 206 enable_eisa2_irq(irq); 207 } 208 209 + static struct irq_chip ip22_eisa2_irq_type = { 210 .typename = "IP22 EISA", 211 .startup = startup_eisa2_irq, 212 .shutdown = shutdown_eisa2_irq,
+5 -5
arch/mips/sgi-ip22/ip22-int.c
··· 74 enable_local0_irq(irq); 75 } 76 77 - static struct hw_interrupt_type ip22_local0_irq_type = { 78 .typename = "IP22 local 0", 79 .startup = startup_local0_irq, 80 .shutdown = shutdown_local0_irq, ··· 120 enable_local1_irq(irq); 121 } 122 123 - static struct hw_interrupt_type ip22_local1_irq_type = { 124 .typename = "IP22 local 1", 125 .startup = startup_local1_irq, 126 .shutdown = shutdown_local1_irq, ··· 166 enable_local2_irq(irq); 167 } 168 169 - static struct hw_interrupt_type ip22_local2_irq_type = { 170 .typename = "IP22 local 2", 171 .startup = startup_local2_irq, 172 .shutdown = shutdown_local2_irq, ··· 212 enable_local3_irq(irq); 213 } 214 215 - static struct hw_interrupt_type ip22_local3_irq_type = { 216 .typename = "IP22 local 3", 217 .startup = startup_local3_irq, 218 .shutdown = shutdown_local3_irq, ··· 421 mips_cpu_irq_init(SGINT_CPU); 422 423 for (i = SGINT_LOCAL0; i < SGI_INTERRUPTS; i++) { 424 - hw_irq_controller *handler; 425 426 if (i < SGINT_LOCAL1) 427 handler = &ip22_local0_irq_type;
··· 74 enable_local0_irq(irq); 75 } 76 77 + static struct irq_chip ip22_local0_irq_type = { 78 .typename = "IP22 local 0", 79 .startup = startup_local0_irq, 80 .shutdown = shutdown_local0_irq, ··· 120 enable_local1_irq(irq); 121 } 122 123 + static struct irq_chip ip22_local1_irq_type = { 124 .typename = "IP22 local 1", 125 .startup = startup_local1_irq, 126 .shutdown = shutdown_local1_irq, ··· 166 enable_local2_irq(irq); 167 } 168 169 + static struct irq_chip ip22_local2_irq_type = { 170 .typename = "IP22 local 2", 171 .startup = startup_local2_irq, 172 .shutdown = shutdown_local2_irq, ··· 212 enable_local3_irq(irq); 213 } 214 215 + static struct irq_chip ip22_local3_irq_type = { 216 .typename = "IP22 local 3", 217 .startup = startup_local3_irq, 218 .shutdown = shutdown_local3_irq, ··· 421 mips_cpu_irq_init(SGINT_CPU); 422 423 for (i = SGINT_LOCAL0; i < SGI_INTERRUPTS; i++) { 424 + struct irq_chip *handler; 425 426 if (i < SGINT_LOCAL1) 427 handler = &ip22_local0_irq_type;
+4 -6
arch/mips/sgi-ip22/ip22-time.c
··· 7 * Ralf Baechle or David S. Miller (sorry guys, i'm really not sure) 8 * 9 * Copyright (C) 2001 by Ladislav Michl 10 - * Copyright (C) 2003 Ralf Baechle (ralf@linux-mips.org) 11 */ 12 #include <linux/bcd.h> 13 #include <linux/ds1286.h> 14 #include <linux/init.h> 15 #include <linux/kernel.h> 16 #include <linux/interrupt.h> 17 #include <linux/kernel_stat.h> ··· 77 save_control = hpc3c0->rtcregs[RTC_CMD] & 0xff; 78 hpc3c0->rtcregs[RTC_CMD] = save_control | RTC_TE; 79 80 - hpc3c0->rtcregs[RTC_YEAR] = BIN2BCD(tm.tm_sec); 81 hpc3c0->rtcregs[RTC_MONTH] = BIN2BCD(tm.tm_mon); 82 hpc3c0->rtcregs[RTC_DATE] = BIN2BCD(tm.tm_mday); 83 hpc3c0->rtcregs[RTC_HOURS] = BIN2BCD(tm.tm_hour); ··· 199 irq_exit(); 200 } 201 202 - extern int setup_irq(unsigned int irq, struct irqaction *irqaction); 203 - 204 - static void indy_timer_setup(struct irqaction *irq) 205 { 206 /* over-write the handler, we use our own way */ 207 irq->handler = no_action; ··· 215 rtc_mips_set_time = indy_rtc_set_time; 216 217 board_time_init = indy_time_init; 218 - board_timer_setup = indy_timer_setup; 219 }
··· 7 * Ralf Baechle or David S. Miller (sorry guys, i'm really not sure) 8 * 9 * Copyright (C) 2001 by Ladislav Michl 10 + * Copyright (C) 2003, 06 Ralf Baechle (ralf@linux-mips.org) 11 */ 12 #include <linux/bcd.h> 13 #include <linux/ds1286.h> 14 #include <linux/init.h> 15 + #include <linux/irq.h> 16 #include <linux/kernel.h> 17 #include <linux/interrupt.h> 18 #include <linux/kernel_stat.h> ··· 76 save_control = hpc3c0->rtcregs[RTC_CMD] & 0xff; 77 hpc3c0->rtcregs[RTC_CMD] = save_control | RTC_TE; 78 79 + hpc3c0->rtcregs[RTC_YEAR] = BIN2BCD(tm.tm_year); 80 hpc3c0->rtcregs[RTC_MONTH] = BIN2BCD(tm.tm_mon); 81 hpc3c0->rtcregs[RTC_DATE] = BIN2BCD(tm.tm_mday); 82 hpc3c0->rtcregs[RTC_HOURS] = BIN2BCD(tm.tm_hour); ··· 198 irq_exit(); 199 } 200 201 + void __init plat_timer_setup(struct irqaction *irq) 202 { 203 /* over-write the handler, we use our own way */ 204 irq->handler = no_action; ··· 216 rtc_mips_set_time = indy_rtc_set_time; 217 218 board_time_init = indy_time_init; 219 }
+1 -3
arch/mips/sgi-ip27/ip27-irq.c
··· 296 struct bridge_controller *bc = IRQ_TO_BRIDGE(irq); 297 struct hub_data *hub = hub_data(cpu_to_node(bc->irq_cpu)); 298 bridge_t *bridge = bc->base; 299 - struct slice_data *si = cpu_data[bc->irq_cpu].data; 300 int pin, swlevel; 301 cpuid_t cpu; 302 ··· 310 intr_disconnect_level(cpu, swlevel); 311 312 __clear_bit(swlevel, hub->irq_alloc_mask); 313 - si->level_to_irq[swlevel] = -1; 314 315 bridge->b_int_enable &= ~(1 << pin); 316 bridge->b_wid_tflush; ··· 345 enable_bridge_irq(irq); 346 } 347 348 - static struct hw_interrupt_type bridge_irq_type = { 349 .typename = "bridge", 350 .startup = startup_bridge_irq, 351 .shutdown = shutdown_bridge_irq,
··· 296 struct bridge_controller *bc = IRQ_TO_BRIDGE(irq); 297 struct hub_data *hub = hub_data(cpu_to_node(bc->irq_cpu)); 298 bridge_t *bridge = bc->base; 299 int pin, swlevel; 300 cpuid_t cpu; 301 ··· 311 intr_disconnect_level(cpu, swlevel); 312 313 __clear_bit(swlevel, hub->irq_alloc_mask); 314 315 bridge->b_int_enable &= ~(1 << pin); 316 bridge->b_wid_tflush; ··· 347 enable_bridge_irq(irq); 348 } 349 350 + static struct irq_chip bridge_irq_type = { 351 .typename = "bridge", 352 .startup = startup_bridge_irq, 353 .shutdown = shutdown_bridge_irq,
+13 -10
arch/mips/sgi-ip27/ip27-timer.c
··· 1 /* 2 - * Copytight (C) 1999, 2000, 05 Ralf Baechle (ralf@linux-mips.org) 3 * Copytight (C) 1999, 2000 Silicon Graphics, Inc. 4 */ 5 #include <linux/bcd.h> ··· 181 return mktime(year, month, date, hour, min, sec); 182 } 183 184 - static void startup_rt_irq(unsigned int irq) 185 { 186 } 187 188 static void shutdown_rt_irq(unsigned int irq) ··· 206 { 207 } 208 209 - static struct hw_interrupt_type rt_irq_type = { 210 .typename = "SN HUB RT timer", 211 .startup = startup_rt_irq, 212 .shutdown = shutdown_rt_irq, ··· 225 226 extern int allocate_irqno(void); 227 228 - static void ip27_timer_setup(struct irqaction *irq) 229 { 230 int irqno = allocate_irqno(); 231 232 if (irqno < 0) 233 panic("Can't allocate interrupt number for timer interrupt"); 234 235 - irq_desc[irqno].status = IRQ_DISABLED; 236 - irq_desc[irqno].action = NULL; 237 - irq_desc[irqno].depth = 1; 238 - irq_desc[irqno].handler = &rt_irq_type; 239 240 /* over-write the handler, we use our own way */ 241 irq->handler = no_action; ··· 244 irq_desc[irqno].status |= IRQ_PER_CPU; 245 246 rt_timer_irq = irqno; 247 } 248 249 void __init ip27_time_init(void) ··· 256 xtime.tv_nsec = 0; 257 258 do_gettimeoffset = ip27_do_gettimeoffset; 259 - 260 - board_timer_setup = ip27_timer_setup; 261 } 262 263 void __init cpu_time_init(void)
··· 1 /* 2 + * Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org) 3 * Copytight (C) 1999, 2000 Silicon Graphics, Inc. 4 */ 5 #include <linux/bcd.h> ··· 181 return mktime(year, month, date, hour, min, sec); 182 } 183 184 + static unsigned int startup_rt_irq(unsigned int irq) 185 { 186 + return 0; 187 } 188 189 static void shutdown_rt_irq(unsigned int irq) ··· 205 { 206 } 207 208 + static struct irq_chip rt_irq_type = { 209 .typename = "SN HUB RT timer", 210 .startup = startup_rt_irq, 211 .shutdown = shutdown_rt_irq, ··· 224 225 extern int allocate_irqno(void); 226 227 + void __init plat_timer_setup(struct irqaction *irq) 228 { 229 int irqno = allocate_irqno(); 230 231 if (irqno < 0) 232 panic("Can't allocate interrupt number for timer interrupt"); 233 234 + irq_desc[irqno].status = IRQ_DISABLED; 235 + irq_desc[irqno].action = NULL; 236 + irq_desc[irqno].depth = 1; 237 + irq_desc[irqno].chip = &rt_irq_type; 238 239 /* over-write the handler, we use our own way */ 240 irq->handler = no_action; ··· 243 irq_desc[irqno].status |= IRQ_PER_CPU; 244 245 rt_timer_irq = irqno; 246 + /* 247 + * Only needed to get /proc/interrupt to display timer irq stats 248 + */ 249 + setup_irq(irqno, &rt_irqaction); 250 } 251 252 void __init ip27_time_init(void) ··· 251 xtime.tv_nsec = 0; 252 253 do_gettimeoffset = ip27_do_gettimeoffset; 254 } 255 256 void __init cpu_time_init(void)
+10 -10
arch/mips/sgi-ip32/ip32-irq.c
··· 160 #define shutdown_cpu_irq disable_cpu_irq 161 #define mask_and_ack_cpu_irq disable_cpu_irq 162 163 - static struct hw_interrupt_type ip32_cpu_interrupt = { 164 .typename = "IP32 CPU", 165 .startup = startup_cpu_irq, 166 .shutdown = shutdown_cpu_irq, ··· 230 231 #define shutdown_crime_irq disable_crime_irq 232 233 - static struct hw_interrupt_type ip32_crime_interrupt = { 234 .typename = "IP32 CRIME", 235 .startup = startup_crime_irq, 236 .shutdown = shutdown_crime_irq, ··· 289 #define shutdown_macepci_irq disable_macepci_irq 290 #define mask_and_ack_macepci_irq disable_macepci_irq 291 292 - static struct hw_interrupt_type ip32_macepci_interrupt = { 293 .typename = "IP32 MACE PCI", 294 .startup = startup_macepci_irq, 295 .shutdown = shutdown_macepci_irq, ··· 316 MACEISA_KEYB_POLL_INT | \ 317 MACEISA_MOUSE_INT | \ 318 MACEISA_MOUSE_POLL_INT | \ 319 - MACEIIRQF_TIMER0_INT | \ 320 - MACEIIRQF_TIMER1_INT | \ 321 - MACEIIRQF_TIMER2_INT) 322 #define MACEISA_SUPERIO_INT (MACEISA_PARALLEL_INT | \ 323 MACEISA_PAR_CTXA_INT | \ 324 MACEISA_PAR_CTXB_INT | \ ··· 349 case MACEISA_AUDIO_SW_IRQ ... MACEISA_AUDIO3_MERR_IRQ: 350 crime_int = MACE_AUDIO_INT; 351 break; 352 - case MACEISA_RTC_IRQ ... MACEIIRQF_TIMER2_IRQ: 353 crime_int = MACE_MISC_INT; 354 break; 355 case MACEISA_PARALLEL_IRQ ... MACEISA_SERIAL2_RDMAOR_IRQ: ··· 419 420 #define shutdown_maceisa_irq disable_maceisa_irq 421 422 - static struct hw_interrupt_type ip32_maceisa_interrupt = { 423 .typename = "IP32 MACE ISA", 424 .startup = startup_maceisa_irq, 425 .shutdown = shutdown_maceisa_irq, ··· 469 #define shutdown_mace_irq disable_mace_irq 470 #define mask_and_ack_mace_irq disable_mace_irq 471 472 - static struct hw_interrupt_type ip32_mace_interrupt = { 473 .typename = "IP32 MACE", 474 .startup = startup_mace_irq, 475 .shutdown = shutdown_mace_irq, ··· 575 mace->perif.ctrl.imask = 0; 576 577 for (irq = 0; irq <= IP32_IRQ_MAX; irq++) { 578 - hw_irq_controller *controller; 579 580 if (irq == IP32_R4K_TIMER_IRQ) 581 controller = &ip32_cpu_interrupt;
··· 160 #define shutdown_cpu_irq disable_cpu_irq 161 #define mask_and_ack_cpu_irq disable_cpu_irq 162 163 + static struct irq_chip ip32_cpu_interrupt = { 164 .typename = "IP32 CPU", 165 .startup = startup_cpu_irq, 166 .shutdown = shutdown_cpu_irq, ··· 230 231 #define shutdown_crime_irq disable_crime_irq 232 233 + static struct irq_chip ip32_crime_interrupt = { 234 .typename = "IP32 CRIME", 235 .startup = startup_crime_irq, 236 .shutdown = shutdown_crime_irq, ··· 289 #define shutdown_macepci_irq disable_macepci_irq 290 #define mask_and_ack_macepci_irq disable_macepci_irq 291 292 + static struct irq_chip ip32_macepci_interrupt = { 293 .typename = "IP32 MACE PCI", 294 .startup = startup_macepci_irq, 295 .shutdown = shutdown_macepci_irq, ··· 316 MACEISA_KEYB_POLL_INT | \ 317 MACEISA_MOUSE_INT | \ 318 MACEISA_MOUSE_POLL_INT | \ 319 + MACEISA_TIMER0_INT | \ 320 + MACEISA_TIMER1_INT | \ 321 + MACEISA_TIMER2_INT) 322 #define MACEISA_SUPERIO_INT (MACEISA_PARALLEL_INT | \ 323 MACEISA_PAR_CTXA_INT | \ 324 MACEISA_PAR_CTXB_INT | \ ··· 349 case MACEISA_AUDIO_SW_IRQ ... MACEISA_AUDIO3_MERR_IRQ: 350 crime_int = MACE_AUDIO_INT; 351 break; 352 + case MACEISA_RTC_IRQ ... MACEISA_TIMER2_IRQ: 353 crime_int = MACE_MISC_INT; 354 break; 355 case MACEISA_PARALLEL_IRQ ... MACEISA_SERIAL2_RDMAOR_IRQ: ··· 419 420 #define shutdown_maceisa_irq disable_maceisa_irq 421 422 + static struct irq_chip ip32_maceisa_interrupt = { 423 .typename = "IP32 MACE ISA", 424 .startup = startup_maceisa_irq, 425 .shutdown = shutdown_maceisa_irq, ··· 469 #define shutdown_mace_irq disable_mace_irq 470 #define mask_and_ack_mace_irq disable_mace_irq 471 472 + static struct irq_chip ip32_mace_interrupt = { 473 .typename = "IP32 MACE", 474 .startup = startup_mace_irq, 475 .shutdown = shutdown_mace_irq, ··· 575 mace->perif.ctrl.imask = 0; 576 577 for (irq = 0; irq <= IP32_IRQ_MAX; irq++) { 578 + struct irq_chip *controller; 579 580 if (irq == IP32_R4K_TIMER_IRQ) 581 controller = &ip32_cpu_interrupt;
+2 -2
arch/mips/sgi-ip32/ip32-setup.c
··· 7 * 8 * Copyright (C) 2000 Harald Koerfgen 9 * Copyright (C) 2002, 2003, 2005 Ilya A. Volynets 10 */ 11 #include <linux/console.h> 12 #include <linux/init.h> ··· 81 printk("%d MHz CPU detected\n", mips_hpt_frequency * 2 / 1000000); 82 } 83 84 - void __init ip32_timer_setup(struct irqaction *irq) 85 { 86 irq->handler = no_action; 87 setup_irq(IP32_R4K_TIMER_IRQ, irq); ··· 95 rtc_mips_set_mmss = mc146818_set_rtc_mmss; 96 97 board_time_init = ip32_time_init; 98 - board_timer_setup = ip32_timer_setup; 99 100 #ifdef CONFIG_SERIAL_8250 101 {
··· 7 * 8 * Copyright (C) 2000 Harald Koerfgen 9 * Copyright (C) 2002, 2003, 2005 Ilya A. Volynets 10 + * Copyright (C) 2006 Ralf Baechle <ralf@linux-mips.org> 11 */ 12 #include <linux/console.h> 13 #include <linux/init.h> ··· 80 printk("%d MHz CPU detected\n", mips_hpt_frequency * 2 / 1000000); 81 } 82 83 + void __init plat_timer_setup(struct irqaction *irq) 84 { 85 irq->handler = no_action; 86 setup_irq(IP32_R4K_TIMER_IRQ, irq); ··· 94 rtc_mips_set_mmss = mc146818_set_rtc_mmss; 95 96 board_time_init = ip32_time_init; 97 98 #ifdef CONFIG_SERIAL_8250 99 {
+9 -8
arch/mips/sibyte/bcm1480/irq.c
··· 83 #endif 84 #endif 85 86 - static struct hw_interrupt_type bcm1480_irq_type = { 87 .typename = "BCM1480-IMR", 88 .startup = startup_bcm1480_irq, 89 .shutdown = shutdown_bcm1480_irq, ··· 140 { 141 int i = 0, old_cpu, cpu, int_on, k; 142 u64 cur_ints; 143 - irq_desc_t *desc = irq_desc + irq; 144 unsigned long flags; 145 unsigned int irq_dirty; 146 ··· 278 irq_desc[i].chip = &bcm1480_irq_type; 279 bcm1480_irq_owner[i] = 0; 280 } else { 281 - irq_desc[i].chip = &no_irq_type; 282 } 283 } 284 } ··· 301 302 int bcm1480_steal_irq(int irq) 303 { 304 - irq_desc_t *desc = irq_desc + irq; 305 unsigned long flags; 306 int retval = 0; 307 ··· 502 #ifdef CONFIG_SIBYTE_BCM1480_PROF 503 if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */ 504 sbprof_cpu_intr(exception_epc(regs)); 505 #endif 506 507 if (pending & CAUSEF_IP4) 508 bcm1480_timer_interrupt(regs); 509 510 #ifdef CONFIG_SMP 511 - if (pending & CAUSEF_IP3) 512 bcm1480_mailbox_interrupt(regs); 513 #endif 514 515 #ifdef CONFIG_KGDB 516 - if (pending & CAUSEF_IP6) 517 bcm1480_kgdb_interrupt(regs); /* KGDB (uart 1) */ 518 #endif 519 520 - if (pending & CAUSEF_IP2) { 521 unsigned long long mask_h, mask_l; 522 unsigned long base; 523 ··· 534 mask_l = __raw_readq( 535 IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); 536 537 - if (!mask_h) { 538 if (mask_h ^ 1) 539 do_IRQ(63 - dclz(mask_h), regs); 540 else
··· 83 #endif 84 #endif 85 86 + static struct irq_chip bcm1480_irq_type = { 87 .typename = "BCM1480-IMR", 88 .startup = startup_bcm1480_irq, 89 .shutdown = shutdown_bcm1480_irq, ··· 140 { 141 int i = 0, old_cpu, cpu, int_on, k; 142 u64 cur_ints; 143 + struct irq_desc *desc = irq_desc + irq; 144 unsigned long flags; 145 unsigned int irq_dirty; 146 ··· 278 irq_desc[i].chip = &bcm1480_irq_type; 279 bcm1480_irq_owner[i] = 0; 280 } else { 281 + irq_desc[i].chip = &no_irq_chip; 282 } 283 } 284 } ··· 301 302 int bcm1480_steal_irq(int irq) 303 { 304 + struct irq_desc *desc = irq_desc + irq; 305 unsigned long flags; 306 int retval = 0; 307 ··· 502 #ifdef CONFIG_SIBYTE_BCM1480_PROF 503 if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */ 504 sbprof_cpu_intr(exception_epc(regs)); 505 + else 506 #endif 507 508 if (pending & CAUSEF_IP4) 509 bcm1480_timer_interrupt(regs); 510 511 #ifdef CONFIG_SMP 512 + else if (pending & CAUSEF_IP3) 513 bcm1480_mailbox_interrupt(regs); 514 #endif 515 516 #ifdef CONFIG_KGDB 517 + else if (pending & CAUSEF_IP6) 518 bcm1480_kgdb_interrupt(regs); /* KGDB (uart 1) */ 519 #endif 520 521 + else if (pending & CAUSEF_IP2) { 522 unsigned long long mask_h, mask_l; 523 unsigned long base; 524 ··· 533 mask_l = __raw_readq( 534 IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); 535 536 + if (mask_h) { 537 if (mask_h ^ 1) 538 do_IRQ(63 - dclz(mask_h), regs); 539 else
+9 -9
arch/mips/sibyte/sb1250/irq.c
··· 69 #endif 70 #endif 71 72 - static struct hw_interrupt_type sb1250_irq_type = { 73 .typename = "SB1250-IMR", 74 .startup = startup_sb1250_irq, 75 .shutdown = shutdown_sb1250_irq, ··· 120 { 121 int i = 0, old_cpu, cpu, int_on; 122 u64 cur_ints; 123 - irq_desc_t *desc = irq_desc + irq; 124 unsigned long flags; 125 126 i = first_cpu(mask); ··· 248 irq_desc[i].chip = &sb1250_irq_type; 249 sb1250_irq_owner[i] = 0; 250 } else { 251 - irq_desc[i].chip = &no_irq_type; 252 } 253 } 254 } ··· 271 272 int sb1250_steal_irq(int irq) 273 { 274 - irq_desc_t *desc = irq_desc + irq; 275 unsigned long flags; 276 int retval = 0; 277 ··· 460 pending = read_c0_cause(); 461 462 #ifdef CONFIG_SIBYTE_SB1250_PROF 463 - if (pending & CAUSEF_IP7) { /* Cpu performance counter interrupt */ 464 sbprof_cpu_intr(exception_epc(regs)); 465 - } 466 #endif 467 468 if (pending & CAUSEF_IP4) 469 sb1250_timer_interrupt(regs); 470 471 #ifdef CONFIG_SMP 472 - if (pending & CAUSEF_IP3) 473 sb1250_mailbox_interrupt(regs); 474 #endif 475 476 #ifdef CONFIG_KGDB 477 - if (pending & CAUSEF_IP6) /* KGDB (uart 1) */ 478 sb1250_kgdb_interrupt(regs); 479 #endif 480 481 - if (pending & CAUSEF_IP2) { 482 unsigned long long mask; 483 484 /*
··· 69 #endif 70 #endif 71 72 + static struct irq_chip sb1250_irq_type = { 73 .typename = "SB1250-IMR", 74 .startup = startup_sb1250_irq, 75 .shutdown = shutdown_sb1250_irq, ··· 120 { 121 int i = 0, old_cpu, cpu, int_on; 122 u64 cur_ints; 123 + struct irq_desc *desc = irq_desc + irq; 124 unsigned long flags; 125 126 i = first_cpu(mask); ··· 248 irq_desc[i].chip = &sb1250_irq_type; 249 sb1250_irq_owner[i] = 0; 250 } else { 251 + irq_desc[i].chip = &no_irq_chip; 252 } 253 } 254 } ··· 271 272 int sb1250_steal_irq(int irq) 273 { 274 + struct irq_desc *desc = irq_desc + irq; 275 unsigned long flags; 276 int retval = 0; 277 ··· 460 pending = read_c0_cause(); 461 462 #ifdef CONFIG_SIBYTE_SB1250_PROF 463 + if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */ 464 sbprof_cpu_intr(exception_epc(regs)); 465 + else 466 #endif 467 468 if (pending & CAUSEF_IP4) 469 sb1250_timer_interrupt(regs); 470 471 #ifdef CONFIG_SMP 472 + else if (pending & CAUSEF_IP3) 473 sb1250_mailbox_interrupt(regs); 474 #endif 475 476 #ifdef CONFIG_KGDB 477 + else if (pending & CAUSEF_IP6) /* KGDB (uart 1) */ 478 sb1250_kgdb_interrupt(regs); 479 #endif 480 481 + else if (pending & CAUSEF_IP2) { 482 unsigned long long mask; 483 484 /*
+1 -2
arch/mips/sibyte/swarm/setup.c
··· 77 #endif 78 } 79 80 - void __init swarm_timer_setup(struct irqaction *irq) 81 { 82 /* 83 * we don't set up irqaction, because we will deliver timer ··· 117 panic_timeout = 5; /* For debug. */ 118 119 board_time_init = swarm_time_init; 120 - board_timer_setup = swarm_timer_setup; 121 board_be_handler = swarm_be_handler; 122 123 if (xicor_probe()) {
··· 77 #endif 78 } 79 80 + void __init plat_timer_setup(struct irqaction *irq) 81 { 82 /* 83 * we don't set up irqaction, because we will deliver timer ··· 117 panic_timeout = 5; /* For debug. */ 118 119 board_time_init = swarm_time_init; 120 board_be_handler = swarm_be_handler; 121 122 if (xicor_probe()) {
+1 -1
arch/mips/sni/irq.c
··· 55 enable_pciasic_irq(irq); 56 } 57 58 - static struct hw_interrupt_type pciasic_irq_type = { 59 .typename = "ASIC-PCI", 60 .startup = startup_pciasic_irq, 61 .shutdown = shutdown_pciasic_irq,
··· 55 enable_pciasic_irq(irq); 56 } 57 58 + static struct irq_chip pciasic_irq_type = { 59 .typename = "ASIC-PCI", 60 .startup = startup_pciasic_irq, 61 .shutdown = shutdown_pciasic_irq,
+1 -2
arch/mips/sni/setup.c
··· 41 extern void sni_machine_halt(void); 42 extern void sni_machine_power_off(void); 43 44 - static void __init sni_rm200_pci_timer_setup(struct irqaction *irq) 45 { 46 /* set the clock to 100 Hz */ 47 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 270 #endif 271 272 sni_resource_init(); 273 - board_timer_setup = sni_rm200_pci_timer_setup; 274 275 _machine_restart = sni_machine_restart; 276 _machine_halt = sni_machine_halt;
··· 41 extern void sni_machine_halt(void); 42 extern void sni_machine_power_off(void); 43 44 + void __init plat_timer_setup(struct irqaction *irq) 45 { 46 /* set the clock to 100 Hz */ 47 outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ ··· 270 #endif 271 272 sni_resource_init(); 273 274 _machine_restart = sni_machine_restart; 275 _machine_halt = sni_machine_halt;
+2 -2
arch/mips/tx4927/common/tx4927_irq.c
··· 146 static DEFINE_SPINLOCK(tx4927_pic_lock); 147 148 #define TX4927_CP0_NAME "TX4927-CP0" 149 - static struct hw_interrupt_type tx4927_irq_cp0_type = { 150 .typename = TX4927_CP0_NAME, 151 .startup = tx4927_irq_cp0_startup, 152 .shutdown = tx4927_irq_cp0_shutdown, ··· 158 }; 159 160 #define TX4927_PIC_NAME "TX4927-PIC" 161 - static struct hw_interrupt_type tx4927_irq_pic_type = { 162 .typename = TX4927_PIC_NAME, 163 .startup = tx4927_irq_pic_startup, 164 .shutdown = tx4927_irq_pic_shutdown,
··· 146 static DEFINE_SPINLOCK(tx4927_pic_lock); 147 148 #define TX4927_CP0_NAME "TX4927-CP0" 149 + static struct irq_chip tx4927_irq_cp0_type = { 150 .typename = TX4927_CP0_NAME, 151 .startup = tx4927_irq_cp0_startup, 152 .shutdown = tx4927_irq_cp0_shutdown, ··· 158 }; 159 160 #define TX4927_PIC_NAME "TX4927-PIC" 161 + static struct irq_chip tx4927_irq_pic_type = { 162 .typename = TX4927_PIC_NAME, 163 .startup = tx4927_irq_pic_startup, 164 .shutdown = tx4927_irq_pic_shutdown,
+1 -3
arch/mips/tx4927/common/tx4927_setup.c
··· 50 #undef DEBUG 51 52 void __init tx4927_time_init(void); 53 - void __init tx4927_timer_setup(struct irqaction *irq); 54 void dump_cp0(char *key); 55 56 ··· 65 void __init plat_mem_setup(void) 66 { 67 board_time_init = tx4927_time_init; 68 - board_timer_setup = tx4927_timer_setup; 69 __wbflush = tx4927_write_buffer_flush; 70 71 #ifdef CONFIG_TOSHIBA_RBTX4927 ··· 89 } 90 91 92 - void __init tx4927_timer_setup(struct irqaction *irq) 93 { 94 u32 count; 95 u32 c1;
··· 50 #undef DEBUG 51 52 void __init tx4927_time_init(void); 53 void dump_cp0(char *key); 54 55 ··· 66 void __init plat_mem_setup(void) 67 { 68 board_time_init = tx4927_time_init; 69 __wbflush = tx4927_write_buffer_flush; 70 71 #ifdef CONFIG_TOSHIBA_RBTX4927 ··· 91 } 92 93 94 + void __init plat_timer_setup(struct irqaction *irq) 95 { 96 u32 count; 97 u32 c1;
+2 -2
arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_irq.c
··· 251 252 253 #define TOSHIBA_RBTX4927_IOC_NAME "RBTX4927-IOC" 254 - static struct hw_interrupt_type toshiba_rbtx4927_irq_ioc_type = { 255 .typename = TOSHIBA_RBTX4927_IOC_NAME, 256 .startup = toshiba_rbtx4927_irq_ioc_startup, 257 .shutdown = toshiba_rbtx4927_irq_ioc_shutdown, ··· 267 268 #ifdef CONFIG_TOSHIBA_FPCIB0 269 #define TOSHIBA_RBTX4927_ISA_NAME "RBTX4927-ISA" 270 - static struct hw_interrupt_type toshiba_rbtx4927_irq_isa_type = { 271 .typename = TOSHIBA_RBTX4927_ISA_NAME, 272 .startup = toshiba_rbtx4927_irq_isa_startup, 273 .shutdown = toshiba_rbtx4927_irq_isa_shutdown,
··· 251 252 253 #define TOSHIBA_RBTX4927_IOC_NAME "RBTX4927-IOC" 254 + static struct irq_chip toshiba_rbtx4927_irq_ioc_type = { 255 .typename = TOSHIBA_RBTX4927_IOC_NAME, 256 .startup = toshiba_rbtx4927_irq_ioc_startup, 257 .shutdown = toshiba_rbtx4927_irq_ioc_shutdown, ··· 267 268 #ifdef CONFIG_TOSHIBA_FPCIB0 269 #define TOSHIBA_RBTX4927_ISA_NAME "RBTX4927-ISA" 270 + static struct irq_chip toshiba_rbtx4927_irq_isa_type = { 271 .typename = TOSHIBA_RBTX4927_ISA_NAME, 272 .startup = toshiba_rbtx4927_irq_isa_startup, 273 .shutdown = toshiba_rbtx4927_irq_isa_shutdown,
+2 -2
arch/mips/tx4938/common/irq.c
··· 57 DEFINE_SPINLOCK(tx4938_pic_lock); 58 59 #define TX4938_CP0_NAME "TX4938-CP0" 60 - static struct hw_interrupt_type tx4938_irq_cp0_type = { 61 .typename = TX4938_CP0_NAME, 62 .startup = tx4938_irq_cp0_startup, 63 .shutdown = tx4938_irq_cp0_shutdown, ··· 69 }; 70 71 #define TX4938_PIC_NAME "TX4938-PIC" 72 - static struct hw_interrupt_type tx4938_irq_pic_type = { 73 .typename = TX4938_PIC_NAME, 74 .startup = tx4938_irq_pic_startup, 75 .shutdown = tx4938_irq_pic_shutdown,
··· 57 DEFINE_SPINLOCK(tx4938_pic_lock); 58 59 #define TX4938_CP0_NAME "TX4938-CP0" 60 + static struct irq_chip tx4938_irq_cp0_type = { 61 .typename = TX4938_CP0_NAME, 62 .startup = tx4938_irq_cp0_startup, 63 .shutdown = tx4938_irq_cp0_shutdown, ··· 69 }; 70 71 #define TX4938_PIC_NAME "TX4938-PIC" 72 + static struct irq_chip tx4938_irq_pic_type = { 73 .typename = TX4938_PIC_NAME, 74 .startup = tx4938_irq_pic_startup, 75 .shutdown = tx4938_irq_pic_shutdown,
+1 -4
arch/mips/tx4938/common/setup.c
··· 39 40 void __init tx4938_setup(void); 41 void __init tx4938_time_init(void); 42 - void __init tx4938_timer_setup(struct irqaction *irq); 43 void dump_cp0(char *key); 44 45 void (*__wbflush) (void); ··· 63 plat_mem_setup(void) 64 { 65 board_time_init = tx4938_time_init; 66 - board_timer_setup = tx4938_timer_setup; 67 __wbflush = tx4938_write_buffer_flush; 68 toshiba_rbtx4938_setup(); 69 } ··· 73 rbtx4938_time_init(); 74 } 75 76 - void __init 77 - tx4938_timer_setup(struct irqaction *irq) 78 { 79 u32 count; 80 u32 c1;
··· 39 40 void __init tx4938_setup(void); 41 void __init tx4938_time_init(void); 42 void dump_cp0(char *key); 43 44 void (*__wbflush) (void); ··· 64 plat_mem_setup(void) 65 { 66 board_time_init = tx4938_time_init; 67 __wbflush = tx4938_write_buffer_flush; 68 toshiba_rbtx4938_setup(); 69 } ··· 75 rbtx4938_time_init(); 76 } 77 78 + void __init plat_timer_setup(struct irqaction *irq) 79 { 80 u32 count; 81 u32 c1;
+1 -1
arch/mips/tx4938/toshiba_rbtx4938/irq.c
··· 97 DEFINE_SPINLOCK(toshiba_rbtx4938_ioc_lock); 98 99 #define TOSHIBA_RBTX4938_IOC_NAME "RBTX4938-IOC" 100 - static struct hw_interrupt_type toshiba_rbtx4938_irq_ioc_type = { 101 .typename = TOSHIBA_RBTX4938_IOC_NAME, 102 .startup = toshiba_rbtx4938_irq_ioc_startup, 103 .shutdown = toshiba_rbtx4938_irq_ioc_shutdown,
··· 97 DEFINE_SPINLOCK(toshiba_rbtx4938_ioc_lock); 98 99 #define TOSHIBA_RBTX4938_IOC_NAME "RBTX4938-IOC" 100 + static struct irq_chip toshiba_rbtx4938_irq_ioc_type = { 101 .typename = TOSHIBA_RBTX4938_IOC_NAME, 102 .startup = toshiba_rbtx4938_irq_ioc_startup, 103 .shutdown = toshiba_rbtx4938_irq_ioc_shutdown,
-6
arch/mips/vr41xx/Kconfig
··· 86 depends on MACH_VR41XX && HW_HAS_PCI 87 default y 88 select PCI 89 - 90 - config VRC4173 91 - tristate "Add NEC VRC4173 companion chip support" 92 - depends on MACH_VR41XX && PCI_VR41XX 93 - help 94 - The NEC VRC4173 is a companion chip for NEC VR4122/VR4131.
··· 86 depends on MACH_VR41XX && HW_HAS_PCI 87 default y 88 select PCI
+10 -5
arch/mips/vr41xx/casio-e55/setup.c
··· 1 /* 2 * setup.c, Setup for the CASIO CASSIOPEIA E-11/15/55/65. 3 * 4 - * Copyright (C) 2002-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by ··· 21 #include <linux/ioport.h> 22 23 #include <asm/io.h> 24 - #include <asm/vr41xx/e55.h> 25 26 static int __init casio_e55_setup(void) 27 { 28 - set_io_port_base(IO_PORT_BASE); 29 - ioport_resource.start = IO_PORT_RESOURCE_START; 30 - ioport_resource.end = IO_PORT_RESOURCE_END; 31 32 return 0; 33 }
··· 1 /* 2 * setup.c, Setup for the CASIO CASSIOPEIA E-11/15/55/65. 3 * 4 + * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by ··· 21 #include <linux/ioport.h> 22 23 #include <asm/io.h> 24 + 25 + #define E55_ISA_IO_BASE 0x1400c000 26 + #define E55_ISA_IO_SIZE 0x03ff4000 27 + #define E55_ISA_IO_START 0 28 + #define E55_ISA_IO_END (E55_ISA_IO_SIZE - 1) 29 + #define E55_IO_PORT_BASE KSEG1ADDR(E55_ISA_IO_BASE) 30 31 static int __init casio_e55_setup(void) 32 { 33 + set_io_port_base(E55_IO_PORT_BASE); 34 + ioport_resource.start = E55_ISA_IO_START; 35 + ioport_resource.end = E55_ISA_IO_END; 36 37 return 0; 38 }
+1 -2
arch/mips/vr41xx/common/Makefile
··· 2 # Makefile for common code of the NEC VR4100 series. 3 # 4 5 - obj-y += bcu.o cmu.o icu.o init.o irq.o pmu.o type.o 6 - obj-$(CONFIG_VRC4173) += vrc4173.o 7 8 EXTRA_AFLAGS := $(CFLAGS)
··· 2 # Makefile for common code of the NEC VR4100 series. 3 # 4 5 + obj-y += bcu.o cmu.o icu.o init.o irq.o pmu.o type.o 6 7 EXTRA_AFLAGS := $(CFLAGS)
+23 -22
arch/mips/vr41xx/common/icu.c
··· 38 39 #include <asm/cpu.h> 40 #include <asm/io.h> 41 #include <asm/vr41xx/vr41xx.h> 42 43 static void __iomem *icu1_base; ··· 153 154 void vr41xx_enable_piuint(uint16_t mask) 155 { 156 - irq_desc_t *desc = irq_desc + PIU_IRQ; 157 unsigned long flags; 158 159 if (current_cpu_data.cputype == CPU_VR4111 || ··· 168 169 void vr41xx_disable_piuint(uint16_t mask) 170 { 171 - irq_desc_t *desc = irq_desc + PIU_IRQ; 172 unsigned long flags; 173 174 if (current_cpu_data.cputype == CPU_VR4111 || ··· 183 184 void vr41xx_enable_aiuint(uint16_t mask) 185 { 186 - irq_desc_t *desc = irq_desc + AIU_IRQ; 187 unsigned long flags; 188 189 if (current_cpu_data.cputype == CPU_VR4111 || ··· 198 199 void vr41xx_disable_aiuint(uint16_t mask) 200 { 201 - irq_desc_t *desc = irq_desc + AIU_IRQ; 202 unsigned long flags; 203 204 if (current_cpu_data.cputype == CPU_VR4111 || ··· 213 214 void vr41xx_enable_kiuint(uint16_t mask) 215 { 216 - irq_desc_t *desc = irq_desc + KIU_IRQ; 217 unsigned long flags; 218 219 if (current_cpu_data.cputype == CPU_VR4111 || ··· 228 229 void vr41xx_disable_kiuint(uint16_t mask) 230 { 231 - irq_desc_t *desc = irq_desc + KIU_IRQ; 232 unsigned long flags; 233 234 if (current_cpu_data.cputype == CPU_VR4111 || ··· 243 244 void vr41xx_enable_dsiuint(uint16_t mask) 245 { 246 - irq_desc_t *desc = irq_desc + DSIU_IRQ; 247 unsigned long flags; 248 249 spin_lock_irqsave(&desc->lock, flags); ··· 255 256 void vr41xx_disable_dsiuint(uint16_t mask) 257 { 258 - irq_desc_t *desc = irq_desc + DSIU_IRQ; 259 unsigned long flags; 260 261 spin_lock_irqsave(&desc->lock, flags); ··· 267 268 void vr41xx_enable_firint(uint16_t mask) 269 { 270 - irq_desc_t *desc = irq_desc + FIR_IRQ; 271 unsigned long flags; 272 273 spin_lock_irqsave(&desc->lock, flags); ··· 279 280 void vr41xx_disable_firint(uint16_t mask) 281 { 282 - irq_desc_t *desc = irq_desc + FIR_IRQ; 283 unsigned long flags; 284 285 spin_lock_irqsave(&desc->lock, flags); ··· 291 292 void vr41xx_enable_pciint(void) 293 { 294 - irq_desc_t *desc = irq_desc + PCI_IRQ; 295 unsigned long flags; 296 297 if (current_cpu_data.cputype == CPU_VR4122 || ··· 307 308 void vr41xx_disable_pciint(void) 309 { 310 - irq_desc_t *desc = irq_desc + PCI_IRQ; 311 unsigned long flags; 312 313 if (current_cpu_data.cputype == CPU_VR4122 || ··· 323 324 void vr41xx_enable_scuint(void) 325 { 326 - irq_desc_t *desc = irq_desc + SCU_IRQ; 327 unsigned long flags; 328 329 if (current_cpu_data.cputype == CPU_VR4122 || ··· 339 340 void vr41xx_disable_scuint(void) 341 { 342 - irq_desc_t *desc = irq_desc + SCU_IRQ; 343 unsigned long flags; 344 345 if (current_cpu_data.cputype == CPU_VR4122 || ··· 355 356 void vr41xx_enable_csiint(uint16_t mask) 357 { 358 - irq_desc_t *desc = irq_desc + CSI_IRQ; 359 unsigned long flags; 360 361 if (current_cpu_data.cputype == CPU_VR4122 || ··· 371 372 void vr41xx_disable_csiint(uint16_t mask) 373 { 374 - irq_desc_t *desc = irq_desc + CSI_IRQ; 375 unsigned long flags; 376 377 if (current_cpu_data.cputype == CPU_VR4122 || ··· 387 388 void vr41xx_enable_bcuint(void) 389 { 390 - irq_desc_t *desc = irq_desc + BCU_IRQ; 391 unsigned long flags; 392 393 if (current_cpu_data.cputype == CPU_VR4122 || ··· 403 404 void vr41xx_disable_bcuint(void) 405 { 406 - irq_desc_t *desc = irq_desc + BCU_IRQ; 407 unsigned long flags; 408 409 if (current_cpu_data.cputype == CPU_VR4122 || ··· 443 icu1_set(MSYSINT1REG, 1 << SYSINT1_IRQ_TO_PIN(irq)); 444 } 445 446 - static struct hw_interrupt_type sysint1_irq_type = { 447 .typename = "SYSINT1", 448 .startup = startup_sysint1_irq, 449 .shutdown = shutdown_sysint1_irq, ··· 479 icu2_set(MSYSINT2REG, 1 << SYSINT2_IRQ_TO_PIN(irq)); 480 } 481 482 - static struct hw_interrupt_type sysint2_irq_type = { 483 .typename = "SYSINT2", 484 .startup = startup_sysint2_irq, 485 .shutdown = shutdown_sysint2_irq, ··· 491 492 static inline int set_sysint1_assign(unsigned int irq, unsigned char assign) 493 { 494 - irq_desc_t *desc = irq_desc + irq; 495 uint16_t intassign0, intassign1; 496 unsigned int pin; 497 ··· 550 551 static inline int set_sysint2_assign(unsigned int irq, unsigned char assign) 552 { 553 - irq_desc_t *desc = irq_desc + irq; 554 uint16_t intassign2, intassign3; 555 unsigned int pin; 556
··· 38 39 #include <asm/cpu.h> 40 #include <asm/io.h> 41 + #include <asm/vr41xx/irq.h> 42 #include <asm/vr41xx/vr41xx.h> 43 44 static void __iomem *icu1_base; ··· 152 153 void vr41xx_enable_piuint(uint16_t mask) 154 { 155 + struct irq_desc *desc = irq_desc + PIU_IRQ; 156 unsigned long flags; 157 158 if (current_cpu_data.cputype == CPU_VR4111 || ··· 167 168 void vr41xx_disable_piuint(uint16_t mask) 169 { 170 + struct irq_desc *desc = irq_desc + PIU_IRQ; 171 unsigned long flags; 172 173 if (current_cpu_data.cputype == CPU_VR4111 || ··· 182 183 void vr41xx_enable_aiuint(uint16_t mask) 184 { 185 + struct irq_desc *desc = irq_desc + AIU_IRQ; 186 unsigned long flags; 187 188 if (current_cpu_data.cputype == CPU_VR4111 || ··· 197 198 void vr41xx_disable_aiuint(uint16_t mask) 199 { 200 + struct irq_desc *desc = irq_desc + AIU_IRQ; 201 unsigned long flags; 202 203 if (current_cpu_data.cputype == CPU_VR4111 || ··· 212 213 void vr41xx_enable_kiuint(uint16_t mask) 214 { 215 + struct irq_desc *desc = irq_desc + KIU_IRQ; 216 unsigned long flags; 217 218 if (current_cpu_data.cputype == CPU_VR4111 || ··· 227 228 void vr41xx_disable_kiuint(uint16_t mask) 229 { 230 + struct irq_desc *desc = irq_desc + KIU_IRQ; 231 unsigned long flags; 232 233 if (current_cpu_data.cputype == CPU_VR4111 || ··· 242 243 void vr41xx_enable_dsiuint(uint16_t mask) 244 { 245 + struct irq_desc *desc = irq_desc + DSIU_IRQ; 246 unsigned long flags; 247 248 spin_lock_irqsave(&desc->lock, flags); ··· 254 255 void vr41xx_disable_dsiuint(uint16_t mask) 256 { 257 + struct irq_desc *desc = irq_desc + DSIU_IRQ; 258 unsigned long flags; 259 260 spin_lock_irqsave(&desc->lock, flags); ··· 266 267 void vr41xx_enable_firint(uint16_t mask) 268 { 269 + struct irq_desc *desc = irq_desc + FIR_IRQ; 270 unsigned long flags; 271 272 spin_lock_irqsave(&desc->lock, flags); ··· 278 279 void vr41xx_disable_firint(uint16_t mask) 280 { 281 + struct irq_desc *desc = irq_desc + FIR_IRQ; 282 unsigned long flags; 283 284 spin_lock_irqsave(&desc->lock, flags); ··· 290 291 void vr41xx_enable_pciint(void) 292 { 293 + struct irq_desc *desc = irq_desc + PCI_IRQ; 294 unsigned long flags; 295 296 if (current_cpu_data.cputype == CPU_VR4122 || ··· 306 307 void vr41xx_disable_pciint(void) 308 { 309 + struct irq_desc *desc = irq_desc + PCI_IRQ; 310 unsigned long flags; 311 312 if (current_cpu_data.cputype == CPU_VR4122 || ··· 322 323 void vr41xx_enable_scuint(void) 324 { 325 + struct irq_desc *desc = irq_desc + SCU_IRQ; 326 unsigned long flags; 327 328 if (current_cpu_data.cputype == CPU_VR4122 || ··· 338 339 void vr41xx_disable_scuint(void) 340 { 341 + struct irq_desc *desc = irq_desc + SCU_IRQ; 342 unsigned long flags; 343 344 if (current_cpu_data.cputype == CPU_VR4122 || ··· 354 355 void vr41xx_enable_csiint(uint16_t mask) 356 { 357 + struct irq_desc *desc = irq_desc + CSI_IRQ; 358 unsigned long flags; 359 360 if (current_cpu_data.cputype == CPU_VR4122 || ··· 370 371 void vr41xx_disable_csiint(uint16_t mask) 372 { 373 + struct irq_desc *desc = irq_desc + CSI_IRQ; 374 unsigned long flags; 375 376 if (current_cpu_data.cputype == CPU_VR4122 || ··· 386 387 void vr41xx_enable_bcuint(void) 388 { 389 + struct irq_desc *desc = irq_desc + BCU_IRQ; 390 unsigned long flags; 391 392 if (current_cpu_data.cputype == CPU_VR4122 || ··· 402 403 void vr41xx_disable_bcuint(void) 404 { 405 + struct irq_desc *desc = irq_desc + BCU_IRQ; 406 unsigned long flags; 407 408 if (current_cpu_data.cputype == CPU_VR4122 || ··· 442 icu1_set(MSYSINT1REG, 1 << SYSINT1_IRQ_TO_PIN(irq)); 443 } 444 445 + static struct irq_chip sysint1_irq_type = { 446 .typename = "SYSINT1", 447 .startup = startup_sysint1_irq, 448 .shutdown = shutdown_sysint1_irq, ··· 478 icu2_set(MSYSINT2REG, 1 << SYSINT2_IRQ_TO_PIN(irq)); 479 } 480 481 + static struct irq_chip sysint2_irq_type = { 482 .typename = "SYSINT2", 483 .startup = startup_sysint2_irq, 484 .shutdown = shutdown_sysint2_irq, ··· 490 491 static inline int set_sysint1_assign(unsigned int irq, unsigned char assign) 492 { 493 + struct irq_desc *desc = irq_desc + irq; 494 uint16_t intassign0, intassign1; 495 unsigned int pin; 496 ··· 549 550 static inline int set_sysint2_assign(unsigned int irq, unsigned char assign) 551 { 552 + struct irq_desc *desc = irq_desc + irq; 553 uint16_t intassign2, intassign3; 554 unsigned int pin; 555
+2 -2
arch/mips/vr41xx/common/init.c
··· 24 25 #include <asm/bootinfo.h> 26 #include <asm/time.h> 27 #include <asm/vr41xx/vr41xx.h> 28 29 #define IO_MEM_RESOURCE_START 0UL ··· 48 mips_hpt_frequency = tclock / 4; 49 } 50 51 - static void __init setup_timer_irq(struct irqaction *irq) 52 { 53 setup_irq(TIMER_IRQ, irq); 54 } ··· 56 static void __init timer_init(void) 57 { 58 board_time_init = setup_timer_frequency; 59 - board_timer_setup = setup_timer_irq; 60 } 61 62 void __init plat_mem_setup(void)
··· 24 25 #include <asm/bootinfo.h> 26 #include <asm/time.h> 27 + #include <asm/vr41xx/irq.h> 28 #include <asm/vr41xx/vr41xx.h> 29 30 #define IO_MEM_RESOURCE_START 0UL ··· 47 mips_hpt_frequency = tclock / 4; 48 } 49 50 + void __init plat_timer_setup(struct irqaction *irq) 51 { 52 setup_irq(TIMER_IRQ, irq); 53 } ··· 55 static void __init timer_init(void) 56 { 57 board_time_init = setup_timer_frequency; 58 } 59 60 void __init plat_mem_setup(void)
+2 -2
arch/mips/vr41xx/common/irq.c
··· 22 23 #include <asm/irq_cpu.h> 24 #include <asm/system.h> 25 - #include <asm/vr41xx/vr41xx.h> 26 27 typedef struct irq_cascade { 28 int (*get_irq)(unsigned int, struct pt_regs *); ··· 62 static void irq_dispatch(unsigned int irq, struct pt_regs *regs) 63 { 64 irq_cascade_t *cascade; 65 - irq_desc_t *desc; 66 67 if (irq >= NR_IRQS) { 68 atomic_inc(&irq_err_count);
··· 22 23 #include <asm/irq_cpu.h> 24 #include <asm/system.h> 25 + #include <asm/vr41xx/irq.h> 26 27 typedef struct irq_cascade { 28 int (*get_irq)(unsigned int, struct pt_regs *); ··· 62 static void irq_dispatch(unsigned int irq, struct pt_regs *regs) 63 { 64 irq_cascade_t *cascade; 65 + struct irq_desc *desc; 66 67 if (irq >= NR_IRQS) { 68 atomic_inc(&irq_err_count);
-581
arch/mips/vr41xx/common/vrc4173.c
··· 1 - /* 2 - * vrc4173.c, NEC VRC4173 base driver for NEC VR4122/VR4131. 3 - * 4 - * Copyright (C) 2001-2003 MontaVista Software Inc. 5 - * Author: Yoichi Yuasa <yyuasa@mvista.com, or source@mvista.com> 6 - * Copyright (C) 2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 7 - * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) 8 - * 9 - * This program is free software; you can redistribute it and/or modify 10 - * it under the terms of the GNU General Public License as published by 11 - * the Free Software Foundation; either version 2 of the License, or 12 - * (at your option) any later version. 13 - * 14 - * This program is distributed in the hope that it will be useful, 15 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 - * GNU General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 - */ 23 - #include <linux/init.h> 24 - #include <linux/module.h> 25 - #include <linux/interrupt.h> 26 - #include <linux/irq.h> 27 - #include <linux/pci.h> 28 - #include <linux/spinlock.h> 29 - #include <linux/types.h> 30 - 31 - #include <asm/vr41xx/vr41xx.h> 32 - #include <asm/vr41xx/vrc4173.h> 33 - 34 - MODULE_DESCRIPTION("NEC VRC4173 base driver for NEC VR4122/4131"); 35 - MODULE_AUTHOR("Yoichi Yuasa <yyuasa@mvista.com>"); 36 - MODULE_LICENSE("GPL"); 37 - 38 - #define VRC4173_CMUCLKMSK 0x040 39 - #define MSKPIU 0x0001 40 - #define MSKKIU 0x0002 41 - #define MSKAIU 0x0004 42 - #define MSKPS2CH1 0x0008 43 - #define MSKPS2CH2 0x0010 44 - #define MSKUSB 0x0020 45 - #define MSKCARD1 0x0040 46 - #define MSKCARD2 0x0080 47 - #define MSKAC97 0x0100 48 - #define MSK48MUSB 0x0400 49 - #define MSK48MPIN 0x0800 50 - #define MSK48MOSC 0x1000 51 - #define VRC4173_CMUSRST 0x042 52 - #define USBRST 0x0001 53 - #define CARD1RST 0x0002 54 - #define CARD2RST 0x0004 55 - #define AC97RST 0x0008 56 - 57 - #define VRC4173_SYSINT1REG 0x060 58 - #define VRC4173_MSYSINT1REG 0x06c 59 - #define VRC4173_MPIUINTREG 0x06e 60 - #define VRC4173_MAIUINTREG 0x070 61 - #define VRC4173_MKIUINTREG 0x072 62 - 63 - #define VRC4173_SELECTREG 0x09e 64 - #define SEL3 0x0008 65 - #define SEL2 0x0004 66 - #define SEL1 0x0002 67 - #define SEL0 0x0001 68 - 69 - static struct pci_device_id vrc4173_id_table[] __devinitdata = { 70 - { .vendor = PCI_VENDOR_ID_NEC, 71 - .device = PCI_DEVICE_ID_NEC_VRC4173, 72 - .subvendor = PCI_ANY_ID, 73 - .subdevice = PCI_ANY_ID, }, 74 - { .vendor = 0, }, 75 - }; 76 - 77 - unsigned long vrc4173_io_offset = 0; 78 - 79 - EXPORT_SYMBOL(vrc4173_io_offset); 80 - 81 - static int vrc4173_initialized; 82 - static uint16_t vrc4173_cmuclkmsk; 83 - static uint16_t vrc4173_selectreg; 84 - static DEFINE_SPINLOCK(vrc4173_cmu_lock); 85 - static DEFINE_SPINLOCK(vrc4173_giu_lock); 86 - 87 - static inline void set_cmusrst(uint16_t val) 88 - { 89 - uint16_t cmusrst; 90 - 91 - cmusrst = vrc4173_inw(VRC4173_CMUSRST); 92 - cmusrst |= val; 93 - vrc4173_outw(cmusrst, VRC4173_CMUSRST); 94 - } 95 - 96 - static inline void clear_cmusrst(uint16_t val) 97 - { 98 - uint16_t cmusrst; 99 - 100 - cmusrst = vrc4173_inw(VRC4173_CMUSRST); 101 - cmusrst &= ~val; 102 - vrc4173_outw(cmusrst, VRC4173_CMUSRST); 103 - } 104 - 105 - void vrc4173_supply_clock(vrc4173_clock_t clock) 106 - { 107 - if (vrc4173_initialized) { 108 - spin_lock_irq(&vrc4173_cmu_lock); 109 - 110 - switch (clock) { 111 - case VRC4173_PIU_CLOCK: 112 - vrc4173_cmuclkmsk |= MSKPIU; 113 - break; 114 - case VRC4173_KIU_CLOCK: 115 - vrc4173_cmuclkmsk |= MSKKIU; 116 - break; 117 - case VRC4173_AIU_CLOCK: 118 - vrc4173_cmuclkmsk |= MSKAIU; 119 - break; 120 - case VRC4173_PS2_CH1_CLOCK: 121 - vrc4173_cmuclkmsk |= MSKPS2CH1; 122 - break; 123 - case VRC4173_PS2_CH2_CLOCK: 124 - vrc4173_cmuclkmsk |= MSKPS2CH2; 125 - break; 126 - case VRC4173_USBU_PCI_CLOCK: 127 - set_cmusrst(USBRST); 128 - vrc4173_cmuclkmsk |= MSKUSB; 129 - break; 130 - case VRC4173_CARDU1_PCI_CLOCK: 131 - set_cmusrst(CARD1RST); 132 - vrc4173_cmuclkmsk |= MSKCARD1; 133 - break; 134 - case VRC4173_CARDU2_PCI_CLOCK: 135 - set_cmusrst(CARD2RST); 136 - vrc4173_cmuclkmsk |= MSKCARD2; 137 - break; 138 - case VRC4173_AC97U_PCI_CLOCK: 139 - set_cmusrst(AC97RST); 140 - vrc4173_cmuclkmsk |= MSKAC97; 141 - break; 142 - case VRC4173_USBU_48MHz_CLOCK: 143 - set_cmusrst(USBRST); 144 - vrc4173_cmuclkmsk |= MSK48MUSB; 145 - break; 146 - case VRC4173_EXT_48MHz_CLOCK: 147 - if (vrc4173_cmuclkmsk & MSK48MOSC) 148 - vrc4173_cmuclkmsk |= MSK48MPIN; 149 - else 150 - printk(KERN_WARNING 151 - "vrc4173_supply_clock: " 152 - "Please supply VRC4173_48MHz_CLOCK first " 153 - "rather than VRC4173_EXT_48MHz_CLOCK.\n"); 154 - break; 155 - case VRC4173_48MHz_CLOCK: 156 - vrc4173_cmuclkmsk |= MSK48MOSC; 157 - break; 158 - default: 159 - printk(KERN_WARNING 160 - "vrc4173_supply_clock: Invalid CLOCK value %u\n", clock); 161 - break; 162 - } 163 - 164 - vrc4173_outw(vrc4173_cmuclkmsk, VRC4173_CMUCLKMSK); 165 - 166 - switch (clock) { 167 - case VRC4173_USBU_PCI_CLOCK: 168 - case VRC4173_USBU_48MHz_CLOCK: 169 - clear_cmusrst(USBRST); 170 - break; 171 - case VRC4173_CARDU1_PCI_CLOCK: 172 - clear_cmusrst(CARD1RST); 173 - break; 174 - case VRC4173_CARDU2_PCI_CLOCK: 175 - clear_cmusrst(CARD2RST); 176 - break; 177 - case VRC4173_AC97U_PCI_CLOCK: 178 - clear_cmusrst(AC97RST); 179 - break; 180 - default: 181 - break; 182 - } 183 - 184 - spin_unlock_irq(&vrc4173_cmu_lock); 185 - } 186 - } 187 - 188 - EXPORT_SYMBOL(vrc4173_supply_clock); 189 - 190 - void vrc4173_mask_clock(vrc4173_clock_t clock) 191 - { 192 - if (vrc4173_initialized) { 193 - spin_lock_irq(&vrc4173_cmu_lock); 194 - 195 - switch (clock) { 196 - case VRC4173_PIU_CLOCK: 197 - vrc4173_cmuclkmsk &= ~MSKPIU; 198 - break; 199 - case VRC4173_KIU_CLOCK: 200 - vrc4173_cmuclkmsk &= ~MSKKIU; 201 - break; 202 - case VRC4173_AIU_CLOCK: 203 - vrc4173_cmuclkmsk &= ~MSKAIU; 204 - break; 205 - case VRC4173_PS2_CH1_CLOCK: 206 - vrc4173_cmuclkmsk &= ~MSKPS2CH1; 207 - break; 208 - case VRC4173_PS2_CH2_CLOCK: 209 - vrc4173_cmuclkmsk &= ~MSKPS2CH2; 210 - break; 211 - case VRC4173_USBU_PCI_CLOCK: 212 - set_cmusrst(USBRST); 213 - vrc4173_cmuclkmsk &= ~MSKUSB; 214 - break; 215 - case VRC4173_CARDU1_PCI_CLOCK: 216 - set_cmusrst(CARD1RST); 217 - vrc4173_cmuclkmsk &= ~MSKCARD1; 218 - break; 219 - case VRC4173_CARDU2_PCI_CLOCK: 220 - set_cmusrst(CARD2RST); 221 - vrc4173_cmuclkmsk &= ~MSKCARD2; 222 - break; 223 - case VRC4173_AC97U_PCI_CLOCK: 224 - set_cmusrst(AC97RST); 225 - vrc4173_cmuclkmsk &= ~MSKAC97; 226 - break; 227 - case VRC4173_USBU_48MHz_CLOCK: 228 - set_cmusrst(USBRST); 229 - vrc4173_cmuclkmsk &= ~MSK48MUSB; 230 - break; 231 - case VRC4173_EXT_48MHz_CLOCK: 232 - vrc4173_cmuclkmsk &= ~MSK48MPIN; 233 - break; 234 - case VRC4173_48MHz_CLOCK: 235 - vrc4173_cmuclkmsk &= ~MSK48MOSC; 236 - break; 237 - default: 238 - printk(KERN_WARNING "vrc4173_mask_clock: Invalid CLOCK value %u\n", clock); 239 - break; 240 - } 241 - 242 - vrc4173_outw(vrc4173_cmuclkmsk, VRC4173_CMUCLKMSK); 243 - 244 - switch (clock) { 245 - case VRC4173_USBU_PCI_CLOCK: 246 - case VRC4173_USBU_48MHz_CLOCK: 247 - clear_cmusrst(USBRST); 248 - break; 249 - case VRC4173_CARDU1_PCI_CLOCK: 250 - clear_cmusrst(CARD1RST); 251 - break; 252 - case VRC4173_CARDU2_PCI_CLOCK: 253 - clear_cmusrst(CARD2RST); 254 - break; 255 - case VRC4173_AC97U_PCI_CLOCK: 256 - clear_cmusrst(AC97RST); 257 - break; 258 - default: 259 - break; 260 - } 261 - 262 - spin_unlock_irq(&vrc4173_cmu_lock); 263 - } 264 - } 265 - 266 - EXPORT_SYMBOL(vrc4173_mask_clock); 267 - 268 - static inline void vrc4173_cmu_init(void) 269 - { 270 - vrc4173_cmuclkmsk = vrc4173_inw(VRC4173_CMUCLKMSK); 271 - 272 - spin_lock_init(&vrc4173_cmu_lock); 273 - } 274 - 275 - void vrc4173_select_function(vrc4173_function_t function) 276 - { 277 - if (vrc4173_initialized) { 278 - spin_lock_irq(&vrc4173_giu_lock); 279 - 280 - switch(function) { 281 - case PS2_CHANNEL1: 282 - vrc4173_selectreg |= SEL2; 283 - break; 284 - case PS2_CHANNEL2: 285 - vrc4173_selectreg |= SEL1; 286 - break; 287 - case TOUCHPANEL: 288 - vrc4173_selectreg &= SEL2 | SEL1 | SEL0; 289 - break; 290 - case KEYBOARD_8SCANLINES: 291 - vrc4173_selectreg &= SEL3 | SEL2 | SEL1; 292 - break; 293 - case KEYBOARD_10SCANLINES: 294 - vrc4173_selectreg &= SEL3 | SEL2; 295 - break; 296 - case KEYBOARD_12SCANLINES: 297 - vrc4173_selectreg &= SEL3; 298 - break; 299 - case GPIO_0_15PINS: 300 - vrc4173_selectreg |= SEL0; 301 - break; 302 - case GPIO_16_20PINS: 303 - vrc4173_selectreg |= SEL3; 304 - break; 305 - } 306 - 307 - vrc4173_outw(vrc4173_selectreg, VRC4173_SELECTREG); 308 - 309 - spin_unlock_irq(&vrc4173_giu_lock); 310 - } 311 - } 312 - 313 - EXPORT_SYMBOL(vrc4173_select_function); 314 - 315 - static inline void vrc4173_giu_init(void) 316 - { 317 - vrc4173_selectreg = vrc4173_inw(VRC4173_SELECTREG); 318 - 319 - spin_lock_init(&vrc4173_giu_lock); 320 - } 321 - 322 - void vrc4173_enable_piuint(uint16_t mask) 323 - { 324 - irq_desc_t *desc = irq_desc + VRC4173_PIU_IRQ; 325 - unsigned long flags; 326 - uint16_t val; 327 - 328 - spin_lock_irqsave(&desc->lock, flags); 329 - val = vrc4173_inw(VRC4173_MPIUINTREG); 330 - val |= mask; 331 - vrc4173_outw(val, VRC4173_MPIUINTREG); 332 - spin_unlock_irqrestore(&desc->lock, flags); 333 - } 334 - 335 - EXPORT_SYMBOL(vrc4173_enable_piuint); 336 - 337 - void vrc4173_disable_piuint(uint16_t mask) 338 - { 339 - irq_desc_t *desc = irq_desc + VRC4173_PIU_IRQ; 340 - unsigned long flags; 341 - uint16_t val; 342 - 343 - spin_lock_irqsave(&desc->lock, flags); 344 - val = vrc4173_inw(VRC4173_MPIUINTREG); 345 - val &= ~mask; 346 - vrc4173_outw(val, VRC4173_MPIUINTREG); 347 - spin_unlock_irqrestore(&desc->lock, flags); 348 - } 349 - 350 - EXPORT_SYMBOL(vrc4173_disable_piuint); 351 - 352 - void vrc4173_enable_aiuint(uint16_t mask) 353 - { 354 - irq_desc_t *desc = irq_desc + VRC4173_AIU_IRQ; 355 - unsigned long flags; 356 - uint16_t val; 357 - 358 - spin_lock_irqsave(&desc->lock, flags); 359 - val = vrc4173_inw(VRC4173_MAIUINTREG); 360 - val |= mask; 361 - vrc4173_outw(val, VRC4173_MAIUINTREG); 362 - spin_unlock_irqrestore(&desc->lock, flags); 363 - } 364 - 365 - EXPORT_SYMBOL(vrc4173_enable_aiuint); 366 - 367 - void vrc4173_disable_aiuint(uint16_t mask) 368 - { 369 - irq_desc_t *desc = irq_desc + VRC4173_AIU_IRQ; 370 - unsigned long flags; 371 - uint16_t val; 372 - 373 - spin_lock_irqsave(&desc->lock, flags); 374 - val = vrc4173_inw(VRC4173_MAIUINTREG); 375 - val &= ~mask; 376 - vrc4173_outw(val, VRC4173_MAIUINTREG); 377 - spin_unlock_irqrestore(&desc->lock, flags); 378 - } 379 - 380 - EXPORT_SYMBOL(vrc4173_disable_aiuint); 381 - 382 - void vrc4173_enable_kiuint(uint16_t mask) 383 - { 384 - irq_desc_t *desc = irq_desc + VRC4173_KIU_IRQ; 385 - unsigned long flags; 386 - uint16_t val; 387 - 388 - spin_lock_irqsave(&desc->lock, flags); 389 - val = vrc4173_inw(VRC4173_MKIUINTREG); 390 - val |= mask; 391 - vrc4173_outw(val, VRC4173_MKIUINTREG); 392 - spin_unlock_irqrestore(&desc->lock, flags); 393 - } 394 - 395 - EXPORT_SYMBOL(vrc4173_enable_kiuint); 396 - 397 - void vrc4173_disable_kiuint(uint16_t mask) 398 - { 399 - irq_desc_t *desc = irq_desc + VRC4173_KIU_IRQ; 400 - unsigned long flags; 401 - uint16_t val; 402 - 403 - spin_lock_irqsave(&desc->lock, flags); 404 - val = vrc4173_inw(VRC4173_MKIUINTREG); 405 - val &= ~mask; 406 - vrc4173_outw(val, VRC4173_MKIUINTREG); 407 - spin_unlock_irqrestore(&desc->lock, flags); 408 - } 409 - 410 - EXPORT_SYMBOL(vrc4173_disable_kiuint); 411 - 412 - static void enable_vrc4173_irq(unsigned int irq) 413 - { 414 - uint16_t val; 415 - 416 - val = vrc4173_inw(VRC4173_MSYSINT1REG); 417 - val |= (uint16_t)1 << (irq - VRC4173_IRQ_BASE); 418 - vrc4173_outw(val, VRC4173_MSYSINT1REG); 419 - } 420 - 421 - static void disable_vrc4173_irq(unsigned int irq) 422 - { 423 - uint16_t val; 424 - 425 - val = vrc4173_inw(VRC4173_MSYSINT1REG); 426 - val &= ~((uint16_t)1 << (irq - VRC4173_IRQ_BASE)); 427 - vrc4173_outw(val, VRC4173_MSYSINT1REG); 428 - } 429 - 430 - static unsigned int startup_vrc4173_irq(unsigned int irq) 431 - { 432 - enable_vrc4173_irq(irq); 433 - return 0; /* never anything pending */ 434 - } 435 - 436 - #define shutdown_vrc4173_irq disable_vrc4173_irq 437 - #define ack_vrc4173_irq disable_vrc4173_irq 438 - 439 - static void end_vrc4173_irq(unsigned int irq) 440 - { 441 - if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) 442 - enable_vrc4173_irq(irq); 443 - } 444 - 445 - static struct hw_interrupt_type vrc4173_irq_type = { 446 - .typename = "VRC4173", 447 - .startup = startup_vrc4173_irq, 448 - .shutdown = shutdown_vrc4173_irq, 449 - .enable = enable_vrc4173_irq, 450 - .disable = disable_vrc4173_irq, 451 - .ack = ack_vrc4173_irq, 452 - .end = end_vrc4173_irq, 453 - }; 454 - 455 - static int vrc4173_get_irq_number(int irq) 456 - { 457 - uint16_t status, mask; 458 - int i; 459 - 460 - status = vrc4173_inw(VRC4173_SYSINT1REG); 461 - mask = vrc4173_inw(VRC4173_MSYSINT1REG); 462 - 463 - status &= mask; 464 - if (status) { 465 - for (i = 0; i < 16; i++) 466 - if (status & (0x0001 << i)) 467 - return VRC4173_IRQ(i); 468 - } 469 - 470 - return -EINVAL; 471 - } 472 - 473 - static inline int vrc4173_icu_init(int cascade_irq) 474 - { 475 - int i; 476 - 477 - if (cascade_irq < GIU_IRQ(0) || cascade_irq > GIU_IRQ(15)) 478 - return -EINVAL; 479 - 480 - vrc4173_outw(0, VRC4173_MSYSINT1REG); 481 - 482 - vr41xx_set_irq_trigger(GIU_IRQ_TO_PIN(cascade_irq), TRIGGER_LEVEL, SIGNAL_THROUGH); 483 - vr41xx_set_irq_level(GIU_IRQ_TO_PIN(cascade_irq), LEVEL_LOW); 484 - 485 - for (i = VRC4173_IRQ_BASE; i <= VRC4173_IRQ_LAST; i++) 486 - irq_desc[i].chip = &vrc4173_irq_type; 487 - 488 - return 0; 489 - } 490 - 491 - static int __devinit vrc4173_probe(struct pci_dev *dev, 492 - const struct pci_device_id *id) 493 - { 494 - unsigned long start, flags; 495 - int err; 496 - 497 - err = pci_enable_device(dev); 498 - if (err < 0) { 499 - printk(KERN_ERR "vrc4173: Failed to enable PCI device, aborting\n"); 500 - return err; 501 - } 502 - 503 - pci_set_master(dev); 504 - 505 - start = pci_resource_start(dev, 0); 506 - if (start == 0) { 507 - printk(KERN_ERR "vrc4173:No such PCI I/O resource, aborting\n"); 508 - return -ENXIO; 509 - } 510 - 511 - flags = pci_resource_flags(dev, 0); 512 - if ((flags & IORESOURCE_IO) == 0) { 513 - printk(KERN_ERR "vrc4173: No such PCI I/O resource, aborting\n"); 514 - return -ENXIO; 515 - } 516 - 517 - err = pci_request_regions(dev, "NEC VRC4173"); 518 - if (err < 0) { 519 - printk(KERN_ERR "vrc4173: PCI resources are busy, aborting\n"); 520 - return err; 521 - } 522 - 523 - set_vrc4173_io_offset(start); 524 - 525 - vrc4173_cmu_init(); 526 - vrc4173_giu_init(); 527 - 528 - err = vrc4173_icu_init(dev->irq); 529 - if (err < 0) { 530 - printk(KERN_ERR "vrc4173: Invalid IRQ %d, aborting\n", dev->irq); 531 - return err; 532 - } 533 - 534 - err = vr41xx_cascade_irq(dev->irq, vrc4173_get_irq_number); 535 - if (err < 0) { 536 - printk(KERN_ERR "vrc4173: IRQ resource %d is busy, aborting\n", dev->irq); 537 - return err; 538 - } 539 - 540 - printk(KERN_INFO 541 - "NEC VRC4173 at 0x%#08lx, IRQ is cascaded to %d\n", start, dev->irq); 542 - 543 - return 0; 544 - } 545 - 546 - static void vrc4173_remove(struct pci_dev *dev) 547 - { 548 - free_irq(dev->irq, NULL); 549 - 550 - pci_release_regions(dev); 551 - } 552 - 553 - static struct pci_driver vrc4173_driver = { 554 - .name = "NEC VRC4173", 555 - .probe = vrc4173_probe, 556 - .remove = vrc4173_remove, 557 - .id_table = vrc4173_id_table, 558 - }; 559 - 560 - static int __devinit vrc4173_init(void) 561 - { 562 - int err; 563 - 564 - err = pci_register_driver(&vrc4173_driver); 565 - if (err < 0) 566 - return err; 567 - 568 - vrc4173_initialized = 1; 569 - 570 - return 0; 571 - } 572 - 573 - static void __devexit vrc4173_exit(void) 574 - { 575 - vrc4173_initialized = 0; 576 - 577 - pci_unregister_driver(&vrc4173_driver); 578 - } 579 - 580 - module_init(vrc4173_init); 581 - module_exit(vrc4173_exit);
···
+10 -5
arch/mips/vr41xx/ibm-workpad/setup.c
··· 1 /* 2 * setup.c, Setup for the IBM WorkPad z50. 3 * 4 - * Copyright (C) 2002-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by ··· 21 #include <linux/ioport.h> 22 23 #include <asm/io.h> 24 - #include <asm/vr41xx/workpad.h> 25 26 static int __init ibm_workpad_setup(void) 27 { 28 - set_io_port_base(IO_PORT_BASE); 29 - ioport_resource.start = IO_PORT_RESOURCE_START; 30 - ioport_resource.end = IO_PORT_RESOURCE_END; 31 32 return 0; 33 }
··· 1 /* 2 * setup.c, Setup for the IBM WorkPad z50. 3 * 4 + * Copyright (C) 2002-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by ··· 21 #include <linux/ioport.h> 22 23 #include <asm/io.h> 24 + 25 + #define WORKPAD_ISA_IO_BASE 0x15000000 26 + #define WORKPAD_ISA_IO_SIZE 0x03000000 27 + #define WORKPAD_ISA_IO_START 0 28 + #define WORKPAD_ISA_IO_END (WORKPAD_ISA_IO_SIZE - 1) 29 + #define WORKPAD_IO_PORT_BASE KSEG1ADDR(WORKPAD_ISA_IO_BASE) 30 31 static int __init ibm_workpad_setup(void) 32 { 33 + set_io_port_base(WORKPAD_IO_PORT_BASE); 34 + ioport_resource.start = WORKPAD_ISA_IO_START; 35 + ioport_resource.end = WORKPAD_ISA_IO_END; 36 37 return 0; 38 }
+1 -1
arch/mips/vr41xx/nec-cmbvr4133/irq.c
··· 62 enable_8259A_irq(irq - I8259_IRQ_BASE); 63 } 64 65 - static struct hw_interrupt_type i8259_irq_type = { 66 .typename = "XT-PIC", 67 .startup = startup_i8259_irq, 68 .shutdown = shutdown_i8259_irq,
··· 62 enable_8259A_irq(irq - I8259_IRQ_BASE); 63 } 64 65 + static struct irq_chip i8259_irq_type = { 66 .typename = "XT-PIC", 67 .startup = startup_i8259_irq, 68 .shutdown = shutdown_i8259_irq,
+1
drivers/char/vr41xx_giu.c
··· 33 #include <asm/cpu.h> 34 #include <asm/io.h> 35 #include <asm/vr41xx/giu.h> 36 #include <asm/vr41xx/vr41xx.h> 37 38 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>");
··· 33 #include <asm/cpu.h> 34 #include <asm/io.h> 35 #include <asm/vr41xx/giu.h> 36 + #include <asm/vr41xx/irq.h> 37 #include <asm/vr41xx/vr41xx.h> 38 39 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>");
+1 -1
drivers/rtc/rtc-vr41xx.c
··· 30 #include <asm/div64.h> 31 #include <asm/io.h> 32 #include <asm/uaccess.h> 33 - #include <asm/vr41xx/vr41xx.h> 34 35 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); 36 MODULE_DESCRIPTION("NEC VR4100 series RTC driver");
··· 30 #include <asm/div64.h> 31 #include <asm/io.h> 32 #include <asm/uaccess.h> 33 + #include <asm/vr41xx/irq.h> 34 35 MODULE_AUTHOR("Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>"); 36 MODULE_DESCRIPTION("NEC VR4100 series RTC driver");
+1
drivers/serial/vr41xx_siu.c
··· 38 #include <linux/tty_flip.h> 39 40 #include <asm/io.h> 41 #include <asm/vr41xx/siu.h> 42 #include <asm/vr41xx/vr41xx.h> 43
··· 38 #include <linux/tty_flip.h> 39 40 #include <asm/io.h> 41 + #include <asm/vr41xx/irq.h> 42 #include <asm/vr41xx/siu.h> 43 #include <asm/vr41xx/vr41xx.h> 44
-1
include/asm-mips/apm.h
··· 13 #ifndef MIPS_ASM_SA1100_APM_H 14 #define MIPS_ASM_SA1100_APM_H 15 16 - #include <linux/config.h> 17 #include <linux/apm_bios.h> 18 19 /*
··· 13 #ifndef MIPS_ASM_SA1100_APM_H 14 #define MIPS_ASM_SA1100_APM_H 15 16 #include <linux/apm_bios.h> 17 18 /*
+1 -1
include/asm-mips/atomic.h
··· 22 #ifndef _ASM_ATOMIC_H 23 #define _ASM_ATOMIC_H 24 25 #include <asm/cpu-features.h> 26 - #include <asm/interrupt.h> 27 #include <asm/war.h> 28 29 typedef struct { volatile int counter; } atomic_t;
··· 22 #ifndef _ASM_ATOMIC_H 23 #define _ASM_ATOMIC_H 24 25 + #include <linux/irqflags.h> 26 #include <asm/cpu-features.h> 27 #include <asm/war.h> 28 29 typedef struct { volatile int counter; } atomic_t;
+1 -1
include/asm-mips/bitops.h
··· 31 32 #ifdef __KERNEL__ 33 34 - #include <asm/interrupt.h> 35 #include <asm/sgidefs.h> 36 #include <asm/war.h> 37
··· 31 32 #ifdef __KERNEL__ 33 34 + #include <linux/irqflags.h> 35 #include <asm/sgidefs.h> 36 #include <asm/war.h> 37
+3 -7
include/asm-mips/cpu-features.h
··· 143 #define cpu_has_dsp (cpu_data[0].ases & MIPS_ASE_DSP) 144 #endif 145 146 - #ifdef CONFIG_MIPS_MT 147 #ifndef cpu_has_mipsmt 148 - # define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) 149 - #endif 150 - #else 151 - # define cpu_has_mipsmt 0 152 #endif 153 154 #ifdef CONFIG_32BIT ··· 195 # define cpu_has_veic 0 196 #endif 197 198 - #ifndef cpu_has_subset_pcaches 199 - #define cpu_has_subset_pcaches (cpu_data[0].options & MIPS_CPU_SUBSET_CACHES) 200 #endif 201 202 #ifndef cpu_dcache_line_size
··· 143 #define cpu_has_dsp (cpu_data[0].ases & MIPS_ASE_DSP) 144 #endif 145 146 #ifndef cpu_has_mipsmt 147 + #define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) 148 #endif 149 150 #ifdef CONFIG_32BIT ··· 199 # define cpu_has_veic 0 200 #endif 201 202 + #ifndef cpu_has_inclusive_pcaches 203 + #define cpu_has_inclusive_pcaches (cpu_data[0].options & MIPS_CPU_INCLUSIVE_CACHES) 204 #endif 205 206 #ifndef cpu_dcache_line_size
+1 -1
include/asm-mips/cpu.h
··· 242 #define MIPS_CPU_EJTAG 0x00008000 /* EJTAG exception */ 243 #define MIPS_CPU_NOFPUEX 0x00010000 /* no FPU exception */ 244 #define MIPS_CPU_LLSC 0x00020000 /* CPU has ll/sc instructions */ 245 - #define MIPS_CPU_SUBSET_CACHES 0x00040000 /* P-cache subset enforced */ 246 #define MIPS_CPU_PREFETCH 0x00080000 /* CPU has usable prefetch */ 247 #define MIPS_CPU_VINT 0x00100000 /* CPU supports MIPSR2 vectored interrupts */ 248 #define MIPS_CPU_VEIC 0x00200000 /* CPU supports MIPSR2 external interrupt controller mode */
··· 242 #define MIPS_CPU_EJTAG 0x00008000 /* EJTAG exception */ 243 #define MIPS_CPU_NOFPUEX 0x00010000 /* no FPU exception */ 244 #define MIPS_CPU_LLSC 0x00020000 /* CPU has ll/sc instructions */ 245 + #define MIPS_CPU_INCLUSIVE_CACHES 0x00040000 /* P-cache subset enforced */ 246 #define MIPS_CPU_PREFETCH 0x00080000 /* CPU has usable prefetch */ 247 #define MIPS_CPU_VINT 0x00100000 /* CPU supports MIPSR2 vectored interrupts */ 248 #define MIPS_CPU_VEIC 0x00200000 /* CPU supports MIPSR2 external interrupt controller mode */
+1 -1
include/asm-mips/inst.h
··· 74 ins_op, dinsm_op, dinsu_op, dins_op, 75 bshfl_op = 0x20, 76 dbshfl_op = 0x24, 77 - rdhwr_op = 0x3f 78 }; 79 80 /*
··· 74 ins_op, dinsm_op, dinsu_op, dins_op, 75 bshfl_op = 0x20, 76 dbshfl_op = 0x24, 77 + rdhwr_op = 0x3b 78 }; 79 80 /*
+37 -33
include/asm-mips/interrupt.h include/asm-mips/irqflags.h
··· 8 * Copyright (C) 1999 Silicon Graphics 9 * Copyright (C) 2000 MIPS Technologies, Inc. 10 */ 11 - #ifndef _ASM_INTERRUPT_H 12 - #define _ASM_INTERRUPT_H 13 14 #include <asm/hazards.h> 15 16 __asm__ ( 17 - " .macro local_irq_enable \n" 18 " .set push \n" 19 " .set reorder \n" 20 " .set noat \n" ··· 37 " .set pop \n" 38 " .endm"); 39 40 - static inline void local_irq_enable(void) 41 { 42 __asm__ __volatile__( 43 - "local_irq_enable" 44 : /* no outputs */ 45 : /* no inputs */ 46 : "memory"); ··· 65 * Workaround: mask EXL bit of the result or place a nop before mfc0. 66 */ 67 __asm__ ( 68 - " .macro local_irq_disable\n" 69 " .set push \n" 70 " .set noat \n" 71 #ifdef CONFIG_MIPS_MT_SMTC ··· 86 " .set pop \n" 87 " .endm \n"); 88 89 - static inline void local_irq_disable(void) 90 { 91 __asm__ __volatile__( 92 - "local_irq_disable" 93 : /* no outputs */ 94 : /* no inputs */ 95 : "memory"); 96 } 97 98 __asm__ ( 99 - " .macro local_save_flags flags \n" 100 " .set push \n" 101 " .set reorder \n" 102 #ifdef CONFIG_MIPS_MT_SMTC ··· 107 " .set pop \n" 108 " .endm \n"); 109 110 - #define local_save_flags(x) \ 111 __asm__ __volatile__( \ 112 - "local_save_flags %0" \ 113 : "=r" (x)) 114 115 __asm__ ( 116 - " .macro local_irq_save result \n" 117 " .set push \n" 118 " .set reorder \n" 119 " .set noat \n" ··· 137 " .set pop \n" 138 " .endm \n"); 139 140 - #define local_irq_save(x) \ 141 __asm__ __volatile__( \ 142 - "local_irq_save\t%0" \ 143 : "=r" (x) \ 144 : /* no inputs */ \ 145 : "memory") 146 147 __asm__ ( 148 - " .macro local_irq_restore flags \n" 149 " .set push \n" 150 " .set noreorder \n" 151 " .set noat \n" ··· 184 " .set pop \n" 185 " .endm \n"); 186 187 - #define local_irq_restore(flags) \ 188 do { \ 189 unsigned long __tmp1; \ 190 \ 191 __asm__ __volatile__( \ 192 - "local_irq_restore\t%0" \ 193 : "=r" (__tmp1) \ 194 : "0" (flags) \ 195 : "memory"); \ 196 } while(0) 197 198 - static inline int irqs_disabled(void) 199 { 200 #ifdef CONFIG_MIPS_MT_SMTC 201 /* 202 * SMTC model uses TCStatus.IXMT to disable interrupts for a thread/CPU 203 */ 204 - unsigned long __result; 205 - 206 - __asm__ __volatile__( 207 - " .set noreorder \n" 208 - " mfc0 %0, $2, 1 \n" 209 - " andi %0, 0x400 \n" 210 - " slt %0, $0, %0 \n" 211 - " .set reorder \n" 212 - : "=r" (__result)); 213 - 214 - return __result; 215 #else 216 - unsigned long flags; 217 - local_save_flags(flags); 218 - 219 return !(flags & 1); 220 #endif 221 } 222 223 - #endif /* _ASM_INTERRUPT_H */
··· 8 * Copyright (C) 1999 Silicon Graphics 9 * Copyright (C) 2000 MIPS Technologies, Inc. 10 */ 11 + #ifndef _ASM_IRQFLAGS_H 12 + #define _ASM_IRQFLAGS_H 13 + 14 + #ifndef __ASSEMBLY__ 15 16 #include <asm/hazards.h> 17 18 __asm__ ( 19 + " .macro raw_local_irq_enable \n" 20 " .set push \n" 21 " .set reorder \n" 22 " .set noat \n" ··· 35 " .set pop \n" 36 " .endm"); 37 38 + static inline void raw_local_irq_enable(void) 39 { 40 __asm__ __volatile__( 41 + "raw_local_irq_enable" 42 : /* no outputs */ 43 : /* no inputs */ 44 : "memory"); ··· 63 * Workaround: mask EXL bit of the result or place a nop before mfc0. 64 */ 65 __asm__ ( 66 + " .macro raw_local_irq_disable\n" 67 " .set push \n" 68 " .set noat \n" 69 #ifdef CONFIG_MIPS_MT_SMTC ··· 84 " .set pop \n" 85 " .endm \n"); 86 87 + static inline void raw_local_irq_disable(void) 88 { 89 __asm__ __volatile__( 90 + "raw_local_irq_disable" 91 : /* no outputs */ 92 : /* no inputs */ 93 : "memory"); 94 } 95 96 __asm__ ( 97 + " .macro raw_local_save_flags flags \n" 98 " .set push \n" 99 " .set reorder \n" 100 #ifdef CONFIG_MIPS_MT_SMTC ··· 105 " .set pop \n" 106 " .endm \n"); 107 108 + #define raw_local_save_flags(x) \ 109 __asm__ __volatile__( \ 110 + "raw_local_save_flags %0" \ 111 : "=r" (x)) 112 113 __asm__ ( 114 + " .macro raw_local_irq_save result \n" 115 " .set push \n" 116 " .set reorder \n" 117 " .set noat \n" ··· 135 " .set pop \n" 136 " .endm \n"); 137 138 + #define raw_local_irq_save(x) \ 139 __asm__ __volatile__( \ 140 + "raw_local_irq_save\t%0" \ 141 : "=r" (x) \ 142 : /* no inputs */ \ 143 : "memory") 144 145 __asm__ ( 146 + " .macro raw_local_irq_restore flags \n" 147 " .set push \n" 148 " .set noreorder \n" 149 " .set noat \n" ··· 182 " .set pop \n" 183 " .endm \n"); 184 185 + #define raw_local_irq_restore(flags) \ 186 do { \ 187 unsigned long __tmp1; \ 188 \ 189 __asm__ __volatile__( \ 190 + "raw_local_irq_restore\t%0" \ 191 : "=r" (__tmp1) \ 192 : "0" (flags) \ 193 : "memory"); \ 194 } while(0) 195 196 + static inline int raw_irqs_disabled_flags(unsigned long flags) 197 { 198 #ifdef CONFIG_MIPS_MT_SMTC 199 /* 200 * SMTC model uses TCStatus.IXMT to disable interrupts for a thread/CPU 201 */ 202 + return flags & 0x400; 203 #else 204 return !(flags & 1); 205 #endif 206 } 207 208 + #endif 209 + 210 + /* 211 + * Do the CPU's IRQ-state tracing from assembly code. 212 + */ 213 + #ifdef CONFIG_TRACE_IRQFLAGS 214 + # define TRACE_IRQS_ON \ 215 + jal trace_hardirqs_on 216 + # define TRACE_IRQS_OFF \ 217 + jal trace_hardirqs_off 218 + #else 219 + # define TRACE_IRQS_ON 220 + # define TRACE_IRQS_OFF 221 + #endif 222 + 223 + #endif /* _ASM_IRQFLAGS_H */
+1 -1
include/asm-mips/mach-cobalt/cpu-feature-overrides.h
··· 27 #define cpu_has_mcheck 0 28 #define cpu_has_ejtag 0 29 30 - #define cpu_has_subset_pcaches 0 31 #define cpu_dcache_line_size() 32 32 #define cpu_icache_line_size() 32 33 #define cpu_scache_line_size() 0
··· 27 #define cpu_has_mcheck 0 28 #define cpu_has_ejtag 0 29 30 + #define cpu_has_inclusive_pcaches 0 31 #define cpu_dcache_line_size() 32 32 #define cpu_icache_line_size() 32 33 #define cpu_scache_line_size() 0
+1 -1
include/asm-mips/mach-excite/cpu-feature-overrides.h
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 - #define cpu_has_subset_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 + #define cpu_has_inclusive_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
-1
include/asm-mips/mach-excite/excite.h
··· 1 #ifndef __EXCITE_H__ 2 #define __EXCITE_H__ 3 4 - #include <linux/config.h> 5 #include <linux/init.h> 6 #include <asm/addrspace.h> 7 #include <asm/types.h>
··· 1 #ifndef __EXCITE_H__ 2 #define __EXCITE_H__ 3 4 #include <linux/init.h> 5 #include <asm/addrspace.h> 6 #include <asm/types.h>
+1 -1
include/asm-mips/mach-ip27/cpu-feature-overrides.h
··· 34 #define cpu_has_4kex 1 35 #define cpu_has_4k_cache 1 36 37 - #define cpu_has_subset_pcaches 1 38 39 #define cpu_dcache_line_size() 32 40 #define cpu_icache_line_size() 64
··· 34 #define cpu_has_4kex 1 35 #define cpu_has_4k_cache 1 36 37 + #define cpu_has_inclusive_pcaches 1 38 39 #define cpu_dcache_line_size() 32 40 #define cpu_icache_line_size() 64
+1 -1
include/asm-mips/mach-ja/cpu-feature-overrides.h
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 - #define cpu_has_subset_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 + #define cpu_has_inclusive_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
+2 -2
include/asm-mips/mach-mips/cpu-feature-overrides.h
··· 39 #define cpu_has_nofpuex 0 40 /* #define cpu_has_64bits ? */ 41 /* #define cpu_has_64bit_zero_reg ? */ 42 - /* #define cpu_has_subset_pcaches ? */ 43 #define cpu_icache_snoops_remote_store 1 44 #endif 45 ··· 65 #define cpu_has_nofpuex 0 66 /* #define cpu_has_64bits ? */ 67 /* #define cpu_has_64bit_zero_reg ? */ 68 - /* #define cpu_has_subset_pcaches ? */ 69 #define cpu_icache_snoops_remote_store 1 70 #endif 71
··· 39 #define cpu_has_nofpuex 0 40 /* #define cpu_has_64bits ? */ 41 /* #define cpu_has_64bit_zero_reg ? */ 42 + /* #define cpu_has_inclusive_pcaches ? */ 43 #define cpu_icache_snoops_remote_store 1 44 #endif 45 ··· 65 #define cpu_has_nofpuex 0 66 /* #define cpu_has_64bits ? */ 67 /* #define cpu_has_64bit_zero_reg ? */ 68 + /* #define cpu_has_inclusive_pcaches ? */ 69 #define cpu_icache_snoops_remote_store 1 70 #endif 71
+1 -1
include/asm-mips/mach-ocelot3/cpu-feature-overrides.h
··· 34 #define cpu_has_nofpuex 0 35 #define cpu_has_64bits 1 36 37 - #define cpu_has_subset_pcaches 0 38 39 #define cpu_dcache_line_size() 32 40 #define cpu_icache_line_size() 32
··· 34 #define cpu_has_nofpuex 0 35 #define cpu_has_64bits 1 36 37 + #define cpu_has_inclusive_pcaches 0 38 39 #define cpu_dcache_line_size() 32 40 #define cpu_icache_line_size() 32
+1 -1
include/asm-mips/mach-sibyte/cpu-feature-overrides.h
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 - #define cpu_has_subset_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 + #define cpu_has_inclusive_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
+2 -2
include/asm-mips/mach-sim/cpu-feature-overrides.h
··· 34 #define cpu_has_nofpuex 0 35 /* #define cpu_has_64bits ? */ 36 /* #define cpu_has_64bit_zero_reg ? */ 37 - /* #define cpu_has_subset_pcaches ? */ 38 #endif 39 40 #ifdef CONFIG_CPU_MIPS64 ··· 59 #define cpu_has_nofpuex 0 60 /* #define cpu_has_64bits ? */ 61 /* #define cpu_has_64bit_zero_reg ? */ 62 - /* #define cpu_has_subset_pcaches ? */ 63 #endif 64 65 #endif /* __ASM_MACH_MIPS_CPU_FEATURE_OVERRIDES_H */
··· 34 #define cpu_has_nofpuex 0 35 /* #define cpu_has_64bits ? */ 36 /* #define cpu_has_64bit_zero_reg ? */ 37 + /* #define cpu_has_inclusive_pcaches ? */ 38 #endif 39 40 #ifdef CONFIG_CPU_MIPS64 ··· 59 #define cpu_has_nofpuex 0 60 /* #define cpu_has_64bits ? */ 61 /* #define cpu_has_64bit_zero_reg ? */ 62 + /* #define cpu_has_inclusive_pcaches ? */ 63 #endif 64 65 #endif /* __ASM_MACH_MIPS_CPU_FEATURE_OVERRIDES_H */
+1 -1
include/asm-mips/mach-yosemite/cpu-feature-overrides.h
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 - #define cpu_has_subset_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
··· 31 #define cpu_has_nofpuex 0 32 #define cpu_has_64bits 1 33 34 + #define cpu_has_inclusive_pcaches 0 35 36 #define cpu_dcache_line_size() 32 37 #define cpu_icache_line_size() 32
+3 -1
include/asm-mips/mipsregs.h
··· 470 471 /* Bits specific to the VR41xx. */ 472 #define VR41_CONF_CS (_ULCAST_(1) << 12) 473 #define VR41_CONF_M16 (_ULCAST_(1) << 20) 474 #define VR41_CONF_AD (_ULCAST_(1) << 23) 475 ··· 1418 1419 #else /* SMTC versions that manage MT scheduling */ 1420 1421 - #include <asm/interrupt.h> 1422 1423 /* 1424 * This is a duplicate of dmt() in mipsmtregs.h to avoid problems with
··· 470 471 /* Bits specific to the VR41xx. */ 472 #define VR41_CONF_CS (_ULCAST_(1) << 12) 473 + #define VR41_CONF_P4K (_ULCAST_(1) << 13) 474 + #define VR41_CONF_BP (_ULCAST_(1) << 16) 475 #define VR41_CONF_M16 (_ULCAST_(1) << 20) 476 #define VR41_CONF_AD (_ULCAST_(1) << 23) 477 ··· 1416 1417 #else /* SMTC versions that manage MT scheduling */ 1418 1419 + #include <linux/irqflags.h> 1420 1421 /* 1422 * This is a duplicate of dmt() in mipsmtregs.h to avoid problems with
+4 -8
include/asm-mips/page.h
··· 138 139 #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) 140 141 - #ifndef CONFIG_SPARSEMEM 142 - #ifndef CONFIG_NEED_MULTIPLE_NODES 143 - #define pfn_valid(pfn) ((pfn) < max_mapnr) 144 - #endif 145 - #endif 146 - 147 #ifdef CONFIG_FLATMEM 148 149 #define pfn_valid(pfn) ((pfn) < max_mapnr) 150 151 #elif defined(CONFIG_NEED_MULTIPLE_NODES) 152 ··· 157 : 0); \ 158 }) 159 160 - #else 161 - #error Provide a definition of pfn_valid 162 #endif 163 164 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
··· 138 139 #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) 140 141 #ifdef CONFIG_FLATMEM 142 143 #define pfn_valid(pfn) ((pfn) < max_mapnr) 144 + 145 + #elif defined(CONFIG_SPARSEMEM) 146 + 147 + /* pfn_valid is defined in linux/mmzone.h */ 148 149 #elif defined(CONFIG_NEED_MULTIPLE_NODES) 150 ··· 159 : 0); \ 160 }) 161 162 #endif 163 164 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
+1 -1
include/asm-mips/system.h
··· 13 #define _ASM_SYSTEM_H 14 15 #include <linux/types.h> 16 17 #include <asm/addrspace.h> 18 #include <asm/cpu-features.h> 19 #include <asm/dsp.h> 20 #include <asm/ptrace.h> 21 #include <asm/war.h> 22 - #include <asm/interrupt.h> 23 24 /* 25 * read_barrier_depends - Flush all pending reads that subsequents reads
··· 13 #define _ASM_SYSTEM_H 14 15 #include <linux/types.h> 16 + #include <linux/irqflags.h> 17 18 #include <asm/addrspace.h> 19 #include <asm/cpu-features.h> 20 #include <asm/dsp.h> 21 #include <asm/ptrace.h> 22 #include <asm/war.h> 23 24 /* 25 * read_barrier_depends - Flush all pending reads that subsequents reads
+2 -2
include/asm-mips/time.h
··· 83 /* 84 * board specific routines required by time_init(). 85 * board_time_init is defaulted to NULL and can remain so. 86 - * board_timer_setup must be setup properly in machine setup routine. 87 */ 88 struct irqaction; 89 extern void (*board_time_init)(void); 90 - extern void (*board_timer_setup)(struct irqaction *irq); 91 92 /* 93 * mips_hpt_frequency - must be set if you intend to use an R4k-compatible
··· 83 /* 84 * board specific routines required by time_init(). 85 * board_time_init is defaulted to NULL and can remain so. 86 + * plat_timer_setup must be setup properly in machine setup routine. 87 */ 88 struct irqaction; 89 extern void (*board_time_init)(void); 90 + extern void plat_timer_setup(struct irqaction *irq); 91 92 /* 93 * mips_hpt_frequency - must be set if you intend to use an R4k-compatible
+12 -6
include/asm-mips/unistd.h
··· 327 #define __NR_splice (__NR_Linux + 304) 328 #define __NR_sync_file_range (__NR_Linux + 305) 329 #define __NR_tee (__NR_Linux + 306) 330 331 /* 332 * Offset of the last Linux o32 flavoured syscall 333 */ 334 - #define __NR_Linux_syscalls 306 335 336 #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ 337 338 #define __NR_O32_Linux 4000 339 - #define __NR_O32_Linux_syscalls 306 340 341 #if _MIPS_SIM == _MIPS_SIM_ABI64 342 ··· 612 #define __NR_splice (__NR_Linux + 263) 613 #define __NR_sync_file_range (__NR_Linux + 264) 614 #define __NR_tee (__NR_Linux + 265) 615 616 /* 617 * Offset of the last Linux 64-bit flavoured syscall 618 */ 619 - #define __NR_Linux_syscalls 265 620 621 #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ 622 623 #define __NR_64_Linux 5000 624 - #define __NR_64_Linux_syscalls 265 625 626 #if _MIPS_SIM == _MIPS_SIM_NABI32 627 ··· 901 #define __NR_splice (__NR_Linux + 267) 902 #define __NR_sync_file_range (__NR_Linux + 268) 903 #define __NR_tee (__NR_Linux + 269) 904 905 /* 906 * Offset of the last N32 flavoured syscall 907 */ 908 - #define __NR_Linux_syscalls 269 909 910 #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ 911 912 #define __NR_N32_Linux 6000 913 - #define __NR_N32_Linux_syscalls 269 914 915 #ifdef __KERNEL__ 916
··· 327 #define __NR_splice (__NR_Linux + 304) 328 #define __NR_sync_file_range (__NR_Linux + 305) 329 #define __NR_tee (__NR_Linux + 306) 330 + #define __NR_vmsplice (__NR_Linux + 307) 331 + #define __NR_move_pages (__NR_Linux + 308) 332 333 /* 334 * Offset of the last Linux o32 flavoured syscall 335 */ 336 + #define __NR_Linux_syscalls 308 337 338 #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ 339 340 #define __NR_O32_Linux 4000 341 + #define __NR_O32_Linux_syscalls 308 342 343 #if _MIPS_SIM == _MIPS_SIM_ABI64 344 ··· 610 #define __NR_splice (__NR_Linux + 263) 611 #define __NR_sync_file_range (__NR_Linux + 264) 612 #define __NR_tee (__NR_Linux + 265) 613 + #define __NR_vmsplice (__NR_Linux + 266) 614 + #define __NR_move_pages (__NR_Linux + 267) 615 616 /* 617 * Offset of the last Linux 64-bit flavoured syscall 618 */ 619 + #define __NR_Linux_syscalls 267 620 621 #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ 622 623 #define __NR_64_Linux 5000 624 + #define __NR_64_Linux_syscalls 267 625 626 #if _MIPS_SIM == _MIPS_SIM_NABI32 627 ··· 897 #define __NR_splice (__NR_Linux + 267) 898 #define __NR_sync_file_range (__NR_Linux + 268) 899 #define __NR_tee (__NR_Linux + 269) 900 + #define __NR_vmsplice (__NR_Linux + 270) 901 + #define __NR_move_pages (__NR_Linux + 271) 902 903 /* 904 * Offset of the last N32 flavoured syscall 905 */ 906 + #define __NR_Linux_syscalls 271 907 908 #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ 909 910 #define __NR_N32_Linux 6000 911 + #define __NR_N32_Linux_syscalls 271 912 913 #ifdef __KERNEL__ 914
+1 -1
include/asm-mips/vr41xx/capcella.h
··· 20 #ifndef __ZAO_CAPCELLA_H 21 #define __ZAO_CAPCELLA_H 22 23 - #include <asm/vr41xx/vr41xx.h> 24 25 /* 26 * General-Purpose I/O Pin Number
··· 20 #ifndef __ZAO_CAPCELLA_H 21 #define __ZAO_CAPCELLA_H 22 23 + #include <asm/vr41xx/irq.h> 24 25 /* 26 * General-Purpose I/O Pin Number
+1 -5
include/asm-mips/vr41xx/cmbvr4133.h
··· 15 #ifndef __NEC_CMBVR4133_H 16 #define __NEC_CMBVR4133_H 17 18 - #include <asm/addrspace.h> 19 - #include <asm/vr41xx/vr41xx.h> 20 21 /* 22 * General-Purpose I/O Pin Number ··· 53 #define IDE_PRIMARY_IRQ I8259_IRQ(14) 54 #define IDE_SECONDARY_IRQ I8259_IRQ(15) 55 #define I8259_IRQ_LAST IDE_SECONDARY_IRQ 56 - 57 - #define RTC_PORT(x) (0xaf000100 + (x)) 58 - #define RTC_IO_EXTENT 0x140 59 60 #endif /* __NEC_CMBVR4133_H */
··· 15 #ifndef __NEC_CMBVR4133_H 16 #define __NEC_CMBVR4133_H 17 18 + #include <asm/vr41xx/irq.h> 19 20 /* 21 * General-Purpose I/O Pin Number ··· 54 #define IDE_PRIMARY_IRQ I8259_IRQ(14) 55 #define IDE_SECONDARY_IRQ I8259_IRQ(15) 56 #define I8259_IRQ_LAST IDE_SECONDARY_IRQ 57 58 #endif /* __NEC_CMBVR4133_H */
-43
include/asm-mips/vr41xx/e55.h
··· 1 - /* 2 - * e55.h, Include file for CASIO CASSIOPEIA E-10/15/55/65. 3 - * 4 - * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2 of the License, or 9 - * (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU General Public License for more details. 15 - * 16 - * You should have received a copy of the GNU General Public License 17 - * along with this program; if not, write to the Free Software 18 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 - */ 20 - #ifndef __CASIO_E55_H 21 - #define __CASIO_E55_H 22 - 23 - #include <asm/addrspace.h> 24 - #include <asm/vr41xx/vr41xx.h> 25 - 26 - /* 27 - * Board specific address mapping 28 - */ 29 - #define VR41XX_ISA_MEM_BASE 0x10000000 30 - #define VR41XX_ISA_MEM_SIZE 0x04000000 31 - 32 - /* VR41XX_ISA_IO_BASE includes offset from real base. */ 33 - #define VR41XX_ISA_IO_BASE 0x1400c000 34 - #define VR41XX_ISA_IO_SIZE 0x03ff4000 35 - 36 - #define ISA_BUS_IO_BASE 0 37 - #define ISA_BUS_IO_SIZE VR41XX_ISA_IO_SIZE 38 - 39 - #define IO_PORT_BASE KSEG1ADDR(VR41XX_ISA_IO_BASE) 40 - #define IO_PORT_RESOURCE_START ISA_BUS_IO_BASE 41 - #define IO_PORT_RESOURCE_END (ISA_BUS_IO_BASE + ISA_BUS_IO_SIZE - 1) 42 - 43 - #endif /* __CASIO_E55_H */
···
+101
include/asm-mips/vr41xx/irq.h
···
··· 1 + /* 2 + * include/asm-mips/vr41xx/irq.h 3 + * 4 + * Interrupt numbers for NEC VR4100 series. 5 + * 6 + * Copyright (C) 1999 Michael Klar 7 + * Copyright (C) 2001, 2002 Paul Mundt 8 + * Copyright (C) 2002 MontaVista Software, Inc. 9 + * Copyright (C) 2002 TimeSys Corp. 10 + * Copyright (C) 2003-2006 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 11 + * 12 + * This program is free software; you can redistribute it and/or modify it 13 + * under the terms of the GNU General Public License as published by the 14 + * Free Software Foundation; either version 2 of the License, or (at your 15 + * option) any later version. 16 + */ 17 + #ifndef __NEC_VR41XX_IRQ_H 18 + #define __NEC_VR41XX_IRQ_H 19 + 20 + /* 21 + * CPU core Interrupt Numbers 22 + */ 23 + #define MIPS_CPU_IRQ_BASE 0 24 + #define MIPS_CPU_IRQ(x) (MIPS_CPU_IRQ_BASE + (x)) 25 + #define MIPS_SOFTINT0_IRQ MIPS_CPU_IRQ(0) 26 + #define MIPS_SOFTINT1_IRQ MIPS_CPU_IRQ(1) 27 + #define INT0_IRQ MIPS_CPU_IRQ(2) 28 + #define INT1_IRQ MIPS_CPU_IRQ(3) 29 + #define INT2_IRQ MIPS_CPU_IRQ(4) 30 + #define INT3_IRQ MIPS_CPU_IRQ(5) 31 + #define INT4_IRQ MIPS_CPU_IRQ(6) 32 + #define TIMER_IRQ MIPS_CPU_IRQ(7) 33 + 34 + /* 35 + * SYINT1 Interrupt Numbers 36 + */ 37 + #define SYSINT1_IRQ_BASE 8 38 + #define SYSINT1_IRQ(x) (SYSINT1_IRQ_BASE + (x)) 39 + #define BATTRY_IRQ SYSINT1_IRQ(0) 40 + #define POWER_IRQ SYSINT1_IRQ(1) 41 + #define RTCLONG1_IRQ SYSINT1_IRQ(2) 42 + #define ELAPSEDTIME_IRQ SYSINT1_IRQ(3) 43 + /* RFU */ 44 + #define PIU_IRQ SYSINT1_IRQ(5) 45 + #define AIU_IRQ SYSINT1_IRQ(6) 46 + #define KIU_IRQ SYSINT1_IRQ(7) 47 + #define GIUINT_IRQ SYSINT1_IRQ(8) 48 + #define SIU_IRQ SYSINT1_IRQ(9) 49 + #define BUSERR_IRQ SYSINT1_IRQ(10) 50 + #define SOFTINT_IRQ SYSINT1_IRQ(11) 51 + #define CLKRUN_IRQ SYSINT1_IRQ(12) 52 + #define DOZEPIU_IRQ SYSINT1_IRQ(13) 53 + #define SYSINT1_IRQ_LAST DOZEPIU_IRQ 54 + 55 + /* 56 + * SYSINT2 Interrupt Numbers 57 + */ 58 + #define SYSINT2_IRQ_BASE 24 59 + #define SYSINT2_IRQ(x) (SYSINT2_IRQ_BASE + (x)) 60 + #define RTCLONG2_IRQ SYSINT2_IRQ(0) 61 + #define LED_IRQ SYSINT2_IRQ(1) 62 + #define HSP_IRQ SYSINT2_IRQ(2) 63 + #define TCLOCK_IRQ SYSINT2_IRQ(3) 64 + #define FIR_IRQ SYSINT2_IRQ(4) 65 + #define CEU_IRQ SYSINT2_IRQ(4) /* same number as FIR_IRQ */ 66 + #define DSIU_IRQ SYSINT2_IRQ(5) 67 + #define PCI_IRQ SYSINT2_IRQ(6) 68 + #define SCU_IRQ SYSINT2_IRQ(7) 69 + #define CSI_IRQ SYSINT2_IRQ(8) 70 + #define BCU_IRQ SYSINT2_IRQ(9) 71 + #define ETHERNET_IRQ SYSINT2_IRQ(10) 72 + #define SYSINT2_IRQ_LAST ETHERNET_IRQ 73 + 74 + /* 75 + * GIU Interrupt Numbers 76 + */ 77 + #define GIU_IRQ_BASE 40 78 + #define GIU_IRQ(x) (GIU_IRQ_BASE + (x)) /* IRQ 40-71 */ 79 + #define GIU_IRQ_LAST GIU_IRQ(31) 80 + 81 + /* 82 + * VRC4173 Interrupt Numbers 83 + */ 84 + #define VRC4173_IRQ_BASE 72 85 + #define VRC4173_IRQ(x) (VRC4173_IRQ_BASE + (x)) 86 + #define VRC4173_USB_IRQ VRC4173_IRQ(0) 87 + #define VRC4173_PCMCIA2_IRQ VRC4173_IRQ(1) 88 + #define VRC4173_PCMCIA1_IRQ VRC4173_IRQ(2) 89 + #define VRC4173_PS2CH2_IRQ VRC4173_IRQ(3) 90 + #define VRC4173_PS2CH1_IRQ VRC4173_IRQ(4) 91 + #define VRC4173_PIU_IRQ VRC4173_IRQ(5) 92 + #define VRC4173_AIU_IRQ VRC4173_IRQ(6) 93 + #define VRC4173_KIU_IRQ VRC4173_IRQ(7) 94 + #define VRC4173_GIU_IRQ VRC4173_IRQ(8) 95 + #define VRC4173_AC97_IRQ VRC4173_IRQ(9) 96 + #define VRC4173_AC97INT1_IRQ VRC4173_IRQ(10) 97 + /* RFU */ 98 + #define VRC4173_DOZEPIU_IRQ VRC4173_IRQ(13) 99 + #define VRC4173_IRQ_LAST VRC4173_DOZEPIU_IRQ 100 + 101 + #endif /* __NEC_VR41XX_IRQ_H */
+1 -1
include/asm-mips/vr41xx/mpc30x.h
··· 20 #ifndef __VICTOR_MPC30X_H 21 #define __VICTOR_MPC30X_H 22 23 - #include <asm/vr41xx/vr41xx.h> 24 25 /* 26 * General-Purpose I/O Pin Number
··· 20 #ifndef __VICTOR_MPC30X_H 21 #define __VICTOR_MPC30X_H 22 23 + #include <asm/vr41xx/irq.h> 24 25 /* 26 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0219.h
··· 23 #ifndef __TANBAC_TB0219_H 24 #define __TANBAC_TB0219_H 25 26 - #include <asm/vr41xx/vr41xx.h> 27 28 /* 29 * General-Purpose I/O Pin Number
··· 23 #ifndef __TANBAC_TB0219_H 24 #define __TANBAC_TB0219_H 25 26 + #include <asm/vr41xx/irq.h> 27 28 /* 29 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0226.h
··· 20 #ifndef __TANBAC_TB0226_H 21 #define __TANBAC_TB0226_H 22 23 - #include <asm/vr41xx/vr41xx.h> 24 25 /* 26 * General-Purpose I/O Pin Number
··· 20 #ifndef __TANBAC_TB0226_H 21 #define __TANBAC_TB0226_H 22 23 + #include <asm/vr41xx/irq.h> 24 25 /* 26 * General-Purpose I/O Pin Number
+1 -1
include/asm-mips/vr41xx/tb0287.h
··· 22 #ifndef __TANBAC_TB0287_H 23 #define __TANBAC_TB0287_H 24 25 - #include <asm/vr41xx/vr41xx.h> 26 27 /* 28 * General-Purpose I/O Pin Number
··· 22 #ifndef __TANBAC_TB0287_H 23 #define __TANBAC_TB0287_H 24 25 + #include <asm/vr41xx/irq.h> 26 27 /* 28 * General-Purpose I/O Pin Number
-53
include/asm-mips/vr41xx/vr41xx.h
··· 74 /* 75 * Interrupt Control Unit 76 */ 77 - /* CPU core Interrupt Numbers */ 78 - #define MIPS_CPU_IRQ_BASE 0 79 - #define MIPS_CPU_IRQ(x) (MIPS_CPU_IRQ_BASE + (x)) 80 - #define MIPS_SOFTINT0_IRQ MIPS_CPU_IRQ(0) 81 - #define MIPS_SOFTINT1_IRQ MIPS_CPU_IRQ(1) 82 - #define INT0_IRQ MIPS_CPU_IRQ(2) 83 - #define INT1_IRQ MIPS_CPU_IRQ(3) 84 - #define INT2_IRQ MIPS_CPU_IRQ(4) 85 - #define INT3_IRQ MIPS_CPU_IRQ(5) 86 - #define INT4_IRQ MIPS_CPU_IRQ(6) 87 - #define TIMER_IRQ MIPS_CPU_IRQ(7) 88 - 89 - /* SYINT1 Interrupt Numbers */ 90 - #define SYSINT1_IRQ_BASE 8 91 - #define SYSINT1_IRQ(x) (SYSINT1_IRQ_BASE + (x)) 92 - #define BATTRY_IRQ SYSINT1_IRQ(0) 93 - #define POWER_IRQ SYSINT1_IRQ(1) 94 - #define RTCLONG1_IRQ SYSINT1_IRQ(2) 95 - #define ELAPSEDTIME_IRQ SYSINT1_IRQ(3) 96 - /* RFU */ 97 - #define PIU_IRQ SYSINT1_IRQ(5) 98 - #define AIU_IRQ SYSINT1_IRQ(6) 99 - #define KIU_IRQ SYSINT1_IRQ(7) 100 - #define GIUINT_IRQ SYSINT1_IRQ(8) 101 - #define SIU_IRQ SYSINT1_IRQ(9) 102 - #define BUSERR_IRQ SYSINT1_IRQ(10) 103 - #define SOFTINT_IRQ SYSINT1_IRQ(11) 104 - #define CLKRUN_IRQ SYSINT1_IRQ(12) 105 - #define DOZEPIU_IRQ SYSINT1_IRQ(13) 106 - #define SYSINT1_IRQ_LAST DOZEPIU_IRQ 107 - 108 - /* SYSINT2 Interrupt Numbers */ 109 - #define SYSINT2_IRQ_BASE 24 110 - #define SYSINT2_IRQ(x) (SYSINT2_IRQ_BASE + (x)) 111 - #define RTCLONG2_IRQ SYSINT2_IRQ(0) 112 - #define LED_IRQ SYSINT2_IRQ(1) 113 - #define HSP_IRQ SYSINT2_IRQ(2) 114 - #define TCLOCK_IRQ SYSINT2_IRQ(3) 115 - #define FIR_IRQ SYSINT2_IRQ(4) 116 - #define CEU_IRQ SYSINT2_IRQ(4) /* same number as FIR_IRQ */ 117 - #define DSIU_IRQ SYSINT2_IRQ(5) 118 - #define PCI_IRQ SYSINT2_IRQ(6) 119 - #define SCU_IRQ SYSINT2_IRQ(7) 120 - #define CSI_IRQ SYSINT2_IRQ(8) 121 - #define BCU_IRQ SYSINT2_IRQ(9) 122 - #define ETHERNET_IRQ SYSINT2_IRQ(10) 123 - #define SYSINT2_IRQ_LAST ETHERNET_IRQ 124 - 125 - /* GIU Interrupt Numbers */ 126 - #define GIU_IRQ_BASE 40 127 - #define GIU_IRQ(x) (GIU_IRQ_BASE + (x)) /* IRQ 40-71 */ 128 - #define GIU_IRQ_LAST GIU_IRQ(31) 129 - 130 extern int vr41xx_set_intassign(unsigned int irq, unsigned char intassign); 131 extern int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int, struct pt_regs *)); 132
··· 74 /* 75 * Interrupt Control Unit 76 */ 77 extern int vr41xx_set_intassign(unsigned int irq, unsigned char intassign); 78 extern int cascade_irq(unsigned int irq, int (*get_irq)(unsigned int, struct pt_regs *)); 79
-221
include/asm-mips/vr41xx/vrc4173.h
··· 1 - /* 2 - * vrc4173.h, Include file for NEC VRC4173. 3 - * 4 - * Copyright (C) 2000 Michael R. McDonald 5 - * Copyright (C) 2001-2003 Montavista Software Inc. 6 - * Author: Yoichi Yuasa <yyuasa@mvista.com, or source@mvista.com> 7 - * Copyright (C) 2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 8 - * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org) 9 - * 10 - * This program is free software; you can redistribute it and/or modify 11 - * it under the terms of the GNU General Public License as published by 12 - * the Free Software Foundation; either version 2 of the License, or 13 - * (at your option) any later version. 14 - * 15 - * This program is distributed in the hope that it will be useful, 16 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 - * GNU General Public License for more details. 19 - * 20 - * You should have received a copy of the GNU General Public License 21 - * along with this program; if not, write to the Free Software 22 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 - */ 24 - #ifndef __NEC_VRC4173_H 25 - #define __NEC_VRC4173_H 26 - 27 - #include <asm/io.h> 28 - 29 - /* 30 - * Interrupt Number 31 - */ 32 - #define VRC4173_IRQ_BASE 72 33 - #define VRC4173_IRQ(x) (VRC4173_IRQ_BASE + (x)) 34 - #define VRC4173_USB_IRQ VRC4173_IRQ(0) 35 - #define VRC4173_PCMCIA2_IRQ VRC4173_IRQ(1) 36 - #define VRC4173_PCMCIA1_IRQ VRC4173_IRQ(2) 37 - #define VRC4173_PS2CH2_IRQ VRC4173_IRQ(3) 38 - #define VRC4173_PS2CH1_IRQ VRC4173_IRQ(4) 39 - #define VRC4173_PIU_IRQ VRC4173_IRQ(5) 40 - #define VRC4173_AIU_IRQ VRC4173_IRQ(6) 41 - #define VRC4173_KIU_IRQ VRC4173_IRQ(7) 42 - #define VRC4173_GIU_IRQ VRC4173_IRQ(8) 43 - #define VRC4173_AC97_IRQ VRC4173_IRQ(9) 44 - #define VRC4173_AC97INT1_IRQ VRC4173_IRQ(10) 45 - /* RFU */ 46 - #define VRC4173_DOZEPIU_IRQ VRC4173_IRQ(13) 47 - #define VRC4173_IRQ_LAST VRC4173_DOZEPIU_IRQ 48 - 49 - /* 50 - * PCI I/O accesses 51 - */ 52 - #ifdef CONFIG_VRC4173 53 - 54 - extern unsigned long vrc4173_io_offset; 55 - 56 - #define set_vrc4173_io_offset(offset) do { vrc4173_io_offset = (offset); } while (0) 57 - 58 - #define vrc4173_outb(val,port) outb((val), vrc4173_io_offset+(port)) 59 - #define vrc4173_outw(val,port) outw((val), vrc4173_io_offset+(port)) 60 - #define vrc4173_outl(val,port) outl((val), vrc4173_io_offset+(port)) 61 - #define vrc4173_outb_p(val,port) outb_p((val), vrc4173_io_offset+(port)) 62 - #define vrc4173_outw_p(val,port) outw_p((val), vrc4173_io_offset+(port)) 63 - #define vrc4173_outl_p(val,port) outl_p((val), vrc4173_io_offset+(port)) 64 - 65 - #define vrc4173_inb(port) inb(vrc4173_io_offset+(port)) 66 - #define vrc4173_inw(port) inw(vrc4173_io_offset+(port)) 67 - #define vrc4173_inl(port) inl(vrc4173_io_offset+(port)) 68 - #define vrc4173_inb_p(port) inb_p(vrc4173_io_offset+(port)) 69 - #define vrc4173_inw_p(port) inw_p(vrc4173_io_offset+(port)) 70 - #define vrc4173_inl_p(port) inl_p(vrc4173_io_offset+(port)) 71 - 72 - #define vrc4173_outsb(port,addr,count) outsb(vrc4173_io_offset+(port),(addr),(count)) 73 - #define vrc4173_outsw(port,addr,count) outsw(vrc4173_io_offset+(port),(addr),(count)) 74 - #define vrc4173_outsl(port,addr,count) outsl(vrc4173_io_offset+(port),(addr),(count)) 75 - 76 - #define vrc4173_insb(port,addr,count) insb(vrc4173_io_offset+(port),(addr),(count)) 77 - #define vrc4173_insw(port,addr,count) insw(vrc4173_io_offset+(port),(addr),(count)) 78 - #define vrc4173_insl(port,addr,count) insl(vrc4173_io_offset+(port),(addr),(count)) 79 - 80 - #else 81 - 82 - #define set_vrc4173_io_offset(offset) do {} while (0) 83 - 84 - #define vrc4173_outb(val,port) do {} while (0) 85 - #define vrc4173_outw(val,port) do {} while (0) 86 - #define vrc4173_outl(val,port) do {} while (0) 87 - #define vrc4173_outb_p(val,port) do {} while (0) 88 - #define vrc4173_outw_p(val,port) do {} while (0) 89 - #define vrc4173_outl_p(val,port) do {} while (0) 90 - 91 - #define vrc4173_inb(port) 0 92 - #define vrc4173_inw(port) 0 93 - #define vrc4173_inl(port) 0 94 - #define vrc4173_inb_p(port) 0 95 - #define vrc4173_inw_p(port) 0 96 - #define vrc4173_inl_p(port) 0 97 - 98 - #define vrc4173_outsb(port,addr,count) do {} while (0) 99 - #define vrc4173_outsw(port,addr,count) do {} while (0) 100 - #define vrc4173_outsl(port,addr,count) do {} while (0) 101 - 102 - #define vrc4173_insb(port,addr,count) do {} while (0) 103 - #define vrc4173_insw(port,addr,count) do {} while (0) 104 - #define vrc4173_insl(port,addr,count) do {} while (0) 105 - 106 - #endif 107 - 108 - /* 109 - * Clock Mask Unit 110 - */ 111 - typedef enum vrc4173_clock { 112 - VRC4173_PIU_CLOCK, 113 - VRC4173_KIU_CLOCK, 114 - VRC4173_AIU_CLOCK, 115 - VRC4173_PS2_CH1_CLOCK, 116 - VRC4173_PS2_CH2_CLOCK, 117 - VRC4173_USBU_PCI_CLOCK, 118 - VRC4173_CARDU1_PCI_CLOCK, 119 - VRC4173_CARDU2_PCI_CLOCK, 120 - VRC4173_AC97U_PCI_CLOCK, 121 - VRC4173_USBU_48MHz_CLOCK, 122 - VRC4173_EXT_48MHz_CLOCK, 123 - VRC4173_48MHz_CLOCK, 124 - } vrc4173_clock_t; 125 - 126 - #ifdef CONFIG_VRC4173 127 - 128 - extern void vrc4173_supply_clock(vrc4173_clock_t clock); 129 - extern void vrc4173_mask_clock(vrc4173_clock_t clock); 130 - 131 - #else 132 - 133 - static inline void vrc4173_supply_clock(vrc4173_clock_t clock) {} 134 - static inline void vrc4173_mask_clock(vrc4173_clock_t clock) {} 135 - 136 - #endif 137 - 138 - /* 139 - * Interupt Control Unit 140 - */ 141 - 142 - #define VRC4173_PIUINT_COMMAND 0x0040 143 - #define VRC4173_PIUINT_DATA 0x0020 144 - #define VRC4173_PIUINT_PAGE1 0x0010 145 - #define VRC4173_PIUINT_PAGE0 0x0008 146 - #define VRC4173_PIUINT_DATALOST 0x0004 147 - #define VRC4173_PIUINT_STATUSCHANGE 0x0001 148 - 149 - #ifdef CONFIG_VRC4173 150 - 151 - extern void vrc4173_enable_piuint(uint16_t mask); 152 - extern void vrc4173_disable_piuint(uint16_t mask); 153 - 154 - #else 155 - 156 - static inline void vrc4173_enable_piuint(uint16_t mask) {} 157 - static inline void vrc4173_disable_piuint(uint16_t mask) {} 158 - 159 - #endif 160 - 161 - #define VRC4173_AIUINT_INPUT_DMAEND 0x0800 162 - #define VRC4173_AIUINT_INPUT_DMAHALT 0x0400 163 - #define VRC4173_AIUINT_INPUT_DATALOST 0x0200 164 - #define VRC4173_AIUINT_INPUT_DATA 0x0100 165 - #define VRC4173_AIUINT_OUTPUT_DMAEND 0x0008 166 - #define VRC4173_AIUINT_OUTPUT_DMAHALT 0x0004 167 - #define VRC4173_AIUINT_OUTPUT_NODATA 0x0002 168 - 169 - #ifdef CONFIG_VRC4173 170 - 171 - extern void vrc4173_enable_aiuint(uint16_t mask); 172 - extern void vrc4173_disable_aiuint(uint16_t mask); 173 - 174 - #else 175 - 176 - static inline void vrc4173_enable_aiuint(uint16_t mask) {} 177 - static inline void vrc4173_disable_aiuint(uint16_t mask) {} 178 - 179 - #endif 180 - 181 - #define VRC4173_KIUINT_DATALOST 0x0004 182 - #define VRC4173_KIUINT_DATAREADY 0x0002 183 - #define VRC4173_KIUINT_SCAN 0x0001 184 - 185 - #ifdef CONFIG_VRC4173 186 - 187 - extern void vrc4173_enable_kiuint(uint16_t mask); 188 - extern void vrc4173_disable_kiuint(uint16_t mask); 189 - 190 - #else 191 - 192 - static inline void vrc4173_enable_kiuint(uint16_t mask) {} 193 - static inline void vrc4173_disable_kiuint(uint16_t mask) {} 194 - 195 - #endif 196 - 197 - /* 198 - * General-Purpose I/O Unit 199 - */ 200 - typedef enum vrc4173_function { 201 - PS2_CHANNEL1, 202 - PS2_CHANNEL2, 203 - TOUCHPANEL, 204 - KEYBOARD_8SCANLINES, 205 - KEYBOARD_10SCANLINES, 206 - KEYBOARD_12SCANLINES, 207 - GPIO_0_15PINS, 208 - GPIO_16_20PINS, 209 - } vrc4173_function_t; 210 - 211 - #ifdef CONFIG_VRC4173 212 - 213 - extern void vrc4173_select_function(vrc4173_function_t function); 214 - 215 - #else 216 - 217 - static inline void vrc4173_select_function(vrc4173_function_t function) {} 218 - 219 - #endif 220 - 221 - #endif /* __NEC_VRC4173_H */
···
-43
include/asm-mips/vr41xx/workpad.h
··· 1 - /* 2 - * workpad.h, Include file for IBM WorkPad z50. 3 - * 4 - * Copyright (C) 2002-2004 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> 5 - * 6 - * This program is free software; you can redistribute it and/or modify 7 - * it under the terms of the GNU General Public License as published by 8 - * the Free Software Foundation; either version 2 of the License, or 9 - * (at your option) any later version. 10 - * 11 - * This program is distributed in the hope that it will be useful, 12 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 - * GNU General Public License for more details. 15 - * 16 - * You should have received a copy of the GNU General Public License 17 - * along with this program; if not, write to the Free Software 18 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 - */ 20 - #ifndef __IBM_WORKPAD_H 21 - #define __IBM_WORKPAD_H 22 - 23 - #include <asm/addrspace.h> 24 - #include <asm/vr41xx/vr41xx.h> 25 - 26 - /* 27 - * Board specific address mapping 28 - */ 29 - #define VR41XX_ISA_MEM_BASE 0x10000000 30 - #define VR41XX_ISA_MEM_SIZE 0x04000000 31 - 32 - /* VR41XX_ISA_IO_BASE includes offset from real base. */ 33 - #define VR41XX_ISA_IO_BASE 0x15000000 34 - #define VR41XX_ISA_IO_SIZE 0x03000000 35 - 36 - #define ISA_BUS_IO_BASE 0 37 - #define ISA_BUS_IO_SIZE VR41XX_ISA_IO_SIZE 38 - 39 - #define IO_PORT_BASE KSEG1ADDR(VR41XX_ISA_IO_BASE) 40 - #define IO_PORT_RESOURCE_START ISA_BUS_IO_BASE 41 - #define IO_PORT_RESOURCE_END (ISA_BUS_IO_BASE + ISA_BUS_IO_SIZE - 1) 42 - 43 - #endif /* __IBM_WORKPAD_H */
···