[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#605756: linux-image-2.6.32-5-amd64: Can't burn CD-R media on 2.6.32-5, can burn CDRW. Both work if 2.6.26-2 booted



Package: linux-2.6
Version: 2.6.32-28
Severity: important

Under lenny with 2.6.26-2-amd64 I can write both CD-R and CD-RW media on the
Pioneer and Plextor drives on my system. Upgraded to squeeze and 2.6.32-5-amd64
and I can no longer write CD-R but I can write CD-RW. I can write CD-Rs with
2.6.26 and squeeze (but then I lose Xwindows).

Using the following script:
#
#
#

ISO=/var/isostaging/test-backup.iso
CDRDEV=/dev/cdrom
CDRWDEV=/dev/cdrom1

blocksize=`isoinfo -d -i $ISO | grep "^Logical block size is:" | cut -d " " -f
5 `
blockcount=`isoinfo -d -i $ISO | grep "^Volume size is:" | cut -d " " -f 4`
size=`stat --format=%s $ISO`

wodim dev=$CDRWDEV gracetime=2 -v blank=fast

wodim -v  dev=$CDRDEV gracetime=2 fs=4096k \
          driveropts=burnfree padsize=63s \
          -useinfo -dao -pad  -data $ISO

wodim -v  dev=$CDRWDEV gracetime=2 fs=4096k \
          driveropts=burnfree padsize=63s \
          -useinfo -dao -pad  -data $ISO

echo
echo '============================ TEST RESULTS ==========================='
echo
echo ISO image
echo
echo "dd if=${ISO} bs=${blocksize} count=${blockcount} conv=notrunc,noerror |
md
5sum"
dd if=$ISO bs=$blocksize count=$blockcount conv=notrunc,noerror | md5sum
echo
echo "dd if=${ISO} | head -c ${size} | md5sum"
dd if=$ISO | head -c $size | md5sum
echo
echo 'CR-R image ----------------------------------------------------------'
echo
echo "dd if=${CDRDEV} bs=${blocksize} count=${blockcount} conv=notrunc,noerror
|
 md5sum"
dd if=$CDRDEV bs=$blocksize count=$blockcount conv=notrunc,noerror | md5sum
echo
echo "dd if=${CDRDEV} | head -c ${size} | md5sum"
dd if=$CDRDEV | head -c $size | md5sum
echo
echo 'CR-RW image ---------------------------------------------------------'
echo
echo "dd if=${CDRWDEV} bs=${blocksize} count=${blockcount} conv=notrunc,noerror
| md5sum"
dd if=$CDRWDEV bs=$blocksize count=$blockcount conv=notrunc,noerror | md5sum
echo
echo "dd if=${CDRWDEV} | head -c ${size} | md5sum"
dd if=$CDRWDEV | head -c $size | md5sum
echo
echo
echo '====================================================================='

I've run a number of passes varying which drive has CD-R and CD-RW media as
well as booting each kernel in turn.

Running under 2.6.32-5 I get (in part)
...
scsidev: '/dev/cdrom'
devname: '/dev/cdrom'
scsibus: -2 target: -2 lun: -2
Linux sg driver version: 3.5.27
Wodim version: 1.1.11
SCSI buffer size: 64512
Beginning DMA speed test. Set CDR_NODMATEST environment variable if device
communication breaks or freezes immediately after that.
TOC Type: 1 = CD-ROM
Driveropts: 'burnfree'
Device type    : Removable CD-ROM
Version        : 5
Response Format: 2
Capabilities   :
Vendor_info    : 'PIONEER '
Identification : 'DVD-RW  DVR-112D'
Revision       : '1.21'
Device seems to be: Generic mmc2 DVD-R/DVD-RW.
...

============================ TEST RESULTS ===========================

ISO image

dd if=/var/isostaging/test-backup.iso bs=2048 count=11426 conv=notrunc,noerror
|
 md5sum
11426+0 records in
11426+0 records out
23400448 bytes (23 MB) copied, 0.131443 s, 178 MB/s
e67c214ceb0d24d4406ce3dac64c88d0  -

dd if=/var/isostaging/test-backup.iso | head -c 23400448 | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -
45704+0 records in
45704+0 records out
23400448 bytes (23 MB) copied, 0.0877442 s, 267 MB/s

CR-R image ----------------------------------------------------------

dd if=/dev/cdrom bs=2048 count=11426 conv=notrunc,noerror | md5sum
1+0 records in
1+0 records out
c99a74c555371a433d121f551d6c6398  -
2048 bytes (2.0 kB) copied, 0.289742 s, 7.1 kB/s

dd if=/dev/cdrom | head -c 23400448 | md5sum
4+0 records in
4+0 records out
c99a74c555371a433d121f551d6c6398  -
2048 bytes (2.0 kB) copied, 0.000845506 s, 2.4 MB/s

CR-RW image ---------------------------------------------------------

dd if=/dev/cdrom1 bs=2048 count=11426 conv=notrunc,noerror | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -
11426+0 records in
11426+0 records out
23400448 bytes (23 MB) copied, 20.3517 s, 1.1 MB/s

dd if=/dev/cdrom1 | head -c 23400448 | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -


=====================================================================


and under 2.6.26-2 I get (in part)

...
scsidev: '/dev/cdrom'
devname: '/dev/cdrom'
scsibus: -2 target: -2 lun: -2
Linux sg driver version: 3.5.27
Wodim version: 1.1.11
SCSI buffer size: 64512
Beginning DMA speed test. Set CDR_NODMATEST environment variable if device
communication breaks or freezes immediately after that.
TOC Type: 1 = CD-ROM
Driveropts: 'burnfree'
Device type    : Removable CD-ROM
Version        : 0
Response Format: 2
Capabilities   :
Vendor_info    : 'PIONEER '
Identification : 'DVD-RW  DVR-112D'
Revision       : '1.21'
Device seems to be: Generic mmc2 DVD-R/DVD-RW.
...
============================ TEST RESULTS ===========================

ISO image

dd if=/var/isostaging/test-backup.iso bs=2048 count=11426 conv=notrunc,noerror
|
 md5sum
11426+0 records in
11426+0 records out
23400448 bytes (23 MB) copied, 0.274579 s, 85.2 MB/s
e67c214ceb0d24d4406ce3dac64c88d0  -

dd if=/var/isostaging/test-backup.iso | head -c 23400448 | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -
45704+0 records in
45704+0 records out
23400448 bytes (23 MB) copied, 1.11008 s, 21.1 MB/s

CR-R image ----------------------------------------------------------

dd if=/dev/cdrom bs=2048 count=11426 conv=notrunc,noerror | md5sum
11426+0 records in
11426+0 records out
23400448 bytes (23 MB) copied, 28.4045 s, 824 kB/s
e67c214ceb0d24d4406ce3dac64c88d0  -

dd if=/dev/cdrom | head -c 23400448 | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -

CR-RW image ---------------------------------------------------------

dd if=/dev/cdrom1 bs=2048 count=11426 conv=notrunc,noerror | md5sum
11426+0 records in
11426+0 records out
23400448 bytes (23 MB) copied, 19.189 s, 1.2 MB/s
e67c214ceb0d24d4406ce3dac64c88d0  -

dd if=/dev/cdrom1 | head -c 23400448 | md5sum
e67c214ceb0d24d4406ce3dac64c88d0  -


=====================================================================



-- Package-specific info:
** Version:
Linux version 2.6.32-5-amd64 (Debian 2.6.32-28) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Thu Nov 25 18:02:11 UTC 2010

** Command line:
root=/dev/mapper/SystemVG-Root ro quiet 

** Tainted: P (1)
 * Proprietary module has been loaded.

** Kernel log:
[   15.270231] nvidia: module license 'NVIDIA' taints kernel.
[   15.270235] Disabling lock debugging due to kernel taint
[   15.632005] input: PC Speaker as /devices/platform/pcspkr/input/input5
[   15.646774] parport_pc 00:05: reported by Plug and Play ACPI
[   15.646819] parport0: PC-style at 0x378, irq 7 [PCSPP]
[   15.650465] EDAC amd64_edac:  Ver: 3.2.0 Nov 25 2010
[   15.874145] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
[   15.874659] ACPI: PCI Interrupt Link [LE3B] enabled at IRQ 41
[   15.874665]   alloc irq_desc for 41 on node 0
[   15.874667]   alloc kstat_irqs on node 0
[   15.874676] nvidia 0000:23:00.0: PCI INT A -> Link[LE3B] -> GSI 41 (level, low) -> IRQ 41
[   15.874685] nvidia 0000:23:00.0: setting latency timer to 64
[   15.874690] vgaarb: device changed decodes: PCI:0000:23:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   15.875087] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  195.36.31  Thu Jun  3 08:19:50 PDT 2010
[   15.880024] EDAC amd64: ECC is enabled by BIOS.
[   15.880050] EDAC MC: Rev F or later detected
[   15.880123] EDAC MC0: Giving out device to 'amd64_edac' 'RevF': DEV 0000:00:18.2
[   15.880146] EDAC PCI0: Giving out device to module 'amd64_edac' controller 'EDAC PCI controller': DEV '0000:00:18.2' (POLLED)
[   15.894426] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
[   15.894432] HDA Intel 0000:00:06.1: PCI INT B -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21
[   15.894436] hda_intel: Disable MSI for Nvidia chipset
[   15.894485] HDA Intel 0000:00:06.1: setting latency timer to 64
[   16.409647] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:06.1/input/input6
[   16.920517] loop: module loaded
[   17.971945] Adding 16777208k swap on /dev/mapper/SystemVG-Swap.  Priority:-1 extents:1 across:16777208k 
[   18.811952] REISERFS (device md1): found reiserfs format "3.6" with standard journal
[   18.811992] REISERFS (device md1): using ordered data mode
[   18.820501] REISERFS (device md1): journal params: device md1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   18.821467] REISERFS (device md1): checking transaction log (md1)
[   18.858758] REISERFS (device md1): Using r5 hash to sort names
[   18.862851] REISERFS (device dm-8): found reiserfs format "3.6" with standard journal
[   18.862885] REISERFS (device dm-8): using ordered data mode
[   18.870836] REISERFS (device dm-8): journal params: device dm-8, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   18.871753] REISERFS (device dm-8): checking transaction log (dm-8)
[   18.901139] REISERFS (device dm-8): Using r5 hash to sort names
[   18.909308] REISERFS (device dm-9): found reiserfs format "3.6" with standard journal
[   18.909348] REISERFS (device dm-9): using ordered data mode
[   18.915599] REISERFS (device dm-9): journal params: device dm-9, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   18.916701] REISERFS (device dm-9): checking transaction log (dm-9)
[   18.943625] REISERFS (device dm-9): Using r5 hash to sort names
[   18.962853] REISERFS (device dm-10): found reiserfs format "3.6" with standard journal
[   18.962896] REISERFS (device dm-10): using ordered data mode
[   18.968327] REISERFS (device dm-10): journal params: device dm-10, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   18.969374] REISERFS (device dm-10): checking transaction log (dm-10)
[   18.999651] REISERFS (device dm-10): Using r5 hash to sort names
[   19.035253] REISERFS (device dm-2): found reiserfs format "3.6" with standard journal
[   19.035296] REISERFS (device dm-2): using ordered data mode
[   19.039505] REISERFS (device dm-2): journal params: device dm-2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   19.040563] REISERFS (device dm-2): checking transaction log (dm-2)
[   19.073439] REISERFS (device dm-2): Using r5 hash to sort names
[   19.155048] kjournald starting.  Commit interval 5 seconds
[   19.155349] EXT3 FS on dm-3, internal journal
[   19.155353] EXT3-fs: mounted filesystem with ordered data mode.
[   19.156090] REISERFS (device dm-4): found reiserfs format "3.6" with standard journal
[   19.156128] REISERFS (device dm-4): using ordered data mode
[   19.162670] REISERFS (device dm-4): journal params: device dm-4, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   19.163647] REISERFS (device dm-4): checking transaction log (dm-4)
[   19.178956] REISERFS (device dm-4): Using r5 hash to sort names
[   19.193406] kjournald starting.  Commit interval 5 seconds
[   19.193682] EXT3 FS on dm-5, internal journal
[   19.193687] EXT3-fs: mounted filesystem with ordered data mode.
[   19.195181] kjournald starting.  Commit interval 5 seconds
[   19.200290] EXT3 FS on dm-6, internal journal
[   19.200293] EXT3-fs: mounted filesystem with ordered data mode.
[   19.217469] kjournald starting.  Commit interval 5 seconds
[   19.220693] EXT3 FS on dm-7, internal journal
[   19.220695] EXT3-fs: mounted filesystem with ordered data mode.
[   19.232420] REISERFS (device dm-11): found reiserfs format "3.6" with standard journal
[   19.232466] REISERFS (device dm-11): using ordered data mode
[   19.235993] REISERFS (device dm-11): journal params: device dm-11, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   19.237018] REISERFS (device dm-11): checking transaction log (dm-11)
[   19.274018] REISERFS (device dm-11): Using r5 hash to sort names
[   19.289870] REISERFS (device dm-12): found reiserfs format "3.6" with standard journal
[   19.289921] REISERFS (device dm-12): using ordered data mode
[   19.293249] REISERFS (device dm-12): journal params: device dm-12, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   19.294190] REISERFS (device dm-12): checking transaction log (dm-12)
[   19.380070] REISERFS (device dm-12): Using r5 hash to sort names
[   20.285995]   alloc irq_desc for 52 on node 0
[   20.285998]   alloc kstat_irqs on node 0
[   20.286012] tg3 0000:21:00.0: irq 52 for MSI/MSI-X
[   20.318978] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   20.632628] fuse init (API version 7.13)
[   21.882477] tg3: eth0: Link is up at 100 Mbps, full duplex.
[   21.882481] tg3: eth0: Flow control is on for TX and on for RX.
[   21.883533] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.198812] lp0: using parport0 (interrupt-driven).
[   26.230241] ppdev: user-space parallel port driver
[   28.397910] powernow-k8: Found 1 Dual-Core AMD Opteron(tm) Processor 2218 processors (2 cpu cores) (version 2.20.00)
[   28.397963] powernow-k8:    0 : fid 0x12 (2600 MHz), vid 0xa
[   28.397965] powernow-k8:    1 : fid 0x10 (2400 MHz), vid 0xc
[   28.397967] powernow-k8:    2 : fid 0xe (2200 MHz), vid 0xe
[   28.397968] powernow-k8:    3 : fid 0xc (2000 MHz), vid 0x10
[   28.397970] powernow-k8:    4 : fid 0xa (1800 MHz), vid 0x10
[   28.397972] powernow-k8:    5 : fid 0x2 (1000 MHz), vid 0x12
[   29.004284] Clocksource tsc unstable (delta = -305385484 ns)
[   32.184284] eth0: no IPv6 routers present
[  305.775937] lo: Disabled Privacy Extensions
[27693.071884] lo: Disabled Privacy Extensions
[65917.276717] svnadmin[14390]: segfault at f0743b6 ip 00007fa667c44e90 sp 00007fffed20c5c0 error 4 in libdb-4.8.so[7fa667be9000+176000]
[79989.878379] lo: Disabled Privacy Extensions

