* [PATCH 2.4.19-rc1] BLK_DEV_RAM not BLOCK_DEV_RAM. was: Linux 2.4.19-rc1
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
@ 2002-06-24 19:07 ` Stelian Pop
2002-06-24 19:17 ` Rudmer van Dijk
2002-06-24 19:20 ` [PATCH 2.4.19-rc1] Fix building with 'make -r -R' Tom Rini
` (5 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Stelian Pop @ 2002-06-24 19:07 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Linux Kernel Mailing List
On Mon, Jun 24, 2002 at 12:58:23PM -0300, Marcelo Tosatti wrote:
> Directly from OLS you're getting the first release candidate.
>
> Please test it extensively.
Hi Marcelo,
The attached patch I've send you against the pre10 is still needed
to fix a typo.
Please apply.
Stelian.
> From stelian.pop@fr.alcove.com Fri Jun 7 12:04:45 2002
> Date: Fri, 7 Jun 2002 12:04:45 +0200
This trivial patch is necessary to compile the current bk head
when one does not have a floppy device...
Thanks,
Stelian.
===== init/do_mounts.c 1.26 vs edited =====
--- 1.26/init/do_mounts.c Tue Jun 4 19:13:30 2002
+++ edited/init/do_mounts.c Fri Jun 7 10:51:37 2002
@@ -378,7 +378,7 @@
return sys_symlink(path + n + 5, name);
}
-#if defined(CONFIG_BLOCK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
+#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
static void __init change_floppy(char *fmt, ...)
{
struct termios termios;
--
Stelian Pop <stelian.pop@fr.alcove.com>
Alcove - http://www.alcove.com
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH 2.4.19-rc1] BLK_DEV_RAM not BLOCK_DEV_RAM. was: Linux 2.4.19-rc1
2002-06-24 19:07 ` [PATCH 2.4.19-rc1] BLK_DEV_RAM not BLOCK_DEV_RAM. was: " Stelian Pop
@ 2002-06-24 19:17 ` Rudmer van Dijk
0 siblings, 0 replies; 14+ messages in thread
From: Rudmer van Dijk @ 2002-06-24 19:17 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Linux Kernel Mailing List
On Monday 24 June 2002 21:07, Stelian Pop wrote:
> On Mon, Jun 24, 2002 at 12:58:23PM -0300, Marcelo Tosatti wrote:
> > Directly from OLS you're getting the first release candidate.
> >
> > Please test it extensively.
>
> Hi Marcelo,
>
> The attached patch I've send you against the pre10 is still needed
> to fix a typo.
this patch fixes my build problem.
> Please apply.
please do Marcelo
Rudmer
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 2.4.19-rc1] Fix building with 'make -r -R'
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
2002-06-24 19:07 ` [PATCH 2.4.19-rc1] BLK_DEV_RAM not BLOCK_DEV_RAM. was: " Stelian Pop
@ 2002-06-24 19:20 ` Tom Rini
2002-06-24 20:28 ` Linux 2.4.19-rc1 Pawel Kot
` (4 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Tom Rini @ 2002-06-24 19:20 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: lkml
The following patch fixes 'make -r -R' in current kernels. From the
make (3.79.1) info page:
In an explicit rule, there is no stem; so `$*' cannot be determined
in that way. Instead, if the target name ends with a recognized
suffix (*note Old-Fashioned Suffix Rules: Suffix Rules.), `$*' is
set to the target name minus the suffix. For example, if the
target name is `foo.c', then `$*' is set to `foo', since `.c' is a
suffix. GNU `make' does this bizarre thing only for compatibility
with other implementations of `make'. You should generally avoid
using `$*' except in implicit rules or static pattern rules.
Which explains why when '-r -R' (aka --no-builtin-rules
--no-builtin-variables) the build fails to make 'init/main.o' or
'init/do_mounts.o'.
--
Tom Rini (TR1265)
http://gate.crashing.org/~trini/
===== Makefile 1.158 vs edited =====
--- 1.158/Makefile Wed Jun 5 15:45:31 2002
+++ edited/Makefile Fri Jun 7 10:20:25 2002
@@ -355,10 +355,10 @@
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) -DUTS_MACHINE='"$(ARCH)"' -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o init/version.o init/version.c
init/main.o: init/main.c include/config/MARKER
- $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
+ $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $@ $<
init/do_mounts.o: init/do_mounts.c include/config/MARKER
- $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
+ $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $@ $<
fs lib mm ipc kernel drivers net: dummy
$(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" $(subst $@, _dir_$@, $@)
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: Linux 2.4.19-rc1
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
2002-06-24 19:07 ` [PATCH 2.4.19-rc1] BLK_DEV_RAM not BLOCK_DEV_RAM. was: " Stelian Pop
2002-06-24 19:20 ` [PATCH 2.4.19-rc1] Fix building with 'make -r -R' Tom Rini
@ 2002-06-24 20:28 ` Pawel Kot
2002-06-24 21:17 ` Linux 2.4.19-rc1 ChangeLog Summary Matthias Andree
` (3 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Pawel Kot @ 2002-06-24 20:28 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: lkml
[-- Attachment #1: Type: TEXT/PLAIN, Size: 514 bytes --]
On Mon, 24 Jun 2002, Marcelo Tosatti wrote:
> Directly from OLS you're getting the first release candidate.
>
> Please test it extensively.
Still IDE problems:
root@bzzzt:~# hdparm -d1 /dev/hda
/dev/hda:
setting using_dma to 1 (on)
HDIO_SET_DMA failed: Operation not permitted
using_dma = 0 (off)
dmesg and lspci -vvv attached. This is Dell Latitide c610 laptop.
No problems with 2.4.18.
pkot
--
mailto:pkot@linuxnews.pl :: mailto:pkot@slackware.pl
http://kt.linuxnews.pl/ :: Kernel Traffic po polsku
[-- Attachment #2: Type: TEXT/PLAIN, Size: 5302 bytes --]
Linux version 2.4.19-rc1 (pkot@bzzzt) (gcc version 2.95.3 20010315 (release)) #1 Mon Jun 24 21:39:01 CEST 2002
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 0000000000100000 - 000000000ffe2800 (usable)
BIOS-e820: 000000000ffe2800 - 0000000010000000 (reserved)
BIOS-e820: 00000000feda0000 - 00000000fee00000 (reserved)
BIOS-e820: 00000000ffb80000 - 0000000100000000 (reserved)
255MB LOWMEM available.
Advanced speculative caching feature not present
On node 0 totalpages: 65506
zone(0): 4096 pages.
zone(1): 61410 pages.
zone(2): 0 pages.
Dell Latitude with broken BIOS detected. Refusing to enable the local APIC.
Kernel command line: BOOT_IMAGE=2.4.19-rc1 ro root=303 video=radeonfb:1024x768-32 console=ttyS0,115200n8 console=tty0
Initializing CPU#0
Detected 730.981 MHz processor.
Console: colour VGA+ 80x25
Calibrating delay loop... 1458.17 BogoMIPS
Memory: 256800k/262024k available (1140k kernel code, 4836k reserved, 355k data, 256k init, 0k highmem)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
Buffer-cache hash table entries: 16384 (order: 4, 65536 bytes)
Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
CPU: Before vendor init, caps: 0383f9ff 00000000 00000000, vendor = 0
CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 512K
CPU: After vendor init, caps: 0383f9ff 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: After generic, caps: 0383f9ff 00000000 00000000 00000000
CPU: Common caps: 0383f9ff 00000000 00000000 00000000
CPU: Intel(R) Pentium(R) III Mobile CPU 1000MHz stepping 01
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
mtrr: detected mtrr type: Intel
PCI: PCI BIOS revision 2.10 entry at 0xfbffe, last bus=2
PCI: Using configuration type 1
PCI: Probing PCI hardware
Unknown bridge resource 2: assuming transparent
PCI: Discovered primary peer bus 08 [IRQ]
PCI: Using IRQ router PIIX [8086/248c] at 00:1f.0
PCI: Found IRQ 11 for device 00:1f.1
PCI: Sharing IRQ 11 with 02:00.0
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16)
Starting kswapd
PCI: Found IRQ 11 for device 01:00.0
PCI: Sharing IRQ 11 with 00:1d.0
radeonfb: ref_clk=2700, ref_div=60, xclk=16600 from BIOS
radeonfb: panel ID string: 1024x768
radeonfb: detected DFP panel size from BIOS: 1024x768
Console: switching to colour frame buffer device 128x48
radeonfb: ATI Radeon M6 LY DDR SGRAM 16 MB
radeonfb: DVI port LCD monitor connected
radeonfb: CRT port no monitor connected
pty: 256 Unix98 ptys configured
Dell laptop SMM driver v1.7 21/11/2001 Massimo Dal Zotto (dz@debian.org)
Serial driver version 5.05c (2001-07-08) with MANY_PORTS SHARE_IRQ SERIAL_PCI enabled
ttyS00 at 0x03f8 (irq = 4) is a 16550A
ttyS01 at 0x02f8 (irq = 3) is a 16550A
PCI: Found IRQ 11 for device 00:1f.6
PCI: Sharing IRQ 11 with 00:1f.5
Uniform Multi-Platform E-IDE driver Revision: 6.31
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH3M: IDE controller on PCI bus 00 dev f9
PCI: Device 00:1f.1 not available because of resource collisions
ICH3M: (ide_setup_pci_device:) Could not enable device.
hda: HITACHI_DK23CA-30, ATA DISK drive
hdc: TEAC CD-ROM CD-224E, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
hda: 58605120 sectors (30006 MB) w/2048KiB Cache, CHS=3648/255/63
hdc: ATAPI 24X CD-ROM drive, 128kB Cache
Uniform CD-ROM driver Revision: 3.12
Partition check:
hda: hda1 hda2 hda3
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
Linux agpgart interface v0.99 (c) Jeff Hartmann
agpgart: Maximum main memory to use for agp memory: 203M
agpgart: Detected Intel i830M chipset
agpgart: AGP aperture is 256M @ 0xd0000000
[drm] AGP 0.99 on Unknown @ 0xd0000000 256MB
[drm] Initialized radeon 1.1.1 20010405 on minor 0
usb.c: registered new driver usbdevfs
usb.c: registered new driver hub
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 16384 bind 16384)
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
reiserfs: checking transaction log (device 03:03) ...
Warning, log replay starting on readonly filesystem
Using r5 hash to sort names
ReiserFS version 3.6.25
VFS: Mounted root (reiserfs filesystem) readonly.
Freeing unused kernel memory: 256k freed
Adding Swap: 131064k swap-space (priority -1)
Real Time Clock Driver v1.10e
PCI: Found IRQ 11 for device 02:00.0
PCI: Sharing IRQ 11 with 00:1f.1
3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
02:00.0: 3Com PCI 3c905C Tornado at 0xec80. Vers LK1.1.16
[-- Attachment #3: Type: TEXT/PLAIN, Size: 6767 bytes --]
00:00.0 Host bridge: Intel Corp. 82830 830 Chipset Host Bridge (rev 02)
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR-
Latency: 0
Region 0: Memory at d0000000 (32-bit, prefetchable) [size=256M]
Capabilities: <available only to root>
00:01.0 PCI bridge: Intel Corp. 82830 830 Chipset AGP Bridge (rev 02) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32
Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
I/O behind bridge: 0000c000-0000cfff
Memory behind bridge: fc000000-fdffffff
Prefetchable memory behind bridge: e0000000-e7ffffff
BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
00:1d.0 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #1) (rev 01) (prog-if 00 [UHCI])
Subsystem: Intel Corp.: Unknown device 4541
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 11
Region 4: I/O ports at bf80 [size=32]
00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 41) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Bus: primary=00, secondary=02, subordinate=10, sec-latency=32
I/O behind bridge: 0000e000-0000ffff
Memory behind bridge: f4000000-fbffffff
Prefetchable memory behind bridge: fff00000-000fffff
BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
00:1f.0 ISA bridge: Intel Corp. 82801CAM ISA Bridge (LPC) (rev 01)
Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
00:1f.1 IDE interface: Intel Corp. 82801CAM IDE U100 (rev 01) (prog-if 8a [Master SecP PriP])
Subsystem: Intel Corp.: Unknown device 4541
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin A routed to IRQ 11
Region 0: I/O ports at <unassigned> [size=8]
Region 1: I/O ports at <unassigned> [size=4]
Region 2: I/O ports at <unassigned> [size=8]
Region 3: I/O ports at <unassigned> [size=4]
Region 4: I/O ports at bfa0 [size=16]
Region 5: [virtual] Memory at 10000000 (32-bit, non-prefetchable) [disabled] [size=1K]
00:1f.5 Multimedia audio controller: Intel Corp. 82801CA/CAM AC'97 Audio (rev 01)
Subsystem: Cirrus Logic: Unknown device 5959
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin B routed to IRQ 11
Region 0: I/O ports at d800 [size=256]
Region 1: I/O ports at dc80 [size=64]
00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem (rev 01) (prog-if 00 [Generic])
Subsystem: PCTel Inc: Unknown device 4c21
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin B routed to IRQ 11
Region 0: I/O ports at d400 [size=256]
Region 1: I/O ports at dc00 [size=128]
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY (prog-if 00 [VGA])
Subsystem: Dell Computer Corporation: Unknown device 00e3
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping+ SERR+ FastB2B-
Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32 (2000ns min), cache line size 08
Interrupt: pin A routed to IRQ 11
Region 0: Memory at e0000000 (32-bit, prefetchable) [size=128M]
Region 1: I/O ports at c000 [size=256]
Region 2: Memory at fcff0000 (32-bit, non-prefetchable) [size=64K]
Expansion ROM at <unassigned> [disabled] [size=128K]
Capabilities: <available only to root>
02:00.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
Subsystem: Dell Computer Corporation: Unknown device 00e3
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32 (2500ns min, 2500ns max), cache line size 08
Interrupt: pin A routed to IRQ 11
Region 0: I/O ports at ec80 [size=128]
Region 1: Memory at f8fffc00 (32-bit, non-prefetchable) [size=128]
Expansion ROM at f9000000 [disabled] [size=128K]
Capabilities: <available only to root>
02:01.0 CardBus bridge: Texas Instruments PCI1420
Subsystem: Dell Computer Corporation: Unknown device 00e3
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32, cache line size 08
Interrupt: pin A routed to IRQ 11
Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=02, secondary=03, subordinate=06, sec-latency=32
Memory window 0: 00000000-00000000 (prefetchable)
Memory window 1: 00000000-00000000 (prefetchable)
I/O window 0: 00000000-00000003
I/O window 1: 00000000-00000003
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
16-bit legacy interface ports at 0001
02:01.1 CardBus bridge: Texas Instruments PCI1420
Subsystem: Dell Computer Corporation: Unknown device 00e3
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32, cache line size 08
Interrupt: pin A routed to IRQ 11
Region 0: Memory at f4001000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=02, secondary=07, subordinate=0a, sec-latency=32
Memory window 0: 00000000-00000000 (prefetchable)
Memory window 1: 00000000-00000000 (prefetchable)
I/O window 0: 00000000-00000003
I/O window 1: 00000000-00000003
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
16-bit legacy interface ports at 0001
^ permalink raw reply [flat|nested] 14+ messages in thread* Linux 2.4.19-rc1 ChangeLog Summary
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
` (2 preceding siblings ...)
2002-06-24 20:28 ` Linux 2.4.19-rc1 Pawel Kot
@ 2002-06-24 21:17 ` Matthias Andree
2002-06-25 23:06 ` Linux 2.4.19-rc1 Simon Kirby
` (2 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Matthias Andree @ 2002-06-24 21:17 UTC (permalink / raw)
To: lkml
This is the ChangeLog summary, pulled from BK.
Note: some people are listed by user@h.o.s.t, not by their names. If you
have first-hand information about whom these user@h.o.s.t belong to,
drop me a note (privately, not to the list, please).
v2.4.19-pre10 -> v2.4.19-rc1
============================
o 3ware driver update for 2.4 (adam@nmt.edu)
o fix .text.exit compile error in sstfb.c (Adrian Bunk)
o disable CONFIG_IEEE1394_PCILYNX_PORTS config option (Adrian Bunk)
o missing clean (Alan Cox)
o rest of SIGURG changes (Alan Cox)
o barrier didnt go away (Alan Cox)
o sisfb header I forgot last time (Alan Cox)
o more pci idents we use in kernel now (Alan Cox)
o ; make readv/writev SuS compliant (Alan Cox)
o Configure.help bits (Alan Cox)
o fix wrong __init in neofb (Alan Cox)
o switch audio to static inline (Alan Cox)
o switch s/390 drivers to static inline (Alan Cox)
o switch hamradio drivers to static inline (Alan Cox)
o a few more static inlines (Alan Cox)
o switch mpt fusion to static inline (Alan Cox)
o fix link error in video4linux (Alan Cox)
o switch pms to static inline (Alan Cox)
o switch bw-qcam to static inline (Alan Cox)
o switch isdn to static inline (Alan Cox)
o switch specialix to static inline (Alan Cox)
o switch isicom to static inline (Alan Cox)
o switch ftape to static inline (Alan Cox)
o Fix i830 agp error on 8+8Mb split, (Alan Cox)
o ramdisk efault fix (Alan Cox)
o remove dead probe code (Alan Cox)
o more url changes (Alan Cox)
o url changes (Alan Cox)
o update urls (Alan Cox)
o Make panic blink configurable (Andi Kleen)
o Another fix for the RAID-5 inline assembly (Andi Kleen)
o Fix incorrect inline assembly for RAID-5 (Andi Kleen)
o Remove debug code from /proc/stat (Andrew Morton)
o rivafb fix (Ani Joshi)
o misc fixes for 2.4.19-pre10 (Benjamin LaHaise)
o ns83820 v0.18 update (Benjamin LaHaise)
o highmem pci dma mapping does not work, missing cast in asm-i386/pci.h
(Benjamin LaHaise)
o Bonding driver: Add multicast support (Chad N. Tindel)
o add missing 2.5 compatible kdev_t bits (Christoph Hellwig)
o don't export vmalloc_to_page() gplonly (Christoph Hellwig)
o don't export walk_gendisk() (Christoph Hellwig)
o Tigon3: More fiber PHY tweaks (David S. Miller)
o ip-sysctl.txt fixes (David S. Miller)
o Tigon3: Make fibre PHY support work (David S. Miller)
o tg3.c: Fix typo in GA302T board ID (David S. Miller)
o AF_PACKET: Clear out packet-mmap pages (David S. Miller)
o CyberPro 32bit support and other fixes (Denis Oliver Kropp)
o Re: [PATCH] printk KERN_* in 3c501 driver (felipewd@terra.com.br)
o ipconfig.c: Fix defined but not used warnings (Frank Davis)
o fix error handling in video_open() (Gerd Knorr)
o PCI Hotplug ACPI driver minor fix (Greg Kroah-Hartman)
o swap 4/4 redundant SwapCache checks (Hugh Dickins)
o swap 3/4 unsafe Dirty check (Hugh Dickins)
o swap 2/4 unsafe SwapCache check (Hugh Dickins)
o swap 1/4 swapon memleak (Hugh Dickins)
o tmpfs 4/4 swapoff tweaks (Hugh Dickins)
o tmpfs 3/4 partial truncate (Hugh Dickins)
o tmpfs 2/4 mknod times (Hugh Dickins)
o tmpfs 1/4 symlink unwind (Hugh Dickins)
o tridentfb update (jani@iv.ro)
o Reserve 2.5.x extended attribute syscall numbers, for alpha port
(Jeff Garzik)
o Update 8139 net drivers for the following fixes (Jeff Garzik)
o ISDN: Fix oops when unloading drivers in non LIFO order
(Kai Germaschewski)
o 2.4.19-pre10 Enforce uts limit, use LANG=C for date/time (Keith Owens)
o Convert drivers/net/wan/8253x to kernel build (Keith Owens)
o HCDP serial ports (Khalid Aziz)
o Makefile (Marcelo Tosatti)
o Add support for HP Diva serial ports (Matthew Wilcox)
o Remove SERIAL_IO_GSC (Matthew Wilcox)
o Serial driver iomem fixes (Matthew Wilcox)
o fs/ufs/super.c:ufs_read_super() fixes (Mikael Pettersson)
o Documentation Update (mostrows@watson.ibm.com)
o Update for arch/i386/defconfig (Niels Kristian Bech Jensen)
o icache coherency on cleared pages (Paul Mackerras)
o Fix s390 partition bug in 2.4.19-pre7 (Pete Zaitcev)
o Fix cache-attribute conflict bug on newer AMD Athlon (Richard Brunner)
o Trivial, IDE geometry fix / defconfig changes (Robert Cardell)
o fix for sigio delivery (Rusty Russell)
o Re: Kernel zombie threads after module removal (Rusty Russell)
o Re: TRIVIAL: William Lee Irwin III: buddy system comment (Rusty Russell)
o APM patch for idle_period handling (Rusty Russell)
o Fix compilation warning in do_mounts.c (Fixed by Rusty) (Rusty Russell)
o TAGS should include arch dir (Rusty Russell)
o Finally squish those chrp_start.c warnings (Rusty Russell)
o Re: mislabelled label patch (Rusty Russell)
o Remove bogus casts in ide-cd.c (Rusty Russell)
o typo in smt.h (Rusty Russell)
o typo in jazz_esp.c (Rusty Russell)
o typo in aic7xxx_core.c (Rusty Russell)
o Typo in radeonfb.c printk() (Rusty Russell)
o Re: nbd.c warning fix (Rusty Russell)
o Fix bashisms in scripts_patch-kernel (Rusty Russell)
o II ipchains bugs in 2.2_2.4_2.5 related to netlink calls (Rusty Russell)
o Fix spinlock goof in w83877f watchdog driver
(snailtalk@linux-mandrake.com)
o Add includes necessary for Alpha AXP platform, to these drivers
(snailtalk@linux-mandrake.com)
o Fix booting of some machines when loaded into (Tom Rini)
o Fix compilation of CONFIG_UCODE_PATCH=y (Tom Rini)
o Fix corner cases of building SA1100/M8xx PCMCIA support (Tom Rini)
o 2.4.19-pre10 - i8xx series chipsets patches (patch 5) (Wim Van Sebroeck)
o 2.4.19-pre10 - i8xx series chipsets patches (patch 4) (Wim Van Sebroeck)
o 2.4.19-pre10 - i8xx series chipsets patches (patch 3) (Wim Van Sebroeck)
o 2.4.19-pre10 - i8xx series chipsets patches (patch 2) (Wim Van Sebroeck)
o 2.4.19-pre10 - i8xx series chipsets patches (patch 1) (Wim Van Sebroeck)
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: Linux 2.4.19-rc1
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
` (3 preceding siblings ...)
2002-06-24 21:17 ` Linux 2.4.19-rc1 ChangeLog Summary Matthias Andree
@ 2002-06-25 23:06 ` Simon Kirby
2002-06-25 23:29 ` DMA from high memory regions Imran Badr
2002-06-26 0:23 ` Linux 2.4.19-rc1 Marcelo Tosatti
2002-06-28 22:41 ` bvermeul
2002-07-12 0:26 ` Linux 2.4.19-rc1: [PATCH] tridentfb Helge Deller
6 siblings, 2 replies; 14+ messages in thread
From: Simon Kirby @ 2002-06-25 23:06 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: lkml
Hello,
This fix did not yet make it in to the tg3 driver as of -rc1. This patch
fixes an occasional crash problem with several of our boxes and the tg3
driver (fix from Jes).
--
Hi Dave
Here's another one, tg3_recycle_rx() needs to declare dest_idx_unmasked
as unsigned int or it will do funny stuff on modular division once we go
above 31 bit values.
I don't think this is the bug that Scott was hitting, but it is of
course possible. It takes about 120 minutes for me with a packet
generator, spewing out 64 byte packets, to trigger it.
Cheers,
Jes
--- ../orig/drivers/net/tg3.c Tue May 14 07:30:52 2002
+++ drivers/net/tg3.c Fri Jun 14 11:20:48 2002
@@ -1689,7 +1669,7 @@
* tg3_alloc_rx_skb for full details.
*/
static void tg3_recycle_rx(struct tg3 *tp, u32 opaque_key,
- int src_idx, int dest_idx_unmasked)
+ int src_idx, u32 dest_idx_unmasked)
{
struct tg3_rx_buffer_desc *src_desc, *dest_desc;
struct ring_info *src_map, *dest_map;
--
Simon-
[ Stormix Technologies Inc. ][ NetNation Communications Inc. ]
[ sim@stormix.com ][ sim@netnation.com ]
[ Opinions expressed are not necessarily those of my employers. ]
^ permalink raw reply [flat|nested] 14+ messages in thread* DMA from high memory regions
2002-06-25 23:06 ` Linux 2.4.19-rc1 Simon Kirby
@ 2002-06-25 23:29 ` Imran Badr
2002-06-26 0:23 ` Linux 2.4.19-rc1 Marcelo Tosatti
1 sibling, 0 replies; 14+ messages in thread
From: Imran Badr @ 2002-06-25 23:29 UTC (permalink / raw)
To: 'lkml'
Hi,
I am trying to setup DMA to/from user space. I get a user pointer in my
device driver, from which I build up kiobuf and call map_user_kiobuf. After
this, I call kmap to map pages to kernel virtual space and then virt_to_bus
to get bus address. Now if I define CONFIG_HIGHMEM and that page happens to
be in the memory region near 1GB then DMA never happens and I donot see any
data in result pointer. If CONFIG_HIGHMEM is not defined, then everything
works perfectly. Please suggest any solution.
Thanks,
Imran.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Linux 2.4.19-rc1
2002-06-25 23:06 ` Linux 2.4.19-rc1 Simon Kirby
2002-06-25 23:29 ` DMA from high memory regions Imran Badr
@ 2002-06-26 0:23 ` Marcelo Tosatti
1 sibling, 0 replies; 14+ messages in thread
From: Marcelo Tosatti @ 2002-06-26 0:23 UTC (permalink / raw)
To: Simon Kirby; +Cc: lkml
Simon,
This fix is on my BK tree since yesterday.
Thanks anyway
On Tue, 25 Jun 2002, Simon Kirby wrote:
> Hello,
>
> This fix did not yet make it in to the tg3 driver as of -rc1. This patch
> fixes an occasional crash problem with several of our boxes and the tg3
> driver (fix from Jes).
>
> --
>
> Hi Dave
>
> Here's another one, tg3_recycle_rx() needs to declare dest_idx_unmasked
> as unsigned int or it will do funny stuff on modular division once we go
> above 31 bit values.
>
> I don't think this is the bug that Scott was hitting, but it is of
> course possible. It takes about 120 minutes for me with a packet
> generator, spewing out 64 byte packets, to trigger it.
>
> Cheers,
> Jes
>
> --- ../orig/drivers/net/tg3.c Tue May 14 07:30:52 2002
> +++ drivers/net/tg3.c Fri Jun 14 11:20:48 2002
> @@ -1689,7 +1669,7 @@
> * tg3_alloc_rx_skb for full details.
> */
> static void tg3_recycle_rx(struct tg3 *tp, u32 opaque_key,
> - int src_idx, int dest_idx_unmasked)
> + int src_idx, u32 dest_idx_unmasked)
> {
> struct tg3_rx_buffer_desc *src_desc, *dest_desc;
> struct ring_info *src_map, *dest_map;
>
> --
>
> Simon-
>
> [ Stormix Technologies Inc. ][ NetNation Communications Inc. ]
> [ sim@stormix.com ][ sim@netnation.com ]
> [ Opinions expressed are not necessarily those of my employers. ]
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Linux 2.4.19-rc1
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
` (4 preceding siblings ...)
2002-06-25 23:06 ` Linux 2.4.19-rc1 Simon Kirby
@ 2002-06-28 22:41 ` bvermeul
2002-07-02 20:51 ` Marcelo Tosatti
2002-07-12 0:26 ` Linux 2.4.19-rc1: [PATCH] tridentfb Helge Deller
6 siblings, 1 reply; 14+ messages in thread
From: bvermeul @ 2002-06-28 22:41 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: lkml
I've just tried 2.4.19-rc1, and it hangs on me when I start
cardmgr. I've ran an strace on cardmgr, and it hangs during
an ioctl call to DECODER_GET_STATUS. (SysRq doesn't do anything,
it's a complete hang)
The last 2.4 kernel I used was 2.4.19-pre10-ac2, which didn't
have this problem. I'm also using 2.5.24-dj2 without a problem.
This all is on a Dell Inspiron 8000, with an internal WiFi miniPCI
card (cardbus controller with embedded wireless controller).
Regards,
Bas Vermeulen
lspci -vvv output:
00:00.0 Host bridge: Intel Corp. 82815 815 Chipset Host Bridge and Memory Controller Hub (rev 02)
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR-
Latency: 0
Region 0: Memory at e4000000 (32-bit, prefetchable) [size=64M]
Capabilities: [88] #09 [f104]
Capabilities: [a0] AGP version 2.0
Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
Command: RQ=0 SBA- AGP- 64bit- FW- Rate=<none>
00:01.0 PCI bridge: Intel Corp. 82815 815 Chipset AGP Bridge (rev 02) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32
Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
I/O behind bridge: 0000c000-0000cfff
Memory behind bridge: fc000000-fdffffff
Prefetchable memory behind bridge: e8000000-ebffffff
BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 02) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Bus: primary=00, secondary=02, subordinate=10, sec-latency=32
I/O behind bridge: 0000e000-0000ffff
Memory behind bridge: f4000000-fbffffff
Prefetchable memory behind bridge: fff00000-000fffff
BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
00:1f.0 ISA bridge: Intel Corp. 82801BAM ISA Bridge (LPC) (rev 02)
Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
00:1f.1 IDE interface: Intel Corp. 82801BAM IDE U100 (rev 02) (prog-if 80 [Master])
Subsystem: Intel Corp.: Unknown device 4541
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Region 4: I/O ports at bfa0 [size=16]
00:1f.2 USB Controller: Intel Corp. 82801BA/BAM USB (Hub (rev 02) (prog-if 00 [UHCI])
Subsystem: Intel Corp.: Unknown device 4541
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 0
Interrupt: pin D routed to IRQ 10
Region 4: I/O ports at dce0 [size=32]
01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility M4 AGP (prog-if 00 [VGA])
Subsystem: Dell Computer Corporation: Unknown device 00a4
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping+ SERR- FastB2B-
Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32 (2000ns min), cache line size 08
Interrupt: pin A routed to IRQ 11
Region 0: Memory at e8000000 (32-bit, prefetchable) [size=64M]
Region 1: I/O ports at cc00 [size=256]
Region 2: Memory at fcffc000 (32-bit, non-prefetchable) [size=16K]
Expansion ROM at <unassigned> [disabled] [size=128K]
Capabilities: [50] AGP version 2.0
Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
Command: RQ=0 SBA+ AGP- 64bit- FW- Rate=<none>
Capabilities: [5c] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
02:03.0 Multimedia audio controller: ESS Technology ES1983S Maestro-3i PCI Audio Accelerator (rev 10)
Subsystem: Dell Computer Corporation: Unknown device 00a4
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32 (500ns min, 6000ns max)
Interrupt: pin A routed to IRQ 5
Region 0: I/O ports at ec00 [size=256]
Region 1: Memory at f8ffe000 (32-bit, non-prefetchable) [size=8K]
Capabilities: [c0] Power Management version 2
Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
02:06.0 CardBus bridge: Texas Instruments PCI1410 PC card Cardbus Controller (rev 01)
Subsystem: Lucent Technologies: Unknown device ab01
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 168, cache line size 08
Interrupt: pin A routed to IRQ 10
Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=02, secondary=06, subordinate=09, sec-latency=176
Memory window 0: f4400000-f47ff000 (prefetchable)
Memory window 1: f4800000-f4bff000
I/O window 0: 0000e000-0000e0ff
I/O window 1: 0000e400-0000e4ff
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt- PostWrite+
16-bit legacy interface ports at 0001
02:0f.0 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
Subsystem: Dell Computer Corporation: Unknown device 00a4
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 168, cache line size 08
Interrupt: pin A routed to IRQ 10
Region 0: Memory at f4001000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=00, secondary=04, subordinate=04, sec-latency=176
Memory window 0: f4c00000-f4fff000 (prefetchable)
Memory window 1: f5000000-f53ff000
I/O window 0: 0000e800-0000e8ff
I/O window 1: 0000f000-0000f0ff
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt- PostWrite+
16-bit legacy interface ports at 0001
02:0f.1 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
Subsystem: Dell Computer Corporation: Unknown device 00a4
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 168, cache line size 08
Interrupt: pin A routed to IRQ 10
Region 0: Memory at f4002000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=00, secondary=05, subordinate=05, sec-latency=176
Memory window 0: f5400000-f57ff000 (prefetchable)
Memory window 1: f5800000-f5bff000
I/O window 0: 0000f400-0000f4ff
I/O window 1: 0000f800-0000f8ff
BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
16-bit legacy interface ports at 0001
02:0f.2 FireWire (IEEE 1394): Texas Instruments PCI4451 IEEE-1394 Controller (prog-if 10 [OHCI])
Subsystem: Dell Computer Corporation: Unknown device 00a4
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Latency: 32 (500ns min, 1000ns max), cache line size 08
Interrupt: pin A routed to IRQ 10
Region 0: Memory at f8ffd800 (32-bit, non-prefetchable) [size=2K]
Region 1: Memory at f8ff8000 (32-bit, non-prefetchable) [size=16K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0-,D1-,D2+,D3hot+,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C (rev 10)
Subsystem: Realtek Semiconductor Co., Ltd. RT8139
Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
Interrupt: pin A routed to IRQ 10
Region 0: I/O ports at e800 [size=256]
Region 1: Memory at f5000000 (32-bit, non-prefetchable) [size=512]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
My .config for 2.4.19-rc1:
#
# Automatically generated by make menuconfig: don't edit
#
CONFIG_X86=y
CONFIG_ISA=y
# CONFIG_SBUS is not set
CONFIG_UID16=y
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y
#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
CONFIG_MPENTIUMIII=y
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MELAN is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_PGE=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_MCE=y
# CONFIG_TOSHIBA is not set
CONFIG_I8K=y
CONFIG_MICROCODE=m
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
CONFIG_MATH_EMULATION=y
CONFIG_MTRR=y
# CONFIG_SMP is not set
# CONFIG_X86_UP_APIC is not set
# CONFIG_X86_UP_IOAPIC is not set
#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_NAMES=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
CONFIG_HOTPLUG=y
#
# PCMCIA/CardBus support
#
CONFIG_PCMCIA=y
CONFIG_CARDBUS=y
# CONFIG_TCIC is not set
# CONFIG_I82092 is not set
CONFIG_I82365=y
#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set
# CONFIG_HOTPLUG_PCI_COMPAQ is not set
# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
# CONFIG_HOTPLUG_PCI_ACPI is not set
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_KCORE_ELF=y
# CONFIG_KCORE_AOUT is not set
CONFIG_BINFMT_AOUT=m
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=m
CONFIG_PM=y
CONFIG_ACPI=y
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_BUSMGR=y
CONFIG_ACPI_SYS=y
CONFIG_ACPI_CPU=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_CMBATT=y
CONFIG_ACPI_THERMAL=y
CONFIG_APM=y
# CONFIG_APM_IGNORE_USER_SUSPEND is not set
# CONFIG_APM_DO_ENABLE is not set
CONFIG_APM_CPU_IDLE=y
CONFIG_APM_DISPLAY_BLANK=y
CONFIG_APM_RTC_IS_GMT=y
CONFIG_APM_ALLOW_INTS=y
# CONFIG_APM_REAL_MODE_POWER_OFF is not set
#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set
#
# Parallel port support
#
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
CONFIG_PARPORT_PC_CML1=y
CONFIG_PARPORT_SERIAL=y
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
CONFIG_PARPORT_PC_PCMCIA=y
# CONFIG_PARPORT_AMIGA is not set
# CONFIG_PARPORT_MFC3 is not set
# CONFIG_PARPORT_ATARI is not set
# CONFIG_PARPORT_GSC is not set
# CONFIG_PARPORT_SUNBPP is not set
# CONFIG_PARPORT_OTHER is not set
CONFIG_PARPORT_1284=y
#
# Plug and Play configuration
#
CONFIG_PNP=y
CONFIG_ISAPNP=y
#
# Block devices
#
CONFIG_BLK_DEV_FD=m
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_CISS_SCSI_TAPE is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_BLK_DEV_INITRD is not set
#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_MULTIPATH is not set
CONFIG_BLK_DEV_LVM=y
#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
# CONFIG_NETLINK_DEV is not set
# CONFIG_NETFILTER is not set
CONFIG_FILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
CONFIG_NET_IPGRE=y
# CONFIG_NET_IPGRE_BROADCAST is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_INET_ECN=y
CONFIG_SYN_COOKIES=y
CONFIG_IPV6=y
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
CONFIG_IPX=m
CONFIG_IPX_INTERN=y
CONFIG_ATALK=m
#
# Appletalk devices
#
# CONFIG_DEV_APPLETALK is not set
CONFIG_DECNET=m
# CONFIG_DECNET_SIOCGIFCONF is not set
# CONFIG_DECNET_ROUTER is not set
CONFIG_BRIDGE=m
CONFIG_X25=m
CONFIG_LAPB=m
CONFIG_LLC=y
CONFIG_NET_DIVERT=y
CONFIG_ECONET=m
CONFIG_ECONET_AUNUDP=y
# CONFIG_ECONET_NATIVE is not set
CONFIG_WAN_ROUTER=m
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
#
# Telephony Support
#
# CONFIG_PHONE is not set
# CONFIG_PHONE_IXJ is not set
# CONFIG_PHONE_IXJ_PCMCIA is not set
#
# ATA/IDE/MFM/RLL support
#
CONFIG_IDE=y
#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
# CONFIG_IDEDISK_MULTI_MODE is not set
# CONFIG_IDEDISK_STROKE is not set
# CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
# CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
# CONFIG_BLK_DEV_IDEDISK_IBM is not set
# CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
# CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
# CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
# CONFIG_BLK_DEV_IDEDISK_WD is not set
# CONFIG_BLK_DEV_COMMERIAL is not set
# CONFIG_BLK_DEV_TIVO is not set
CONFIG_BLK_DEV_IDECS=m
CONFIG_BLK_DEV_IDECD=y
CONFIG_BLK_DEV_IDETAPE=m
CONFIG_BLK_DEV_IDEFLOPPY=m
CONFIG_BLK_DEV_IDESCSI=y
# CONFIG_IDE_TASK_IOCTL is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_ISAPNP is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_PCI_WIP is not set
# CONFIG_BLK_DEV_IDEDMA_TIMEOUT is not set
# CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
CONFIG_BLK_DEV_ADMA=y
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_AEC62XX_TUNING is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_WDC_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_AMD74XX_OVERRIDE is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_CMD680 is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_HPT34X_AUTODMA is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_PIIX=y
CONFIG_PIIX_TUNING=y
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_PDC202XX is not set
# CONFIG_PDC202XX_BURST is not set
# CONFIG_PDC202XX_FORCE is not set
# CONFIG_BLK_DEV_SVWKS is not set
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_IDEDMA_IVB is not set
# CONFIG_DMA_NONPCI is not set
CONFIG_BLK_DEV_IDE_MODES=y
# CONFIG_BLK_DEV_ATARAID is not set
# CONFIG_BLK_DEV_ATARAID_PDC is not set
# CONFIG_BLK_DEV_ATARAID_HPT is not set
#
# SCSI support
#
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_SD_EXTRA_DEVS=40
CONFIG_CHR_DEV_ST=m
CONFIG_CHR_DEV_OSST=m
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_SR_EXTRA_DEVS=4
CONFIG_CHR_DEV_SG=y
CONFIG_SCSI_DEBUG_QUEUES=y
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AHA1740 is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_IN2000 is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_MEGARAID is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_DMA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_NCR53C7xx is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_NCR53C8XX is not set
CONFIG_SCSI_SYM53C8XX=m
CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=4
CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32
CONFIG_SCSI_NCR53C8XX_SYNC=20
# CONFIG_SCSI_NCR53C8XX_PROFILE is not set
# CONFIG_SCSI_NCR53C8XX_IOMAPPED is not set
# CONFIG_SCSI_NCR53C8XX_PQS_PDS is not set
# CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_SEAGATE is not set
# CONFIG_SCSI_SIM710 is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_DEBUG is not set
#
# PCMCIA SCSI adapter support
#
CONFIG_SCSI_PCMCIA=y
CONFIG_PCMCIA_AHA152X=m
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_NINJA_SCSI=m
CONFIG_PCMCIA_QLOGIC=m
#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_BOOT is not set
# CONFIG_FUSION_ISENSE is not set
# CONFIG_FUSION_CTL is not set
# CONFIG_FUSION_LAN is not set
#
# IEEE 1394 (FireWire) support (EXPERIMENTAL)
#
CONFIG_IEEE1394=y
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_CMP=m
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_PCI is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
CONFIG_BONDING=m
CONFIG_EQUALIZER=m
CONFIG_TUN=m
# CONFIG_ETHERTAP is not set
# CONFIG_NET_SB1000 is not set
#
# Ethernet (10 or 100Mbit)
#
# CONFIG_NET_ETHERNET is not set
#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
CONFIG_DL2K=m
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
CONFIG_PLIP=m
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPPOE=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
# CONFIG_SLIP_SMART is not set
# CONFIG_SLIP_MODE_SLIP6 is not set
#
# Wireless LAN (non-hamradio)
#
CONFIG_NET_RADIO=y
# CONFIG_STRIP is not set
# CONFIG_WAVELAN is not set
# CONFIG_ARLAN is not set
# CONFIG_AIRONET4500 is not set
# CONFIG_AIRONET4500_NONCS is not set
# CONFIG_AIRONET4500_PROC is not set
# CONFIG_AIRO is not set
CONFIG_HERMES=m
CONFIG_PLX_HERMES=m
CONFIG_PCI_HERMES=m
CONFIG_PCMCIA_HERMES=m
CONFIG_AIRO_CS=m
CONFIG_NET_WIRELESS=y
#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
CONFIG_SHAPER=m
#
# Wan interfaces
#
# CONFIG_WAN is not set
#
# PCMCIA network device support
#
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_AXNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
# CONFIG_ARCNET_COM20020_CS is not set
# CONFIG_PCMCIA_IBMTR is not set
CONFIG_PCMCIA_XIRCOM=m
CONFIG_PCMCIA_XIRTULIP=m
CONFIG_NET_PCMCIA_RADIO=y
CONFIG_PCMCIA_RAYCS=m
CONFIG_PCMCIA_NETWAVE=m
CONFIG_PCMCIA_WAVELAN=m
# CONFIG_AIRONET4500_CS is not set
#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set
#
# IrDA (infrared) support
#
CONFIG_IRDA=m
CONFIG_IRLAN=m
CONFIG_IRNET=m
CONFIG_IRCOMM=m
CONFIG_IRDA_ULTRA=y
CONFIG_IRDA_CACHE_LAST_LSAP=y
CONFIG_IRDA_FAST_RR=y
CONFIG_IRDA_DEBUG=y
#
# Infrared-port device drivers
#
CONFIG_IRTTY_SIR=m
CONFIG_IRPORT_SIR=m
CONFIG_DONGLE=y
CONFIG_ESI_DONGLE=m
CONFIG_ACTISYS_DONGLE=m
CONFIG_TEKRAM_DONGLE=m
CONFIG_GIRBIL_DONGLE=m
CONFIG_LITELINK_DONGLE=m
CONFIG_OLD_BELKIN_DONGLE=m
CONFIG_USB_IRDA=m
CONFIG_NSC_FIR=m
CONFIG_WINBOND_FIR=m
CONFIG_TOSHIBA_FIR=m
CONFIG_SMC_IRCC_FIR=m
CONFIG_ALI_FIR=m
CONFIG_VLSI_FIR=m
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set
#
# Input core support
#
CONFIG_INPUT=y
CONFIG_INPUT_KEYBDEV=y
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1400
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1050
CONFIG_INPUT_JOYDEV=y
CONFIG_INPUT_EVDEV=y
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
CONFIG_SERIAL_CONSOLE=y
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_PHILIPSPAR=m
CONFIG_I2C_ELV=m
CONFIG_I2C_VELLEMAN=m
CONFIG_I2C_ALGOPCF=m
CONFIG_I2C_ELEKTOR=m
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_PROC=m
#
# Mice
#
CONFIG_BUSMOUSE=m
CONFIG_ATIXL_BUSMOUSE=m
CONFIG_LOGIBUSMOUSE=m
CONFIG_MS_BUSMOUSE=m
CONFIG_MOUSE=y
CONFIG_PSMOUSE=y
CONFIG_82C710_MOUSE=m
CONFIG_PC110_PAD=m
# CONFIG_MK712_MOUSE is not set
#
# Joysticks
#
# CONFIG_INPUT_GAMEPORT is not set
# CONFIG_INPUT_NS558 is not set
# CONFIG_INPUT_LIGHTNING is not set
# CONFIG_INPUT_PCIGAME is not set
# CONFIG_INPUT_CS461X is not set
# CONFIG_INPUT_EMU10K1 is not set
# CONFIG_INPUT_SERIO is not set
# CONFIG_INPUT_SERPORT is not set
# CONFIG_INPUT_ANALOG is not set
# CONFIG_INPUT_A3D is not set
# CONFIG_INPUT_ADI is not set
# CONFIG_INPUT_COBRA is not set
# CONFIG_INPUT_GF2K is not set
# CONFIG_INPUT_GRIP is not set
# CONFIG_INPUT_INTERACT is not set
# CONFIG_INPUT_TMDC is not set
# CONFIG_INPUT_SIDEWINDER is not set
# CONFIG_INPUT_IFORCE_USB is not set
# CONFIG_INPUT_IFORCE_232 is not set
# CONFIG_INPUT_WARRIOR is not set
# CONFIG_INPUT_MAGELLAN is not set
# CONFIG_INPUT_SPACEORB is not set
# CONFIG_INPUT_SPACEBALL is not set
# CONFIG_INPUT_STINGER is not set
# CONFIG_INPUT_DB9 is not set
# CONFIG_INPUT_GAMECON is not set
# CONFIG_INPUT_TURBOGRAFX is not set
# CONFIG_QIC02_TAPE is not set
#
# Watchdog Cards
#
CONFIG_WATCHDOG=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_SC520_WDT is not set
# CONFIG_PCWATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_WAFER_WDT is not set
CONFIG_I810_TCO=m
# CONFIG_MIXCOMWD is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_WDT is not set
# CONFIG_WDTPCI is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_AMD_RNG is not set
CONFIG_INTEL_RNG=y
CONFIG_NVRAM=y
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_I810 is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_SWORKS is not set
CONFIG_DRM=y
# CONFIG_DRM_OLD is not set
CONFIG_DRM_NEW=y
CONFIG_DRM_TDFX=m
CONFIG_DRM_R128=y
CONFIG_DRM_RADEON=m
CONFIG_DRM_I810=m
CONFIG_DRM_MGA=m
CONFIG_DRM_SIS=m
#
# PCMCIA character devices
#
CONFIG_PCMCIA_SERIAL_CS=m
# CONFIG_MWAVE is not set
#
# Multimedia devices
#
CONFIG_VIDEO_DEV=y
#
# Video For Linux
#
CONFIG_VIDEO_PROC_FS=y
CONFIG_I2C_PARPORT=m
CONFIG_VIDEO_BT848=m
CONFIG_VIDEO_PMS=m
CONFIG_VIDEO_BWQCAM=m
CONFIG_VIDEO_CQCAM=m
CONFIG_VIDEO_W9966=m
CONFIG_VIDEO_CPIA=m
CONFIG_VIDEO_CPIA_PP=m
CONFIG_VIDEO_CPIA_USB=m
CONFIG_VIDEO_SAA5249=m
CONFIG_TUNER_3036=m
CONFIG_VIDEO_STRADIS=m
CONFIG_VIDEO_ZORAN=m
CONFIG_VIDEO_ZORAN_BUZ=m
CONFIG_VIDEO_ZORAN_DC10=m
CONFIG_VIDEO_ZORAN_LML33=m
CONFIG_VIDEO_ZR36120=m
# CONFIG_VIDEO_MEYE is not set
#
# Radio Adapters
#
CONFIG_RADIO_CADET=m
CONFIG_RADIO_RTRACK=m
CONFIG_RADIO_RTRACK2=m
CONFIG_RADIO_AZTECH=m
CONFIG_RADIO_GEMTEK=m
CONFIG_RADIO_GEMTEK_PCI=m
CONFIG_RADIO_MAXIRADIO=m
CONFIG_RADIO_MAESTRO=m
CONFIG_RADIO_MIROPCM20=m
CONFIG_RADIO_MIROPCM20_RDS=m
CONFIG_RADIO_SF16FMI=m
CONFIG_RADIO_TERRATEC=m
CONFIG_RADIO_TRUST=m
CONFIG_RADIO_TYPHOON=m
CONFIG_RADIO_TYPHOON_PROC_FS=y
CONFIG_RADIO_ZOLTRIX=m
#
# File systems
#
CONFIG_QUOTA=y
CONFIG_AUTOFS_FS=m
CONFIG_AUTOFS4_FS=m
CONFIG_REISERFS_FS=m
CONFIG_REISERFS_CHECK=y
CONFIG_REISERFS_PROC_INFO=y
CONFIG_ADFS_FS=m
# CONFIG_ADFS_FS_RW is not set
CONFIG_AFFS_FS=m
CONFIG_HFS_FS=m
CONFIG_BFS_FS=m
CONFIG_EXT3_FS=y
CONFIG_JBD=y
CONFIG_JBD_DEBUG=y
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
# CONFIG_UMSDOS_FS is not set
CONFIG_VFAT_FS=m
CONFIG_EFS_FS=m
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
CONFIG_CRAMFS=m
CONFIG_TMPFS=y
CONFIG_RAMFS=y
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_MINIX_FS=m
# CONFIG_VXFS_FS is not set
CONFIG_NTFS_FS=m
# CONFIG_NTFS_RW is not set
CONFIG_HPFS_FS=m
CONFIG_PROC_FS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVFS_MOUNT is not set
# CONFIG_DEVFS_DEBUG is not set
CONFIG_DEVPTS_FS=y
CONFIG_QNX4FS_FS=m
# CONFIG_QNX4FS_RW is not set
CONFIG_ROMFS_FS=m
CONFIG_EXT2_FS=y
CONFIG_SYSV_FS=m
CONFIG_UDF_FS=m
# CONFIG_UDF_RW is not set
CONFIG_UFS_FS=y
# CONFIG_UFS_FS_WRITE is not set
#
# Network File Systems
#
CONFIG_CODA_FS=m
CONFIG_INTERMEZZO_FS=m
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
# CONFIG_ROOT_NFS is not set
CONFIG_NFSD=m
CONFIG_NFSD_V3=y
CONFIG_SUNRPC=m
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
CONFIG_NCP_FS=m
CONFIG_NCPFS_PACKET_SIGNING=y
CONFIG_NCPFS_IOCTL_LOCKING=y
CONFIG_NCPFS_STRONG=y
CONFIG_NCPFS_NFS_NS=y
CONFIG_NCPFS_OS2_NS=y
CONFIG_NCPFS_SMALLDOS=y
CONFIG_NCPFS_NLS=y
CONFIG_NCPFS_EXTRAS=y
CONFIG_ZISOFS_FS=y
CONFIG_ZLIB_FS_INFLATE=y
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
CONFIG_ACORN_PARTITION_ICS=y
CONFIG_ACORN_PARTITION_ADFS=y
CONFIG_ACORN_PARTITION_POWERTEC=y
CONFIG_ACORN_PARTITION_RISCIX=y
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_SMB_NLS=y
CONFIG_NLS=y
#
# Native Language Support
#
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=m
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
CONFIG_NLS_CODEPAGE_863=m
CONFIG_NLS_CODEPAGE_864=m
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=m
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=m
CONFIG_NLS_CODEPAGE_1250=m
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ISO8859_1=m
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=m
CONFIG_NLS_ISO8859_9=m
CONFIG_NLS_ISO8859_13=m
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=m
CONFIG_NLS_KOI8_R=m
CONFIG_NLS_KOI8_U=m
CONFIG_NLS_UTF8=m
#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
CONFIG_VIDEO_SELECT=y
# CONFIG_MDA_CONSOLE is not set
#
# Frame-buffer support
#
CONFIG_FB=y
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FB_RIVA is not set
# CONFIG_FB_CLGEN is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_HGA is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_MATROX is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_RADEON is not set
CONFIG_FB_ATY128=y
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FBCON_ADVANCED is not set
CONFIG_FBCON_CFB8=y
CONFIG_FBCON_CFB16=y
CONFIG_FBCON_CFB24=y
CONFIG_FBCON_CFB32=y
# CONFIG_FBCON_FONTWIDTH8_ONLY is not set
# CONFIG_FBCON_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
#
# Sound
#
CONFIG_SOUND=m
# CONFIG_SOUND_BT878 is not set
CONFIG_SOUND_CMPCI=m
# CONFIG_SOUND_CMPCI_FM is not set
# CONFIG_SOUND_CMPCI_MIDI is not set
# CONFIG_SOUND_CMPCI_JOYSTICK is not set
# CONFIG_SOUND_CMPCI_CM8738 is not set
CONFIG_SOUND_EMU10K1=m
CONFIG_MIDI_EMU10K1=y
CONFIG_SOUND_FUSION=m
CONFIG_SOUND_CS4281=m
CONFIG_SOUND_ES1370=m
CONFIG_SOUND_ES1371=m
CONFIG_SOUND_ESSSOLO1=m
CONFIG_SOUND_MAESTRO=m
CONFIG_SOUND_MAESTRO3=m
CONFIG_SOUND_ICH=m
CONFIG_SOUND_RME96XX=m
CONFIG_SOUND_SONICVIBES=m
CONFIG_SOUND_TRIDENT=m
CONFIG_SOUND_MSNDCLAS=m
# CONFIG_MSNDCLAS_HAVE_BOOT is not set
CONFIG_MSNDCLAS_INIT_FILE="/etc/sound/msndinit.bin"
CONFIG_MSNDCLAS_PERM_FILE="/etc/sound/msndperm.bin"
CONFIG_SOUND_MSNDPIN=m
# CONFIG_MSNDPIN_HAVE_BOOT is not set
CONFIG_MSNDPIN_INIT_FILE="/etc/sound/pndspini.bin"
CONFIG_MSNDPIN_PERM_FILE="/etc/sound/pndsperm.bin"
CONFIG_SOUND_VIA82CXXX=m
CONFIG_MIDI_VIA82CXXX=y
CONFIG_SOUND_OSS=m
# CONFIG_SOUND_TRACEINIT is not set
CONFIG_SOUND_DMAP=y
CONFIG_SOUND_AD1816=m
CONFIG_SOUND_SGALAXY=m
CONFIG_SOUND_ADLIB=m
CONFIG_SOUND_ACI_MIXER=m
CONFIG_SOUND_CS4232=m
CONFIG_SOUND_SSCAPE=m
CONFIG_SOUND_GUS=m
# CONFIG_SOUND_GUS16 is not set
CONFIG_SOUND_GUSMAX=y
CONFIG_SOUND_VMIDI=m
CONFIG_SOUND_TRIX=m
CONFIG_SOUND_MSS=m
CONFIG_SOUND_MPU401=m
CONFIG_SOUND_NM256=m
CONFIG_SOUND_MAD16=m
CONFIG_MAD16_OLDCARD=y
CONFIG_SOUND_PAS=m
# CONFIG_PAS_JOYSTICK is not set
CONFIG_SOUND_PSS=m
CONFIG_PSS_MIXER=y
# CONFIG_PSS_HAVE_BOOT is not set
CONFIG_SOUND_SB=m
CONFIG_SOUND_AWE32_SYNTH=m
CONFIG_SOUND_WAVEFRONT=m
CONFIG_SOUND_MAUI=m
CONFIG_SOUND_YM3812=m
CONFIG_SOUND_OPL3SA1=m
CONFIG_SOUND_OPL3SA2=m
CONFIG_SOUND_YMFPCI=m
CONFIG_SOUND_YMFPCI_LEGACY=y
CONFIG_SOUND_UART6850=m
# CONFIG_SOUND_AEDSP16 is not set
CONFIG_SOUND_TVMIXER=m
#
# USB support
#
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
CONFIG_USB_LONG_TIMEOUT=y
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_UHCI=m
CONFIG_USB_UHCI_ALT=m
CONFIG_USB_OHCI=m
CONFIG_USB_AUDIO=m
CONFIG_USB_EMI26=m
CONFIG_USB_BLUETOOTH=m
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=y
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
CONFIG_USB_STORAGE_DPCM=y
CONFIG_USB_STORAGE_HP8200e=y
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_JUMPSHOT=y
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_USB_HIDDEV is not set
CONFIG_USB_KBD=m
CONFIG_USB_MOUSE=m
CONFIG_USB_WACOM=m
CONFIG_USB_DC2XX=m
CONFIG_USB_MDC800=m
CONFIG_USB_SCANNER=m
CONFIG_USB_MICROTEK=m
CONFIG_USB_HPUSBSCSI=m
CONFIG_USB_IBMCAM=m
CONFIG_USB_OV511=m
CONFIG_USB_PWC=m
CONFIG_USB_SE401=m
CONFIG_USB_STV680=m
# CONFIG_USB_VICAM is not set
CONFIG_USB_DSBR=m
CONFIG_USB_DABUSB=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_KAWETH=m
CONFIG_USB_CATC=m
CONFIG_USB_CDCETHER=m
CONFIG_USB_USBNET=m
CONFIG_USB_USS720=m
#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_BELKIN=m
CONFIG_USB_SERIAL_WHITEHEAT=m
CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
CONFIG_USB_SERIAL_EMPEG=m
CONFIG_USB_SERIAL_FTDI_SIO=m
CONFIG_USB_SERIAL_VISOR=m
CONFIG_USB_SERIAL_IPAQ=m
CONFIG_USB_SERIAL_IR=m
CONFIG_USB_SERIAL_EDGEPORT=m
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
CONFIG_USB_SERIAL_KEYSPAN=m
CONFIG_USB_SERIAL_KEYSPAN_USA28=y
CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
CONFIG_USB_SERIAL_KEYSPAN_USA19=y
CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
CONFIG_USB_SERIAL_MCT_U232=m
CONFIG_USB_SERIAL_KLSI=m
CONFIG_USB_SERIAL_PL2303=m
CONFIG_USB_SERIAL_CYBERJACK=m
CONFIG_USB_SERIAL_XIRCOM=m
CONFIG_USB_SERIAL_OMNINET=m
CONFIG_USB_RIO500=m
CONFIG_USB_AUERSWALD=m
CONFIG_USB_BRLVGER=m
#
# Bluetooth support
#
CONFIG_BLUEZ=m
CONFIG_BLUEZ_L2CAP=m
CONFIG_BLUEZ_SCO=m
#
# Bluetooth device drivers
#
CONFIG_BLUEZ_HCIUSB=m
CONFIG_BLUEZ_USB_FW_LOAD=y
# CONFIG_BLUEZ_USB_ZERO_PACKET is not set
CONFIG_BLUEZ_HCIUART=m
CONFIG_BLUEZ_HCIUART_H4=y
CONFIG_BLUEZ_HCIDTL1=m
CONFIG_BLUEZ_HCIVHCI=m
#
# Kernel hacking
#
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_HIGHMEM=y
CONFIG_DEBUG_SLAB=y
CONFIG_DEBUG_IOVIRT=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_FRAME_POINTER=y
--
"God, root, what is difference?"
-- Pitr, User Friendly
"God is more forgiving."
-- Dave Aronson
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: Linux 2.4.19-rc1
2002-06-28 22:41 ` bvermeul
@ 2002-07-02 20:51 ` Marcelo Tosatti
2002-07-02 21:30 ` Marcelo Tosatti
2002-07-03 16:53 ` Bruce Harada
0 siblings, 2 replies; 14+ messages in thread
From: Marcelo Tosatti @ 2002-07-02 20:51 UTC (permalink / raw)
To: bvermeul; +Cc: lkml
Could you please 2.4.18 ?
On Sat, 29 Jun 2002 bvermeul@devel.blackstar.nl wrote:
> I've just tried 2.4.19-rc1, and it hangs on me when I start
> cardmgr. I've ran an strace on cardmgr, and it hangs during
> an ioctl call to DECODER_GET_STATUS. (SysRq doesn't do anything,
> it's a complete hang)
>
> The last 2.4 kernel I used was 2.4.19-pre10-ac2, which didn't
> have this problem. I'm also using 2.5.24-dj2 without a problem.
>
> This all is on a Dell Inspiron 8000, with an internal WiFi miniPCI
> card (cardbus controller with embedded wireless controller).
>
> Regards,
>
> Bas Vermeulen
>
> lspci -vvv output:
>
> 00:00.0 Host bridge: Intel Corp. 82815 815 Chipset Host Bridge and Memory Controller Hub (rev 02)
> Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR-
> Latency: 0
> Region 0: Memory at e4000000 (32-bit, prefetchable) [size=64M]
> Capabilities: [88] #09 [f104]
> Capabilities: [a0] AGP version 2.0
> Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
> Command: RQ=0 SBA- AGP- 64bit- FW- Rate=<none>
>
> 00:01.0 PCI bridge: Intel Corp. 82815 815 Chipset AGP Bridge (rev 02) (prog-if 00 [Normal decode])
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> Status: Cap- 66Mhz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 32
> Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
> I/O behind bridge: 0000c000-0000cfff
> Memory behind bridge: fc000000-fdffffff
> Prefetchable memory behind bridge: e8000000-ebffffff
> BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
>
> 00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 02) (prog-if 00 [Normal decode])
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 0
> Bus: primary=00, secondary=02, subordinate=10, sec-latency=32
> I/O behind bridge: 0000e000-0000ffff
> Memory behind bridge: f4000000-fbffffff
> Prefetchable memory behind bridge: fff00000-000fffff
> BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
>
> 00:1f.0 ISA bridge: Intel Corp. 82801BAM ISA Bridge (LPC) (rev 02)
> Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 0
>
> 00:1f.1 IDE interface: Intel Corp. 82801BAM IDE U100 (rev 02) (prog-if 80 [Master])
> Subsystem: Intel Corp.: Unknown device 4541
> Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 0
> Region 4: I/O ports at bfa0 [size=16]
>
> 00:1f.2 USB Controller: Intel Corp. 82801BA/BAM USB (Hub (rev 02) (prog-if 00 [UHCI])
> Subsystem: Intel Corp.: Unknown device 4541
> Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 0
> Interrupt: pin D routed to IRQ 10
> Region 4: I/O ports at dce0 [size=32]
>
> 01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility M4 AGP (prog-if 00 [VGA])
> Subsystem: Dell Computer Corporation: Unknown device 00a4
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping+ SERR- FastB2B-
> Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 32 (2000ns min), cache line size 08
> Interrupt: pin A routed to IRQ 11
> Region 0: Memory at e8000000 (32-bit, prefetchable) [size=64M]
> Region 1: I/O ports at cc00 [size=256]
> Region 2: Memory at fcffc000 (32-bit, non-prefetchable) [size=16K]
> Expansion ROM at <unassigned> [disabled] [size=128K]
> Capabilities: [50] AGP version 2.0
> Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
> Command: RQ=0 SBA+ AGP- 64bit- FW- Rate=<none>
> Capabilities: [5c] Power Management version 2
> Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME-
>
> 02:03.0 Multimedia audio controller: ESS Technology ES1983S Maestro-3i PCI Audio Accelerator (rev 10)
> Subsystem: Dell Computer Corporation: Unknown device 00a4
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 32 (500ns min, 6000ns max)
> Interrupt: pin A routed to IRQ 5
> Region 0: I/O ports at ec00 [size=256]
> Region 1: Memory at f8ffe000 (32-bit, non-prefetchable) [size=8K]
> Capabilities: [c0] Power Management version 2
> Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME-
>
> 02:06.0 CardBus bridge: Texas Instruments PCI1410 PC card Cardbus Controller (rev 01)
> Subsystem: Lucent Technologies: Unknown device ab01
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 168, cache line size 08
> Interrupt: pin A routed to IRQ 10
> Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=4K]
> Bus: primary=02, secondary=06, subordinate=09, sec-latency=176
> Memory window 0: f4400000-f47ff000 (prefetchable)
> Memory window 1: f4800000-f4bff000
> I/O window 0: 0000e000-0000e0ff
> I/O window 1: 0000e400-0000e4ff
> BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt- PostWrite+
> 16-bit legacy interface ports at 0001
>
> 02:0f.0 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
> Subsystem: Dell Computer Corporation: Unknown device 00a4
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 168, cache line size 08
> Interrupt: pin A routed to IRQ 10
> Region 0: Memory at f4001000 (32-bit, non-prefetchable) [size=4K]
> Bus: primary=00, secondary=04, subordinate=04, sec-latency=176
> Memory window 0: f4c00000-f4fff000 (prefetchable)
> Memory window 1: f5000000-f53ff000
> I/O window 0: 0000e800-0000e8ff
> I/O window 1: 0000f000-0000f0ff
> BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt- PostWrite+
> 16-bit legacy interface ports at 0001
>
> 02:0f.1 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
> Subsystem: Dell Computer Corporation: Unknown device 00a4
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 168, cache line size 08
> Interrupt: pin A routed to IRQ 10
> Region 0: Memory at f4002000 (32-bit, non-prefetchable) [size=4K]
> Bus: primary=00, secondary=05, subordinate=05, sec-latency=176
> Memory window 0: f5400000-f57ff000 (prefetchable)
> Memory window 1: f5800000-f5bff000
> I/O window 0: 0000f400-0000f4ff
> I/O window 1: 0000f800-0000f8ff
> BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
> 16-bit legacy interface ports at 0001
>
> 02:0f.2 FireWire (IEEE 1394): Texas Instruments PCI4451 IEEE-1394 Controller (prog-if 10 [OHCI])
> Subsystem: Dell Computer Corporation: Unknown device 00a4
> Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Latency: 32 (500ns min, 1000ns max), cache line size 08
> Interrupt: pin A routed to IRQ 10
> Region 0: Memory at f8ffd800 (32-bit, non-prefetchable) [size=2K]
> Region 1: Memory at f8ff8000 (32-bit, non-prefetchable) [size=16K]
> Capabilities: [44] Power Management version 2
> Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0-,D1-,D2+,D3hot+,D3cold-)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME-
>
> 04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C (rev 10)
> Subsystem: Realtek Semiconductor Co., Ltd. RT8139
> Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> Interrupt: pin A routed to IRQ 10
> Region 0: I/O ports at e800 [size=256]
> Region 1: Memory at f5000000 (32-bit, non-prefetchable) [size=512]
> Capabilities: [50] Power Management version 2
> Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME-
>
> My .config for 2.4.19-rc1:
>
> #
> # Automatically generated by make menuconfig: don't edit
> #
> CONFIG_X86=y
> CONFIG_ISA=y
> # CONFIG_SBUS is not set
> CONFIG_UID16=y
>
> #
> # Code maturity level options
> #
> CONFIG_EXPERIMENTAL=y
>
> #
> # Loadable module support
> #
> CONFIG_MODULES=y
> CONFIG_MODVERSIONS=y
> CONFIG_KMOD=y
>
> #
> # Processor type and features
> #
> # CONFIG_M386 is not set
> # CONFIG_M486 is not set
> # CONFIG_M586 is not set
> # CONFIG_M586TSC is not set
> # CONFIG_M586MMX is not set
> # CONFIG_M686 is not set
> CONFIG_MPENTIUMIII=y
> # CONFIG_MPENTIUM4 is not set
> # CONFIG_MK6 is not set
> # CONFIG_MK7 is not set
> # CONFIG_MELAN is not set
> # CONFIG_MCRUSOE is not set
> # CONFIG_MWINCHIPC6 is not set
> # CONFIG_MWINCHIP2 is not set
> # CONFIG_MWINCHIP3D is not set
> # CONFIG_MCYRIXIII is not set
> CONFIG_X86_WP_WORKS_OK=y
> CONFIG_X86_INVLPG=y
> CONFIG_X86_CMPXCHG=y
> CONFIG_X86_XADD=y
> CONFIG_X86_BSWAP=y
> CONFIG_X86_POPAD_OK=y
> # CONFIG_RWSEM_GENERIC_SPINLOCK is not set
> CONFIG_RWSEM_XCHGADD_ALGORITHM=y
> CONFIG_X86_L1_CACHE_SHIFT=5
> CONFIG_X86_TSC=y
> CONFIG_X86_GOOD_APIC=y
> CONFIG_X86_PGE=y
> CONFIG_X86_USE_PPRO_CHECKSUM=y
> CONFIG_X86_MCE=y
> # CONFIG_TOSHIBA is not set
> CONFIG_I8K=y
> CONFIG_MICROCODE=m
> CONFIG_X86_MSR=m
> CONFIG_X86_CPUID=m
> CONFIG_NOHIGHMEM=y
> # CONFIG_HIGHMEM4G is not set
> # CONFIG_HIGHMEM64G is not set
> CONFIG_MATH_EMULATION=y
> CONFIG_MTRR=y
> # CONFIG_SMP is not set
> # CONFIG_X86_UP_APIC is not set
> # CONFIG_X86_UP_IOAPIC is not set
>
> #
> # General setup
> #
> CONFIG_NET=y
> CONFIG_PCI=y
> # CONFIG_PCI_GOBIOS is not set
> # CONFIG_PCI_GODIRECT is not set
> CONFIG_PCI_GOANY=y
> CONFIG_PCI_BIOS=y
> CONFIG_PCI_DIRECT=y
> CONFIG_PCI_NAMES=y
> # CONFIG_EISA is not set
> # CONFIG_MCA is not set
> CONFIG_HOTPLUG=y
>
> #
> # PCMCIA/CardBus support
> #
> CONFIG_PCMCIA=y
> CONFIG_CARDBUS=y
> # CONFIG_TCIC is not set
> # CONFIG_I82092 is not set
> CONFIG_I82365=y
>
> #
> # PCI Hotplug Support
> #
> # CONFIG_HOTPLUG_PCI is not set
> # CONFIG_HOTPLUG_PCI_COMPAQ is not set
> # CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
> # CONFIG_HOTPLUG_PCI_ACPI is not set
> CONFIG_SYSVIPC=y
> CONFIG_BSD_PROCESS_ACCT=y
> CONFIG_SYSCTL=y
> CONFIG_KCORE_ELF=y
> # CONFIG_KCORE_AOUT is not set
> CONFIG_BINFMT_AOUT=m
> CONFIG_BINFMT_ELF=y
> CONFIG_BINFMT_MISC=m
> CONFIG_PM=y
> CONFIG_ACPI=y
> # CONFIG_ACPI_DEBUG is not set
> CONFIG_ACPI_BUSMGR=y
> CONFIG_ACPI_SYS=y
> CONFIG_ACPI_CPU=y
> CONFIG_ACPI_BUTTON=y
> CONFIG_ACPI_AC=y
> CONFIG_ACPI_EC=y
> CONFIG_ACPI_CMBATT=y
> CONFIG_ACPI_THERMAL=y
> CONFIG_APM=y
> # CONFIG_APM_IGNORE_USER_SUSPEND is not set
> # CONFIG_APM_DO_ENABLE is not set
> CONFIG_APM_CPU_IDLE=y
> CONFIG_APM_DISPLAY_BLANK=y
> CONFIG_APM_RTC_IS_GMT=y
> CONFIG_APM_ALLOW_INTS=y
> # CONFIG_APM_REAL_MODE_POWER_OFF is not set
>
> #
> # Memory Technology Devices (MTD)
> #
> # CONFIG_MTD is not set
>
> #
> # Parallel port support
> #
> CONFIG_PARPORT=y
> CONFIG_PARPORT_PC=y
> CONFIG_PARPORT_PC_CML1=y
> CONFIG_PARPORT_SERIAL=y
> CONFIG_PARPORT_PC_FIFO=y
> CONFIG_PARPORT_PC_SUPERIO=y
> CONFIG_PARPORT_PC_PCMCIA=y
> # CONFIG_PARPORT_AMIGA is not set
> # CONFIG_PARPORT_MFC3 is not set
> # CONFIG_PARPORT_ATARI is not set
> # CONFIG_PARPORT_GSC is not set
> # CONFIG_PARPORT_SUNBPP is not set
> # CONFIG_PARPORT_OTHER is not set
> CONFIG_PARPORT_1284=y
>
> #
> # Plug and Play configuration
> #
> CONFIG_PNP=y
> CONFIG_ISAPNP=y
>
> #
> # Block devices
> #
> CONFIG_BLK_DEV_FD=m
> # CONFIG_BLK_DEV_XD is not set
> # CONFIG_PARIDE is not set
> # CONFIG_BLK_CPQ_DA is not set
> # CONFIG_BLK_CPQ_CISS_DA is not set
> # CONFIG_CISS_SCSI_TAPE is not set
> # CONFIG_BLK_DEV_DAC960 is not set
> # CONFIG_BLK_DEV_UMEM is not set
> CONFIG_BLK_DEV_LOOP=m
> # CONFIG_BLK_DEV_NBD is not set
> # CONFIG_BLK_DEV_RAM is not set
> # CONFIG_BLK_DEV_INITRD is not set
>
> #
> # Multi-device support (RAID and LVM)
> #
> CONFIG_MD=y
> # CONFIG_BLK_DEV_MD is not set
> # CONFIG_MD_LINEAR is not set
> # CONFIG_MD_RAID0 is not set
> # CONFIG_MD_RAID1 is not set
> # CONFIG_MD_RAID5 is not set
> # CONFIG_MD_MULTIPATH is not set
> CONFIG_BLK_DEV_LVM=y
>
> #
> # Networking options
> #
> CONFIG_PACKET=y
> CONFIG_PACKET_MMAP=y
> # CONFIG_NETLINK_DEV is not set
> # CONFIG_NETFILTER is not set
> CONFIG_FILTER=y
> CONFIG_UNIX=y
> CONFIG_INET=y
> CONFIG_IP_MULTICAST=y
> # CONFIG_IP_ADVANCED_ROUTER is not set
> # CONFIG_IP_PNP is not set
> CONFIG_NET_IPIP=y
> CONFIG_NET_IPGRE=y
> # CONFIG_NET_IPGRE_BROADCAST is not set
> # CONFIG_IP_MROUTE is not set
> # CONFIG_ARPD is not set
> CONFIG_INET_ECN=y
> CONFIG_SYN_COOKIES=y
> CONFIG_IPV6=y
> # CONFIG_KHTTPD is not set
> # CONFIG_ATM is not set
> # CONFIG_VLAN_8021Q is not set
> CONFIG_IPX=m
> CONFIG_IPX_INTERN=y
> CONFIG_ATALK=m
>
> #
> # Appletalk devices
> #
> # CONFIG_DEV_APPLETALK is not set
> CONFIG_DECNET=m
> # CONFIG_DECNET_SIOCGIFCONF is not set
> # CONFIG_DECNET_ROUTER is not set
> CONFIG_BRIDGE=m
> CONFIG_X25=m
> CONFIG_LAPB=m
> CONFIG_LLC=y
> CONFIG_NET_DIVERT=y
> CONFIG_ECONET=m
> CONFIG_ECONET_AUNUDP=y
> # CONFIG_ECONET_NATIVE is not set
> CONFIG_WAN_ROUTER=m
> # CONFIG_NET_FASTROUTE is not set
> # CONFIG_NET_HW_FLOWCONTROL is not set
>
> #
> # QoS and/or fair queueing
> #
> # CONFIG_NET_SCHED is not set
>
> #
> # Network testing
> #
> # CONFIG_NET_PKTGEN is not set
>
> #
> # Telephony Support
> #
> # CONFIG_PHONE is not set
> # CONFIG_PHONE_IXJ is not set
> # CONFIG_PHONE_IXJ_PCMCIA is not set
>
> #
> # ATA/IDE/MFM/RLL support
> #
> CONFIG_IDE=y
>
> #
> # IDE, ATA and ATAPI Block devices
> #
> CONFIG_BLK_DEV_IDE=y
> # CONFIG_BLK_DEV_HD_IDE is not set
> # CONFIG_BLK_DEV_HD is not set
> CONFIG_BLK_DEV_IDEDISK=y
> # CONFIG_IDEDISK_MULTI_MODE is not set
> # CONFIG_IDEDISK_STROKE is not set
> # CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
> # CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
> # CONFIG_BLK_DEV_IDEDISK_IBM is not set
> # CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
> # CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
> # CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
> # CONFIG_BLK_DEV_IDEDISK_WD is not set
> # CONFIG_BLK_DEV_COMMERIAL is not set
> # CONFIG_BLK_DEV_TIVO is not set
> CONFIG_BLK_DEV_IDECS=m
> CONFIG_BLK_DEV_IDECD=y
> CONFIG_BLK_DEV_IDETAPE=m
> CONFIG_BLK_DEV_IDEFLOPPY=m
> CONFIG_BLK_DEV_IDESCSI=y
> # CONFIG_IDE_TASK_IOCTL is not set
> # CONFIG_BLK_DEV_CMD640 is not set
> # CONFIG_BLK_DEV_CMD640_ENHANCED is not set
> # CONFIG_BLK_DEV_ISAPNP is not set
> # CONFIG_BLK_DEV_RZ1000 is not set
> CONFIG_BLK_DEV_IDEPCI=y
> CONFIG_IDEPCI_SHARE_IRQ=y
> CONFIG_BLK_DEV_IDEDMA_PCI=y
> # CONFIG_BLK_DEV_OFFBOARD is not set
> # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
> CONFIG_IDEDMA_PCI_AUTO=y
> # CONFIG_IDEDMA_ONLYDISK is not set
> CONFIG_BLK_DEV_IDEDMA=y
> # CONFIG_IDEDMA_PCI_WIP is not set
> # CONFIG_BLK_DEV_IDEDMA_TIMEOUT is not set
> # CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
> CONFIG_BLK_DEV_ADMA=y
> # CONFIG_BLK_DEV_AEC62XX is not set
> # CONFIG_AEC62XX_TUNING is not set
> # CONFIG_BLK_DEV_ALI15X3 is not set
> # CONFIG_WDC_ALI15X3 is not set
> # CONFIG_BLK_DEV_AMD74XX is not set
> # CONFIG_AMD74XX_OVERRIDE is not set
> # CONFIG_BLK_DEV_CMD64X is not set
> # CONFIG_BLK_DEV_CMD680 is not set
> # CONFIG_BLK_DEV_CY82C693 is not set
> # CONFIG_BLK_DEV_CS5530 is not set
> # CONFIG_BLK_DEV_HPT34X is not set
> # CONFIG_HPT34X_AUTODMA is not set
> # CONFIG_BLK_DEV_HPT366 is not set
> CONFIG_BLK_DEV_PIIX=y
> CONFIG_PIIX_TUNING=y
> # CONFIG_BLK_DEV_NS87415 is not set
> # CONFIG_BLK_DEV_OPTI621 is not set
> # CONFIG_BLK_DEV_PDC202XX is not set
> # CONFIG_PDC202XX_BURST is not set
> # CONFIG_PDC202XX_FORCE is not set
> # CONFIG_BLK_DEV_SVWKS is not set
> # CONFIG_BLK_DEV_SIS5513 is not set
> # CONFIG_BLK_DEV_SLC90E66 is not set
> # CONFIG_BLK_DEV_TRM290 is not set
> # CONFIG_BLK_DEV_VIA82CXXX is not set
> # CONFIG_IDE_CHIPSETS is not set
> CONFIG_IDEDMA_AUTO=y
> # CONFIG_IDEDMA_IVB is not set
> # CONFIG_DMA_NONPCI is not set
> CONFIG_BLK_DEV_IDE_MODES=y
> # CONFIG_BLK_DEV_ATARAID is not set
> # CONFIG_BLK_DEV_ATARAID_PDC is not set
> # CONFIG_BLK_DEV_ATARAID_HPT is not set
>
> #
> # SCSI support
> #
> CONFIG_SCSI=y
> CONFIG_BLK_DEV_SD=y
> CONFIG_SD_EXTRA_DEVS=40
> CONFIG_CHR_DEV_ST=m
> CONFIG_CHR_DEV_OSST=m
> CONFIG_BLK_DEV_SR=y
> CONFIG_BLK_DEV_SR_VENDOR=y
> CONFIG_SR_EXTRA_DEVS=4
> CONFIG_CHR_DEV_SG=y
> CONFIG_SCSI_DEBUG_QUEUES=y
> CONFIG_SCSI_MULTI_LUN=y
> CONFIG_SCSI_CONSTANTS=y
> # CONFIG_SCSI_LOGGING is not set
>
> #
> # SCSI low-level drivers
> #
> # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
> # CONFIG_SCSI_7000FASST is not set
> # CONFIG_SCSI_ACARD is not set
> # CONFIG_SCSI_AHA152X is not set
> # CONFIG_SCSI_AHA1542 is not set
> # CONFIG_SCSI_AHA1740 is not set
> # CONFIG_SCSI_AACRAID is not set
> # CONFIG_SCSI_AIC7XXX is not set
> # CONFIG_SCSI_AIC7XXX_OLD is not set
> # CONFIG_SCSI_DPT_I2O is not set
> # CONFIG_SCSI_ADVANSYS is not set
> # CONFIG_SCSI_IN2000 is not set
> # CONFIG_SCSI_AM53C974 is not set
> # CONFIG_SCSI_MEGARAID is not set
> # CONFIG_SCSI_BUSLOGIC is not set
> # CONFIG_SCSI_CPQFCTS is not set
> # CONFIG_SCSI_DMX3191D is not set
> # CONFIG_SCSI_DTC3280 is not set
> # CONFIG_SCSI_EATA is not set
> # CONFIG_SCSI_EATA_DMA is not set
> # CONFIG_SCSI_EATA_PIO is not set
> # CONFIG_SCSI_FUTURE_DOMAIN is not set
> # CONFIG_SCSI_GDTH is not set
> # CONFIG_SCSI_GENERIC_NCR5380 is not set
> # CONFIG_SCSI_IPS is not set
> # CONFIG_SCSI_INITIO is not set
> # CONFIG_SCSI_INIA100 is not set
> # CONFIG_SCSI_PPA is not set
> # CONFIG_SCSI_IMM is not set
> # CONFIG_SCSI_NCR53C406A is not set
> # CONFIG_SCSI_NCR53C7xx is not set
> # CONFIG_SCSI_SYM53C8XX_2 is not set
> # CONFIG_SCSI_NCR53C8XX is not set
> CONFIG_SCSI_SYM53C8XX=m
> CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=4
> CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32
> CONFIG_SCSI_NCR53C8XX_SYNC=20
> # CONFIG_SCSI_NCR53C8XX_PROFILE is not set
> # CONFIG_SCSI_NCR53C8XX_IOMAPPED is not set
> # CONFIG_SCSI_NCR53C8XX_PQS_PDS is not set
> # CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT is not set
> # CONFIG_SCSI_PAS16 is not set
> # CONFIG_SCSI_PCI2000 is not set
> # CONFIG_SCSI_PCI2220I is not set
> # CONFIG_SCSI_PSI240I is not set
> # CONFIG_SCSI_QLOGIC_FAS is not set
> # CONFIG_SCSI_QLOGIC_ISP is not set
> # CONFIG_SCSI_QLOGIC_FC is not set
> # CONFIG_SCSI_QLOGIC_1280 is not set
> # CONFIG_SCSI_SEAGATE is not set
> # CONFIG_SCSI_SIM710 is not set
> # CONFIG_SCSI_SYM53C416 is not set
> # CONFIG_SCSI_DC390T is not set
> # CONFIG_SCSI_T128 is not set
> # CONFIG_SCSI_U14_34F is not set
> # CONFIG_SCSI_ULTRASTOR is not set
> # CONFIG_SCSI_DEBUG is not set
>
> #
> # PCMCIA SCSI adapter support
> #
> CONFIG_SCSI_PCMCIA=y
> CONFIG_PCMCIA_AHA152X=m
> CONFIG_PCMCIA_FDOMAIN=m
> CONFIG_PCMCIA_NINJA_SCSI=m
> CONFIG_PCMCIA_QLOGIC=m
>
> #
> # Fusion MPT device support
> #
> # CONFIG_FUSION is not set
> # CONFIG_FUSION_BOOT is not set
> # CONFIG_FUSION_ISENSE is not set
> # CONFIG_FUSION_CTL is not set
> # CONFIG_FUSION_LAN is not set
>
> #
> # IEEE 1394 (FireWire) support (EXPERIMENTAL)
> #
> CONFIG_IEEE1394=y
> # CONFIG_IEEE1394_PCILYNX is not set
> CONFIG_IEEE1394_OHCI1394=m
> CONFIG_IEEE1394_VIDEO1394=m
> CONFIG_IEEE1394_SBP2=m
> CONFIG_IEEE1394_ETH1394=m
> CONFIG_IEEE1394_DV1394=m
> CONFIG_IEEE1394_RAWIO=m
> CONFIG_IEEE1394_CMP=m
> # CONFIG_IEEE1394_VERBOSEDEBUG is not set
>
> #
> # I2O device support
> #
> # CONFIG_I2O is not set
> # CONFIG_I2O_PCI is not set
> # CONFIG_I2O_BLOCK is not set
> # CONFIG_I2O_LAN is not set
> # CONFIG_I2O_SCSI is not set
> # CONFIG_I2O_PROC is not set
>
> #
> # Network device support
> #
> CONFIG_NETDEVICES=y
>
> #
> # ARCnet devices
> #
> # CONFIG_ARCNET is not set
> CONFIG_DUMMY=m
> CONFIG_BONDING=m
> CONFIG_EQUALIZER=m
> CONFIG_TUN=m
> # CONFIG_ETHERTAP is not set
> # CONFIG_NET_SB1000 is not set
>
> #
> # Ethernet (10 or 100Mbit)
> #
> # CONFIG_NET_ETHERNET is not set
>
> #
> # Ethernet (1000 Mbit)
> #
> # CONFIG_ACENIC is not set
> CONFIG_DL2K=m
> # CONFIG_MYRI_SBUS is not set
> # CONFIG_NS83820 is not set
> # CONFIG_HAMACHI is not set
> # CONFIG_YELLOWFIN is not set
> # CONFIG_SK98LIN is not set
> # CONFIG_TIGON3 is not set
> # CONFIG_FDDI is not set
> # CONFIG_HIPPI is not set
> CONFIG_PLIP=m
> CONFIG_PPP=m
> CONFIG_PPP_MULTILINK=y
> CONFIG_PPP_FILTER=y
> CONFIG_PPP_ASYNC=m
> CONFIG_PPP_SYNC_TTY=m
> CONFIG_PPP_DEFLATE=m
> CONFIG_PPP_BSDCOMP=m
> CONFIG_PPPOE=m
> CONFIG_SLIP=m
> CONFIG_SLIP_COMPRESSED=y
> # CONFIG_SLIP_SMART is not set
> # CONFIG_SLIP_MODE_SLIP6 is not set
>
> #
> # Wireless LAN (non-hamradio)
> #
> CONFIG_NET_RADIO=y
> # CONFIG_STRIP is not set
> # CONFIG_WAVELAN is not set
> # CONFIG_ARLAN is not set
> # CONFIG_AIRONET4500 is not set
> # CONFIG_AIRONET4500_NONCS is not set
> # CONFIG_AIRONET4500_PROC is not set
> # CONFIG_AIRO is not set
> CONFIG_HERMES=m
> CONFIG_PLX_HERMES=m
> CONFIG_PCI_HERMES=m
> CONFIG_PCMCIA_HERMES=m
> CONFIG_AIRO_CS=m
> CONFIG_NET_WIRELESS=y
>
> #
> # Token Ring devices
> #
> # CONFIG_TR is not set
> # CONFIG_NET_FC is not set
> # CONFIG_RCPCI is not set
> CONFIG_SHAPER=m
>
> #
> # Wan interfaces
> #
> # CONFIG_WAN is not set
>
> #
> # PCMCIA network device support
> #
> CONFIG_NET_PCMCIA=y
> CONFIG_PCMCIA_3C589=m
> CONFIG_PCMCIA_3C574=m
> CONFIG_PCMCIA_FMVJ18X=m
> CONFIG_PCMCIA_PCNET=m
> CONFIG_PCMCIA_AXNET=m
> CONFIG_PCMCIA_NMCLAN=m
> CONFIG_PCMCIA_SMC91C92=m
> CONFIG_PCMCIA_XIRC2PS=m
> # CONFIG_ARCNET_COM20020_CS is not set
> # CONFIG_PCMCIA_IBMTR is not set
> CONFIG_PCMCIA_XIRCOM=m
> CONFIG_PCMCIA_XIRTULIP=m
> CONFIG_NET_PCMCIA_RADIO=y
> CONFIG_PCMCIA_RAYCS=m
> CONFIG_PCMCIA_NETWAVE=m
> CONFIG_PCMCIA_WAVELAN=m
> # CONFIG_AIRONET4500_CS is not set
>
> #
> # Amateur Radio support
> #
> # CONFIG_HAMRADIO is not set
>
> #
> # IrDA (infrared) support
> #
> CONFIG_IRDA=m
> CONFIG_IRLAN=m
> CONFIG_IRNET=m
> CONFIG_IRCOMM=m
> CONFIG_IRDA_ULTRA=y
> CONFIG_IRDA_CACHE_LAST_LSAP=y
> CONFIG_IRDA_FAST_RR=y
> CONFIG_IRDA_DEBUG=y
>
> #
> # Infrared-port device drivers
> #
> CONFIG_IRTTY_SIR=m
> CONFIG_IRPORT_SIR=m
> CONFIG_DONGLE=y
> CONFIG_ESI_DONGLE=m
> CONFIG_ACTISYS_DONGLE=m
> CONFIG_TEKRAM_DONGLE=m
> CONFIG_GIRBIL_DONGLE=m
> CONFIG_LITELINK_DONGLE=m
> CONFIG_OLD_BELKIN_DONGLE=m
> CONFIG_USB_IRDA=m
> CONFIG_NSC_FIR=m
> CONFIG_WINBOND_FIR=m
> CONFIG_TOSHIBA_FIR=m
> CONFIG_SMC_IRCC_FIR=m
> CONFIG_ALI_FIR=m
> CONFIG_VLSI_FIR=m
>
> #
> # ISDN subsystem
> #
> # CONFIG_ISDN is not set
>
> #
> # Old CD-ROM drivers (not SCSI, not IDE)
> #
> # CONFIG_CD_NO_IDESCSI is not set
>
> #
> # Input core support
> #
> CONFIG_INPUT=y
> CONFIG_INPUT_KEYBDEV=y
> CONFIG_INPUT_MOUSEDEV=y
> CONFIG_INPUT_MOUSEDEV_SCREEN_X=1400
> CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1050
> CONFIG_INPUT_JOYDEV=y
> CONFIG_INPUT_EVDEV=y
>
> #
> # Character devices
> #
> CONFIG_VT=y
> CONFIG_VT_CONSOLE=y
> CONFIG_SERIAL=y
> CONFIG_SERIAL_CONSOLE=y
> # CONFIG_SERIAL_EXTENDED is not set
> # CONFIG_SERIAL_NONSTANDARD is not set
> CONFIG_UNIX98_PTYS=y
> CONFIG_UNIX98_PTY_COUNT=256
> CONFIG_PRINTER=m
> # CONFIG_LP_CONSOLE is not set
> CONFIG_PPDEV=m
>
> #
> # I2C support
> #
> CONFIG_I2C=m
> CONFIG_I2C_ALGOBIT=m
> CONFIG_I2C_PHILIPSPAR=m
> CONFIG_I2C_ELV=m
> CONFIG_I2C_VELLEMAN=m
> CONFIG_I2C_ALGOPCF=m
> CONFIG_I2C_ELEKTOR=m
> CONFIG_I2C_CHARDEV=m
> CONFIG_I2C_PROC=m
>
> #
> # Mice
> #
> CONFIG_BUSMOUSE=m
> CONFIG_ATIXL_BUSMOUSE=m
> CONFIG_LOGIBUSMOUSE=m
> CONFIG_MS_BUSMOUSE=m
> CONFIG_MOUSE=y
> CONFIG_PSMOUSE=y
> CONFIG_82C710_MOUSE=m
> CONFIG_PC110_PAD=m
> # CONFIG_MK712_MOUSE is not set
>
> #
> # Joysticks
> #
> # CONFIG_INPUT_GAMEPORT is not set
> # CONFIG_INPUT_NS558 is not set
> # CONFIG_INPUT_LIGHTNING is not set
> # CONFIG_INPUT_PCIGAME is not set
> # CONFIG_INPUT_CS461X is not set
> # CONFIG_INPUT_EMU10K1 is not set
> # CONFIG_INPUT_SERIO is not set
> # CONFIG_INPUT_SERPORT is not set
> # CONFIG_INPUT_ANALOG is not set
> # CONFIG_INPUT_A3D is not set
> # CONFIG_INPUT_ADI is not set
> # CONFIG_INPUT_COBRA is not set
> # CONFIG_INPUT_GF2K is not set
> # CONFIG_INPUT_GRIP is not set
> # CONFIG_INPUT_INTERACT is not set
> # CONFIG_INPUT_TMDC is not set
> # CONFIG_INPUT_SIDEWINDER is not set
> # CONFIG_INPUT_IFORCE_USB is not set
> # CONFIG_INPUT_IFORCE_232 is not set
> # CONFIG_INPUT_WARRIOR is not set
> # CONFIG_INPUT_MAGELLAN is not set
> # CONFIG_INPUT_SPACEORB is not set
> # CONFIG_INPUT_SPACEBALL is not set
> # CONFIG_INPUT_STINGER is not set
> # CONFIG_INPUT_DB9 is not set
> # CONFIG_INPUT_GAMECON is not set
> # CONFIG_INPUT_TURBOGRAFX is not set
> # CONFIG_QIC02_TAPE is not set
>
> #
> # Watchdog Cards
> #
> CONFIG_WATCHDOG=y
> # CONFIG_WATCHDOG_NOWAYOUT is not set
> # CONFIG_ACQUIRE_WDT is not set
> # CONFIG_ADVANTECH_WDT is not set
> # CONFIG_ALIM7101_WDT is not set
> # CONFIG_SC520_WDT is not set
> # CONFIG_PCWATCHDOG is not set
> # CONFIG_EUROTECH_WDT is not set
> # CONFIG_IB700_WDT is not set
> # CONFIG_WAFER_WDT is not set
> CONFIG_I810_TCO=m
> # CONFIG_MIXCOMWD is not set
> # CONFIG_60XX_WDT is not set
> # CONFIG_SC1200_WDT is not set
> # CONFIG_SOFT_WATCHDOG is not set
> # CONFIG_W83877F_WDT is not set
> # CONFIG_WDT is not set
> # CONFIG_WDTPCI is not set
> # CONFIG_MACHZ_WDT is not set
> # CONFIG_AMD_RNG is not set
> CONFIG_INTEL_RNG=y
> CONFIG_NVRAM=y
> CONFIG_RTC=y
> # CONFIG_DTLK is not set
> # CONFIG_R3964 is not set
> # CONFIG_APPLICOM is not set
> # CONFIG_SONYPI is not set
>
> #
> # Ftape, the floppy tape device driver
> #
> # CONFIG_FTAPE is not set
> CONFIG_AGP=y
> CONFIG_AGP_INTEL=y
> # CONFIG_AGP_I810 is not set
> # CONFIG_AGP_VIA is not set
> # CONFIG_AGP_AMD is not set
> # CONFIG_AGP_SIS is not set
> # CONFIG_AGP_ALI is not set
> # CONFIG_AGP_SWORKS is not set
> CONFIG_DRM=y
> # CONFIG_DRM_OLD is not set
> CONFIG_DRM_NEW=y
> CONFIG_DRM_TDFX=m
> CONFIG_DRM_R128=y
> CONFIG_DRM_RADEON=m
> CONFIG_DRM_I810=m
> CONFIG_DRM_MGA=m
> CONFIG_DRM_SIS=m
>
> #
> # PCMCIA character devices
> #
> CONFIG_PCMCIA_SERIAL_CS=m
> # CONFIG_MWAVE is not set
>
> #
> # Multimedia devices
> #
> CONFIG_VIDEO_DEV=y
>
> #
> # Video For Linux
> #
> CONFIG_VIDEO_PROC_FS=y
> CONFIG_I2C_PARPORT=m
> CONFIG_VIDEO_BT848=m
> CONFIG_VIDEO_PMS=m
> CONFIG_VIDEO_BWQCAM=m
> CONFIG_VIDEO_CQCAM=m
> CONFIG_VIDEO_W9966=m
> CONFIG_VIDEO_CPIA=m
> CONFIG_VIDEO_CPIA_PP=m
> CONFIG_VIDEO_CPIA_USB=m
> CONFIG_VIDEO_SAA5249=m
> CONFIG_TUNER_3036=m
> CONFIG_VIDEO_STRADIS=m
> CONFIG_VIDEO_ZORAN=m
> CONFIG_VIDEO_ZORAN_BUZ=m
> CONFIG_VIDEO_ZORAN_DC10=m
> CONFIG_VIDEO_ZORAN_LML33=m
> CONFIG_VIDEO_ZR36120=m
> # CONFIG_VIDEO_MEYE is not set
>
> #
> # Radio Adapters
> #
> CONFIG_RADIO_CADET=m
> CONFIG_RADIO_RTRACK=m
> CONFIG_RADIO_RTRACK2=m
> CONFIG_RADIO_AZTECH=m
> CONFIG_RADIO_GEMTEK=m
> CONFIG_RADIO_GEMTEK_PCI=m
> CONFIG_RADIO_MAXIRADIO=m
> CONFIG_RADIO_MAESTRO=m
> CONFIG_RADIO_MIROPCM20=m
> CONFIG_RADIO_MIROPCM20_RDS=m
> CONFIG_RADIO_SF16FMI=m
> CONFIG_RADIO_TERRATEC=m
> CONFIG_RADIO_TRUST=m
> CONFIG_RADIO_TYPHOON=m
> CONFIG_RADIO_TYPHOON_PROC_FS=y
> CONFIG_RADIO_ZOLTRIX=m
>
> #
> # File systems
> #
> CONFIG_QUOTA=y
> CONFIG_AUTOFS_FS=m
> CONFIG_AUTOFS4_FS=m
> CONFIG_REISERFS_FS=m
> CONFIG_REISERFS_CHECK=y
> CONFIG_REISERFS_PROC_INFO=y
> CONFIG_ADFS_FS=m
> # CONFIG_ADFS_FS_RW is not set
> CONFIG_AFFS_FS=m
> CONFIG_HFS_FS=m
> CONFIG_BFS_FS=m
> CONFIG_EXT3_FS=y
> CONFIG_JBD=y
> CONFIG_JBD_DEBUG=y
> CONFIG_FAT_FS=m
> CONFIG_MSDOS_FS=m
> # CONFIG_UMSDOS_FS is not set
> CONFIG_VFAT_FS=m
> CONFIG_EFS_FS=m
> # CONFIG_JFFS_FS is not set
> # CONFIG_JFFS2_FS is not set
> CONFIG_CRAMFS=m
> CONFIG_TMPFS=y
> CONFIG_RAMFS=y
> CONFIG_ISO9660_FS=y
> CONFIG_JOLIET=y
> CONFIG_ZISOFS=y
> CONFIG_MINIX_FS=m
> # CONFIG_VXFS_FS is not set
> CONFIG_NTFS_FS=m
> # CONFIG_NTFS_RW is not set
> CONFIG_HPFS_FS=m
> CONFIG_PROC_FS=y
> # CONFIG_DEVFS_FS is not set
> # CONFIG_DEVFS_MOUNT is not set
> # CONFIG_DEVFS_DEBUG is not set
> CONFIG_DEVPTS_FS=y
> CONFIG_QNX4FS_FS=m
> # CONFIG_QNX4FS_RW is not set
> CONFIG_ROMFS_FS=m
> CONFIG_EXT2_FS=y
> CONFIG_SYSV_FS=m
> CONFIG_UDF_FS=m
> # CONFIG_UDF_RW is not set
> CONFIG_UFS_FS=y
> # CONFIG_UFS_FS_WRITE is not set
>
> #
> # Network File Systems
> #
> CONFIG_CODA_FS=m
> CONFIG_INTERMEZZO_FS=m
> CONFIG_NFS_FS=m
> CONFIG_NFS_V3=y
> # CONFIG_ROOT_NFS is not set
> CONFIG_NFSD=m
> CONFIG_NFSD_V3=y
> CONFIG_SUNRPC=m
> CONFIG_LOCKD=m
> CONFIG_LOCKD_V4=y
> CONFIG_SMB_FS=m
> CONFIG_SMB_NLS_DEFAULT=y
> CONFIG_SMB_NLS_REMOTE="cp437"
> CONFIG_NCP_FS=m
> CONFIG_NCPFS_PACKET_SIGNING=y
> CONFIG_NCPFS_IOCTL_LOCKING=y
> CONFIG_NCPFS_STRONG=y
> CONFIG_NCPFS_NFS_NS=y
> CONFIG_NCPFS_OS2_NS=y
> CONFIG_NCPFS_SMALLDOS=y
> CONFIG_NCPFS_NLS=y
> CONFIG_NCPFS_EXTRAS=y
> CONFIG_ZISOFS_FS=y
> CONFIG_ZLIB_FS_INFLATE=y
>
> #
> # Partition Types
> #
> CONFIG_PARTITION_ADVANCED=y
> CONFIG_ACORN_PARTITION=y
> CONFIG_ACORN_PARTITION_ICS=y
> CONFIG_ACORN_PARTITION_ADFS=y
> CONFIG_ACORN_PARTITION_POWERTEC=y
> CONFIG_ACORN_PARTITION_RISCIX=y
> CONFIG_OSF_PARTITION=y
> CONFIG_AMIGA_PARTITION=y
> CONFIG_ATARI_PARTITION=y
> CONFIG_MAC_PARTITION=y
> CONFIG_MSDOS_PARTITION=y
> CONFIG_BSD_DISKLABEL=y
> CONFIG_MINIX_SUBPARTITION=y
> CONFIG_SOLARIS_X86_PARTITION=y
> CONFIG_UNIXWARE_DISKLABEL=y
> # CONFIG_LDM_PARTITION is not set
> CONFIG_SGI_PARTITION=y
> CONFIG_ULTRIX_PARTITION=y
> CONFIG_SUN_PARTITION=y
> CONFIG_SMB_NLS=y
> CONFIG_NLS=y
>
> #
> # Native Language Support
> #
> CONFIG_NLS_DEFAULT="iso8859-1"
> CONFIG_NLS_CODEPAGE_437=m
> CONFIG_NLS_CODEPAGE_737=m
> CONFIG_NLS_CODEPAGE_775=m
> CONFIG_NLS_CODEPAGE_850=m
> CONFIG_NLS_CODEPAGE_852=m
> CONFIG_NLS_CODEPAGE_855=m
> CONFIG_NLS_CODEPAGE_857=m
> CONFIG_NLS_CODEPAGE_860=m
> CONFIG_NLS_CODEPAGE_861=m
> CONFIG_NLS_CODEPAGE_862=m
> CONFIG_NLS_CODEPAGE_863=m
> CONFIG_NLS_CODEPAGE_864=m
> CONFIG_NLS_CODEPAGE_865=m
> CONFIG_NLS_CODEPAGE_866=m
> CONFIG_NLS_CODEPAGE_869=m
> CONFIG_NLS_CODEPAGE_936=m
> CONFIG_NLS_CODEPAGE_950=m
> CONFIG_NLS_CODEPAGE_932=m
> CONFIG_NLS_CODEPAGE_949=m
> CONFIG_NLS_CODEPAGE_874=m
> CONFIG_NLS_ISO8859_8=m
> CONFIG_NLS_CODEPAGE_1250=m
> CONFIG_NLS_CODEPAGE_1251=m
> CONFIG_NLS_ISO8859_1=m
> CONFIG_NLS_ISO8859_2=m
> CONFIG_NLS_ISO8859_3=m
> CONFIG_NLS_ISO8859_4=m
> CONFIG_NLS_ISO8859_5=m
> CONFIG_NLS_ISO8859_6=m
> CONFIG_NLS_ISO8859_7=m
> CONFIG_NLS_ISO8859_9=m
> CONFIG_NLS_ISO8859_13=m
> CONFIG_NLS_ISO8859_14=m
> CONFIG_NLS_ISO8859_15=m
> CONFIG_NLS_KOI8_R=m
> CONFIG_NLS_KOI8_U=m
> CONFIG_NLS_UTF8=m
>
> #
> # Console drivers
> #
> CONFIG_VGA_CONSOLE=y
> CONFIG_VIDEO_SELECT=y
> # CONFIG_MDA_CONSOLE is not set
>
> #
> # Frame-buffer support
> #
> CONFIG_FB=y
> CONFIG_DUMMY_CONSOLE=y
> # CONFIG_FB_RIVA is not set
> # CONFIG_FB_CLGEN is not set
> # CONFIG_FB_PM2 is not set
> # CONFIG_FB_PM3 is not set
> # CONFIG_FB_CYBER2000 is not set
> # CONFIG_FB_VESA is not set
> # CONFIG_FB_VGA16 is not set
> # CONFIG_FB_HGA is not set
> CONFIG_VIDEO_SELECT=y
> # CONFIG_FB_MATROX is not set
> # CONFIG_FB_ATY is not set
> # CONFIG_FB_RADEON is not set
> CONFIG_FB_ATY128=y
> # CONFIG_FB_SIS is not set
> # CONFIG_FB_NEOMAGIC is not set
> # CONFIG_FB_3DFX is not set
> # CONFIG_FB_VOODOO1 is not set
> # CONFIG_FB_TRIDENT is not set
> # CONFIG_FB_VIRTUAL is not set
> # CONFIG_FBCON_ADVANCED is not set
> CONFIG_FBCON_CFB8=y
> CONFIG_FBCON_CFB16=y
> CONFIG_FBCON_CFB24=y
> CONFIG_FBCON_CFB32=y
> # CONFIG_FBCON_FONTWIDTH8_ONLY is not set
> # CONFIG_FBCON_FONTS is not set
> CONFIG_FONT_8x8=y
> CONFIG_FONT_8x16=y
>
> #
> # Sound
> #
> CONFIG_SOUND=m
> # CONFIG_SOUND_BT878 is not set
> CONFIG_SOUND_CMPCI=m
> # CONFIG_SOUND_CMPCI_FM is not set
> # CONFIG_SOUND_CMPCI_MIDI is not set
> # CONFIG_SOUND_CMPCI_JOYSTICK is not set
> # CONFIG_SOUND_CMPCI_CM8738 is not set
> CONFIG_SOUND_EMU10K1=m
> CONFIG_MIDI_EMU10K1=y
> CONFIG_SOUND_FUSION=m
> CONFIG_SOUND_CS4281=m
> CONFIG_SOUND_ES1370=m
> CONFIG_SOUND_ES1371=m
> CONFIG_SOUND_ESSSOLO1=m
> CONFIG_SOUND_MAESTRO=m
> CONFIG_SOUND_MAESTRO3=m
> CONFIG_SOUND_ICH=m
> CONFIG_SOUND_RME96XX=m
> CONFIG_SOUND_SONICVIBES=m
> CONFIG_SOUND_TRIDENT=m
> CONFIG_SOUND_MSNDCLAS=m
> # CONFIG_MSNDCLAS_HAVE_BOOT is not set
> CONFIG_MSNDCLAS_INIT_FILE="/etc/sound/msndinit.bin"
> CONFIG_MSNDCLAS_PERM_FILE="/etc/sound/msndperm.bin"
> CONFIG_SOUND_MSNDPIN=m
> # CONFIG_MSNDPIN_HAVE_BOOT is not set
> CONFIG_MSNDPIN_INIT_FILE="/etc/sound/pndspini.bin"
> CONFIG_MSNDPIN_PERM_FILE="/etc/sound/pndsperm.bin"
> CONFIG_SOUND_VIA82CXXX=m
> CONFIG_MIDI_VIA82CXXX=y
> CONFIG_SOUND_OSS=m
> # CONFIG_SOUND_TRACEINIT is not set
> CONFIG_SOUND_DMAP=y
> CONFIG_SOUND_AD1816=m
> CONFIG_SOUND_SGALAXY=m
> CONFIG_SOUND_ADLIB=m
> CONFIG_SOUND_ACI_MIXER=m
> CONFIG_SOUND_CS4232=m
> CONFIG_SOUND_SSCAPE=m
> CONFIG_SOUND_GUS=m
> # CONFIG_SOUND_GUS16 is not set
> CONFIG_SOUND_GUSMAX=y
> CONFIG_SOUND_VMIDI=m
> CONFIG_SOUND_TRIX=m
> CONFIG_SOUND_MSS=m
> CONFIG_SOUND_MPU401=m
> CONFIG_SOUND_NM256=m
> CONFIG_SOUND_MAD16=m
> CONFIG_MAD16_OLDCARD=y
> CONFIG_SOUND_PAS=m
> # CONFIG_PAS_JOYSTICK is not set
> CONFIG_SOUND_PSS=m
> CONFIG_PSS_MIXER=y
> # CONFIG_PSS_HAVE_BOOT is not set
> CONFIG_SOUND_SB=m
> CONFIG_SOUND_AWE32_SYNTH=m
> CONFIG_SOUND_WAVEFRONT=m
> CONFIG_SOUND_MAUI=m
> CONFIG_SOUND_YM3812=m
> CONFIG_SOUND_OPL3SA1=m
> CONFIG_SOUND_OPL3SA2=m
> CONFIG_SOUND_YMFPCI=m
> CONFIG_SOUND_YMFPCI_LEGACY=y
> CONFIG_SOUND_UART6850=m
> # CONFIG_SOUND_AEDSP16 is not set
> CONFIG_SOUND_TVMIXER=m
>
> #
> # USB support
> #
> CONFIG_USB=m
> # CONFIG_USB_DEBUG is not set
> CONFIG_USB_DEVICEFS=y
> # CONFIG_USB_BANDWIDTH is not set
> CONFIG_USB_LONG_TIMEOUT=y
> CONFIG_USB_EHCI_HCD=m
> CONFIG_USB_UHCI=m
> CONFIG_USB_UHCI_ALT=m
> CONFIG_USB_OHCI=m
> CONFIG_USB_AUDIO=m
> CONFIG_USB_EMI26=m
> CONFIG_USB_BLUETOOTH=m
> CONFIG_USB_STORAGE=m
> # CONFIG_USB_STORAGE_DEBUG is not set
> CONFIG_USB_STORAGE_DATAFAB=y
> CONFIG_USB_STORAGE_FREECOM=y
> CONFIG_USB_STORAGE_ISD200=y
> CONFIG_USB_STORAGE_DPCM=y
> CONFIG_USB_STORAGE_HP8200e=y
> CONFIG_USB_STORAGE_SDDR09=y
> CONFIG_USB_STORAGE_JUMPSHOT=y
> CONFIG_USB_ACM=m
> CONFIG_USB_PRINTER=m
> CONFIG_USB_HID=m
> CONFIG_USB_HIDINPUT=y
> # CONFIG_USB_HIDDEV is not set
> CONFIG_USB_KBD=m
> CONFIG_USB_MOUSE=m
> CONFIG_USB_WACOM=m
> CONFIG_USB_DC2XX=m
> CONFIG_USB_MDC800=m
> CONFIG_USB_SCANNER=m
> CONFIG_USB_MICROTEK=m
> CONFIG_USB_HPUSBSCSI=m
> CONFIG_USB_IBMCAM=m
> CONFIG_USB_OV511=m
> CONFIG_USB_PWC=m
> CONFIG_USB_SE401=m
> CONFIG_USB_STV680=m
> # CONFIG_USB_VICAM is not set
> CONFIG_USB_DSBR=m
> CONFIG_USB_DABUSB=m
> CONFIG_USB_PEGASUS=m
> CONFIG_USB_RTL8150=m
> CONFIG_USB_KAWETH=m
> CONFIG_USB_CATC=m
> CONFIG_USB_CDCETHER=m
> CONFIG_USB_USBNET=m
> CONFIG_USB_USS720=m
>
> #
> # USB Serial Converter support
> #
> CONFIG_USB_SERIAL=m
> CONFIG_USB_SERIAL_GENERIC=y
> CONFIG_USB_SERIAL_BELKIN=m
> CONFIG_USB_SERIAL_WHITEHEAT=m
> CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
> CONFIG_USB_SERIAL_EMPEG=m
> CONFIG_USB_SERIAL_FTDI_SIO=m
> CONFIG_USB_SERIAL_VISOR=m
> CONFIG_USB_SERIAL_IPAQ=m
> CONFIG_USB_SERIAL_IR=m
> CONFIG_USB_SERIAL_EDGEPORT=m
> CONFIG_USB_SERIAL_KEYSPAN_PDA=m
> CONFIG_USB_SERIAL_KEYSPAN=m
> CONFIG_USB_SERIAL_KEYSPAN_USA28=y
> CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
> CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
> CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
> CONFIG_USB_SERIAL_KEYSPAN_USA19=y
> CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
> CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
> CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
> CONFIG_USB_SERIAL_MCT_U232=m
> CONFIG_USB_SERIAL_KLSI=m
> CONFIG_USB_SERIAL_PL2303=m
> CONFIG_USB_SERIAL_CYBERJACK=m
> CONFIG_USB_SERIAL_XIRCOM=m
> CONFIG_USB_SERIAL_OMNINET=m
> CONFIG_USB_RIO500=m
> CONFIG_USB_AUERSWALD=m
> CONFIG_USB_BRLVGER=m
>
> #
> # Bluetooth support
> #
> CONFIG_BLUEZ=m
> CONFIG_BLUEZ_L2CAP=m
> CONFIG_BLUEZ_SCO=m
>
> #
> # Bluetooth device drivers
> #
> CONFIG_BLUEZ_HCIUSB=m
> CONFIG_BLUEZ_USB_FW_LOAD=y
> # CONFIG_BLUEZ_USB_ZERO_PACKET is not set
> CONFIG_BLUEZ_HCIUART=m
> CONFIG_BLUEZ_HCIUART_H4=y
> CONFIG_BLUEZ_HCIDTL1=m
> CONFIG_BLUEZ_HCIVHCI=m
>
> #
> # Kernel hacking
> #
> CONFIG_DEBUG_KERNEL=y
> CONFIG_DEBUG_HIGHMEM=y
> CONFIG_DEBUG_SLAB=y
> CONFIG_DEBUG_IOVIRT=y
> CONFIG_MAGIC_SYSRQ=y
> CONFIG_DEBUG_SPINLOCK=y
> CONFIG_FRAME_POINTER=y
>
> --
> "God, root, what is difference?"
> -- Pitr, User Friendly
>
> "God is more forgiving."
> -- Dave Aronson
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Linux 2.4.19-rc1
2002-07-02 20:51 ` Marcelo Tosatti
@ 2002-07-02 21:30 ` Marcelo Tosatti
2002-07-03 16:53 ` Bruce Harada
1 sibling, 0 replies; 14+ messages in thread
From: Marcelo Tosatti @ 2002-07-02 21:30 UTC (permalink / raw)
To: bvermeul; +Cc: lkml
Eek. I mean could you please try 2.4.18 stock?
On Tue, 2 Jul 2002, Marcelo Tosatti wrote:
>
> Could you please 2.4.18 ?
>
> On Sat, 29 Jun 2002 bvermeul@devel.blackstar.nl wrote:
>
> > I've just tried 2.4.19-rc1, and it hangs on me when I start
> > cardmgr. I've ran an strace on cardmgr, and it hangs during
> > an ioctl call to DECODER_GET_STATUS. (SysRq doesn't do anything,
> > it's a complete hang)
> >
> > The last 2.4 kernel I used was 2.4.19-pre10-ac2, which didn't
> > have this problem. I'm also using 2.5.24-dj2 without a problem.
> >
> > This all is on a Dell Inspiron 8000, with an internal WiFi miniPCI
> > card (cardbus controller with embedded wireless controller).
> >
> > Regards,
> >
> > Bas Vermeulen
> >
> > lspci -vvv output:
> >
> > 00:00.0 Host bridge: Intel Corp. 82815 815 Chipset Host Bridge and Memory Controller Hub (rev 02)
> > Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR-
> > Latency: 0
> > Region 0: Memory at e4000000 (32-bit, prefetchable) [size=64M]
> > Capabilities: [88] #09 [f104]
> > Capabilities: [a0] AGP version 2.0
> > Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
> > Command: RQ=0 SBA- AGP- 64bit- FW- Rate=<none>
> >
> > 00:01.0 PCI bridge: Intel Corp. 82815 815 Chipset AGP Bridge (rev 02) (prog-if 00 [Normal decode])
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> > Status: Cap- 66Mhz+ UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 32
> > Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
> > I/O behind bridge: 0000c000-0000cfff
> > Memory behind bridge: fc000000-fdffffff
> > Prefetchable memory behind bridge: e8000000-ebffffff
> > BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
> >
> > 00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 02) (prog-if 00 [Normal decode])
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> > Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 0
> > Bus: primary=00, secondary=02, subordinate=10, sec-latency=32
> > I/O behind bridge: 0000e000-0000ffff
> > Memory behind bridge: f4000000-fbffffff
> > Prefetchable memory behind bridge: fff00000-000fffff
> > BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
> >
> > 00:1f.0 ISA bridge: Intel Corp. 82801BAM ISA Bridge (LPC) (rev 02)
> > Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> > Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 0
> >
> > 00:1f.1 IDE interface: Intel Corp. 82801BAM IDE U100 (rev 02) (prog-if 80 [Master])
> > Subsystem: Intel Corp.: Unknown device 4541
> > Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 0
> > Region 4: I/O ports at bfa0 [size=16]
> >
> > 00:1f.2 USB Controller: Intel Corp. 82801BA/BAM USB (Hub (rev 02) (prog-if 00 [UHCI])
> > Subsystem: Intel Corp.: Unknown device 4541
> > Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 0
> > Interrupt: pin D routed to IRQ 10
> > Region 4: I/O ports at dce0 [size=32]
> >
> > 01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility M4 AGP (prog-if 00 [VGA])
> > Subsystem: Dell Computer Corporation: Unknown device 00a4
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping+ SERR- FastB2B-
> > Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 32 (2000ns min), cache line size 08
> > Interrupt: pin A routed to IRQ 11
> > Region 0: Memory at e8000000 (32-bit, prefetchable) [size=64M]
> > Region 1: I/O ports at cc00 [size=256]
> > Region 2: Memory at fcffc000 (32-bit, non-prefetchable) [size=16K]
> > Expansion ROM at <unassigned> [disabled] [size=128K]
> > Capabilities: [50] AGP version 2.0
> > Status: RQ=31 SBA+ 64bit- FW- Rate=x1,x2
> > Command: RQ=0 SBA+ AGP- 64bit- FW- Rate=<none>
> > Capabilities: [5c] Power Management version 2
> > Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME-
> >
> > 02:03.0 Multimedia audio controller: ESS Technology ES1983S Maestro-3i PCI Audio Accelerator (rev 10)
> > Subsystem: Dell Computer Corporation: Unknown device 00a4
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 32 (500ns min, 6000ns max)
> > Interrupt: pin A routed to IRQ 5
> > Region 0: I/O ports at ec00 [size=256]
> > Region 1: Memory at f8ffe000 (32-bit, non-prefetchable) [size=8K]
> > Capabilities: [c0] Power Management version 2
> > Flags: PMEClk- DSI+ D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME-
> >
> > 02:06.0 CardBus bridge: Texas Instruments PCI1410 PC card Cardbus Controller (rev 01)
> > Subsystem: Lucent Technologies: Unknown device ab01
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 168, cache line size 08
> > Interrupt: pin A routed to IRQ 10
> > Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=4K]
> > Bus: primary=02, secondary=06, subordinate=09, sec-latency=176
> > Memory window 0: f4400000-f47ff000 (prefetchable)
> > Memory window 1: f4800000-f4bff000
> > I/O window 0: 0000e000-0000e0ff
> > I/O window 1: 0000e400-0000e4ff
> > BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt- PostWrite+
> > 16-bit legacy interface ports at 0001
> >
> > 02:0f.0 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
> > Subsystem: Dell Computer Corporation: Unknown device 00a4
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 168, cache line size 08
> > Interrupt: pin A routed to IRQ 10
> > Region 0: Memory at f4001000 (32-bit, non-prefetchable) [size=4K]
> > Bus: primary=00, secondary=04, subordinate=04, sec-latency=176
> > Memory window 0: f4c00000-f4fff000 (prefetchable)
> > Memory window 1: f5000000-f53ff000
> > I/O window 0: 0000e800-0000e8ff
> > I/O window 1: 0000f000-0000f0ff
> > BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt- PostWrite+
> > 16-bit legacy interface ports at 0001
> >
> > 02:0f.1 CardBus bridge: Texas Instruments PCI4451 PC card Cardbus Controller
> > Subsystem: Dell Computer Corporation: Unknown device 00a4
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 168, cache line size 08
> > Interrupt: pin A routed to IRQ 10
> > Region 0: Memory at f4002000 (32-bit, non-prefetchable) [size=4K]
> > Bus: primary=00, secondary=05, subordinate=05, sec-latency=176
> > Memory window 0: f5400000-f57ff000 (prefetchable)
> > Memory window 1: f5800000-f5bff000
> > I/O window 0: 0000f400-0000f4ff
> > I/O window 1: 0000f800-0000f8ff
> > BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+ PostWrite+
> > 16-bit legacy interface ports at 0001
> >
> > 02:0f.2 FireWire (IEEE 1394): Texas Instruments PCI4451 IEEE-1394 Controller (prog-if 10 [OHCI])
> > Subsystem: Dell Computer Corporation: Unknown device 00a4
> > Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Latency: 32 (500ns min, 1000ns max), cache line size 08
> > Interrupt: pin A routed to IRQ 10
> > Region 0: Memory at f8ffd800 (32-bit, non-prefetchable) [size=2K]
> > Region 1: Memory at f8ff8000 (32-bit, non-prefetchable) [size=16K]
> > Capabilities: [44] Power Management version 2
> > Flags: PMEClk- DSI- D1- D2+ AuxCurrent=0mA PME(D0-,D1-,D2+,D3hot+,D3cold-)
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME-
> >
> > 04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C (rev 10)
> > Subsystem: Realtek Semiconductor Co., Ltd. RT8139
> > Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
> > Status: Cap+ 66Mhz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
> > Interrupt: pin A routed to IRQ 10
> > Region 0: I/O ports at e800 [size=256]
> > Region 1: Memory at f5000000 (32-bit, non-prefetchable) [size=512]
> > Capabilities: [50] Power Management version 2
> > Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold-)
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME-
> >
> > My .config for 2.4.19-rc1:
> >
> > #
> > # Automatically generated by make menuconfig: don't edit
> > #
> > CONFIG_X86=y
> > CONFIG_ISA=y
> > # CONFIG_SBUS is not set
> > CONFIG_UID16=y
> >
> > #
> > # Code maturity level options
> > #
> > CONFIG_EXPERIMENTAL=y
> >
> > #
> > # Loadable module support
> > #
> > CONFIG_MODULES=y
> > CONFIG_MODVERSIONS=y
> > CONFIG_KMOD=y
> >
> > #
> > # Processor type and features
> > #
> > # CONFIG_M386 is not set
> > # CONFIG_M486 is not set
> > # CONFIG_M586 is not set
> > # CONFIG_M586TSC is not set
> > # CONFIG_M586MMX is not set
> > # CONFIG_M686 is not set
> > CONFIG_MPENTIUMIII=y
> > # CONFIG_MPENTIUM4 is not set
> > # CONFIG_MK6 is not set
> > # CONFIG_MK7 is not set
> > # CONFIG_MELAN is not set
> > # CONFIG_MCRUSOE is not set
> > # CONFIG_MWINCHIPC6 is not set
> > # CONFIG_MWINCHIP2 is not set
> > # CONFIG_MWINCHIP3D is not set
> > # CONFIG_MCYRIXIII is not set
> > CONFIG_X86_WP_WORKS_OK=y
> > CONFIG_X86_INVLPG=y
> > CONFIG_X86_CMPXCHG=y
> > CONFIG_X86_XADD=y
> > CONFIG_X86_BSWAP=y
> > CONFIG_X86_POPAD_OK=y
> > # CONFIG_RWSEM_GENERIC_SPINLOCK is not set
> > CONFIG_RWSEM_XCHGADD_ALGORITHM=y
> > CONFIG_X86_L1_CACHE_SHIFT=5
> > CONFIG_X86_TSC=y
> > CONFIG_X86_GOOD_APIC=y
> > CONFIG_X86_PGE=y
> > CONFIG_X86_USE_PPRO_CHECKSUM=y
> > CONFIG_X86_MCE=y
> > # CONFIG_TOSHIBA is not set
> > CONFIG_I8K=y
> > CONFIG_MICROCODE=m
> > CONFIG_X86_MSR=m
> > CONFIG_X86_CPUID=m
> > CONFIG_NOHIGHMEM=y
> > # CONFIG_HIGHMEM4G is not set
> > # CONFIG_HIGHMEM64G is not set
> > CONFIG_MATH_EMULATION=y
> > CONFIG_MTRR=y
> > # CONFIG_SMP is not set
> > # CONFIG_X86_UP_APIC is not set
> > # CONFIG_X86_UP_IOAPIC is not set
> >
> > #
> > # General setup
> > #
> > CONFIG_NET=y
> > CONFIG_PCI=y
> > # CONFIG_PCI_GOBIOS is not set
> > # CONFIG_PCI_GODIRECT is not set
> > CONFIG_PCI_GOANY=y
> > CONFIG_PCI_BIOS=y
> > CONFIG_PCI_DIRECT=y
> > CONFIG_PCI_NAMES=y
> > # CONFIG_EISA is not set
> > # CONFIG_MCA is not set
> > CONFIG_HOTPLUG=y
> >
> > #
> > # PCMCIA/CardBus support
> > #
> > CONFIG_PCMCIA=y
> > CONFIG_CARDBUS=y
> > # CONFIG_TCIC is not set
> > # CONFIG_I82092 is not set
> > CONFIG_I82365=y
> >
> > #
> > # PCI Hotplug Support
> > #
> > # CONFIG_HOTPLUG_PCI is not set
> > # CONFIG_HOTPLUG_PCI_COMPAQ is not set
> > # CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
> > # CONFIG_HOTPLUG_PCI_ACPI is not set
> > CONFIG_SYSVIPC=y
> > CONFIG_BSD_PROCESS_ACCT=y
> > CONFIG_SYSCTL=y
> > CONFIG_KCORE_ELF=y
> > # CONFIG_KCORE_AOUT is not set
> > CONFIG_BINFMT_AOUT=m
> > CONFIG_BINFMT_ELF=y
> > CONFIG_BINFMT_MISC=m
> > CONFIG_PM=y
> > CONFIG_ACPI=y
> > # CONFIG_ACPI_DEBUG is not set
> > CONFIG_ACPI_BUSMGR=y
> > CONFIG_ACPI_SYS=y
> > CONFIG_ACPI_CPU=y
> > CONFIG_ACPI_BUTTON=y
> > CONFIG_ACPI_AC=y
> > CONFIG_ACPI_EC=y
> > CONFIG_ACPI_CMBATT=y
> > CONFIG_ACPI_THERMAL=y
> > CONFIG_APM=y
> > # CONFIG_APM_IGNORE_USER_SUSPEND is not set
> > # CONFIG_APM_DO_ENABLE is not set
> > CONFIG_APM_CPU_IDLE=y
> > CONFIG_APM_DISPLAY_BLANK=y
> > CONFIG_APM_RTC_IS_GMT=y
> > CONFIG_APM_ALLOW_INTS=y
> > # CONFIG_APM_REAL_MODE_POWER_OFF is not set
> >
> > #
> > # Memory Technology Devices (MTD)
> > #
> > # CONFIG_MTD is not set
> >
> > #
> > # Parallel port support
> > #
> > CONFIG_PARPORT=y
> > CONFIG_PARPORT_PC=y
> > CONFIG_PARPORT_PC_CML1=y
> > CONFIG_PARPORT_SERIAL=y
> > CONFIG_PARPORT_PC_FIFO=y
> > CONFIG_PARPORT_PC_SUPERIO=y
> > CONFIG_PARPORT_PC_PCMCIA=y
> > # CONFIG_PARPORT_AMIGA is not set
> > # CONFIG_PARPORT_MFC3 is not set
> > # CONFIG_PARPORT_ATARI is not set
> > # CONFIG_PARPORT_GSC is not set
> > # CONFIG_PARPORT_SUNBPP is not set
> > # CONFIG_PARPORT_OTHER is not set
> > CONFIG_PARPORT_1284=y
> >
> > #
> > # Plug and Play configuration
> > #
> > CONFIG_PNP=y
> > CONFIG_ISAPNP=y
> >
> > #
> > # Block devices
> > #
> > CONFIG_BLK_DEV_FD=m
> > # CONFIG_BLK_DEV_XD is not set
> > # CONFIG_PARIDE is not set
> > # CONFIG_BLK_CPQ_DA is not set
> > # CONFIG_BLK_CPQ_CISS_DA is not set
> > # CONFIG_CISS_SCSI_TAPE is not set
> > # CONFIG_BLK_DEV_DAC960 is not set
> > # CONFIG_BLK_DEV_UMEM is not set
> > CONFIG_BLK_DEV_LOOP=m
> > # CONFIG_BLK_DEV_NBD is not set
> > # CONFIG_BLK_DEV_RAM is not set
> > # CONFIG_BLK_DEV_INITRD is not set
> >
> > #
> > # Multi-device support (RAID and LVM)
> > #
> > CONFIG_MD=y
> > # CONFIG_BLK_DEV_MD is not set
> > # CONFIG_MD_LINEAR is not set
> > # CONFIG_MD_RAID0 is not set
> > # CONFIG_MD_RAID1 is not set
> > # CONFIG_MD_RAID5 is not set
> > # CONFIG_MD_MULTIPATH is not set
> > CONFIG_BLK_DEV_LVM=y
> >
> > #
> > # Networking options
> > #
> > CONFIG_PACKET=y
> > CONFIG_PACKET_MMAP=y
> > # CONFIG_NETLINK_DEV is not set
> > # CONFIG_NETFILTER is not set
> > CONFIG_FILTER=y
> > CONFIG_UNIX=y
> > CONFIG_INET=y
> > CONFIG_IP_MULTICAST=y
> > # CONFIG_IP_ADVANCED_ROUTER is not set
> > # CONFIG_IP_PNP is not set
> > CONFIG_NET_IPIP=y
> > CONFIG_NET_IPGRE=y
> > # CONFIG_NET_IPGRE_BROADCAST is not set
> > # CONFIG_IP_MROUTE is not set
> > # CONFIG_ARPD is not set
> > CONFIG_INET_ECN=y
> > CONFIG_SYN_COOKIES=y
> > CONFIG_IPV6=y
> > # CONFIG_KHTTPD is not set
> > # CONFIG_ATM is not set
> > # CONFIG_VLAN_8021Q is not set
> > CONFIG_IPX=m
> > CONFIG_IPX_INTERN=y
> > CONFIG_ATALK=m
> >
> > #
> > # Appletalk devices
> > #
> > # CONFIG_DEV_APPLETALK is not set
> > CONFIG_DECNET=m
> > # CONFIG_DECNET_SIOCGIFCONF is not set
> > # CONFIG_DECNET_ROUTER is not set
> > CONFIG_BRIDGE=m
> > CONFIG_X25=m
> > CONFIG_LAPB=m
> > CONFIG_LLC=y
> > CONFIG_NET_DIVERT=y
> > CONFIG_ECONET=m
> > CONFIG_ECONET_AUNUDP=y
> > # CONFIG_ECONET_NATIVE is not set
> > CONFIG_WAN_ROUTER=m
> > # CONFIG_NET_FASTROUTE is not set
> > # CONFIG_NET_HW_FLOWCONTROL is not set
> >
> > #
> > # QoS and/or fair queueing
> > #
> > # CONFIG_NET_SCHED is not set
> >
> > #
> > # Network testing
> > #
> > # CONFIG_NET_PKTGEN is not set
> >
> > #
> > # Telephony Support
> > #
> > # CONFIG_PHONE is not set
> > # CONFIG_PHONE_IXJ is not set
> > # CONFIG_PHONE_IXJ_PCMCIA is not set
> >
> > #
> > # ATA/IDE/MFM/RLL support
> > #
> > CONFIG_IDE=y
> >
> > #
> > # IDE, ATA and ATAPI Block devices
> > #
> > CONFIG_BLK_DEV_IDE=y
> > # CONFIG_BLK_DEV_HD_IDE is not set
> > # CONFIG_BLK_DEV_HD is not set
> > CONFIG_BLK_DEV_IDEDISK=y
> > # CONFIG_IDEDISK_MULTI_MODE is not set
> > # CONFIG_IDEDISK_STROKE is not set
> > # CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
> > # CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
> > # CONFIG_BLK_DEV_IDEDISK_IBM is not set
> > # CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
> > # CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
> > # CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
> > # CONFIG_BLK_DEV_IDEDISK_WD is not set
> > # CONFIG_BLK_DEV_COMMERIAL is not set
> > # CONFIG_BLK_DEV_TIVO is not set
> > CONFIG_BLK_DEV_IDECS=m
> > CONFIG_BLK_DEV_IDECD=y
> > CONFIG_BLK_DEV_IDETAPE=m
> > CONFIG_BLK_DEV_IDEFLOPPY=m
> > CONFIG_BLK_DEV_IDESCSI=y
> > # CONFIG_IDE_TASK_IOCTL is not set
> > # CONFIG_BLK_DEV_CMD640 is not set
> > # CONFIG_BLK_DEV_CMD640_ENHANCED is not set
> > # CONFIG_BLK_DEV_ISAPNP is not set
> > # CONFIG_BLK_DEV_RZ1000 is not set
> > CONFIG_BLK_DEV_IDEPCI=y
> > CONFIG_IDEPCI_SHARE_IRQ=y
> > CONFIG_BLK_DEV_IDEDMA_PCI=y
> > # CONFIG_BLK_DEV_OFFBOARD is not set
> > # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
> > CONFIG_IDEDMA_PCI_AUTO=y
> > # CONFIG_IDEDMA_ONLYDISK is not set
> > CONFIG_BLK_DEV_IDEDMA=y
> > # CONFIG_IDEDMA_PCI_WIP is not set
> > # CONFIG_BLK_DEV_IDEDMA_TIMEOUT is not set
> > # CONFIG_IDEDMA_NEW_DRIVE_LISTINGS is not set
> > CONFIG_BLK_DEV_ADMA=y
> > # CONFIG_BLK_DEV_AEC62XX is not set
> > # CONFIG_AEC62XX_TUNING is not set
> > # CONFIG_BLK_DEV_ALI15X3 is not set
> > # CONFIG_WDC_ALI15X3 is not set
> > # CONFIG_BLK_DEV_AMD74XX is not set
> > # CONFIG_AMD74XX_OVERRIDE is not set
> > # CONFIG_BLK_DEV_CMD64X is not set
> > # CONFIG_BLK_DEV_CMD680 is not set
> > # CONFIG_BLK_DEV_CY82C693 is not set
> > # CONFIG_BLK_DEV_CS5530 is not set
> > # CONFIG_BLK_DEV_HPT34X is not set
> > # CONFIG_HPT34X_AUTODMA is not set
> > # CONFIG_BLK_DEV_HPT366 is not set
> > CONFIG_BLK_DEV_PIIX=y
> > CONFIG_PIIX_TUNING=y
> > # CONFIG_BLK_DEV_NS87415 is not set
> > # CONFIG_BLK_DEV_OPTI621 is not set
> > # CONFIG_BLK_DEV_PDC202XX is not set
> > # CONFIG_PDC202XX_BURST is not set
> > # CONFIG_PDC202XX_FORCE is not set
> > # CONFIG_BLK_DEV_SVWKS is not set
> > # CONFIG_BLK_DEV_SIS5513 is not set
> > # CONFIG_BLK_DEV_SLC90E66 is not set
> > # CONFIG_BLK_DEV_TRM290 is not set
> > # CONFIG_BLK_DEV_VIA82CXXX is not set
> > # CONFIG_IDE_CHIPSETS is not set
> > CONFIG_IDEDMA_AUTO=y
> > # CONFIG_IDEDMA_IVB is not set
> > # CONFIG_DMA_NONPCI is not set
> > CONFIG_BLK_DEV_IDE_MODES=y
> > # CONFIG_BLK_DEV_ATARAID is not set
> > # CONFIG_BLK_DEV_ATARAID_PDC is not set
> > # CONFIG_BLK_DEV_ATARAID_HPT is not set
> >
> > #
> > # SCSI support
> > #
> > CONFIG_SCSI=y
> > CONFIG_BLK_DEV_SD=y
> > CONFIG_SD_EXTRA_DEVS=40
> > CONFIG_CHR_DEV_ST=m
> > CONFIG_CHR_DEV_OSST=m
> > CONFIG_BLK_DEV_SR=y
> > CONFIG_BLK_DEV_SR_VENDOR=y
> > CONFIG_SR_EXTRA_DEVS=4
> > CONFIG_CHR_DEV_SG=y
> > CONFIG_SCSI_DEBUG_QUEUES=y
> > CONFIG_SCSI_MULTI_LUN=y
> > CONFIG_SCSI_CONSTANTS=y
> > # CONFIG_SCSI_LOGGING is not set
> >
> > #
> > # SCSI low-level drivers
> > #
> > # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
> > # CONFIG_SCSI_7000FASST is not set
> > # CONFIG_SCSI_ACARD is not set
> > # CONFIG_SCSI_AHA152X is not set
> > # CONFIG_SCSI_AHA1542 is not set
> > # CONFIG_SCSI_AHA1740 is not set
> > # CONFIG_SCSI_AACRAID is not set
> > # CONFIG_SCSI_AIC7XXX is not set
> > # CONFIG_SCSI_AIC7XXX_OLD is not set
> > # CONFIG_SCSI_DPT_I2O is not set
> > # CONFIG_SCSI_ADVANSYS is not set
> > # CONFIG_SCSI_IN2000 is not set
> > # CONFIG_SCSI_AM53C974 is not set
> > # CONFIG_SCSI_MEGARAID is not set
> > # CONFIG_SCSI_BUSLOGIC is not set
> > # CONFIG_SCSI_CPQFCTS is not set
> > # CONFIG_SCSI_DMX3191D is not set
> > # CONFIG_SCSI_DTC3280 is not set
> > # CONFIG_SCSI_EATA is not set
> > # CONFIG_SCSI_EATA_DMA is not set
> > # CONFIG_SCSI_EATA_PIO is not set
> > # CONFIG_SCSI_FUTURE_DOMAIN is not set
> > # CONFIG_SCSI_GDTH is not set
> > # CONFIG_SCSI_GENERIC_NCR5380 is not set
> > # CONFIG_SCSI_IPS is not set
> > # CONFIG_SCSI_INITIO is not set
> > # CONFIG_SCSI_INIA100 is not set
> > # CONFIG_SCSI_PPA is not set
> > # CONFIG_SCSI_IMM is not set
> > # CONFIG_SCSI_NCR53C406A is not set
> > # CONFIG_SCSI_NCR53C7xx is not set
> > # CONFIG_SCSI_SYM53C8XX_2 is not set
> > # CONFIG_SCSI_NCR53C8XX is not set
> > CONFIG_SCSI_SYM53C8XX=m
> > CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=4
> > CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32
> > CONFIG_SCSI_NCR53C8XX_SYNC=20
> > # CONFIG_SCSI_NCR53C8XX_PROFILE is not set
> > # CONFIG_SCSI_NCR53C8XX_IOMAPPED is not set
> > # CONFIG_SCSI_NCR53C8XX_PQS_PDS is not set
> > # CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT is not set
> > # CONFIG_SCSI_PAS16 is not set
> > # CONFIG_SCSI_PCI2000 is not set
> > # CONFIG_SCSI_PCI2220I is not set
> > # CONFIG_SCSI_PSI240I is not set
> > # CONFIG_SCSI_QLOGIC_FAS is not set
> > # CONFIG_SCSI_QLOGIC_ISP is not set
> > # CONFIG_SCSI_QLOGIC_FC is not set
> > # CONFIG_SCSI_QLOGIC_1280 is not set
> > # CONFIG_SCSI_SEAGATE is not set
> > # CONFIG_SCSI_SIM710 is not set
> > # CONFIG_SCSI_SYM53C416 is not set
> > # CONFIG_SCSI_DC390T is not set
> > # CONFIG_SCSI_T128 is not set
> > # CONFIG_SCSI_U14_34F is not set
> > # CONFIG_SCSI_ULTRASTOR is not set
> > # CONFIG_SCSI_DEBUG is not set
> >
> > #
> > # PCMCIA SCSI adapter support
> > #
> > CONFIG_SCSI_PCMCIA=y
> > CONFIG_PCMCIA_AHA152X=m
> > CONFIG_PCMCIA_FDOMAIN=m
> > CONFIG_PCMCIA_NINJA_SCSI=m
> > CONFIG_PCMCIA_QLOGIC=m
> >
> > #
> > # Fusion MPT device support
> > #
> > # CONFIG_FUSION is not set
> > # CONFIG_FUSION_BOOT is not set
> > # CONFIG_FUSION_ISENSE is not set
> > # CONFIG_FUSION_CTL is not set
> > # CONFIG_FUSION_LAN is not set
> >
> > #
> > # IEEE 1394 (FireWire) support (EXPERIMENTAL)
> > #
> > CONFIG_IEEE1394=y
> > # CONFIG_IEEE1394_PCILYNX is not set
> > CONFIG_IEEE1394_OHCI1394=m
> > CONFIG_IEEE1394_VIDEO1394=m
> > CONFIG_IEEE1394_SBP2=m
> > CONFIG_IEEE1394_ETH1394=m
> > CONFIG_IEEE1394_DV1394=m
> > CONFIG_IEEE1394_RAWIO=m
> > CONFIG_IEEE1394_CMP=m
> > # CONFIG_IEEE1394_VERBOSEDEBUG is not set
> >
> > #
> > # I2O device support
> > #
> > # CONFIG_I2O is not set
> > # CONFIG_I2O_PCI is not set
> > # CONFIG_I2O_BLOCK is not set
> > # CONFIG_I2O_LAN is not set
> > # CONFIG_I2O_SCSI is not set
> > # CONFIG_I2O_PROC is not set
> >
> > #
> > # Network device support
> > #
> > CONFIG_NETDEVICES=y
> >
> > #
> > # ARCnet devices
> > #
> > # CONFIG_ARCNET is not set
> > CONFIG_DUMMY=m
> > CONFIG_BONDING=m
> > CONFIG_EQUALIZER=m
> > CONFIG_TUN=m
> > # CONFIG_ETHERTAP is not set
> > # CONFIG_NET_SB1000 is not set
> >
> > #
> > # Ethernet (10 or 100Mbit)
> > #
> > # CONFIG_NET_ETHERNET is not set
> >
> > #
> > # Ethernet (1000 Mbit)
> > #
> > # CONFIG_ACENIC is not set
> > CONFIG_DL2K=m
> > # CONFIG_MYRI_SBUS is not set
> > # CONFIG_NS83820 is not set
> > # CONFIG_HAMACHI is not set
> > # CONFIG_YELLOWFIN is not set
> > # CONFIG_SK98LIN is not set
> > # CONFIG_TIGON3 is not set
> > # CONFIG_FDDI is not set
> > # CONFIG_HIPPI is not set
> > CONFIG_PLIP=m
> > CONFIG_PPP=m
> > CONFIG_PPP_MULTILINK=y
> > CONFIG_PPP_FILTER=y
> > CONFIG_PPP_ASYNC=m
> > CONFIG_PPP_SYNC_TTY=m
> > CONFIG_PPP_DEFLATE=m
> > CONFIG_PPP_BSDCOMP=m
> > CONFIG_PPPOE=m
> > CONFIG_SLIP=m
> > CONFIG_SLIP_COMPRESSED=y
> > # CONFIG_SLIP_SMART is not set
> > # CONFIG_SLIP_MODE_SLIP6 is not set
> >
> > #
> > # Wireless LAN (non-hamradio)
> > #
> > CONFIG_NET_RADIO=y
> > # CONFIG_STRIP is not set
> > # CONFIG_WAVELAN is not set
> > # CONFIG_ARLAN is not set
> > # CONFIG_AIRONET4500 is not set
> > # CONFIG_AIRONET4500_NONCS is not set
> > # CONFIG_AIRONET4500_PROC is not set
> > # CONFIG_AIRO is not set
> > CONFIG_HERMES=m
> > CONFIG_PLX_HERMES=m
> > CONFIG_PCI_HERMES=m
> > CONFIG_PCMCIA_HERMES=m
> > CONFIG_AIRO_CS=m
> > CONFIG_NET_WIRELESS=y
> >
> > #
> > # Token Ring devices
> > #
> > # CONFIG_TR is not set
> > # CONFIG_NET_FC is not set
> > # CONFIG_RCPCI is not set
> > CONFIG_SHAPER=m
> >
> > #
> > # Wan interfaces
> > #
> > # CONFIG_WAN is not set
> >
> > #
> > # PCMCIA network device support
> > #
> > CONFIG_NET_PCMCIA=y
> > CONFIG_PCMCIA_3C589=m
> > CONFIG_PCMCIA_3C574=m
> > CONFIG_PCMCIA_FMVJ18X=m
> > CONFIG_PCMCIA_PCNET=m
> > CONFIG_PCMCIA_AXNET=m
> > CONFIG_PCMCIA_NMCLAN=m
> > CONFIG_PCMCIA_SMC91C92=m
> > CONFIG_PCMCIA_XIRC2PS=m
> > # CONFIG_ARCNET_COM20020_CS is not set
> > # CONFIG_PCMCIA_IBMTR is not set
> > CONFIG_PCMCIA_XIRCOM=m
> > CONFIG_PCMCIA_XIRTULIP=m
> > CONFIG_NET_PCMCIA_RADIO=y
> > CONFIG_PCMCIA_RAYCS=m
> > CONFIG_PCMCIA_NETWAVE=m
> > CONFIG_PCMCIA_WAVELAN=m
> > # CONFIG_AIRONET4500_CS is not set
> >
> > #
> > # Amateur Radio support
> > #
> > # CONFIG_HAMRADIO is not set
> >
> > #
> > # IrDA (infrared) support
> > #
> > CONFIG_IRDA=m
> > CONFIG_IRLAN=m
> > CONFIG_IRNET=m
> > CONFIG_IRCOMM=m
> > CONFIG_IRDA_ULTRA=y
> > CONFIG_IRDA_CACHE_LAST_LSAP=y
> > CONFIG_IRDA_FAST_RR=y
> > CONFIG_IRDA_DEBUG=y
> >
> > #
> > # Infrared-port device drivers
> > #
> > CONFIG_IRTTY_SIR=m
> > CONFIG_IRPORT_SIR=m
> > CONFIG_DONGLE=y
> > CONFIG_ESI_DONGLE=m
> > CONFIG_ACTISYS_DONGLE=m
> > CONFIG_TEKRAM_DONGLE=m
> > CONFIG_GIRBIL_DONGLE=m
> > CONFIG_LITELINK_DONGLE=m
> > CONFIG_OLD_BELKIN_DONGLE=m
> > CONFIG_USB_IRDA=m
> > CONFIG_NSC_FIR=m
> > CONFIG_WINBOND_FIR=m
> > CONFIG_TOSHIBA_FIR=m
> > CONFIG_SMC_IRCC_FIR=m
> > CONFIG_ALI_FIR=m
> > CONFIG_VLSI_FIR=m
> >
> > #
> > # ISDN subsystem
> > #
> > # CONFIG_ISDN is not set
> >
> > #
> > # Old CD-ROM drivers (not SCSI, not IDE)
> > #
> > # CONFIG_CD_NO_IDESCSI is not set
> >
> > #
> > # Input core support
> > #
> > CONFIG_INPUT=y
> > CONFIG_INPUT_KEYBDEV=y
> > CONFIG_INPUT_MOUSEDEV=y
> > CONFIG_INPUT_MOUSEDEV_SCREEN_X=1400
> > CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1050
> > CONFIG_INPUT_JOYDEV=y
> > CONFIG_INPUT_EVDEV=y
> >
> > #
> > # Character devices
> > #
> > CONFIG_VT=y
> > CONFIG_VT_CONSOLE=y
> > CONFIG_SERIAL=y
> > CONFIG_SERIAL_CONSOLE=y
> > # CONFIG_SERIAL_EXTENDED is not set
> > # CONFIG_SERIAL_NONSTANDARD is not set
> > CONFIG_UNIX98_PTYS=y
> > CONFIG_UNIX98_PTY_COUNT=256
> > CONFIG_PRINTER=m
> > # CONFIG_LP_CONSOLE is not set
> > CONFIG_PPDEV=m
> >
> > #
> > # I2C support
> > #
> > CONFIG_I2C=m
> > CONFIG_I2C_ALGOBIT=m
> > CONFIG_I2C_PHILIPSPAR=m
> > CONFIG_I2C_ELV=m
> > CONFIG_I2C_VELLEMAN=m
> > CONFIG_I2C_ALGOPCF=m
> > CONFIG_I2C_ELEKTOR=m
> > CONFIG_I2C_CHARDEV=m
> > CONFIG_I2C_PROC=m
> >
> > #
> > # Mice
> > #
> > CONFIG_BUSMOUSE=m
> > CONFIG_ATIXL_BUSMOUSE=m
> > CONFIG_LOGIBUSMOUSE=m
> > CONFIG_MS_BUSMOUSE=m
> > CONFIG_MOUSE=y
> > CONFIG_PSMOUSE=y
> > CONFIG_82C710_MOUSE=m
> > CONFIG_PC110_PAD=m
> > # CONFIG_MK712_MOUSE is not set
> >
> > #
> > # Joysticks
> > #
> > # CONFIG_INPUT_GAMEPORT is not set
> > # CONFIG_INPUT_NS558 is not set
> > # CONFIG_INPUT_LIGHTNING is not set
> > # CONFIG_INPUT_PCIGAME is not set
> > # CONFIG_INPUT_CS461X is not set
> > # CONFIG_INPUT_EMU10K1 is not set
> > # CONFIG_INPUT_SERIO is not set
> > # CONFIG_INPUT_SERPORT is not set
> > # CONFIG_INPUT_ANALOG is not set
> > # CONFIG_INPUT_A3D is not set
> > # CONFIG_INPUT_ADI is not set
> > # CONFIG_INPUT_COBRA is not set
> > # CONFIG_INPUT_GF2K is not set
> > # CONFIG_INPUT_GRIP is not set
> > # CONFIG_INPUT_INTERACT is not set
> > # CONFIG_INPUT_TMDC is not set
> > # CONFIG_INPUT_SIDEWINDER is not set
> > # CONFIG_INPUT_IFORCE_USB is not set
> > # CONFIG_INPUT_IFORCE_232 is not set
> > # CONFIG_INPUT_WARRIOR is not set
> > # CONFIG_INPUT_MAGELLAN is not set
> > # CONFIG_INPUT_SPACEORB is not set
> > # CONFIG_INPUT_SPACEBALL is not set
> > # CONFIG_INPUT_STINGER is not set
> > # CONFIG_INPUT_DB9 is not set
> > # CONFIG_INPUT_GAMECON is not set
> > # CONFIG_INPUT_TURBOGRAFX is not set
> > # CONFIG_QIC02_TAPE is not set
> >
> > #
> > # Watchdog Cards
> > #
> > CONFIG_WATCHDOG=y
> > # CONFIG_WATCHDOG_NOWAYOUT is not set
> > # CONFIG_ACQUIRE_WDT is not set
> > # CONFIG_ADVANTECH_WDT is not set
> > # CONFIG_ALIM7101_WDT is not set
> > # CONFIG_SC520_WDT is not set
> > # CONFIG_PCWATCHDOG is not set
> > # CONFIG_EUROTECH_WDT is not set
> > # CONFIG_IB700_WDT is not set
> > # CONFIG_WAFER_WDT is not set
> > CONFIG_I810_TCO=m
> > # CONFIG_MIXCOMWD is not set
> > # CONFIG_60XX_WDT is not set
> > # CONFIG_SC1200_WDT is not set
> > # CONFIG_SOFT_WATCHDOG is not set
> > # CONFIG_W83877F_WDT is not set
> > # CONFIG_WDT is not set
> > # CONFIG_WDTPCI is not set
> > # CONFIG_MACHZ_WDT is not set
> > # CONFIG_AMD_RNG is not set
> > CONFIG_INTEL_RNG=y
> > CONFIG_NVRAM=y
> > CONFIG_RTC=y
> > # CONFIG_DTLK is not set
> > # CONFIG_R3964 is not set
> > # CONFIG_APPLICOM is not set
> > # CONFIG_SONYPI is not set
> >
> > #
> > # Ftape, the floppy tape device driver
> > #
> > # CONFIG_FTAPE is not set
> > CONFIG_AGP=y
> > CONFIG_AGP_INTEL=y
> > # CONFIG_AGP_I810 is not set
> > # CONFIG_AGP_VIA is not set
> > # CONFIG_AGP_AMD is not set
> > # CONFIG_AGP_SIS is not set
> > # CONFIG_AGP_ALI is not set
> > # CONFIG_AGP_SWORKS is not set
> > CONFIG_DRM=y
> > # CONFIG_DRM_OLD is not set
> > CONFIG_DRM_NEW=y
> > CONFIG_DRM_TDFX=m
> > CONFIG_DRM_R128=y
> > CONFIG_DRM_RADEON=m
> > CONFIG_DRM_I810=m
> > CONFIG_DRM_MGA=m
> > CONFIG_DRM_SIS=m
> >
> > #
> > # PCMCIA character devices
> > #
> > CONFIG_PCMCIA_SERIAL_CS=m
> > # CONFIG_MWAVE is not set
> >
> > #
> > # Multimedia devices
> > #
> > CONFIG_VIDEO_DEV=y
> >
> > #
> > # Video For Linux
> > #
> > CONFIG_VIDEO_PROC_FS=y
> > CONFIG_I2C_PARPORT=m
> > CONFIG_VIDEO_BT848=m
> > CONFIG_VIDEO_PMS=m
> > CONFIG_VIDEO_BWQCAM=m
> > CONFIG_VIDEO_CQCAM=m
> > CONFIG_VIDEO_W9966=m
> > CONFIG_VIDEO_CPIA=m
> > CONFIG_VIDEO_CPIA_PP=m
> > CONFIG_VIDEO_CPIA_USB=m
> > CONFIG_VIDEO_SAA5249=m
> > CONFIG_TUNER_3036=m
> > CONFIG_VIDEO_STRADIS=m
> > CONFIG_VIDEO_ZORAN=m
> > CONFIG_VIDEO_ZORAN_BUZ=m
> > CONFIG_VIDEO_ZORAN_DC10=m
> > CONFIG_VIDEO_ZORAN_LML33=m
> > CONFIG_VIDEO_ZR36120=m
> > # CONFIG_VIDEO_MEYE is not set
> >
> > #
> > # Radio Adapters
> > #
> > CONFIG_RADIO_CADET=m
> > CONFIG_RADIO_RTRACK=m
> > CONFIG_RADIO_RTRACK2=m
> > CONFIG_RADIO_AZTECH=m
> > CONFIG_RADIO_GEMTEK=m
> > CONFIG_RADIO_GEMTEK_PCI=m
> > CONFIG_RADIO_MAXIRADIO=m
> > CONFIG_RADIO_MAESTRO=m
> > CONFIG_RADIO_MIROPCM20=m
> > CONFIG_RADIO_MIROPCM20_RDS=m
> > CONFIG_RADIO_SF16FMI=m
> > CONFIG_RADIO_TERRATEC=m
> > CONFIG_RADIO_TRUST=m
> > CONFIG_RADIO_TYPHOON=m
> > CONFIG_RADIO_TYPHOON_PROC_FS=y
> > CONFIG_RADIO_ZOLTRIX=m
> >
> > #
> > # File systems
> > #
> > CONFIG_QUOTA=y
> > CONFIG_AUTOFS_FS=m
> > CONFIG_AUTOFS4_FS=m
> > CONFIG_REISERFS_FS=m
> > CONFIG_REISERFS_CHECK=y
> > CONFIG_REISERFS_PROC_INFO=y
> > CONFIG_ADFS_FS=m
> > # CONFIG_ADFS_FS_RW is not set
> > CONFIG_AFFS_FS=m
> > CONFIG_HFS_FS=m
> > CONFIG_BFS_FS=m
> > CONFIG_EXT3_FS=y
> > CONFIG_JBD=y
> > CONFIG_JBD_DEBUG=y
> > CONFIG_FAT_FS=m
> > CONFIG_MSDOS_FS=m
> > # CONFIG_UMSDOS_FS is not set
> > CONFIG_VFAT_FS=m
> > CONFIG_EFS_FS=m
> > # CONFIG_JFFS_FS is not set
> > # CONFIG_JFFS2_FS is not set
> > CONFIG_CRAMFS=m
> > CONFIG_TMPFS=y
> > CONFIG_RAMFS=y
> > CONFIG_ISO9660_FS=y
> > CONFIG_JOLIET=y
> > CONFIG_ZISOFS=y
> > CONFIG_MINIX_FS=m
> > # CONFIG_VXFS_FS is not set
> > CONFIG_NTFS_FS=m
> > # CONFIG_NTFS_RW is not set
> > CONFIG_HPFS_FS=m
> > CONFIG_PROC_FS=y
> > # CONFIG_DEVFS_FS is not set
> > # CONFIG_DEVFS_MOUNT is not set
> > # CONFIG_DEVFS_DEBUG is not set
> > CONFIG_DEVPTS_FS=y
> > CONFIG_QNX4FS_FS=m
> > # CONFIG_QNX4FS_RW is not set
> > CONFIG_ROMFS_FS=m
> > CONFIG_EXT2_FS=y
> > CONFIG_SYSV_FS=m
> > CONFIG_UDF_FS=m
> > # CONFIG_UDF_RW is not set
> > CONFIG_UFS_FS=y
> > # CONFIG_UFS_FS_WRITE is not set
> >
> > #
> > # Network File Systems
> > #
> > CONFIG_CODA_FS=m
> > CONFIG_INTERMEZZO_FS=m
> > CONFIG_NFS_FS=m
> > CONFIG_NFS_V3=y
> > # CONFIG_ROOT_NFS is not set
> > CONFIG_NFSD=m
> > CONFIG_NFSD_V3=y
> > CONFIG_SUNRPC=m
> > CONFIG_LOCKD=m
> > CONFIG_LOCKD_V4=y
> > CONFIG_SMB_FS=m
> > CONFIG_SMB_NLS_DEFAULT=y
> > CONFIG_SMB_NLS_REMOTE="cp437"
> > CONFIG_NCP_FS=m
> > CONFIG_NCPFS_PACKET_SIGNING=y
> > CONFIG_NCPFS_IOCTL_LOCKING=y
> > CONFIG_NCPFS_STRONG=y
> > CONFIG_NCPFS_NFS_NS=y
> > CONFIG_NCPFS_OS2_NS=y
> > CONFIG_NCPFS_SMALLDOS=y
> > CONFIG_NCPFS_NLS=y
> > CONFIG_NCPFS_EXTRAS=y
> > CONFIG_ZISOFS_FS=y
> > CONFIG_ZLIB_FS_INFLATE=y
> >
> > #
> > # Partition Types
> > #
> > CONFIG_PARTITION_ADVANCED=y
> > CONFIG_ACORN_PARTITION=y
> > CONFIG_ACORN_PARTITION_ICS=y
> > CONFIG_ACORN_PARTITION_ADFS=y
> > CONFIG_ACORN_PARTITION_POWERTEC=y
> > CONFIG_ACORN_PARTITION_RISCIX=y
> > CONFIG_OSF_PARTITION=y
> > CONFIG_AMIGA_PARTITION=y
> > CONFIG_ATARI_PARTITION=y
> > CONFIG_MAC_PARTITION=y
> > CONFIG_MSDOS_PARTITION=y
> > CONFIG_BSD_DISKLABEL=y
> > CONFIG_MINIX_SUBPARTITION=y
> > CONFIG_SOLARIS_X86_PARTITION=y
> > CONFIG_UNIXWARE_DISKLABEL=y
> > # CONFIG_LDM_PARTITION is not set
> > CONFIG_SGI_PARTITION=y
> > CONFIG_ULTRIX_PARTITION=y
> > CONFIG_SUN_PARTITION=y
> > CONFIG_SMB_NLS=y
> > CONFIG_NLS=y
> >
> > #
> > # Native Language Support
> > #
> > CONFIG_NLS_DEFAULT="iso8859-1"
> > CONFIG_NLS_CODEPAGE_437=m
> > CONFIG_NLS_CODEPAGE_737=m
> > CONFIG_NLS_CODEPAGE_775=m
> > CONFIG_NLS_CODEPAGE_850=m
> > CONFIG_NLS_CODEPAGE_852=m
> > CONFIG_NLS_CODEPAGE_855=m
> > CONFIG_NLS_CODEPAGE_857=m
> > CONFIG_NLS_CODEPAGE_860=m
> > CONFIG_NLS_CODEPAGE_861=m
> > CONFIG_NLS_CODEPAGE_862=m
> > CONFIG_NLS_CODEPAGE_863=m
> > CONFIG_NLS_CODEPAGE_864=m
> > CONFIG_NLS_CODEPAGE_865=m
> > CONFIG_NLS_CODEPAGE_866=m
> > CONFIG_NLS_CODEPAGE_869=m
> > CONFIG_NLS_CODEPAGE_936=m
> > CONFIG_NLS_CODEPAGE_950=m
> > CONFIG_NLS_CODEPAGE_932=m
> > CONFIG_NLS_CODEPAGE_949=m
> > CONFIG_NLS_CODEPAGE_874=m
> > CONFIG_NLS_ISO8859_8=m
> > CONFIG_NLS_CODEPAGE_1250=m
> > CONFIG_NLS_CODEPAGE_1251=m
> > CONFIG_NLS_ISO8859_1=m
> > CONFIG_NLS_ISO8859_2=m
> > CONFIG_NLS_ISO8859_3=m
> > CONFIG_NLS_ISO8859_4=m
> > CONFIG_NLS_ISO8859_5=m
> > CONFIG_NLS_ISO8859_6=m
> > CONFIG_NLS_ISO8859_7=m
> > CONFIG_NLS_ISO8859_9=m
> > CONFIG_NLS_ISO8859_13=m
> > CONFIG_NLS_ISO8859_14=m
> > CONFIG_NLS_ISO8859_15=m
> > CONFIG_NLS_KOI8_R=m
> > CONFIG_NLS_KOI8_U=m
> > CONFIG_NLS_UTF8=m
> >
> > #
> > # Console drivers
> > #
> > CONFIG_VGA_CONSOLE=y
> > CONFIG_VIDEO_SELECT=y
> > # CONFIG_MDA_CONSOLE is not set
> >
> > #
> > # Frame-buffer support
> > #
> > CONFIG_FB=y
> > CONFIG_DUMMY_CONSOLE=y
> > # CONFIG_FB_RIVA is not set
> > # CONFIG_FB_CLGEN is not set
> > # CONFIG_FB_PM2 is not set
> > # CONFIG_FB_PM3 is not set
> > # CONFIG_FB_CYBER2000 is not set
> > # CONFIG_FB_VESA is not set
> > # CONFIG_FB_VGA16 is not set
> > # CONFIG_FB_HGA is not set
> > CONFIG_VIDEO_SELECT=y
> > # CONFIG_FB_MATROX is not set
> > # CONFIG_FB_ATY is not set
> > # CONFIG_FB_RADEON is not set
> > CONFIG_FB_ATY128=y
> > # CONFIG_FB_SIS is not set
> > # CONFIG_FB_NEOMAGIC is not set
> > # CONFIG_FB_3DFX is not set
> > # CONFIG_FB_VOODOO1 is not set
> > # CONFIG_FB_TRIDENT is not set
> > # CONFIG_FB_VIRTUAL is not set
> > # CONFIG_FBCON_ADVANCED is not set
> > CONFIG_FBCON_CFB8=y
> > CONFIG_FBCON_CFB16=y
> > CONFIG_FBCON_CFB24=y
> > CONFIG_FBCON_CFB32=y
> > # CONFIG_FBCON_FONTWIDTH8_ONLY is not set
> > # CONFIG_FBCON_FONTS is not set
> > CONFIG_FONT_8x8=y
> > CONFIG_FONT_8x16=y
> >
> > #
> > # Sound
> > #
> > CONFIG_SOUND=m
> > # CONFIG_SOUND_BT878 is not set
> > CONFIG_SOUND_CMPCI=m
> > # CONFIG_SOUND_CMPCI_FM is not set
> > # CONFIG_SOUND_CMPCI_MIDI is not set
> > # CONFIG_SOUND_CMPCI_JOYSTICK is not set
> > # CONFIG_SOUND_CMPCI_CM8738 is not set
> > CONFIG_SOUND_EMU10K1=m
> > CONFIG_MIDI_EMU10K1=y
> > CONFIG_SOUND_FUSION=m
> > CONFIG_SOUND_CS4281=m
> > CONFIG_SOUND_ES1370=m
> > CONFIG_SOUND_ES1371=m
> > CONFIG_SOUND_ESSSOLO1=m
> > CONFIG_SOUND_MAESTRO=m
> > CONFIG_SOUND_MAESTRO3=m
> > CONFIG_SOUND_ICH=m
> > CONFIG_SOUND_RME96XX=m
> > CONFIG_SOUND_SONICVIBES=m
> > CONFIG_SOUND_TRIDENT=m
> > CONFIG_SOUND_MSNDCLAS=m
> > # CONFIG_MSNDCLAS_HAVE_BOOT is not set
> > CONFIG_MSNDCLAS_INIT_FILE="/etc/sound/msndinit.bin"
> > CONFIG_MSNDCLAS_PERM_FILE="/etc/sound/msndperm.bin"
> > CONFIG_SOUND_MSNDPIN=m
> > # CONFIG_MSNDPIN_HAVE_BOOT is not set
> > CONFIG_MSNDPIN_INIT_FILE="/etc/sound/pndspini.bin"
> > CONFIG_MSNDPIN_PERM_FILE="/etc/sound/pndsperm.bin"
> > CONFIG_SOUND_VIA82CXXX=m
> > CONFIG_MIDI_VIA82CXXX=y
> > CONFIG_SOUND_OSS=m
> > # CONFIG_SOUND_TRACEINIT is not set
> > CONFIG_SOUND_DMAP=y
> > CONFIG_SOUND_AD1816=m
> > CONFIG_SOUND_SGALAXY=m
> > CONFIG_SOUND_ADLIB=m
> > CONFIG_SOUND_ACI_MIXER=m
> > CONFIG_SOUND_CS4232=m
> > CONFIG_SOUND_SSCAPE=m
> > CONFIG_SOUND_GUS=m
> > # CONFIG_SOUND_GUS16 is not set
> > CONFIG_SOUND_GUSMAX=y
> > CONFIG_SOUND_VMIDI=m
> > CONFIG_SOUND_TRIX=m
> > CONFIG_SOUND_MSS=m
> > CONFIG_SOUND_MPU401=m
> > CONFIG_SOUND_NM256=m
> > CONFIG_SOUND_MAD16=m
> > CONFIG_MAD16_OLDCARD=y
> > CONFIG_SOUND_PAS=m
> > # CONFIG_PAS_JOYSTICK is not set
> > CONFIG_SOUND_PSS=m
> > CONFIG_PSS_MIXER=y
> > # CONFIG_PSS_HAVE_BOOT is not set
> > CONFIG_SOUND_SB=m
> > CONFIG_SOUND_AWE32_SYNTH=m
> > CONFIG_SOUND_WAVEFRONT=m
> > CONFIG_SOUND_MAUI=m
> > CONFIG_SOUND_YM3812=m
> > CONFIG_SOUND_OPL3SA1=m
> > CONFIG_SOUND_OPL3SA2=m
> > CONFIG_SOUND_YMFPCI=m
> > CONFIG_SOUND_YMFPCI_LEGACY=y
> > CONFIG_SOUND_UART6850=m
> > # CONFIG_SOUND_AEDSP16 is not set
> > CONFIG_SOUND_TVMIXER=m
> >
> > #
> > # USB support
> > #
> > CONFIG_USB=m
> > # CONFIG_USB_DEBUG is not set
> > CONFIG_USB_DEVICEFS=y
> > # CONFIG_USB_BANDWIDTH is not set
> > CONFIG_USB_LONG_TIMEOUT=y
> > CONFIG_USB_EHCI_HCD=m
> > CONFIG_USB_UHCI=m
> > CONFIG_USB_UHCI_ALT=m
> > CONFIG_USB_OHCI=m
> > CONFIG_USB_AUDIO=m
> > CONFIG_USB_EMI26=m
> > CONFIG_USB_BLUETOOTH=m
> > CONFIG_USB_STORAGE=m
> > # CONFIG_USB_STORAGE_DEBUG is not set
> > CONFIG_USB_STORAGE_DATAFAB=y
> > CONFIG_USB_STORAGE_FREECOM=y
> > CONFIG_USB_STORAGE_ISD200=y
> > CONFIG_USB_STORAGE_DPCM=y
> > CONFIG_USB_STORAGE_HP8200e=y
> > CONFIG_USB_STORAGE_SDDR09=y
> > CONFIG_USB_STORAGE_JUMPSHOT=y
> > CONFIG_USB_ACM=m
> > CONFIG_USB_PRINTER=m
> > CONFIG_USB_HID=m
> > CONFIG_USB_HIDINPUT=y
> > # CONFIG_USB_HIDDEV is not set
> > CONFIG_USB_KBD=m
> > CONFIG_USB_MOUSE=m
> > CONFIG_USB_WACOM=m
> > CONFIG_USB_DC2XX=m
> > CONFIG_USB_MDC800=m
> > CONFIG_USB_SCANNER=m
> > CONFIG_USB_MICROTEK=m
> > CONFIG_USB_HPUSBSCSI=m
> > CONFIG_USB_IBMCAM=m
> > CONFIG_USB_OV511=m
> > CONFIG_USB_PWC=m
> > CONFIG_USB_SE401=m
> > CONFIG_USB_STV680=m
> > # CONFIG_USB_VICAM is not set
> > CONFIG_USB_DSBR=m
> > CONFIG_USB_DABUSB=m
> > CONFIG_USB_PEGASUS=m
> > CONFIG_USB_RTL8150=m
> > CONFIG_USB_KAWETH=m
> > CONFIG_USB_CATC=m
> > CONFIG_USB_CDCETHER=m
> > CONFIG_USB_USBNET=m
> > CONFIG_USB_USS720=m
> >
> > #
> > # USB Serial Converter support
> > #
> > CONFIG_USB_SERIAL=m
> > CONFIG_USB_SERIAL_GENERIC=y
> > CONFIG_USB_SERIAL_BELKIN=m
> > CONFIG_USB_SERIAL_WHITEHEAT=m
> > CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
> > CONFIG_USB_SERIAL_EMPEG=m
> > CONFIG_USB_SERIAL_FTDI_SIO=m
> > CONFIG_USB_SERIAL_VISOR=m
> > CONFIG_USB_SERIAL_IPAQ=m
> > CONFIG_USB_SERIAL_IR=m
> > CONFIG_USB_SERIAL_EDGEPORT=m
> > CONFIG_USB_SERIAL_KEYSPAN_PDA=m
> > CONFIG_USB_SERIAL_KEYSPAN=m
> > CONFIG_USB_SERIAL_KEYSPAN_USA28=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA19=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
> > CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
> > CONFIG_USB_SERIAL_MCT_U232=m
> > CONFIG_USB_SERIAL_KLSI=m
> > CONFIG_USB_SERIAL_PL2303=m
> > CONFIG_USB_SERIAL_CYBERJACK=m
> > CONFIG_USB_SERIAL_XIRCOM=m
> > CONFIG_USB_SERIAL_OMNINET=m
> > CONFIG_USB_RIO500=m
> > CONFIG_USB_AUERSWALD=m
> > CONFIG_USB_BRLVGER=m
> >
> > #
> > # Bluetooth support
> > #
> > CONFIG_BLUEZ=m
> > CONFIG_BLUEZ_L2CAP=m
> > CONFIG_BLUEZ_SCO=m
> >
> > #
> > # Bluetooth device drivers
> > #
> > CONFIG_BLUEZ_HCIUSB=m
> > CONFIG_BLUEZ_USB_FW_LOAD=y
> > # CONFIG_BLUEZ_USB_ZERO_PACKET is not set
> > CONFIG_BLUEZ_HCIUART=m
> > CONFIG_BLUEZ_HCIUART_H4=y
> > CONFIG_BLUEZ_HCIDTL1=m
> > CONFIG_BLUEZ_HCIVHCI=m
> >
> > #
> > # Kernel hacking
> > #
> > CONFIG_DEBUG_KERNEL=y
> > CONFIG_DEBUG_HIGHMEM=y
> > CONFIG_DEBUG_SLAB=y
> > CONFIG_DEBUG_IOVIRT=y
> > CONFIG_MAGIC_SYSRQ=y
> > CONFIG_DEBUG_SPINLOCK=y
> > CONFIG_FRAME_POINTER=y
> >
> > --
> > "God, root, what is difference?"
> > -- Pitr, User Friendly
> >
> > "God is more forgiving."
> > -- Dave Aronson
> >
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Linux 2.4.19-rc1
2002-07-02 20:51 ` Marcelo Tosatti
2002-07-02 21:30 ` Marcelo Tosatti
@ 2002-07-03 16:53 ` Bruce Harada
1 sibling, 0 replies; 14+ messages in thread
From: Bruce Harada @ 2002-07-03 16:53 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: linux-kernel
On Tue, 2 Jul 2002 17:51:09 -0300 (BRT)
Marcelo Tosatti <marcelo@conectiva.com.br> wrote:
>
> Could you please 2.4.18 ?
Don't mean to bitch or anything, but do you think you could try trimming your
quotes? A 38K mail for one actual line of message strikes me as being a bit
inefficient, especially since I just had to scroll through the whole thing to
see if you'd added comments anywhere else ;)
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Linux 2.4.19-rc1: [PATCH] tridentfb
2002-06-24 15:58 Linux 2.4.19-rc1 Marcelo Tosatti
` (5 preceding siblings ...)
2002-06-28 22:41 ` bvermeul
@ 2002-07-12 0:26 ` Helge Deller
6 siblings, 0 replies; 14+ messages in thread
From: Helge Deller @ 2002-07-12 0:26 UTC (permalink / raw)
To: Marcelo Tosatti, Jani Monoses; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 432 bytes --]
The following patch automatically adds CONFIG_FBCON_CFB[8,16,32]
if the tridentfb driver (CONFIG_FB_TRIDENT) was selected.
Without the patch I get:
fbcon_setup: No support for fontwidth 8
kernel: fbcon_setup: type 0 (aux 0, depth 8) not supported
and the screen stays black in case tridentfb was the only selected fb-driver.
The second part of the patch only inserts named initializers for some structs
in tridentfb.c.
Helge
[-- Attachment #2: trident.patch --]
[-- Type: text/plain, Size: 4239 bytes --]
--- ./drivers/video/Config.in.org Fri Jul 12 02:01:22 2002
+++ ./drivers/video/Config.in Fri Jul 12 02:02:59 2002
@@ -267,7 +267,7 @@
"$CONFIG_FB_VALKYRIE" = "y" -o "$CONFIG_FB_PLATINUM" = "y" -o \
"$CONFIG_FB_IGA" = "y" -o "$CONFIG_FB_MATROX" = "y" -o \
"$CONFIG_FB_CT65550" = "y" -o "$CONFIG_FB_PM2" = "y" -o \
- "$CONFIG_FB_PM3" = "y" -o \
+ "$CONFIG_FB_PM3" = "y" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_P9100" = "y" -o "$CONFIG_FB_ATY128" = "y" -o \
"$CONFIG_FB_RIVA" = "y" -o "$CONFIG_FB_RADEON" = "y" -o \
"$CONFIG_FB_SGIVW" = "y" -o "$CONFIG_FB_CYBER2000" = "y" -o \
@@ -288,7 +288,7 @@
"$CONFIG_FB_VALKYRIE" = "m" -o "$CONFIG_FB_PLATINUM" = "m" -o \
"$CONFIG_FB_IGA" = "m" -o "$CONFIG_FB_MATROX" = "m" -o \
"$CONFIG_FB_CT65550" = "m" -o "$CONFIG_FB_PM2" = "m" -o \
- "$CONFIG_FB_PM3" = "m" -o \
+ "$CONFIG_FB_PM3" = "m" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_P9100" = "m" -o "$CONFIG_FB_ATY128" = "m" -o \
"$CONFIG_FB_RIVA" = "m" -o "$CONFIG_FB_3DFX" = "m" -o \
"$CONFIG_FB_SGIVW" = "m" -o "$CONFIG_FB_CYBER2000" = "m" -o \
@@ -308,7 +308,7 @@
"$CONFIG_FB_VALKYRIE" = "y" -o "$CONFIG_FB_PLATINUM" = "y" -o \
"$CONFIG_FB_CT65550" = "y" -o "$CONFIG_FB_MATROX" = "y" -o \
"$CONFIG_FB_PM2" = "y" -o "$CONFIG_FB_SGIVW" = "y" -o \
- "$CONFIG_FB_PM3" = "y" -o \
+ "$CONFIG_FB_PM3" = "y" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_RIVA" = "y" -o "$CONFIG_FB_ATY128" = "y" -o \
"$CONFIG_FB_CYBER2000" = "y" -o "$CONFIG_FB_3DFX" = "y" -o \
"$CONFIG_FB_SIS" = "y" -o "$CONFIG_FB_SA1100" = "y" -o \
@@ -325,7 +325,7 @@
"$CONFIG_FB_VALKYRIE" = "m" -o "$CONFIG_FB_PLATINUM" = "m" -o \
"$CONFIG_FB_CT65550" = "m" -o "$CONFIG_FB_MATROX" = "m" -o \
"$CONFIG_FB_PM2" = "m" -o "$CONFIG_FB_SGIVW" = "m" -o \
- "$CONFIG_FB_PM3" = "m" -o \
+ "$CONFIG_FB_PM3" = "m" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_RIVA" = "m" -o "$CONFIG_FB_ATY128" = "m" -o \
"$CONFIG_FB_CYBER2000" = "m" -o "$CONFIG_FB_SIS" = "m" -o \
"$CONFIG_FB_SA1100" = "m" -o "$CONFIG_FB_RADEON" = "m" -o \
@@ -356,7 +356,7 @@
"$CONFIG_FB_CONTROL" = "y" -o "$CONFIG_FB_CLGEN" = "y" -o \
"$CONFIG_FB_TGA" = "y" -o "$CONFIG_FB_PLATINUM" = "y" -o \
"$CONFIG_FB_MATROX" = "y" -o "$CONFIG_FB_PM2" = "y" -o \
- "$CONFIG_FB_PM3" = "y" -o \
+ "$CONFIG_FB_PM3" = "y" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_RIVA" = "y" -o "$CONFIG_FB_ATY128" = "y" -o \
"$CONFIG_FB_FM2" = "y" -o "$CONFIG_FB_SGIVW" = "y" -o \
"$CONFIG_FB_RADEON" = "y" -o "$CONFIG_FB_PVR2" = "y" -o \
@@ -369,7 +369,7 @@
"$CONFIG_FB_CONTROL" = "m" -o "$CONFIG_FB_CLGEN" = "m" -o \
"$CONFIG_FB_TGA" = "m" -o "$CONFIG_FB_PLATINUM" = "m" -o \
"$CONFIG_FB_MATROX" = "m" -o "$CONFIG_FB_PM2" = "m" -o \
- "$CONFIG_FB_PM3" = "m" -o \
+ "$CONFIG_FB_PM3" = "m" -o "$CONFIG_FB_TRIDENT" = "y" -o \
"$CONFIG_FB_RIVA" = "m" -o "$CONFIG_FB_ATY128" = "m" -o \
"$CONFIG_FB_3DFX" = "m" -o "$CONFIG_FB_RADEON" = "m" -o \
"$CONFIG_FB_SGIVW" = "m" -o "$CONFIG_FB_SIS" = "m" -o \
--- ./drivers/video/tridentfb.c.org Fri Jul 12 02:04:11 2002
+++ ./drivers/video/tridentfb.c Fri Jul 12 02:06:14 2002
@@ -1248,17 +1248,16 @@
}
static struct fbgen_hwswitch trident_hwswitch = {
- NULL, /* detect not needed */
- trident_encode_fix,
- trident_decode_var,
- trident_encode_var,
- trident_get_par,
- trident_set_par,
- trident_getcolreg,
- trident_setcolreg,
- trident_pan_display,
- trident_blank,
- trident_set_disp
+ encode_fix: trident_encode_fix,
+ decode_var: trident_decode_var,
+ encode_var: trident_encode_var,
+ get_par: trident_get_par,
+ set_par: trident_set_par,
+ getcolreg: trident_getcolreg,
+ setcolreg: trident_setcolreg,
+ pan_display: trident_pan_display,
+ blank: trident_blank,
+ set_disp: trident_set_disp
};
static int trident_iosize;
@@ -1487,6 +1486,7 @@
}
static struct fb_ops tridentfb_ops = {
+ owner:THIS_MODULE,
fb_get_fix:fbgen_get_fix,
fb_get_var:fbgen_get_var,
fb_set_var:fbgen_set_var,
^ permalink raw reply [flat|nested] 14+ messages in thread