Results 1 to 10 of 12
Hey guys,
I've installed BT4 onto my laptop as we are going to be using it a lot this year at University. Problem is I cannot set up the Wifi. ...
- 02-23-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
Backtrack 4, Setting Up Wifi On Dell Insperon 1545
Hey guys,
I've installed BT4 onto my laptop as we are going to be using it a lot this year at University. Problem is I cannot set up the Wifi. If I load up wicd all I see is the wired connection. I've followed a few tutorials on the net but to no avail.
Any help on setting it up?
- 02-23-2010 #2Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
lspci -knn is showing the wirless device as Broadcom Corporation BCM4312. Kernel driver in use is b43-pci-bridge and Kernel modules: wl
If any of that helps.
- 02-23-2010 #3
Hello. Please also post the output of
Code:lsmod iwconfig
- 02-23-2010 #4Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
Code:Module Size Used by i915 172552 2 drm 142208 3 i915 sbs 10940 0 sbshc 4500 1 sbs acpi_cpufreq 7808 0 cpufreq_powersave 1268 0 cpufreq_conservative 7048 0 cpufreq_stats 4728 0 cpufreq_performance 1300 0 cpufreq_ondemand 7080 1 freq_table 3476 3 acpi_cpufreq,cpufreq_stats,cpufreq_ondemand iptable_filter 2324 0 ip_tables 10916 1 iptable_filter x_tables 13592 1 ip_tables parport_pc 24292 0 lp 9412 0 parport 30572 2 parport_pc,lp joydev 9728 0 snd_hda_codec_idt 55764 1 snd_hda_intel 24712 3 snd_hda_codec 57204 2 snd_hda_codec_idt,snd_hda_intel snd_hwdep 6776 1 snd_hda_codec snd_pcm_oss 37728 0 snd_mixer_oss 14324 1 snd_pcm_oss psmouse 41732 0 serio_raw 5016 0 snd_pcm 67704 4 snd_hda_intel,snd_hda_codec,snd_pcm_oss iTCO_wdt 10584 0 iTCO_vendor_support 2840 1 iTCO_wdt b43 121040 0 snd_seq_dummy 2424 0 mac80211 204728 1 b43 cfg80211 61268 2 b43,mac80211 led_class 3608 1 b43 input_polldev 3132 1 b43 video 18024 1 i915 output 2388 1 video rtc_cmos 10156 0 rtc_core 15792 1 rtc_cmos rtc_lib 2388 1 rtc_core snd_seq_oss 27328 0 snd_seq_midi 5952 0 snd_rawmidi 19488 1 snd_seq_midi wl 1275008 0 lib80211 5176 1 wl wmi 5960 0 snd_seq_midi_event 5972 2 snd_seq_oss,snd_seq_midi snd_seq 47568 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event snd_timer 19068 3 snd_pcm,snd_seq snd_seq_device 6048 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq snd 50468 16 snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device soundcore 5856 1 snd snd_page_alloc 7836 2 snd_hda_intel,snd_pcm shpchp 31560 0 intel_agp 26108 1 agpgart 29356 3 drm,intel_agp dell_laptop 3380 0 rfkill 9328 3 b43,dell_laptop evdev 9120 13 dcdbas 7092 1 dell_laptop sg 25064 0 pata_acpi 3892 0 ata_generic 4536 0 sky2 45464 0 fuse 53104 1 root@bt:~# iwconfig lo no wireless extensions. eth0 no wireless extensions. root@bt:~#
- 02-23-2010 #5
You have both the b43 driver and the wl driver loading, which is likely why it isn't working. The wl driver should be correct, so remove and blacklist the b43 driver.
As root
Check the output of iwconfig again and see if there is a wireless interface listed. It's a little odd that it isn't listed now; if I recall having both drivers usually still show an interface detected, but it doesn't work, so there might be something else going on.Code:modprobe -r b43 modprobe -r wl modprobe wl echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
- 02-23-2010 #6Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
- 02-23-2010 #7b43 is the open source driver for some broadcom cards. The bcm4312 is only now supported with this driver under the 2.6.32 kernel. This driver also requires extra non-free firmware to work.I think the b43 driver was the kernel driver and wl is the kernel module.
Prior to that, you need the non-free wl driver, released by Broadcom.
The following cards at least are supported by this driver.
Please post the full description of your card as given by lspci -vnn.Code:14e4:432b "Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller" 14e4:4329 "Broadcom Corporation BCM43XG" 14e4:4328 "Broadcom Corporation BCM4328 802.11a/b/g/n" 14e4:4315 "Broadcom Corporation BCM4312 802.11b/g" 14e4:4313 "Broadcom Corporation BCM4310 Ethernet Controller" 14e4:4312 "Broadcom Corporation BCM4312 802.11a/b/g" 14e4:4311 "Broadcom Corporation BCM4311 802.11b/g WLAN" 14e4:432d 14e4:432c 14e4:432a
Also the output of
It's long so please use code tags.Code:dmesg
- 02-23-2010 #8
Oh, also, how did you install the wl driver? To my knowledge, no distro is able to ship it out of the box.
- 02-23-2010 #9Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
- 02-23-2010 #10Just Joined!
- Join Date
- Feb 2010
- Posts
- 7
Code:root@bt:~# lspci -vnn 00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub [8086:2a40] (rev 07) Subsystem: Dell Device [1028:02aa] Flags: bus master, fast devsel, latency 0 Capabilities: [e0] Vendor Specific Information <?> Kernel driver in use: agpgart-intel Kernel modules: intel-agp 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a42] (rev 07) Subsystem: Dell Device [1028:02aa] Flags: bus master, fast devsel, latency 0, IRQ 29 Memory at f6c00000 (64-bit, non-prefetchable) [size=4M] Memory at e0000000 (64-bit, prefetchable) [size=256M] I/O ports at efe8 [size=8] Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Capabilities: [d0] Power Management version 3 00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller [8086:2a43] (rev 07) Subsystem: Dell Device [1028:02aa] Flags: bus master, fast devsel, latency 0 Memory at f6b00000 (64-bit, non-prefetchable) [size=1M] Capabilities: [d0] Power Management version 3 00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 [8086:2937] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 20 I/O ports at 6f60 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 [8086:2938] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 21 I/O ports at 6f80 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1a.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 [8086:2939] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 22 I/O ports at 6fa0 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 [8086:293c] (rev 03) (prog-if 20) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 22 Memory at fed1c400 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCIe advanced features <?> Kernel driver in use: ehci_hcd 00:1b.0 Audio device [0403]: Intel Corporation 82801I (ICH9 Family) HD Audio Controller [8086:293e] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, fast devsel, latency 0, IRQ 21 Memory at f6afc000 (64-bit, non-prefetchable) [size=16K] Capabilities: [50] Power Management version 2 Capabilities: [60] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable- Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00 Capabilities: [100] Virtual Channel <?> Capabilities: [130] Root Complex Link <?> Kernel driver in use: HDA Intel Kernel modules: snd-hda-intel 00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 [8086:2940] (rev 03) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=0b, subordinate=0b, sec-latency=0 Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Capabilities: [90] Subsystem: Dell Device [1028:02aa] Capabilities: [a0] Power Management version 2 Capabilities: [100] Virtual Channel <?> Capabilities: [180] Root Complex Link <?> Kernel driver in use: pcieport-driver Kernel modules: shpchp 00:1c.1 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 [8086:2942] (rev 03) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=0c, subordinate=0c, sec-latency=0 Memory behind bridge: f6900000-f69fffff Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Capabilities: [90] Subsystem: Dell Device [1028:02aa] Capabilities: [a0] Power Management version 2 Capabilities: [100] Virtual Channel <?> Capabilities: [180] Root Complex Link <?> Kernel driver in use: pcieport-driver Kernel modules: shpchp 00:1c.2 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 [8086:2944] (rev 03) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=09, subordinate=09, sec-latency=0 I/O behind bridge: 0000d000-0000dfff Memory behind bridge: f6800000-f68fffff Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Capabilities: [90] Subsystem: Dell Device [1028:02aa] Capabilities: [a0] Power Management version 2 Capabilities: [100] Virtual Channel <?> Capabilities: [180] Root Complex Link <?> Kernel driver in use: pcieport-driver Kernel modules: shpchp 00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 [8086:2948] (rev 03) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=0d, subordinate=0e, sec-latency=0 I/O behind bridge: 0000c000-0000cfff Memory behind bridge: f6600000-f67fffff Prefetchable memory behind bridge: 00000000f0000000-00000000f01fffff Capabilities: [40] Express Root Port (Slot+), MSI 00 Capabilities: [80] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable+ Capabilities: [90] Subsystem: Dell Device [1028:02aa] Capabilities: [a0] Power Management version 2 Capabilities: [100] Virtual Channel <?> Capabilities: [180] Root Complex Link <?> Kernel driver in use: pcieport-driver Kernel modules: shpchp 00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 [8086:2934] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 20 I/O ports at 6f00 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 [8086:2935] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 21 I/O ports at 6f20 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 [8086:2936] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 22 I/O ports at 6f40 [size=32] Capabilities: [50] PCIe advanced features <?> Kernel driver in use: uhci_hcd 00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 [8086:293a] (rev 03) (prog-if 20) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0, IRQ 20 Memory at fed1c000 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCIe advanced features <?> Kernel driver in use: ehci_hcd 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev 93) (prog-if 01) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=03, subordinate=03, sec-latency=32 Capabilities: [50] Subsystem: Dell Device [1028:02aa] 00:1f.0 ISA bridge [0601]: Intel Corporation ICH9M LPC Interface Controller [8086:2919] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: bus master, medium devsel, latency 0 Capabilities: [e0] Vendor Specific Information <?> Kernel modules: iTCO_wdt 00:1f.2 IDE interface [0101]: Intel Corporation ICH9M/M-E 2 port SATA IDE Controller [8086:2928] (rev 03) (prog-if 8f [Master SecP SecO PriP PriO]) Subsystem: Dell Device [1028:02aa] Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 18 I/O ports at 6e70 [size=8] I/O ports at 6e78 [size=4] I/O ports at 6e80 [size=8] I/O ports at 6e88 [size=4] I/O ports at 6ea0 [size=16] I/O ports at 6e90 [size=16] Capabilities: [70] Power Management version 3 Capabilities: [b0] PCIe advanced features <?> Kernel driver in use: ata_piix 00:1f.3 SMBus [0c05]: Intel Corporation 82801I (ICH9 Family) SMBus Controller [8086:2930] (rev 03) Subsystem: Dell Device [1028:02aa] Flags: medium devsel, IRQ 4 Memory at f6afbf00 (64-bit, non-prefetchable) [size=256] I/O ports at 1100 [size=32] Kernel modules: i2c-i801 00:1f.5 IDE interface [0101]: Intel Corporation ICH9M/M-E 2 port SATA IDE Controller [8086:292d] (rev 03) (prog-if 85 [Master SecO PriO]) Subsystem: Dell Device [1028:02aa] Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 18 I/O ports at 6eb0 [size=8] I/O ports at 6eb8 [size=4] I/O ports at 6ec0 [size=8] I/O ports at 6ec8 [size=4] I/O ports at 6ee0 [size=16] I/O ports at eff0 [size=16] Capabilities: [70] Power Management version 3 Capabilities: [b0] PCIe advanced features <?> Kernel driver in use: ata_piix 09:00.0 Ethernet controller [0200]: Marvell Technology Group Ltd. 88E8040 PCI-E Fast Ethernet Controller [11ab:4354] (rev 13) Subsystem: Dell Device [1028:02aa] Flags: bus master, fast devsel, latency 0, IRQ 28 Memory at f68fc000 (64-bit, non-prefetchable) [size=16K] I/O ports at de00 [size=256] Capabilities: [48] Power Management version 3 Capabilities: [5c] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable+ Capabilities: [c0] Express Legacy Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting <?> Capabilities: [130] Device Serial Number 00-23-ae-ff-ff-40-24-fd Kernel driver in use: sky2 Kernel modules: sky2 0c:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g [14e4:4315] (rev 01) Subsystem: Dell Device [1028:000c] Flags: bus master, fast devsel, latency 0, IRQ 17 Memory at f69fc000 (64-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [58] Vendor Specific Information <?> Capabilities: [e8] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable- Capabilities: [d0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting <?> Capabilities: [13c] Virtual Channel <?> Capabilities: [160] Device Serial Number 22-00-af-ff-ff-5f-d9-33 Capabilities: [16c] Power Budgeting <?> Kernel driver in use: b43-pci-bridge Kernel modules: wlCode:root@bt:~# dmesg Linux version 2.6.30.9 (root@dev) (gcc version 4.3.2 (Ubuntu 4.3.2-1ubuntu12) ) #1 SMP Tue Dec 1 21:51:08 EST 2009 KERNEL supported cpus: Intel GenuineIntel AMD AuthenticAMD NSC Geode by NSC Cyrix CyrixInstead Centaur CentaurHauls Transmeta GenuineTMx86 Transmeta TransmetaCPU UMC UMC UMC UMC BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009f000 (usable) BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved) BIOS-e820: 0000000000100000 - 00000000bdabf400 (usable) BIOS-e820: 00000000bdabf400 - 00000000bdac1400 (ACPI NVS) BIOS-e820: 00000000bdac1400 - 00000000c0000000 (reserved) BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved) BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved) BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved) BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved) BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved) BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) DMI 2.4 present. last_pfn = 0xbdabf max_arch_pfn = 0x100000 MTRR default type: uncachable MTRR fixed ranges enabled: 00000-9FFFF write-back A0000-BFFFF uncachable C0000-CFFFF write-protect D0000-EFFFF uncachable F0000-FFFFF write-protect MTRR variable ranges enabled: 0 base 000000000 mask 800000000 write-back 1 base 0E0000000 mask FE0000000 uncachable 2 base 0BDC00000 mask FFFC00000 uncachable 3 base 0BE000000 mask FFE000000 uncachable 4 disabled 5 disabled 6 disabled x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 e820 update range: 00000000bdc00000 - 00000000c0000000 (usable) ==> (reserved) e820 update range: 00000000e0000000 - 0000000100000000 (usable) ==> (reserved) init_memory_mapping: 0000000000000000-00000000377fe000 0000000000 - 0000400000 page 4k 0000400000 - 0037400000 page 2M 0037400000 - 00377fe000 page 4k kernel direct mapping tables up to 377fe000 @ 7000-c000 RAMDISK: 37afd000 - 37fef16a Allocated new RAMDISK: 009e9000 - 00edb16a Move RAMDISK from 0000000037afd000 - 0000000037fef169 to 009e9000 - 00edb169 ACPI: RSDP 000fbdd0 00024 (v02 DELL ) ACPI: XSDT bdac3e00 00064 (v01 DELL WN09 27D9050D ASL 00000061) ACPI: FACP bdac3c9c 000F4 (v04 DELL WN09 27D9050D ASL 00000061) ACPI: DSDT bdac4400 053BD (v02 INT430 SYSFexxx 00001001 INTL 20050624) ACPI: FACS bdad2c00 00040 ACPI: HPET bdac3f00 00038 (v01 DELL WN09 00000001 ASL 00000061) ACPI: APIC bdac4000 00068 (v01 DELL WN09 27D9050D ASL 00000047) ACPI: MCFG bdac3fc0 0003E (v16 DELL WN09 27D9050D ASL 00000061) ACPI: SLIC bdac409c 00176 (v01 DELL WN09 27D9050D ASL 00000061) ACPI: SSDT bdac2e72 005C6 (v01 PmRef BspCst 00003001 INTL 20050624) ACPI: SSDT bdac2c33 0023F (v01 PmRef BspIst 00003000 INTL 20050624) ACPI: SSDT bdac25c7 0066C (v01 PmRef CpuPm 00003000 INTL 20050624) ACPI: Local APIC address 0xfee00000 2146MB HIGHMEM available. 887MB LOWMEM available. mapped low ram: 0 - 377fe000 low ram: 0 - 377fe000 node 0 low ram: 00000000 - 377fe000 node 0 bootmap 00008000 - 0000ef00 (9 early reservations) ==> bootmem [0000000000 - 00377fe000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] #3 [0000100000 - 00009e4374] TEXT DATA BSS ==> [0000100000 - 00009e4374] #4 [000009f000 - 0000100000] BIOS reserved ==> [000009f000 - 0000100000] #5 [00009e5000 - 00009e8184] BRK ==> [00009e5000 - 00009e8184] #6 [0000007000 - 0000008000] PGTABLE ==> [0000007000 - 0000008000] #7 [00009e9000 - 0000edb16a] NEW RAMDISK ==> [00009e9000 - 0000edb16a] #8 [0000008000 - 000000f000] BOOTMAP ==> [0000008000 - 000000f000] Zone PFN ranges: DMA 0x00000000 -> 0x00001000 Normal 0x00001000 -> 0x000377fe HighMem 0x000377fe -> 0x000bdabf Movable zone start PFN for each node early_node_map[2] active PFN ranges 0: 0x00000000 -> 0x0000009f 0: 0x00000100 -> 0x000bdabf On node 0 totalpages: 776798 free_area_init_node: node 0, pgdat c08e7b40, node_mem_map c1000000 DMA zone: 32 pages used for memmap DMA zone: 0 pages reserved DMA zone: 3967 pages, LIFO batch:0 Normal zone: 1744 pages used for memmap Normal zone: 221486 pages, LIFO batch:31 HighMem zone: 4294 pages used for memmap HighMem zone: 545275 pages, LIFO batch:31 Using APIC driver default ACPI: PM-Timer IO Port: 0x1008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled) ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Enabling APIC mode: Flat. Using 1 I/O APICs Using ACPI (MADT) for SMP configuration information ACPI: HPET id: 0x8086a201 base: 0xfed00000 SMP: Allowing 2 CPUs, 1 hotplug CPUs nr_irqs_gsi: 24 PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 PM: Registered nosave memory: 00000000000a0000 - 0000000000100000 Allocating PCI resources starting at c4000000 (gap: c0000000:38000000) NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 PERCPU: Embedded 11 pages at c27c8000, static data 23068 bytes Built 1 zonelists in Zone order, mobility grouping on. Total pages: 770728 Kernel command line: root=UUID=0aa62d6a-407d-41aa-b65c-256982c1b6a4 ro quiet splash Enabling fast FPU save and restore... done. Enabling unmasked SIMD FPU exception support... done. Initializing CPU#0 xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240 NR_IRQS:512 PID hash table entries: 4096 (order: 12, 16384 bytes) Extended CMOS year: 2000 Fast TSC calibration using PIT Detected 2194.573 MHz processor. Console: colour VGA+ 80x25 console [tty0] enabled Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) Initializing HighMem for node 0 (000377fe:000bdabf) Memory: 3066876k/3107580k available (6103k kernel code, 39524k reserved, 2103k data, 432k init, 2198276k highmem) virtual kernel memory layout: fixmap : 0xfff4f000 - 0xfffff000 ( 704 kB) pkmap : 0xff800000 - 0xffc00000 (4096 kB) vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) .init : 0xc090d000 - 0xc0979000 ( 432 kB) .data : 0xc06f5dad - 0xc0903a44 (2103 kB) .text : 0xc0100000 - 0xc06f5dad (6103 kB) Checking if this processor honours the WP bit even in supervisor mode...Ok. SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 hpet clockevent registered HPET: 4 timers in total, 0 timers will be used for per-cpu timer Calibrating delay loop (skipped), value calculated using timer frequency.. 4390.02 BogoMIPS (lpj=7315243) Security Framework initialized Mount-cache hash table entries: 512 CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 1024K Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. using mwait in idle threads. Checking 'hlt' instruction... OK. SMP alternatives: switching to UP code ACPI: Core revision 20090320 ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 CPU0: Intel(R) Celeron(R) CPU 900 @ 2.20GHz stepping 0a Brought up 1 CPUs Total of 1 processors activated (4390.02 BogoMIPS). net_namespace: 980 bytes xor: automatically using best checksumming function: pIII_sse pIII_sse : 8412.000 MB/sec xor: using function: pIII_sse (8412.000 MB/sec) NET: Registered protocol family 16 ACPI: bus type pci registered PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63 PCI: MCFG area at f8000000 reserved in E820 PCI: Using MMCONFIG for extended config space PCI: Using configuration type 1 for base access bio: create slab <bio-0> at 0 ACPI: EC: Look up EC in DSDT ACPI: BIOS _OSI(Linux) query ignored ACPI: Interpreter enabled ACPI: (supports S0 S3 S4 S5) ACPI: Using IOAPIC for interrupt routing ACPI: No dock devices found. ACPI: PCI Root Bridge [PCI0] (0000:00) pci 0000:00:02.0: reg 10 64bit mmio: [0xf6c00000-0xf6ffffff] pci 0000:00:02.0: reg 18 64bit mmio: [0xe0000000-0xefffffff] pci 0000:00:02.0: reg 20 io port: [0xefe8-0xefef] pci 0000:00:02.1: reg 10 64bit mmio: [0xf6b00000-0xf6bfffff] pci 0000:00:1a.0: reg 20 io port: [0x6f60-0x6f7f] pci 0000:00:1a.1: reg 20 io port: [0x6f80-0x6f9f] pci 0000:00:1a.2: reg 20 io port: [0x6fa0-0x6fbf] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfed1c400-0xfed1c7ff] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold pci 0000:00:1a.7: PME# disabled pci 0000:00:1b.0: reg 10 64bit mmio: [0xf6afc000-0xf6afffff] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold pci 0000:00:1b.0: PME# disabled pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold pci 0000:00:1c.0: PME# disabled pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold pci 0000:00:1c.1: PME# disabled pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold pci 0000:00:1c.2: PME# disabled pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold pci 0000:00:1c.4: PME# disabled pci 0000:00:1d.0: reg 20 io port: [0x6f00-0x6f1f] pci 0000:00:1d.1: reg 20 io port: [0x6f20-0x6f3f] pci 0000:00:1d.2: reg 20 io port: [0x6f40-0x6f5f] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfed1c000-0xfed1c3ff] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold pci 0000:00:1d.7: PME# disabled pci 0000:00:1f.2: reg 10 io port: [0x6e70-0x6e77] pci 0000:00:1f.2: reg 14 io port: [0x6e78-0x6e7b] pci 0000:00:1f.2: reg 18 io port: [0x6e80-0x6e87] pci 0000:00:1f.2: reg 1c io port: [0x6e88-0x6e8b] pci 0000:00:1f.2: reg 20 io port: [0x6ea0-0x6eaf] pci 0000:00:1f.2: reg 24 io port: [0x6e90-0x6e9f] pci 0000:00:1f.3: reg 10 64bit mmio: [0xf6afbf00-0xf6afbfff] pci 0000:00:1f.3: reg 20 io port: [0x1100-0x111f] pci 0000:00:1f.5: reg 10 io port: [0x6eb0-0x6eb7] pci 0000:00:1f.5: reg 14 io port: [0x6eb8-0x6ebb] pci 0000:00:1f.5: reg 18 io port: [0x6ec0-0x6ec7] pci 0000:00:1f.5: reg 1c io port: [0x6ec8-0x6ecb] pci 0000:00:1f.5: reg 20 io port: [0x6ee0-0x6eef] pci 0000:00:1f.5: reg 24 io port: [0xeff0-0xefff] pci 0000:0c:00.0: reg 10 64bit mmio: [0xf69fc000-0xf69fffff] pci 0000:0c:00.0: supports D1 D2 pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold pci 0000:0c:00.0: PME# disabled pci 0000:00:1c.1: bridge 32bit mmio: [0xf6900000-0xf69fffff] pci 0000:09:00.0: reg 10 64bit mmio: [0xf68fc000-0xf68fffff] pci 0000:09:00.0: reg 18 io port: [0xde00-0xdeff] pci 0000:09:00.0: supports D1 D2 pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold pci 0000:09:00.0: PME# disabled pci 0000:00:1c.2: bridge io port: [0xd000-0xdfff] pci 0000:00:1c.2: bridge 32bit mmio: [0xf6800000-0xf68fffff] pci 0000:00:1c.4: bridge io port: [0xc000-0xcfff] pci 0000:00:1c.4: bridge 32bit mmio: [0xf6600000-0xf67fffff] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xf0000000-0xf01fffff] pci 0000:00:1e.0: transparent bridge pci_bus 0000:00: on NUMA node 0 ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT] ACPI: PCI Interrupt Link [LNKA] (IRQs *10 11) ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *4 ACPI: PCI Interrupt Link [LNKC] (IRQs *10 11) ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 10 11) *0, disabled. ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. SCSI subsystem initialized libata version 3.00 loaded. usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb raid6: int32x1 815 MB/s raid6: int32x2 862 MB/s raid6: int32x4 656 MB/s raid6: int32x8 629 MB/s raid6: mmxx1 2742 MB/s raid6: mmxx2 3130 MB/s raid6: sse1x1 1837 MB/s raid6: sse1x2 2368 MB/s raid6: sse2x1 3343 MB/s raid6: sse2x2 3520 MB/s raid6: using algorithm sse2x2 (3520 MB/s) PCI: Using ACPI for IRQ routing hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 hpet0: 4 comparators, 64-bit 14.318180 MHz counter pnp: PnP ACPI init ACPI: bus type pnp registered Switched to high resolution mode on CPU 0 pnp: PnP ACPI: found 13 devices ACPI: ACPI bus type pnp unregistered system 00:01: iomem range 0xff800000-0xff8fffff has been reserved system 00:01: iomem range 0xffc00000-0xffcfffff has been reserved system 00:09: iomem range 0xfed00000-0xfed003ff has been reserved system 00:0a: ioport range 0x900-0x97f has been reserved system 00:0a: ioport range 0x4d0-0x4d1 has been reserved system 00:0a: ioport range 0x1000-0x1005 has been reserved system 00:0a: ioport range 0x1008-0x100f has been reserved system 00:0b: ioport range 0xf400-0xf4fe has been reserved system 00:0b: ioport range 0x1006-0x1007 has been reserved system 00:0b: ioport range 0x100a-0x1059 could not be reserved system 00:0b: ioport range 0x1060-0x107f has been reserved system 00:0b: ioport range 0x1080-0x10bf has been reserved system 00:0b: ioport range 0x1100-0x111f has been reserved system 00:0b: ioport range 0x1010-0x102f has been reserved system 00:0b: ioport range 0x809-0x809 has been reserved system 00:0c: iomem range 0x0-0x9efff could not be reserved system 00:0c: iomem range 0x9f000-0x9ffff could not be reserved system 00:0c: iomem range 0xc0000-0xcffff could not be reserved system 00:0c: iomem range 0xe0000-0xfffff could not be reserved system 00:0c: iomem range 0x100000-0xbdabf3ff could not be reserved system 00:0c: iomem range 0xbdabf400-0xbdafffff could not be reserved system 00:0c: iomem range 0xbdb00000-0xbdbfffff has been reserved system 00:0c: iomem range 0xffe00000-0xffffffff has been reserved system 00:0c: iomem range 0xffa00000-0xffbfffff has been reserved system 00:0c: iomem range 0xfec00000-0xfec0ffff could not be reserved system 00:0c: iomem range 0xfee00000-0xfee0ffff has been reserved system 00:0c: iomem range 0xfed20000-0xfed8ffff has been reserved system 00:0c: iomem range 0xfeda0000-0xfeda3fff has been reserved system 00:0c: iomem range 0xfeda4000-0xfeda4fff has been reserved system 00:0c: iomem range 0xfeda5000-0xfeda5fff has been reserved system 00:0c: iomem range 0xfeda6000-0xfeda6fff has been reserved system 00:0c: iomem range 0xfed1c800-0xfed1cfff has been reserved system 00:0c: iomem range 0xfed18000-0xfed1bfff has been reserved system 00:0c: iomem range 0xf8000000-0xfbffffff has been reserved b43-pci-bridge 0000:0c:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 b43-pci-bridge 0000:0c:00.0: setting latency timer to 64 ssb: Sonics Silicon Backplane found on PCI device 0000:0c:00.0 pci 0000:00:1c.0: PCI bridge, secondary bus 0000:0b pci 0000:00:1c.0: IO window: disabled pci 0000:00:1c.0: MEM window: disabled pci 0000:00:1c.0: PREFETCH window: disabled pci 0000:00:1c.1: PCI bridge, secondary bus 0000:0c pci 0000:00:1c.1: IO window: disabled pci 0000:00:1c.1: MEM window: 0xf6900000-0xf69fffff pci 0000:00:1c.1: PREFETCH window: disabled pci 0000:00:1c.2: PCI bridge, secondary bus 0000:09 pci 0000:00:1c.2: IO window: 0xd000-0xdfff pci 0000:00:1c.2: MEM window: 0xf6800000-0xf68fffff pci 0000:00:1c.2: PREFETCH window: disabled pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0d pci 0000:00:1c.4: IO window: 0xc000-0xcfff pci 0000:00:1c.4: MEM window: 0xf6600000-0xf67fffff pci 0000:00:1c.4: PREFETCH window: 0x000000f0000000-0x000000f01fffff pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03 pci 0000:00:1e.0: IO window: disabled pci 0000:00:1e.0: MEM window: disabled pci 0000:00:1e.0: PREFETCH window: disabled pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 pci 0000:00:1c.0: setting latency timer to 64 pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 pci 0000:00:1c.1: setting latency timer to 64 pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 pci 0000:00:1c.2: setting latency timer to 64 pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16 pci 0000:00:1c.4: setting latency timer to 64 pci 0000:00:1e.0: setting latency timer to 64 pci_bus 0000:00: resource 0 io: [0x00-0xffff] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff] pci_bus 0000:0c: resource 1 mem: [0xf6900000-0xf69fffff] pci_bus 0000:09: resource 0 io: [0xd000-0xdfff] pci_bus 0000:09: resource 1 mem: [0xf6800000-0xf68fffff] pci_bus 0000:0d: resource 0 io: [0xc000-0xcfff] pci_bus 0000:0d: resource 1 mem: [0xf6600000-0xf67fffff] pci_bus 0000:0d: resource 2 pref mem [0xf0000000-0xf01fffff] pci_bus 0000:03: resource 3 io: [0x00-0xffff] pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffff] NET: Registered protocol family 2 IP route cache hash table entries: 32768 (order: 5, 131072 bytes) TCP established hash table entries: 131072 (order: 8, 1048576 bytes) TCP bind hash table entries: 65536 (order: 7, 524288 bytes) TCP: Hash tables configured (established 131072 bind 65536) TCP reno registered NET: Registered protocol family 1 Trying to unpack rootfs image as initramfs... Freeing initrd memory: 5064k freed apm: BIOS not found. highmem bounce pool size: 64 pages VFS: Disk quotas dquot_6.5.2 Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) NTFS driver 2.1.29 [Flags: R/O]. msgmni has been set to 1707 alg: No test for stdrng (krng) async_tx: api initialized (sync-only) io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered (default) pci 0000:00:02.0: Boot video device pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X pcieport-driver 0000:00:1c.0: setting latency timer to 64 pcieport-driver 0000:00:1c.1: irq 25 for MSI/MSI-X pcieport-driver 0000:00:1c.1: setting latency timer to 64 pcieport-driver 0000:00:1c.2: irq 26 for MSI/MSI-X pcieport-driver 0000:00:1c.2: setting latency timer to 64 pcieport-driver 0000:00:1c.4: irq 27 for MSI/MSI-X pcieport-driver 0000:00:1c.4: setting latency timer to 64 pci_hotplug: PCI Hot Plug PCI Core version: 0.5 ACPI: AC Adapter [AC] (on-line) input: Lid Switch as /class/input/input0 ACPI: Lid Switch [LID] input: Power Button as /class/input/input1 ACPI: Power Button [PBTN] input: Sleep Button as /class/input/input2 ACPI: Sleep Button [SBTN] Monitor-Mwait will be used to enter C-1 state Monitor-Mwait will be used to enter C-2 state Marking TSC unstable due to TSC halts in idle ACPI: CPU0 (power states: C1[C1] C2[C2]) processor ACPI_CPU:00: registered as cooling_device0 ACPI: Processor [CPU0] (supports 8 throttling states) thermal LNXTHERM:01: registered as thermal_zone0 ACPI: Thermal Zone [THM] (61 C) isapnp: Scanning for PnP cards... isapnp: No Plug & Play device found ACPI: Battery Slot [BAT0] (battery present) Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled Floppy drive(s): fd0 is 1.44M floppy0: no floppy controllers found brd: module loaded loop: module loaded Compaq SMART2 Driver (v 2.6.0) HP CISS Driver (v 3.6.20) input: Macintosh mouse button emulation as /class/input/input3 Uniform Multi-Platform E-IDE driver ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports Probing IDE interface ide0... ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 Probing IDE interface ide1... ide1 at 0x170-0x177,0x376 on irq 15 ide-gd driver 1.18 ide-cd driver 5.00 Loading iSCSI transport class v2.0-870. iscsi: registered transport (tcp) Loading Adaptec I2O RAID: Version 2.4 Build 5go Detecting Adaptec I2O RAID controllers... Adaptec aacraid driver 1.1-5[2461]-ms aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded scsi: <fdomain> Detection failed (no card) sym53c416.c: Version 1.0.0-ac qlogicfas: no cards were found, please specify I/O address and IRQ using iobase= and irq= options<6>QLogic Fibre Channel HBA Driver: 8.03.01-k1 iscsi: registered transport (qla4xxx) QLogic iSCSI HBA Driver Emulex LightPulse Fibre Channel SCSI driver 8.3.1 Copyright(c) 2004-2009 Emulex. All rights reserved. Failed initialization of WD-7000 SCSI card! DC390: clustering now enabled by default. If you get problems load with "disable_clustering=1" and report to maintainers megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006) megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006) megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008 GDT-HA: Storage RAID Controller Driver. Version: 3.05 3ware Storage Controller device driver for Linux v1.26.02.002. 3ware 9000 Storage Controller device driver for Linux v2.26.02.012. nsp32: loading... ipr: IBM Power RAID SCSI Device Driver version: 2.4.2 (January 21, 2009) RocketRAID 3xxx/4xxx Controller driver v1.3 (071203) st: Version 20081215, fixed bufsize 32768, s/g segs 256 Driver 'st' needs updating - please use bus_type methods Driver 'sd' needs updating - please use bus_type methods Driver 'sr' needs updating - please use bus_type methods ata_piix 0000:00:1f.2: version 2.13 ata_piix 0000:00:1f.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ] ata_piix 0000:00:1f.2: setting latency timer to 64 scsi2 : ata_piix scsi3 : ata_piix ata1: SATA max UDMA/133 cmd 0x6e70 ctl 0x6e78 bmdma 0x6ea0 irq 18 ata2: SATA max UDMA/133 cmd 0x6e80 ctl 0x6e88 bmdma 0x6ea8 irq 18 ata_piix 0000:00:1f.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18 ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ] ata_piix 0000:00:1f.5: setting latency timer to 64 scsi4 : ata_piix scsi5 : ata_piix ata3: SATA max UDMA/133 cmd 0x6eb0 ctl 0x6eb8 bmdma 0x6ee0 irq 18 ata4: SATA max UDMA/133 cmd 0x6ec0 ctl 0x6ec8 bmdma 0x6ee8 irq 18 Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI Copyright (c) 1999-2006 Intel Corporation. Atheros(R) L2 Ethernet Driver - version 2.2.3 Copyright (c) 2007 Atheros Corporation. jme: JMicron JMC2XX ethernet driver version 1.0.4 pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI e100: Copyright(c) 1999-2006 Intel Corporation I2O subsystem v1.325 i2o: max drivers = 8 I2O Configuration OSM v1.323 I2O Bus Adapter OSM v1.317 I2O Block Device OSM v1.325 I2O SCSI Peripheral OSM v1.316 I2O ProcFS OSM v1.316 Fusion MPT base driver 3.04.07 Copyright (c) 1999-2008 LSI Corporation Fusion MPT SPI Host driver 3.04.07 Fusion MPT FC Host driver 3.04.07 Fusion MPT SAS Host driver 3.04.07 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22 ehci_hcd 0000:00:1a.7: setting latency timer to 64 ehci_hcd 0000:00:1a.7: EHCI Host Controller ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 ehci_hcd 0000:00:1a.7: debug port 1 ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400 ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 usb usb1: configuration #1 chosen from 1 choice hub 1-0:1.0: USB hub found hub 1-0:1.0: 6 ports detected ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20 ehci_hcd 0000:00:1d.7: setting latency timer to 64 ehci_hcd 0000:00:1d.7: EHCI Host Controller ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 ehci_hcd 0000:00:1d.7: debug port 1 ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000 ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 usb usb2: configuration #1 chosen from 1 choice hub 2-0:1.0: USB hub found hub 2-0:1.0: 6 ports detected 116x: driver isp116x-hcd, 03 Nov 2005 ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver uhci_hcd: USB Universal Host Controller Interface driver uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1a.0: setting latency timer to 64 uhci_hcd 0000:00:1a.0: UHCI Host Controller uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f60 usb usb3: configuration #1 chosen from 1 choice hub 3-0:1.0: USB hub found hub 3-0:1.0: 2 ports detected uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1a.1: setting latency timer to 64 uhci_hcd 0000:00:1a.1: UHCI Host Controller uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f80 usb usb4: configuration #1 chosen from 1 choice hub 4-0:1.0: USB hub found hub 4-0:1.0: 2 ports detected uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1a.2: setting latency timer to 64 uhci_hcd 0000:00:1a.2: UHCI Host Controller uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 uhci_hcd 0000:00:1a.2: irq 22, io base 0x00006fa0 usb usb5: configuration #1 chosen from 1 choice hub 5-0:1.0: USB hub found hub 5-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 uhci_hcd 0000:00:1d.0: setting latency timer to 64 uhci_hcd 0000:00:1d.0: UHCI Host Controller uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f00 usb usb6: configuration #1 chosen from 1 choice hub 6-0:1.0: USB hub found hub 6-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 uhci_hcd 0000:00:1d.1: setting latency timer to 64 uhci_hcd 0000:00:1d.1: UHCI Host Controller uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f20 usb usb7: configuration #1 chosen from 1 choice hub 7-0:1.0: USB hub found hub 7-0:1.0: 2 ports detected uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 uhci_hcd 0000:00:1d.2: setting latency timer to 64 uhci_hcd 0000:00:1d.2: UHCI Host Controller uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40 usb usb8: configuration #1 chosen from 1 choice hub 8-0:1.0: USB hub found hub 8-0:1.0: 2 ports detected sl811: driver sl811-hcd, 19 May 2005 Initializing USB Mass Storage driver... usbcore: registered new interface driver usb-storage USB Mass Storage support registered. usbcore: registered new interface driver ums-alauda usbcore: registered new interface driver ums-datafab usbcore: registered new interface driver ums-freecom usbcore: registered new interface driver ums-isd200 usbcore: registered new interface driver ums-jumpshot usbcore: registered new interface driver ums-karma usbcore: registered new interface driver ums-sddr09 usbcore: registered new interface driver ums-sddr55 usbcore: registered new interface driver ums-usbat PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 i8042.c: Detected active multiplexing controller, rev 1.1. serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX0 port at 0x60,0x64 irq 12 serio: i8042 AUX1 port at 0x60,0x64 irq 12 serio: i8042 AUX2 port at 0x60,0x64 irq 12 serio: i8042 AUX3 port at 0x60,0x64 irq 12 mice: PS/2 mouse device common for all mice md: linear personality registered for level -1 md: raid0 personality registered for level 0 md: raid1 personality registered for level 1 md: raid10 personality registered for level 10 md: raid6 personality registered for level 6 md: raid5 personality registered for level 5 md: raid4 personality registered for level 4 md: multipath personality registered for level -4 device-mapper: uevent: version 1.0.3 device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com cpuidle: using governor ladder cpuidle: using governor menu usbcore: registered new interface driver hiddev usbcore: registered new interface driver usbhid usbhid: v2.6:USB HID core driver TCP cubic registered Initializing XFRM netlink socket NET: Registered protocol family 17 RPC: Registered udp transport module. RPC: Registered tcp transport module. Using IPI No-Shortcut mode input: AT Translated Set 2 keyboard as /class/input/input4 ata3: SATA link down (SStatus 0 SControl 300) usb 1-5: new high speed USB device using ehci_hcd and address 2 Clocksource tsc unstable (delta = -236471718 ns) ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) usb 1-5: configuration #1 chosen from 1 choice scsi6 : SCSI emulation for USB Mass Storage devices usb-storage: device found at 2 usb-storage: waiting for device to settle before scanning ata1.00: ATA-8: WDC WD1600BEVT-75ZCT2, 11.01A11, max UDMA/133 ata1.00: 312581808 sectors, multi 8: LBA48 NCQ (depth 0/32) ata1.00: configured for UDMA/133 scsi 2:0:0:0: Direct-Access ATA WDC WD1600BEVT-7 11.0 PQ: 0 ANSI: 5 sd 2:0:0:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB) sd 2:0:0:0: [sda] Write Protect is off sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA sda: sda1 sda2 < sda5 > sd 2:0:0:0: [sda] Attached SCSI disk ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-L633B, D400, max UDMA/100 ata2.00: applying bridge limits ata2.00: configured for UDMA/100 scsi 3:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-L633B D400 PQ: 0 ANSI: 5 sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray Uniform CD-ROM driver Revision: 3.20 sr 3:0:0:0: Attached scsi CD-ROM sr0 ata4: SATA link down (SStatus 0 SControl 300) Freeing unused kernel memory: 432k freed fuse init (API version 7.11) sky2 driver version 1.22 sky2 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 sky2 0000:09:00.0: setting latency timer to 64 sky2 0000:09:00.0: Yukon-2 FE+ chip revision 0 sky2 0000:09:00.0: irq 28 for MSI/MSI-X sky2 eth0: addr 00:23:ae:40:24:fd sd 2:0:0:0: Attached scsi generic sg0 type 0 sr 3:0:0:0: Attached scsi generic sg1 type 5 PM: Starting manual resume from disk kjournald starting. Commit interval 5 seconds EXT3-fs: mounted filesystem with writeback data mode. udevd version 124 started scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS sd 6:0:0:0: Attached scsi generic sg2 type 0 usb-storage: device scan complete sd 6:0:0:0: [sdb] Attached SCSI removable disk dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) Linux agpgart interface v0.103 shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 agpgart-intel 0000:00:00.0: Intel Mobile Intel® GM45 Express Chipset agpgart-intel 0000:00:00.0: detected 32764K stolen memory agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000 ACPI: WMI: Mapper loaded lib80211: common routines for IEEE802.11 drivers lib80211_crypt: registered algorithm 'NULL' wl: module license 'unspecified' taints kernel. Disabling lock debugging due to kernel taint rtc_cmos 00:04: RTC can wake from S4 rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs iTCO_vendor_support: vendor-support=0 iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05 iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x1060) iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21 HDA Intel 0000:00:1b.0: setting latency timer to 64 input: HDA Intel Mic at Ext Right Jack as /class/input/input5 input: HDA Intel HP Out at Ext Right Jack as /class/input/input6 input: PS/2 Mouse as /class/input/input7 input: AlpsPS/2 ALPS GlidePoint as /class/input/input8 lp: driver loaded but no devices found Adding 6385796k swap on /dev/sda5. Priority:-1 extents:1 across:6385796k EXT3 FS on sda1, internal journal ip_tables: (C) 2000-2006 Netfilter Core Team sky2 eth0: enabling interface [drm] Initialized drm 1.1.0 20060810 pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 pci 0000:00:02.0: setting latency timer to 64 mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining [drm] MTRR allocation failed. Graphics performance may suffer. pci 0000:00:02.0: irq 29 for MSI/MSI-X acpi device:3c: registered as cooling_device1 input: Video Bus as /class/input/input9 ACPI: Video Device [VID1] (multi-head: yes rom: no post: no) ACPI Warning (nspredef-0437): \_SB_.PCI0.VID2._DOD: Return Package has no elements (empty) [20090320] input: Video Bus as /class/input/input10 ACPI: Video Device [VID2] (multi-head: yes rom: no post: no) [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining set status page addr 0x01fff000 usb 2-1: new high speed USB device using ehci_hcd and address 2 usb 2-1: configuration #1 chosen from 1 choice scsi7 : SCSI emulation for USB Mass Storage devices usb-storage: device found at 2 usb-storage: waiting for device to settle before scanning scsi 7:0:0:0: Direct-Access JetFlash TS2GJFV30 8.07 PQ: 0 ANSI: 2 sd 7:0:0:0: Attached scsi generic sg3 type 0 usb-storage: device scan complete sd 7:0:0:0: [sdc] 4005888 512-byte hardware sectors: (2.05 GB/1.91 GiB) sd 7:0:0:0: [sdc] Write Protect is off sd 7:0:0:0: [sdc] Mode Sense: 03 00 00 00 sd 7:0:0:0: [sdc] Assuming drive cache: write through sd 7:0:0:0: [sdc] Assuming drive cache: write through sdc: sdc1 sd 7:0:0:0: [sdc] Attached SCSI removable disk


Reply With Quote