** Model information
sys_vendor: ASUSTek Computer INC.
product_name: KFN32-D SLI/SAS
product_version: Rev 1.xx
chassis_vendor: ASUSTek Computer INC.
chassis_version: Rev 1.xx
bios_vendor: American Megatrends Inc.
bios_version: 0316   
board_vendor: ASUSTeK Computer INC.
board_name: KFN32-D SLI/SAS
board_version: Rev 1.xx

** Loaded modules:
Module                  Size  Used by
tcp_diag                 880  0 
inet_diag               6882  1 tcp_diag
powernow_k8            10978  1 
cpufreq_powersave        902  0 
cpufreq_stats           2659  0 
cpufreq_userspace       1992  0 
cpufreq_conservative     5162  0 
ppdev                   5030  0 
lp                      7462  0 
binfmt_misc             6431  1 
fuse                   50273  1 
ext3                  106518  4 
jbd                    37085  1 ext3
mbcache                 5050  1 ext3
w83792d                18652  0 
loop                   11799  0 
firewire_sbp2          11514  0 
snd_hda_codec_realtek   235538  1 
snd_hda_intel          19987  1 
snd_hda_codec          54244  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep               5380  1 snd_hda_codec
snd_pcm_oss            32591  0 
snd_mixer_oss          12606  1 snd_pcm_oss
snd_pcm                60503  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_seq_midi            4400  0 
snd_rawmidi            15515  1 snd_seq_midi
snd_seq_midi_event      4628  1 snd_seq_midi
snd_seq                42881  2 snd_seq_midi,snd_seq_midi_event
snd_timer              15582  2 snd_pcm,snd_seq
snd_seq_device          4493  3 snd_seq_midi,snd_rawmidi,snd_seq
amd64_edac_mod         13646  0 
parport_pc             18855  1 
snd                    46446  13 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
pcspkr                  1699  0 
evdev                   7352  11 
k8temp                  3283  0 
parport                27954  3 ppdev,lp,parport_pc
nvidia              10670090  28 
i2c_nforce2             5280  0 
shpchp                 26264  0 
edac_core              29261  3 amd64_edac_mod
soundcore               4598  1 snd
edac_mce_amd            6433  1 amd64_edac_mod
i2c_core               15712  3 w83792d,nvidia,i2c_nforce2
pci_hotplug            21203  1 shpchp
snd_page_alloc          6249  2 snd_hda_intel,snd_pcm
button                  4650  0 
processor              29935  1 powernow_k8
reiserfs              194156  9 
dm_mod                 53770  42 
raid1                  18415  3 
md_mod                 73808  4 raid1
sg                     18744  0 
firewire_ohci          19468  0 
sr_mod                 12602  0 
cdrom                  29415  1 sr_mod
ohci_hcd               19212  0 
usbhid                 33292  0 
mptsas                 29188  6 
mptscsih               16328  1 mptsas
firewire_core          36800  2 firewire_sbp2,firewire_ohci
mptbase                48366  2 mptsas,mptscsih
sd_mod                 29889  10 
hid                    63145  1 usbhid
crc_t10dif              1276  1 sd_mod
thermal                11674  0 
ata_generic             3015  0 
scsi_transport_sas     19865  1 mptsas
floppy                 49087  0 
tg3                    95663  0 
crc_itu_t               1307  1 firewire_core
libphy                 14054  1 tg3
ehci_hcd               31135  0 
pata_amd                9869  0 
sata_nv                19166  4 
libata                133616  3 ata_generic,pata_amd,sata_nv
thermal_sys            11942  2 processor,thermal
usbcore               122034  4 ohci_hcd,usbhid,ehci_hcd
nls_base                6377  1 usbcore
scsi_mod              122149  8 firewire_sbp2,sg,sr_mod,mptsas,mptscsih,sd_mod,scsi_transport_sas,libata

