Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Write an article for LinuxForums Today! Win Great Prizes!
It most likely stopped working after an update. Your card is one of the few that actually have two drivers that work. There is the b43 and the wl driver, and it is loading the wl module.
If you have a 802.11n wireless, then the wl driver would be what you want. Since yours is 802.11g, then the b43 driver is better.
First open this program:
System-->Administration-->Hardware Drivers
Check for wireless drivers. You want to disable the Broadcom STA (wl) driver. If the b43 driver is listed, enable it. Now you need to download firmware for the b43 driver to work. You need a wired internet connection for this.
In a terminal window, enter this command:
Code:
sudo apt-get install b43-fwcutter
When it asks "Fetch and extract firmware?", answer "<Yes>" (press enter).
Reboot the PC and then check the output of lsmod for the presence of the b43 module. If it isn't there, post back for more help.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
The module must be blacklisted. Go to the folder /etc/modprobe.d and look for a file with a name like "blacklist-b43.conf". If that isn't there, there should be one named "blacklist.conf". If you have both, you will want to check them both. Open them for editing, with gksudo.
Code:
gkduo gedit /etc/modprobe.d/blacklist.conf
or
gksudo gedit /etc/modprobe.d/blacklist-b43.conf
I am only guessing on the name of the b43-blacklist file. You will want to comment out any entry of the b43 module. change this:
Code:
blacklist b43
To this:
Code:
# blacklist b43
Now try and manually load the b43 driver. Enter this command in a terminal window.
Code:
sudo modprobe b43
If it just returns a blank prompt, then the module loaded. Look again for it with lsmod, it should be at the top. You now shoulld be able to use the wireless.
If you get an error when loading the b43 module, post that error here.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
Have you gone into the NetworkManager settings and reconfigured the wireless? Right-click on the icon and select "Edit Connections...". I would delete the old/existing one, and start new.
Is there an on/off switch for the wireless, or a shortcut key combination to enable/disable the wireless? You may have accidentally switched it off.
If that is not the problem, then post the entire output of this command.
Code:
dmesg
__________________
Paul
Please do not PM me with requests for help. I will not reply.
You have both the b43 and wl drivers loading. You will never get the wireless to work with two drivers competing for it. You can remove the wl module with this command.
Code:
sudo modprobe -r wl
You may need to manually remove and reload the b43 driver now.
Code:
sudo modprobe -r b43
sudo modprobe b43
Now there is a good chance that the wireless will work. To permanently prevent the wl module from loading, you can add it to the blacklist file. First I want you to make a backup copy of the blacklist file, just in case.
It is important to use two greater than symbols (>>). Using only one (>) will replace the files contents with just "blacklist wl", or is it the other way around ? (Just kidding) That's why I said to back it up first.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
I removed wl and removed and reload b43 as you told me.
now in the network manager I can't even see the wireless section which I saw before I removed wl (also in ifconfig there is no eth1 output).
if I reload wl, then I can see the wireless section in the network manager and eth1 in ifconfig.
maybe I don't have the b43 driver?
as for your earlier questions - I didn't turned off wireless.
anyway, if it's any help, this is the dmesg output (quite long):
Code:
[ 0.000000] BIOS EBDA/lowmem at: 0009f000/0009f000
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.28-11-generic (buildd@palmer) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 (Ubuntu 2.6.28-11.42-generic)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf66d800 (usable)
[ 0.000000] BIOS-e820: 00000000bf66d800 - 00000000c0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved)
[ 0.000000] BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
[ 0.000000] DMI 2.4 present.
[ 0.000000] last_pfn = 0xbf66d max_arch_pfn = 0x100000
[ 0.000000] Scanning 2 areas for low memory corruption
[ 0.000000] modified physical RAM map:
[ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable)
[ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved)
[ 0.000000] modified: 0000000000006000 - 0000000000007000 (usable)
[ 0.000000] modified: 0000000000007000 - 0000000000010000 (reserved)
[ 0.000000] modified: 0000000000010000 - 0000000000092000 (usable)
[ 0.000000] modified: 000000000009f000 - 00000000000a0000 (reserved)
[ 0.000000] modified: 0000000000100000 - 00000000bf66d800 (usable)
[ 0.000000] modified: 00000000bf66d800 - 00000000c0000000 (reserved)
[ 0.000000] modified: 00000000f8000000 - 00000000fc000000 (reserved)
[ 0.000000] modified: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] modified: 00000000fed18000 - 00000000fed1c000 (reserved)
[ 0.000000] modified: 00000000fed20000 - 00000000fed90000 (reserved)
[ 0.000000] modified: 00000000feda0000 - 00000000feda6000 (reserved)
[ 0.000000] modified: 00000000fee00000 - 00000000fee10000 (reserved)
[ 0.000000] modified: 00000000ffe00000 - 0000000100000000 (reserved)
[ 0.000000] kernel direct mapping tables up to 373fe000 @ 10000-16000
[ 0.000000] RAMDISK: 378bb000 - 37fefb48
[ 0.000000] Allocated new RAMDISK: 00881000 - 00fb5b48
[ 0.000000] Move RAMDISK from 00000000378bb000 - 0000000037fefb47 to 00881000 - 00fb5b47
[ 0.000000] ACPI: RSDP 000FBC60, 0024 (r2 DELL )
[ 0.000000] ACPI: XSDT BF66F200, 0064 (r1 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: FACP BF66F09C, 00F4 (r4 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: DSDT BF66F800, 5477 (r2 INT430 SYSFexxx 1001 INTL 20050624)
[ 0.000000] ACPI: FACS BF67E000, 0040
[ 0.000000] ACPI: HPET BF66F300, 0038 (r1 DELL M08 1 ASL 61)
[ 0.000000] ACPI: APIC BF66F400, 0068 (r1 DELL M08 27D80A10 ASL 47)
[ 0.000000] ACPI: MCFG BF66F3C0, 003E (r16 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: SLIC BF66F49C, 0024 (r1 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: OSFR BF66EA00, 002C (r1 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: BOOT BF66EFC0, 0028 (r1 DELL M08 27D80A10 ASL 61)
[ 0.000000] ACPI: SSDT BF66D9C0, 04CC (r1 PmRef CpuPm 3000 INTL 20050624)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 2178MB HIGHMEM available.
[ 0.000000] 883MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 373fe000
[ 0.000000] low ram: 00000000 - 373fe000
[ 0.000000] bootmap 00012000 - 00018e80
[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00373fe000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
[ 0.000000] #3 [0000100000 - 000087c52c] TEXT DATA BSS ==> [0000100000 - 000087c52c]
[ 0.000000] #4 [000087d000 - 0000881000] INIT_PG_TABLE ==> [000087d000 - 0000881000]
[ 0.000000] #5 [000009f000 - 0000100000] BIOS reserved ==> [000009f000 - 0000100000]
[ 0.000000] #6 [0000010000 - 0000012000] PGTABLE ==> [0000010000 - 0000012000]
[ 0.000000] #7 [0000881000 - 0000fb5b48] NEW RAMDISK ==> [0000881000 - 0000fb5b48]
[ 0.000000] #8 [0000012000 - 0000019000] BOOTMAP ==> [0000012000 - 0000019000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000373fe
[ 0.000000] HighMem 0x000373fe -> 0x000bf66d
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[4] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x00000002
[ 0.000000] 0: 0x00000006 -> 0x00000007
[ 0.000000] 0: 0x00000010 -> 0x00000092
[ 0.000000] 0: 0x00000100 -> 0x000bf66d
[ 0.000000] On node 0 totalpages: 783858
[ 0.000000] free_area_init_node: node 0, pgdat c06d0f80, node_mem_map c1000000
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3941 pages, LIFO batch:0
[ 0.000000] Normal zone: 1736 pages used for memmap
[ 0.000000] Normal zone: 220470 pages, LIFO batch:31
[ 0.000000] HighMem zone: 4357 pages used for memmap
[ 0.000000] HighMem zone: 553322 pages, LIFO batch:31
[ 0.000000] Movable zone: 0 pages used for memmap
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[ 0.000000] PM: Registered nosave memory: 0000000000007000 - 0000000000010000
[ 0.000000] PM: Registered nosave memory: 0000000000092000 - 000000000009f000
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at c4000000 (gap: c0000000:38000000)
[ 0.000000] PERCPU: Allocating 45056 bytes of per cpu data
[ 0.000000] NR_CPUS: 64, nr_cpu_ids: 2, nr_node_ids 1
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 777733
[ 0.000000] Kernel command line: root=UUID=b4c3d15e-225a-46a2-a9eb-78a4a2c0ee63 ro quiet splash
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 2094.917 MHz processor.
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty0] enabled
[ 0.004000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.004000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.004000] allocated 15679620 bytes of page_cgroup
[ 0.004000] please try cgroup_disable=memory option if you don't want
[ 0.004000] Scanning for low memory corruption every 60 seconds
[ 0.004000] Memory: 3078676k/3135924k available (4126k kernel code, 55872k reserved, 2208k data, 532k init, 2230716k highmem)
[ 0.004000] virtual kernel memory layout:
[ 0.004000] fixmap : 0xffc77000 - 0xfffff000 (3616 kB)
[ 0.004000] pkmap : 0xff400000 - 0xff800000 (4096 kB)
[ 0.004000] vmalloc : 0xf7bfe000 - 0xff3fe000 ( 120 MB)
[ 0.004000] lowmem : 0xc0000000 - 0xf73fe000 ( 883 MB)
[ 0.004000] .init : 0xc0737000 - 0xc07bc000 ( 532 kB)
[ 0.004000] .data : 0xc0507a6f - 0xc072fe60 (2208 kB)
[ 0.004000] .text : 0xc0100000 - 0xc0507a6f (4126 kB)
[ 0.004000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.004000] hpet clockevent registered
[ 0.004000] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4189.83 BogoMIPS (lpj=8379668)
[ 0.004000] Security Framework initialized
[ 0.004000] SELinux: Disabled at boot.
[ 0.004000] AppArmor: AppArmor initialized
[ 0.004000] Mount-cache hash table entries: 512
[ 0.004000] Initializing cgroup subsys ns
[ 0.004000] Initializing cgroup subsys cpuacct
[ 0.004000] Initializing cgroup subsys memory
[ 0.004000] Initializing cgroup subsys freezer
[ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004000] CPU: L2 cache: 3072K
[ 0.004000] CPU: Physical Processor ID: 0
[ 0.004000] CPU: Processor Core ID: 0
[ 0.004000] using mwait in idle threads.
[ 0.004000] Checking 'hlt' instruction... OK.
[ 0.018414] ACPI: Core revision 20080926
[ 0.020374] ACPI: Checking initramfs for custom DSDT
[ 0.304470] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.346255] CPU0: Intel(R) Core(TM)2 Duo CPU T8100 @ 2.10GHz stepping 06
[ 0.348001] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.004000] Initializing CPU#1
[ 0.004000] Calibrating delay using timer specific routine.. 4189.45 BogoMIPS (lpj=8378910)
[ 0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.004000] CPU: L2 cache: 3072K
[ 0.004000] CPU: Physical Processor ID: 0
[ 0.004000] CPU: Processor Core ID: 1
[ 0.432593] CPU1: Intel(R) Core(TM)2 Duo CPU T8100 @ 2.10GHz stepping 06
[ 0.432608] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.436035] Brought up 2 CPUs
[ 0.436037] Total of 2 processors activated (8379.28 BogoMIPS).
[ 0.436092] CPU0 attaching sched-domain:
[ 0.436095] domain 0: span 0-1 level MC
[ 0.436097] groups: 0 1
[ 0.436102] CPU1 attaching sched-domain:
[ 0.436104] domain 0: span 0-1 level MC
[ 0.436106] groups: 1 0
[ 0.436169] net_namespace: 776 bytes
[ 0.436169] Booting paravirtualized kernel on bare hardware
[ 0.436298] Time: 5:52:52 Date: 05/27/09
[ 0.436298] regulator: core version 0.5
[ 0.436298] NET: Registered protocol family 16
[ 0.436298] EISA bus registered
[ 0.436298] ACPI: bus type pci registered
[ 0.436298] PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63
[ 0.436298] PCI: MCFG area at f8000000 reserved in E820
[ 0.436298] PCI: Using MMCONFIG for extended config space
[ 0.436298] PCI: Using configuration type 1 for base access
[ 0.437014] ACPI: EC: Look up EC in DSDT
[ 0.465641] ACPI: Interpreter enabled
[ 0.465645] ACPI: (supports S0 S3 S4 S5)
[ 0.465661] ACPI: Using IOAPIC for interrupt routing
[ 0.509097] ACPI: No dock devices found.
[ 0.509106] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.509187] pci 0000:00:02.0: reg 10 64bit mmio: [0xfea00000-0xfeafffff]
[ 0.509194] pci 0000:00:02.0: reg 18 64bit mmio: [0xe0000000-0xefffffff]
[ 0.509199] pci 0000:00:02.0: reg 20 io port: [0xefe8-0xefef]
[ 0.509230] pci 0000:00:02.1: reg 10 64bit mmio: [0xfeb00000-0xfebfffff]
[ 0.509337] pci 0000:00:1a.0: reg 20 io port: [0x6f20-0x6f3f]
[ 0.509400] pci 0000:00:1a.1: reg 20 io port: [0x6f00-0x6f1f]
[ 0.509470] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfed1c400-0xfed1c7ff]
[ 0.509519] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.509524] pci 0000:00:1a.7: PME# disabled
[ 0.509580] pci 0000:00:1b.0: reg 10 64bit mmio: [0xfe9fc000-0xfe9fffff]
[ 0.509621] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.509626] pci 0000:00:1b.0: PME# disabled
[ 0.509696] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.509700] pci 0000:00:1c.0: PME# disabled
[ 0.509771] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.509775] pci 0000:00:1c.1: PME# disabled
[ 0.509850] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.509855] pci 0000:00:1c.4: PME# disabled
[ 0.509919] pci 0000:00:1d.0: reg 20 io port: [0x6f80-0x6f9f]
[ 0.509982] pci 0000:00:1d.1: reg 20 io port: [0x6f60-0x6f7f]
[ 0.510045] pci 0000:00:1d.2: reg 20 io port: [0x6f40-0x6f5f]
[ 0.510113] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfed1c000-0xfed1c3ff]
[ 0.510161] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.510167] pci 0000:00:1d.7: PME# disabled
[ 0.510327] pci 0000:00:1f.0: quirk: region 1000-107f claimed by ICH6 ACPI/GPIO/TCO
[ 0.510331] pci 0000:00:1f.0: quirk: region 1080-10bf claimed by ICH6 GPIO
[ 0.510368] pci 0000:00:1f.1: reg 10 io port: [0x1f0-0x1f7]
[ 0.510376] pci 0000:00:1f.1: reg 14 io port: [0x3f4-0x3f7]
[ 0.510383] pci 0000:00:1f.1: reg 18 io port: [0x170-0x177]
[ 0.510391] pci 0000:00:1f.1: reg 1c io port: [0x374-0x377]
[ 0.510399] pci 0000:00:1f.1: reg 20 io port: [0x6fa0-0x6faf]
[ 0.510453] pci 0000:00:1f.2: reg 10 io port: [0x6eb0-0x6eb7]
[ 0.510461] pci 0000:00:1f.2: reg 14 io port: [0x6eb8-0x6ebb]
[ 0.510469] pci 0000:00:1f.2: reg 18 io port: [0x6ec0-0x6ec7]
[ 0.510477] pci 0000:00:1f.2: reg 1c io port: [0x6ec8-0x6ecb]
[ 0.510485] pci 0000:00:1f.2: reg 20 io port: [0x6ee0-0x6eef]
[ 0.510492] pci 0000:00:1f.2: reg 24 io port: [0xeff0-0xefff]
[ 0.510512] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.510516] pci 0000:00:1f.2: PME# disabled
[ 0.510543] pci 0000:00:1f.3: reg 10 32bit mmio: [0xfe9fbf00-0xfe9fbfff]
[ 0.510569] pci 0000:00:1f.3: reg 20 io port: [0x10c0-0x10df]
[ 0.510672] pci 0000:09:00.0: reg 10 64bit mmio: [0xfe8fc000-0xfe8fffff]
[ 0.510684] pci 0000:09:00.0: reg 18 io port: [0xde00-0xdeff]
[ 0.510738] pci 0000:09:00.0: supports D1 D2
[ 0.510740] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.510746] pci 0000:09:00.0: PME# disabled
[ 0.510823] pci 0000:00:1c.0: bridge io port: [0xd000-0xdfff]
[ 0.510828] pci 0000:00:1c.0: bridge 32bit mmio: [0xfe800000-0xfe8fffff]
[ 0.511040] pci 0000:0b:00.0: reg 10 64bit mmio: [0xfe7fc000-0xfe7fffff]
[ 0.511169] pci 0000:0b:00.0: supports D1 D2
[ 0.511171] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold
[ 0.511182] pci 0000:0b:00.0: PME# disabled
[ 0.511305] pci 0000:00:1c.1: bridge 32bit mmio: [0xfe700000-0xfe7fffff]
[ 0.511373] pci 0000:00:1c.4: bridge io port: [0xc000-0xcfff]
[ 0.511378] pci 0000:00:1c.4: bridge 32bit mmio: [0xfe400000-0xfe6fffff]
[ 0.511386] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xf0000000-0xf01fffff]
[ 0.511446] pci 0000:02:09.0: reg 10 32bit mmio: [0xfe3ff800-0xfe3fffff]
[ 0.511496] pci 0000:02:09.0: supports D1 D2
[ 0.511497] pci 0000:02:09.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.511502] pci 0000:02:09.0: PME# disabled
[ 0.511544] pci 0000:02:09.1: reg 10 32bit mmio: [0xfe3ff500-0xfe3ff5ff]
[ 0.511594] pci 0000:02:09.1: supports D1 D2
[ 0.511596] pci 0000:02:09.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.511601] pci 0000:02:09.1: PME# disabled
[ 0.511644] pci 0000:02:09.2: reg 10 32bit mmio: [0xfe3ff600-0xfe3ff6ff]
[ 0.511694] pci 0000:02:09.2: supports D1 D2
[ 0.511696] pci 0000:02:09.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.511701] pci 0000:02:09.2: PME# disabled
[ 0.511744] pci 0000:02:09.3: reg 10 32bit mmio: [0xfe3ff700-0xfe3ff7ff]
[ 0.511793] pci 0000:02:09.3: supports D1 D2
[ 0.511795] pci 0000:02:09.3: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.511800] pci 0000:02:09.3: PME# disabled
[ 0.511858] pci 0000:00:1e.0: transparent bridge
[ 0.511866] pci 0000:00:1e.0: bridge 32bit mmio: [0xfe300000-0xfe3fffff]
[ 0.511899] bus 00 -> node 0
[ 0.511905] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.512337] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
[ 0.512489] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.512611] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.512733] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
[ 0.523439] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11)
[ 0.523565] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10
[ 0.523688] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *5
[ 0.523799] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *0, disabled.
[ 0.523923] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[ 0.524060] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[ 0.524186] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
[ 0.524299] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 0.524496] ACPI: WMI: Mapper loaded
[ 0.524528] SCSI subsystem initialized
[ 0.524528] libata version 3.00 loaded.
[ 0.524528] usbcore: registered new interface driver usbfs
[ 0.524528] usbcore: registered new interface driver hub
[ 0.524528] usbcore: registered new device driver usb
[ 0.524528] PCI: Using ACPI for IRQ routing
[ 0.532009] Bluetooth: Core ver 2.13
[ 0.532021] NET: Registered protocol family 31
[ 0.532021] Bluetooth: HCI device and connection manager initialized
[ 0.532021] Bluetooth: HCI socket layer initialized
[ 0.532021] NET: Registered protocol family 8
[ 0.532021] NET: Registered protocol family 20
[ 0.532029] NetLabel: Initializing
[ 0.532031] NetLabel: domain hash size = 128
[ 0.532032] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.532044] NetLabel: unlabeled traffic allowed by default
[ 0.532058] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.532062] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.536050] AppArmor: AppArmor Filesystem Enabled
[ 0.540008] Switched to high resolution mode on CPU 0
[ 0.540643] Switched to high resolution mode on CPU 1
[ 0.544008] pnp: PnP ACPI init
[ 0.544015] ACPI: bus type pnp registered
[ 0.563752] pnp 00:0a: io resource (0x1000-0x1005) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.563755] pnp 00:0a: io resource (0x1008-0x100f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.563843] pnp 00:0b: io resource (0x1006-0x1007) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.563846] pnp 00:0b: io resource (0x100a-0x1059) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.563849] pnp 00:0b: io resource (0x1060-0x107f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.563851] pnp 00:0b: io resource (0x1010-0x102f) overlaps 0000:00:1f.0 BAR 7 (0x1000-0x107f), disabling
[ 0.585671] pnp: PnP ACPI: found 13 devices
[ 0.585673] ACPI: ACPI bus type pnp unregistered
[ 0.585676] PnPBIOS: Disabled by ACPI PNP
[ 0.585685] system 00:01: iomem range 0xff800000-0xff8fffff has been reserved
[ 0.585687] system 00:01: iomem range 0xffc00000-0xffcfffff has been reserved
[ 0.585694] system 00:06: ioport range 0xc80-0xcff could not be reserved
[ 0.585700] system 00:09: iomem range 0xfed00000-0xfed003ff has been reserved
[ 0.585705] system 00:0a: ioport range 0x900-0x97f has been reserved
[ 0.585708] system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
[ 0.585713] system 00:0b: ioport range 0xf400-0xf4fe has been reserved
[ 0.585716] system 00:0b: ioport range 0x1080-0x10bf has been reserved
[ 0.585718] system 00:0b: ioport range 0x10c0-0x10df has been reserved
[ 0.585720] system 00:0b: ioport range 0x809-0x809 has been reserved
[ 0.585725] system 00:0c: iomem range 0x0-0x9efff could not be reserved
[ 0.585728] system 00:0c: iomem range 0x9f000-0x9ffff could not be reserved
[ 0.585730] system 00:0c: iomem range 0xc0000-0xcffff could not be reserved
[ 0.585733] system 00:0c: iomem range 0xe0000-0xfffff could not be reserved
[ 0.585735] system 00:0c: iomem range 0x100000-0xbf66d7ff could not be reserved
[ 0.585737] system 00:0c: iomem range 0xbf66d800-0xbf6fffff has been reserved
[ 0.585739] system 00:0c: iomem range 0xbf700000-0xbf7fffff has been reserved
[ 0.585742] system 00:0c: iomem range 0xbf700000-0xbfefffff could not be reserved
[ 0.585744] system 00:0c: iomem range 0xffe00000-0xffffffff has been reserved
[ 0.585747] system 00:0c: iomem range 0xffa00000-0xffbfffff has been reserved
[ 0.585749] system 00:0c: iomem range 0xfec00000-0xfec0ffff has been reserved
[ 0.585751] system 00:0c: iomem range 0xfee00000-0xfee0ffff has been reserved
[ 0.585754] system 00:0c: iomem range 0xfed20000-0xfed8ffff has been reserved
[ 0.585756] system 00:0c: iomem range 0xfeda0000-0xfeda3fff has been reserved
[ 0.585758] system 00:0c: iomem range 0xfeda4000-0xfeda4fff has been reserved
[ 0.585761] system 00:0c: iomem range 0xfeda5000-0xfeda5fff has been reserved
[ 0.585763] system 00:0c: iomem range 0xfeda6000-0xfeda6fff has been reserved
[ 0.585765] system 00:0c: iomem range 0xfed18000-0xfed1bfff has been reserved
[ 0.585768] system 00:0c: iomem range 0xf8000000-0xfbffffff has been reserved
[ 0.620459] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:09
[ 0.620462] pci 0000:00:1c.0: IO window: 0xd000-0xdfff
[ 0.620469] pci 0000:00:1c.0: MEM window: 0xfe800000-0xfe8fffff
[ 0.620473] pci 0000:00:1c.0: PREFETCH window: disabled
[ 0.620481] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:0b
[ 0.620483] pci 0000:00:1c.1: IO window: disabled
[ 0.620489] pci 0000:00:1c.1: MEM window: 0xfe700000-0xfe7fffff
[ 0.620494] pci 0000:00:1c.1: PREFETCH window: disabled
[ 0.620501] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:0c
[ 0.620505] pci 0000:00:1c.4: IO window: 0xc000-0xcfff
[ 0.620511] pci 0000:00:1c.4: MEM window: 0xfe400000-0xfe6fffff
[ 0.620516] pci 0000:00:1c.4: PREFETCH window: 0x000000f0000000-0x000000f01fffff
[ 0.620524] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:02
[ 0.620526] pci 0000:00:1e.0: IO window: disabled
[ 0.620532] pci 0000:00:1e.0: MEM window: 0xfe300000-0xfe3fffff
[ 0.620536] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.620553] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.620559] pci 0000:00:1c.0: setting latency timer to 64
[ 0.620569] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.620573] pci 0000:00:1c.1: setting latency timer to 64
[ 0.620582] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.620587] pci 0000:00:1c.4: setting latency timer to 64
[ 0.620595] pci 0000:00:1e.0: setting latency timer to 64
[ 0.620599] bus: 00 index 0 io port: [0x00-0xffff]
[ 0.620601] bus: 00 index 1 mmio: [0x000000-0xffffffff]
[ 0.620603] bus: 09 index 0 io port: [0xd000-0xdfff]
[ 0.620605] bus: 09 index 1 mmio: [0xfe800000-0xfe8fffff]
[ 0.620607] bus: 09 index 2 mmio: [0x0-0x0]
[ 0.620608] bus: 09 index 3 mmio: [0x0-0x0]
[ 0.620610] bus: 0b index 0 mmio: [0x0-0x0]
[ 0.620612] bus: 0b index 1 mmio: [0xfe700000-0xfe7fffff]
[ 0.620613] bus: 0b index 2 mmio: [0x0-0x0]
[ 0.620615] bus: 0b index 3 mmio: [0x0-0x0]
[ 0.620617] bus: 0c index 0 io port: [0xc000-0xcfff]
[ 0.620619] bus: 0c index 1 mmio: [0xfe400000-0xfe6fffff]
[ 0.620620] bus: 0c index 2 mmio: [0xf0000000-0xf01fffff]
[ 0.620622] bus: 0c index 3 mmio: [0x0-0x0]
[ 0.620624] bus: 02 index 0 mmio: [0x0-0x0]
[ 0.620625] bus: 02 index 1 mmio: [0xfe300000-0xfe3fffff]
[ 0.620627] bus: 02 index 2 mmio: [0x0-0x0]
[ 0.620629] bus: 02 index 3 io port: [0x00-0xffff]
[ 0.620631] bus: 02 index 4 mmio: [0x000000-0xffffffff]
[ 0.620638] NET: Registered protocol family 2
[ 0.632044] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.632250] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.632543] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.632693] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.632695] TCP reno registered
[ 0.636051] NET: Registered protocol family 1
[ 0.636148] checking if image is initramfs... it is
[ 1.212550] Freeing initrd memory: 7378k freed
[ 1.212588] Simple Boot Flag at 0x79 set to 0x1
[ 1.212745] cpufreq: No nForce2 chipset.
[ 1.212871] audit: initializing netlink socket (disabled)
[ 1.212893] type=2000 audit(1243403572.212:1): initialized
[ 1.219807] highmem bounce pool size: 64 pages
[ 1.219811] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.221003] VFS: Disk quotas dquot_6.5.1
[ 1.221055] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.221606] fuse init (API version 7.10)
[ 1.221679] msgmni has been set to 1672
[ 1.221831] alg: No test for stdrng (krng)
[ 1.221841] io scheduler noop registered
[ 1.221843] io scheduler anticipatory registered
[ 1.221845] io scheduler deadline registered
[ 1.221857] io scheduler cfq registered (default)
[ 1.221867] pci 0000:00:02.0: Boot video device
[ 1.223739] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[ 1.223790] pcieport-driver 0000:00:1c.0: found MSI capability
[ 1.223828] pcieport-driver 0000:00:1c.0: irq 2303 for MSI/MSI-X
[ 1.223844] pci_express 0000:00:1c.0:pcie00: allocate port service
[ 1.223856] pci_express 0000:00:1c.0:pcie02: allocate port service
[ 1.223867] pci_express 0000:00:1c.0:pcie03: allocate port service
[ 1.223940] pcieport-driver 0000:00:1c.1: setting latency timer to 64
[ 1.223990] pcieport-driver 0000:00:1c.1: found MSI capability
[ 1.224023] pcieport-driver 0000:00:1c.1: irq 2302 for MSI/MSI-X
[ 1.224039] pci_express 0000:00:1c.1:pcie00: allocate port service
[ 1.224049] pci_express 0000:00:1c.1:pcie02: allocate port service
[ 1.224060] pci_express 0000:00:1c.1:pcie03: allocate port service
[ 1.224132] pcieport-driver 0000:00:1c.4: setting latency timer to 64
[ 1.224181] pcieport-driver 0000:00:1c.4: found MSI capability
[ 1.224214] pcieport-driver 0000:00:1c.4: irq 2301 for MSI/MSI-X
[ 1.224230] pci_express 0000:00:1c.4:pcie00: allocate port service
[ 1.224244] pci_express 0000:00:1c.4:pcie02: allocate port service
[ 1.224255] pci_express 0000:00:1c.4:pcie03: allocate port service
[ 1.224334] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.224406] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.224531] ACPI: AC Adapter [AC] (on-line)
[ 1.252002] ACPI: Battery Slot [BAT0] (battery present)
[ 1.252066] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[ 1.252729] ACPI: Lid Switch [LID]
[ 1.252768] input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 1.252774] ACPI: Power Button (CM) [PBTN]
[ 1.252810] input: Sleep Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[ 1.252813] ACPI: Sleep Button (CM) [SBTN]
[ 1.253308] ACPI: SSDT BF66E4F6, 0286 (r1 PmRef Cpu0Ist 3000 INTL 20050624)
[ 1.253627] ACPI: SSDT BF66DE8C, 05E5 (r1 PmRef Cpu0Cst 3001 INTL 20050624)
[ 1.253964] Monitor-Mwait will be used to enter C-1 state
[ 1.253967] Monitor-Mwait will be used to enter C-2 state
[ 1.253969] Monitor-Mwait will be used to enter C-3 state
[ 1.253982] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 1.254004] processor ACPI_CPU:00: registered as cooling_device0
[ 1.254007] ACPI: Processor [CPU0] (supports 8 throttling states)
[ 1.254299] ACPI: SSDT BF66E77C, 00C4 (r1 PmRef Cpu1Ist 3000 INTL 20050624)
[ 1.254581] ACPI: SSDT BF66E471, 0085 (r1 PmRef Cpu1Cst 3000 INTL 20050624)
[ 1.254953] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[ 1.254970] processor ACPI_CPU:01: registered as cooling_device1
[ 1.254973] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 1.256528] thermal LNXTHERM:01: registered as thermal_zone0
[ 1.256715] ACPI: Thermal Zone [THM] (48 C)
[ 1.256764] isapnp: Scanning for PnP cards...
[ 1.610657] isapnp: No Plug & Play device found
[ 1.617159] Serial: 8250/16550 driver4 ports, IRQ sharing enabled
[ 1.618094] brd: module loaded
[ 1.618364] loop: module loaded
[ 1.618421] Fixed MDIO Bus: probed
[ 1.618426] PPP generic driver version 2.4.2
[ 1.618478] input: Macintosh mouse button emulation as /devices/virtual/input/input3
[ 1.618503] Driver 'sd' needs updating - please use bus_type methods
[ 1.618511] Driver 'sr' needs updating - please use bus_type methods
[ 1.618575] ata_piix 0000:00:1f.1: version 2.12
[ 1.618583] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.618618] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.618690] scsi0 : ata_piix
[ 1.618761] scsi1 : ata_piix
[ 1.619376] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14
[ 1.619379] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15
[ 1.796497] ata1.00: ATAPI: TSSTcorp DVD+/-RW TS-L632H, D400, max UDMA/33
[ 1.828413] ata1.00: configured for UDMA/33
[ 1.828843] ata2: port disabled. ignoring.
[ 1.829816] scsi 0:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-L632H D400 PQ: 0 ANSI: 5
[ 1.835641] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.835644] Uniform CD-ROM driver Revision: 3.20
[ 1.835721] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 1.835754] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 1.835771] ata_piix 0000:00:1f.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 1.835775] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 1.988027] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.988078] scsi2 : ata_piix
[ 1.988126] scsi3 : ata_piix
[ 1.988735] ata3: SATA max UDMA/133 cmd 0x6eb0 ctl 0x6eb8 bmdma 0x6ee0 irq 17
[ 1.988742] ata4: SATA max UDMA/133 cmd 0x6ec0 ctl 0x6ec8 bmdma 0x6ee8 irq 17
[ 2.784083] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.784100] ata3.01: SATA link down (SStatus 0 SControl 300)
[ 2.845793] ata3.00: ATA-8: WDC WD2500BEVT-75ZCT2, 11.01A11, max UDMA/133
[ 2.845796] ata3.00: 488397168 sectors, multi 8: LBA48 NCQ (depth 0/32)
[ 2.860985] ata3.00: configured for UDMA/133
[ 3.500059] ata4.00: SATA link down (SStatus 0 SControl 300)
[ 3.500072] ata4.01: SATA link down (SStatus 0 SControl 0)
[ 3.500135] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEVT-7 11.0 PQ: 0 ANSI: 5
[ 3.500212] sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[ 3.500226] sd 2:0:0:0: [sda] Write Protect is off
[ 3.500228] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.500251] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.500301] sd 2:0:0:0: [sda] 488397168 512-byte hardware sectors: (250 GB/232 GiB)
[ 3.500314] sd 2:0:0:0: [sda] Write Protect is off
[ 3.500316] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.500338] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.500341] sda: sda1 < sda5 sda6 > sda4
[ 3.511110] sd 2:0:0:0: [sda] Attached SCSI disk
[ 3.511141] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 3.511724] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.511743] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
[ 3.511759] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 3.511762] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 3.511812] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 3.515708] ehci_hcd 0000:00:1a.7: debug port 1
[ 3.515715] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[ 3.515727] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400
[ 3.528007] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 3.528064] usb usb1: configuration #1 chosen from 1 choice
[ 3.528091] hub 1-0:1.0: USB hub found
[ 3.528097] hub 1-0:1.0: 4 ports detected
[ 3.528188] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 3.528198] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 3.528201] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 3.528235] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 3.532129] ehci_hcd 0000:00:1d.7: debug port 1
[ 3.532136] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 3.532148] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000
[ 3.548009] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 3.548069] usb usb2: configuration #1 chosen from 1 choice
[ 3.548091] hub 2-0:1.0: USB hub found
[ 3.548097] hub 2-0:1.0: 6 ports detected
[ 3.548186] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 3.548200] uhci_hcd: USB Universal Host Controller Interface driver
[ 3.548219] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 3.548225] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 3.548228] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 3.548265] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 3.548291] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f20
[ 3.548356] usb usb3: configuration #1 chosen from 1 choice
[ 3.548379] hub 3-0:1.0: USB hub found
[ 3.548385] hub 3-0:1.0: 2 ports detected
[ 3.548458] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 3.548464] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 3.548467] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 3.548502] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 3.548535] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f00
[ 3.548603] usb usb4: configuration #1 chosen from 1 choice
[ 3.548625] hub 4-0:1.0: USB hub found
[ 3.548630] hub 4-0:1.0: 2 ports detected
[ 3.548709] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 3.548715] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 3.548718] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 3.548755] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[ 3.548781] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f80
[ 3.548844] usb usb5: configuration #1 chosen from 1 choice
[ 3.548865] hub 5-0:1.0: USB hub found
[ 3.548870] hub 5-0:1.0: 2 ports detected
[ 3.548948] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 3.548954] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 3.548957] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 3.548991] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[ 3.549017] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f60
[ 3.549080] usb usb6: configuration #1 chosen from 1 choice
[ 3.549104] hub 6-0:1.0: USB hub found
[ 3.549110] hub 6-0:1.0: 2 ports detected
[ 3.549190] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
[ 3.549196] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 3.549200] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 3.549235] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[ 3.549260] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
[ 3.549326] usb usb7: configuration #1 chosen from 1 choice
[ 3.549347] hub 7-0:1.0: USB hub found
[ 3.549352] hub 7-0:1.0: 2 ports detected
[ 3.549468] usbcore: registered new interface driver libusual
[ 3.549493] usbcore: registered new interface driver usbserial
[ 3.549502] USB Serial support registered for generic
[ 3.549516] usbcore: registered new interface driver usbserial_generic
[ 3.549517] usbserial: USB Serial Driver core
[ 3.549562] PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 3.567080] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 3.577971] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 3.577976] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 3.577978] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 3.577981] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 3.577983] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 3.580034] mice: PS/2 mouse device common for all mice
[ 3.596062] rtc_cmos 00:04: RTC can wake from S4
[ 3.596088] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 3.596119] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 3.596172] device-mapper: uevent: version 1.0.3
[ 3.596244] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
[ 3.596306] device-mapper: multipath: version 1.0.5 loaded
[ 3.596308] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 3.596371] EISA: Probing bus 0 at eisa.0
[ 3.596378] Cannot allocate resource for EISA slot 1
[ 3.596408] EISA: Detected 0 cards.
[ 3.596507] cpuidle: using governor ladder
[ 3.596611] cpuidle: using governor menu
[ 3.597047] TCP cubic registered
[ 3.597132] NET: Registered protocol family 10
[ 3.597499] lo: Disabled Privacy Extensions
[ 3.597792] NET: Registered protocol family 17
[ 3.597806] Bluetooth: L2CAP ver 2.11
[ 3.597807] Bluetooth: L2CAP socket layer initialized
[ 3.597810] Bluetooth: SCO (Voice Link) ver 0.6
[ 3.597811] Bluetooth: SCO socket layer initialized
[ 3.597839] Bluetooth: RFCOMM socket layer initialized
[ 3.597844] Bluetooth: RFCOMM TTY layer initialized
[ 3.597845] Bluetooth: RFCOMM ver 1.10
[ 3.597852] Marking TSC unstable due to TSC halts in idle
[ 3.598414] Using IPI No-Shortcut mode
[ 3.598470] registered taskstats version 1
[ 3.598572] Magic number: 9:888:871
[ 3.598639] rtc_cmos 00:04: setting system clock to 2009-05-27 05:52:55 UTC (1243403575)
[ 3.598642] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 3.598644] EDD information not available.
[ 3.598889] Freeing unused kernel memory: 532k freed
[ 3.599028] Write protecting the kernel text: 4128k
[ 3.599083] Write protecting the kernel read-only data: 1532k
[ 3.622822] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 3.805379] sky2 driver version 1.22
[ 3.805426] sky2 0000:09:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 3.805439] sky2 0000:09:00.0: setting latency timer to 64
[ 3.805482] sky2 0000:09:00.0: Yukon-2 FE+ chip revision 0
[ 3.805617] sky2 0000:09:00.0: irq 2300 for MSI/MSI-X
[ 3.806223] sky2 eth0: addr 00:23:ae:06:10:82
[ 3.809760] ohci1394 0000:02:09.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 3.860495] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[16] MMIO=[fe3ff800-fe3fffff] Max Packet=[2048] IR/IT contexts=[4/4]
[ 3.861432] usb 1-1: new high speed USB device using ehci_hcd and address 2
[ 3.998331] usb 1-1: configuration #1 chosen from 1 choice
[ 4.360087] usb 6-1: new low speed USB device using uhci_hcd and address 2
[ 4.422217] PM: Starting manual resume from disk
[ 4.422220] PM: Resume from partition 8:5
[ 4.422221] PM: Checking hibernation image.
[ 4.422459] PM: Resume from disk failed.
[ 4.459759] kjournald starting. Commit interval 5 seconds
[ 4.459772] EXT3-fs: mounted filesystem with ordered data mode.
[ 4.535187] usb 6-1: configuration #1 chosen from 1 choice
[ 5.148204] ieee1394: Host added: ID:BUS[0-00:1023] GUID[424fc00037dd0890]
[ 10.568671] udev: starting version 141
[ 10.767723] ieee80211_crypt: registered algorithm 'NULL'
[ 10.771494] wl: module license '' taints kernel.
[ 10.773433] wl 0000:0b:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 10.773446] wl 0000:0b:00.0: setting latency timer to 64
[ 11.150790] end_request: I/O error, dev sr0, sector 0
[ 11.150798] Buffer I/O error on device sr0, logical block 0
[ 11.150804] Buffer I/O error on device sr0, logical block 1
[ 11.150808] Buffer I/O error on device sr0, logical block 2
[ 11.150812] Buffer I/O error on device sr0, logical block 3
[ 11.152905] end_request: I/O error, dev sr0, sector 0
[ 11.152909] Buffer I/O error on device sr0, logical block 0
[ 11.200688] usbcore: registered new interface driver hiddev
[ 11.200837] usbcore: registered new interface driver usbhid
[ 11.200861] usbhid: v2.6:USB HID core driver
[ 11.424464] ieee80211_crypt: registered algorithm 'TKIP'
[ 11.424673] eth1: Broadcom BCM4315 802.11 Wireless Controller 5.10.79.10
[ 11.644526] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 11.696027] Linux video capture interface: v2.00
[ 11.730412] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 11.762550] acpi device:31: registered as cooling_device2
[ 11.762924] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:2e/input/input6
[ 11.763353] sdhci: Secure Digital Host Controller Interface driver
[ 11.763355] sdhci: Copyright(c) Pierre Ossman
[ 11.764662] sdhci-pci 0000:02:09.1: SDHCI controller found [1180:0822] (rev 22)
[ 11.764681] sdhci-pci 0000:02:09.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
[ 11.766834] mmc0: SDHCI controller on PCI [0000:02:09.1] using DMA
[ 11.774646] Linux agpgart interface v0.103
[ 11.777715] iTCO_vendor_support: vendor-support=0
[ 11.779007] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[ 11.779102] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
[ 11.779162] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 11.781765] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 11.781840] ACPI Warning (nspredef-0357): \_SB_.PCI0.VID2._DOD: Return Package has no elements (empty) [20080926]
[ 11.781916] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:33/input/input7
[ 11.792154] ACPI: Video Device [VID2] (multi-head: yes rom: no post: no)
[ 11.837336] input: A4Tech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input8
[ 11.839108] a4tech 0003:09DA:0006.0001: input,hidraw0: USB HID v1.10 Mouse [A4Tech USB Optical Mouse] on usb-0000:00:1d.1-1/input0
[ 11.842913] agpgart-intel 0000:00:00.0: Intel 965GM Chipset
[ 11.843833] agpgart-intel 0000:00:00.0: detected 7676K stolen memory
[ 11.846795] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[ 11.850762] uvcvideo: Found UVC 1.00 device Laptop Integrated Webcam (05a9:2640)
[ 11.851673] uvcvideo: Failed to query (135) UVC control 1 (unit 0) : -32 (exp. 26).
[ 11.852280] input: Laptop Integrated Webcam as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1:1.0/input/input9
[ 11.858863] usbcore: registered new interface driver uvcvideo
[ 11.858885] USB Video Class driver (v0.1.0)
[ 11.961232] synaptics was reset on resume, see synaptics_resume_reset if you have trouble on resume
[ 11.984574] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 11.984667] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 12.022702] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
[ 12.603418] lp: driver loaded but no devices found
[ 12.662785] input: PS/2 Mouse as /devices/platform/i8042/serio2/input/input11
[ 12.692045] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio2/input/input12
[ 12.763068] Adding 2056248k swap on /dev/sda5. Priority:-1 extents:1 across:2056248k
[ 13.308601] EXT3 FS on sda6, internal journal
[ 14.067165] kjournald starting. Commit interval 5 seconds
[ 14.067544] EXT3 FS on sda4, internal journal
[ 14.067550] EXT3-fs: mounted filesystem with ordered data mode.
[ 14.363038] type=1505 audit(1243403586.261:2): operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" name2="default" pid=2172
[ 14.400263] type=1505 audit(1243403586.298:3): operation="profile_load" name="/sbin/dhclient-script" name2="default" pid=2176
[ 14.400343] type=1505 audit(1243403586.298:4): operation="profile_load" name="/sbin/dhclient3" name2="default" pid=2176
[ 14.400376] type=1505 audit(1243403586.298:5): operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" name2="default" pid=2176
[ 14.400408] type=1505 audit(1243403586.298:6): operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" name2="default" pid=2176
[ 19.047066] vboxdrv: Trying to deactivate the NMI watchdog permanently...
[ 19.047069] vboxdrv: Successfully done.
[ 19.047070] vboxdrv: Found 2 processor cores.
[ 19.047182] vboxdrv: fAsync=0 offMin=0x184 offMax=0x2592
[ 19.047216] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[ 19.047218] vboxdrv: Successfully loaded version 2.1.4_OSE (interface 0x000a0009).
[ 21.133388] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 21.133390] Bluetooth: BNEP filters: protocol multicast
[ 21.150440] Bridge firewalling registered
[ 22.285052] ppdev: user-space parallel port driver
[ 24.368955] [drm] Initialized drm 1.1.0 20060810
[ 24.373996] pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 24.374001] pci 0000:00:02.0: setting latency timer to 64
[ 24.374111] pci 0000:00:02.0: irq 2299 for MSI/MSI-X
[ 24.374189] [drm] Initialized i915 1.6.0 20080730 on minor 0
[ 24.375576] [drm:i915_setparam] *ERROR* unknown parameter 4
[ 26.103232] sky2 eth0: enabling interface
[ 26.103404] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 27.561741] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both
[ 27.561915] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 31.196076] eth1: no IPv6 routers present
[ 37.708075] eth0: no IPv6 routers present
[ 84.000171] Clocksource tsc unstable (delta = -164446321 ns)
[ 611.082844] cfg80211: Calling CRDA to update world regulatory domain
[ 611.140137] cfg80211: World regulatory domain updated:
[ 611.140146] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 611.140154] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 611.140159] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 611.140165] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 611.140170] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 611.140175] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 611.218190] Broadcom 43xx driver loaded [ Features: PLR, Firmware-ID: FW13 ]
[ 622.306312] wl 0000:0b:00.0: PCI INT A disabled
[ 767.054735] cfg80211: Calling CRDA to update world regulatory domain
[ 767.074953] cfg80211: World regulatory domain updated:
[ 767.074961] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 767.074968] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 767.074974] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 767.074979] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 767.074984] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 767.074990] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 767.103652] Broadcom 43xx driver loaded [ Features: PLR, Firmware-ID: FW13 ]
It appears that this card is NOT supported by the b43 driver. The wl driver is the correct one to use. When I originally saw the output of lspci, I only looked at the name:
The BCM4312 wireless is supported by the b43 driver. What I missed was the PCI ID of [14e4:4315]. This makes it a 4315 wireless, which is not supported by the b43 driver. I didn't realize my mistake until I saw this in the dmesg output.
So, you now need to put everything back to the way it was before (sorry). That means blacklisting the b43 module, un-blacklisting the wl module, and enable the Broadcom STA driver in the Hardware Drivers section.
This should get you back to the way things were, with the wireless still not working. If this was caused by an update, then you may need to update the wl module too. It should have done this automatically, though. It used to be in the backports-modules package, so start by installing that. First update the list of available packages with this command
Open Source Security Myths Dispelled Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization subscribe
InformationWeek InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology. subscribe