** Network interface configuration:

auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet static
  address 192.168.0.11
  netmask 255.255.255.0
  gateway 192.168.0.1


** Network status:
*** Device statistics:
Inter-|   Receive                                                |  Transmit
 face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
    lo:779878793  548411    0    0    0     0          0         0 779878793  548411    0    0    0     0       0          0
  eth0:120819363  220181    0    0    0     0          0       831 60541811  222015    0    0    0     0       0          0
  eth1:       0       0    0    0    0     0          0         0        0       0    0    0    0     0       0          0

*** Protocol statistics:
Ip:
    761313 total packets received
    3 with invalid headers
    0 forwarded
    0 incoming packets discarded
    761310 incoming packets delivered
    754684 requests sent out
Icmp:
    9059 ICMP messages received
    352 input ICMP message failed.
    ICMP input histogram:
        destination unreachable: 5173
        timeout in transit: 36
        echo requests: 4
        echo replies: 3846
    12792 ICMP messages sent
    0 ICMP messages failed
    ICMP output histogram:
        destination unreachable: 5172
        echo request: 7575
        echo replies: 4
IcmpMsg:
        InType0: 3846
        InType3: 5173
        InType8: 4
        InType11: 36
        OutType0: 4
        OutType3: 5172
        OutType8: 7575
        OutType69: 41
Tcp:
    14424 active connections openings
    2421 passive connection openings
    193 failed connection attempts
    208 connection resets received
    7 connections established
    584503 segments received
    571511 segments send out
    4317 segments retransmited
    0 bad segments received.
    1936 resets sent
Udp:
    165439 packets received
    241 packets to unknown port received.
    0 packet receive errors
    165543 packets sent
UdpLite:
TcpExt:
    3 resets received for embryonic SYN_RECV sockets
    4200 TCP sockets finished time wait in fast timer
    4 time wait sockets recycled by time stamp
    35100 delayed acks sent
    15 delayed acks further delayed because of locked socket
    Quick ack mode was activated 164 times
    175854 packets directly queued to recvmsg prequeue.
    11135508 bytes directly in process context from backlog
    16839992 bytes directly received in process context from prequeue
    198860 packet headers predicted
    93771 packets header predicted and directly queued to user
    55657 acknowledgments not containing data payload received
    201054 predicted acknowledgments
    89 times recovered from packet loss by selective acknowledgements
    1 congestion windows recovered without slow start by DSACK
    137 congestion windows recovered without slow start after partial ack
    401 TCP data loss events
    TCPLostRetransmit: 1
    46 timeouts after SACK recovery
    2 timeouts in loss state
    150 fast retransmits
    2 forward retransmits
    1795 retransmits in slow start
    1036 other TCP timeouts
    9 SACK retransmits failed
    1 times receiver scheduled too late for direct processing
    154 DSACKs sent for old packets
    25 DSACKs received
    1604 connections reset due to unexpected data
    117 connections reset due to early user close
    10 connections aborted due to timeout
    TCPDSACKIgnoredOld: 19
    TCPDSACKIgnoredNoUndo: 4
    TCPSackShifted: 154
    TCPSackMerged: 583
    TCPSackShiftFallback: 547
IpExt:
    InMcastPkts: 1392
    OutMcastPkts: 563
    InBcastPkts: 1905
    OutBcastPkts: 301
    InOctets: 896446781
    OutOctets: 835673024
    InMcastOctets: 54343
    OutMcastOctets: 20211
    InBcastOctets: 1813991
    OutBcastOctets: 67860

*** Device features:
eth0: 0x1109b3
eth1: 0x1109b3
lo: 0x13865

** PCI devices:
00:00.0 RAM memory [0500]: nVidia Corporation MCP55 Memory Controller [10de:0369] (rev a2)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>

00:01.0 ISA bridge [0601]: nVidia Corporation MCP55 LPC Bridge [10de:0364] (rev a3)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Region 0: I/O ports at 2f00 [size=128]

00:01.1 SMBus [0c05]: nVidia Corporation MCP55 SMBus [10de:0368] (rev a3)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 10
	Region 0: I/O ports at 2900 [size=64]
	Region 4: I/O ports at 2a00 [size=64]
	Region 5: I/O ports at 2a80 [size=64]
	Capabilities: <access denied>
	Kernel driver in use: nForce2_smbus

00:02.0 USB Controller [0c03]: nVidia Corporation MCP55 USB Controller [10de:036c] (rev a1) (prog-if 10 [OHCI])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Interrupt: pin A routed to IRQ 22
	Region 0: Memory at efcbf000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: ohci_hcd

00:02.1 USB Controller [0c03]: nVidia Corporation MCP55 USB Controller [10de:036d] (rev a2) (prog-if 20 [EHCI])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Interrupt: pin B routed to IRQ 23
	Region 0: Memory at efcbec00 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>
	Kernel driver in use: ehci_hcd

00:04.0 IDE interface [0101]: nVidia Corporation MCP55 IDE [10de:036e] (rev a1) (prog-if 8a [Master SecP PriP])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8]
	Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) [size=1]
	Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8]
	Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) [size=1]
	Region 4: I/O ports at ffa0 [size=16]
	Capabilities: <access denied>
	Kernel driver in use: pata_amd

00:05.0 IDE interface [0101]: nVidia Corporation MCP55 SATA Controller [10de:037f] (rev a3) (prog-if 85 [Master SecO PriO])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Interrupt: pin A routed to IRQ 23
	Region 0: I/O ports at b480 [size=8]
	Region 1: I/O ports at b400 [size=4]
	Region 2: I/O ports at b080 [size=8]
	Region 3: I/O ports at b000 [size=4]
	Region 4: I/O ports at ac00 [size=16]
	Region 5: Memory at efcbd000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: sata_nv

00:05.1 IDE interface [0101]: nVidia Corporation MCP55 SATA Controller [10de:037f] (rev a3) (prog-if 85 [Master SecO PriO])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Interrupt: pin B routed to IRQ 22
	Region 0: I/O ports at a880 [size=8]
	Region 1: I/O ports at a800 [size=4]
	Region 2: I/O ports at a480 [size=8]
	Region 3: I/O ports at a400 [size=4]
	Region 4: I/O ports at a080 [size=16]
	Region 5: Memory at efcbc000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: sata_nv

00:05.2 IDE interface [0101]: nVidia Corporation MCP55 SATA Controller [10de:037f] (rev a3) (prog-if 85 [Master SecO PriO])
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (750ns min, 250ns max)
	Interrupt: pin C routed to IRQ 21
	Region 0: I/O ports at a000 [size=8]
	Region 1: I/O ports at 9c00 [size=4]
	Region 2: I/O ports at 9880 [size=8]
	Region 3: I/O ports at 9800 [size=4]
	Region 4: I/O ports at 9480 [size=16]
	Region 5: Memory at efcb3000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: sata_nv

00:06.0 PCI bridge [0604]: nVidia Corporation MCP55 PCI bridge [10de:0370] (rev a2) (prog-if 01 [Subtractive decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
	Memory behind bridge: efd00000-efdfffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr+ DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

00:06.1 Audio device [0403]: nVidia Corporation MCP55 High Definition Audio [10de:0371] (rev a2)
	Subsystem: ASUSTeK Computer Inc. Device [1043:8210]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0 (500ns min, 1250ns max)
	Interrupt: pin B routed to IRQ 21
	Region 0: Memory at efca8000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: HDA Intel

00:0a.0 PCI bridge [0604]: nVidia Corporation MCP55 PCI Express bridge [10de:0376] (rev a3) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=02, subordinate=03, sec-latency=0
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: efe00000-efffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration [1022:1100]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>

00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map [1022:1101]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller [1022:1102]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: amd64_edac

00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control [1022:1103]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: <access denied>
	Kernel driver in use: k8temp

01:08.0 FireWire (IEEE 1394) [0c00]: Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) [104c:8023] (prog-if 10 [OHCI])
	Subsystem: ASUSTeK Computer Inc. P5W DH Deluxe Motherboard [1043:815b]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64 (500ns min, 1000ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at efdff800 (32-bit, non-prefetchable) [size=2K]
	Region 1: Memory at efdf8000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: firewire_ohci

02:00.0 PCI bridge [0604]: Intel Corporation 6702PXH PCI Express-to-PCI Bridge A [8086:032c] (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=02, secondary=03, subordinate=03, sec-latency=64
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: efe00000-efffffff
	Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>

03:06.0 SCSI storage controller [0100]: LSI Logic / Symbios Logic SAS1068 PCI-X Fusion-MPT SAS [1000:0054] (rev 01)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81dd]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 72 (16000ns min, 2500ns max), Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: I/O ports at c800 [disabled] [size=256]
	Region 1: Memory at efffc000 (64-bit, non-prefetchable) [size=16K]
	Region 3: Memory at effe0000 (64-bit, non-prefetchable) [size=64K]
	Expansion ROM at efe00000 [disabled] [size=1M]
	Capabilities: <access denied>
	Kernel driver in use: mptsas

20:00.0 RAM memory [0500]: nVidia Corporation MCP55 Memory Controller [10de:0369] (rev a2)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>

20:01.0 RAM memory [0500]: nVidia Corporation MCP55 LPC Bridge [10de:0361] (rev a3)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Region 0: I/O ports at 4c00 [size=128]
	Region 1: Memory at ebcff000 (32-bit, non-prefetchable) [size=4K]

20:01.1 SMBus [0c05]: nVidia Corporation MCP55 SMBus [10de:0368] (rev a3)
	Subsystem: ASUSTeK Computer Inc. Device [1043:81f0]
	Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 5
	Region 0: I/O ports at 4900 [size=64]
	Region 4: I/O ports at d800 [size=64]
	Region 5: I/O ports at d480 [size=64]
	Capabilities: <access denied>
	Kernel driver in use: nForce2_smbus

20:0d.0 PCI bridge [0604]: nVidia Corporation MCP55 PCI Express bridge [10de:0378] (rev a3) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=21, subordinate=21, sec-latency=0
	Memory behind bridge: ebd00000-ebdfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

20:0e.0 PCI bridge [0604]: nVidia Corporation MCP55 PCI Express bridge [10de:0375] (rev a3) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=22, subordinate=22, sec-latency=0
	Memory behind bridge: ebe00000-ebefffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

20:0f.0 PCI bridge [0604]: nVidia Corporation MCP55 PCI Express bridge [10de:0377] (rev a3) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=23, subordinate=23, sec-latency=0
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: ebf00000-eeffffff
	Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

21:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme BCM5754 Gigabit Ethernet PCI Express [14e4:167a] (rev 02)
	Subsystem: ASUSTeK Computer Inc. Device [1043:8209]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 52
	Region 0: Memory at ebdf0000 (64-bit, non-prefetchable) [size=64K]
	Expansion ROM at <ignored> [disabled]
	Capabilities: <access denied>
	Kernel driver in use: tg3

22:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme BCM5754 Gigabit Ethernet PCI Express [14e4:167a] (rev 02)
	Subsystem: ASUSTeK Computer Inc. Device [1043:8209]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 42
	Region 0: Memory at ebef0000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: tg3

23:00.0 VGA compatible controller [0300]: nVidia Corporation G84 [GeForce 8600 GTS] [10de:0400] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: eVga.com. Corp. Device [3842:c761]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 41
	Region 0: Memory at ee000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at d0000000 (64-bit, prefetchable) [size=256M]
	Region 3: Memory at ec000000 (64-bit, non-prefetchable) [size=32M]
	Region 5: I/O ports at ec00 [size=128]
	[virtual] Expansion ROM at ebfe0000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: nvidia


** USB devices:
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 004: ID 1781:0a98 Multiple Vendors 
Bus 001 Device 003: ID 1a7c:0068  
Bus 001 Device 002: ID 05e3:0660 Genesys Logic, Inc. USB 2.0 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.32-5-amd64 depends on:
ii  debconf [debconf-2.0]         1.5.36     Debian configuration management sy
ii  initramfs-tools [linux-initra 0.98.5     tools for generating an initramfs
ii  linux-base                    2.6.32-28  Linux image base package
ii  module-init-tools             3.12-1     tools for managing Linux kernel mo

Versions of packages linux-image-2.6.32-5-amd64 recommends:
ii  firmware-linux-free           2.6.32-28  Binary firmware for various driver

Versions of packages linux-image-2.6.32-5-amd64 suggests:
ii  grub                          0.97-63    GRand Unified Bootloader (dummy pa
pn  linux-doc-2.6.32              <none>     (no description available)

Versions of packages linux-image-2.6.32-5-amd64 is related to:
pn  firmware-bnx2                 <none>     (no description available)
pn  firmware-bnx2x                <none>     (no description available)
pn  firmware-ipw2x00              <none>     (no description available)
pn  firmware-ivtv                 <none>     (no description available)
pn  firmware-iwlwifi              <none>     (no description available)
pn  firmware-linux                <none>     (no description available)
ii  firmware-linux-nonfree        0.27       Binary firmware for various driver
pn  firmware-qlogic               <none>     (no description available)
pn  firmware-ralink               <none>     (no description available)
pn  xen-hypervisor                <none>     (no description available)

-- debconf information:
* linux-image-2.6.32-5-amd64/postinst/missing-firmware-2.6.32-5-amd64:
  linux-image-2.6.32-5-amd64/postinst/ignoring-do-bootloader-2.6.32-5-amd64:
  linux-image-2.6.32-5-amd64/postinst/depmod-error-initrd-2.6.32-5-amd64: false
  linux-image-2.6.32-5-amd64/prerm/removing-running-kernel-2.6.32-5-amd64: true



Reply to: