Page 1 of 4 123 ... LastLast
Results 1 to 10 of 31

Thread: Wireless not working unless Broadcom STA driver is deactivated reactivated

  1. #1
    Join Date
    Dec 2008
    Beans
    1

    Wireless not working unless Broadcom STA driver is deactivated reactivated

    I'm on a Dell Inspiron 1525 laptop, Linux Kernel 2.6.27-11-generic. on -10-generic, wireless worked normally. Now, after much effort, Ubuntu only recognizes the wireless card when I boot after I deactive the Broadcom STA driver under Hardware Drivers, and then reactivate it.

    --Some information--

    Here is the results of

    Code:
    ifconfig ;  iwconfig;  route -n;  cat /etc/resolv.conf  and cat /etc/network/interfaces
    :

    Code:
    eth0      Link encap:Ethernet  HWaddr 00:21:9b:e2:a5:a0  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
              Interrupt:16 
    
    eth1      Link encap:Ethernet  HWaddr 00:22:69:32:05:f9  
              inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:6655 errors:0 dropped:0 overruns:0 frame:8464
              TX packets:7908 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:2167344 (2.1 MB)  TX bytes:6648853 (6.6 MB)
              Interrupt:17 Base address:0xc000 
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:186 errors:0 dropped:0 overruns:0 frame:0
              TX packets:186 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:10538 (10.5 KB)  TX bytes:10538 (10.5 KB)
    
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    eth1      IEEE 802.11  Nickname:""
              Access Point: Not-Associated   
              
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth1
    0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth1
    domain home
    search home
    nameserver 192.168.1.1
    cat: and: No such file or directory
    cat: cat: No such file or directory
    auto lo
    iface lo inet loopback
    I'm using wicd as a network manager, because I don't want to type a password in every time I boot with nm-applet

  2. #2
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    If you run this command once:
    Code:
    echo wl | sudo tee -a /etc/modules
    Now reboot. Does that solve the problem?

    If not, try this:

    1. type:

    Code:
    sudo gedit /etc/init.d/modprobe-wl.sh
    A blank file will open. Add these lines to it:
    Code:
    #!/bin/bash
    
    modprobe wl
    rmmod wl
    modprobe wl
    ifconfig eth1 up
    Then save and close the file, and run these commands:
    Code:
    cd /etc/init.d
    sudo chmod +x modprobe-wl.sh
    sudo update-rc.d modprobe-wl.sh start 99 2 3 4 5
    Now reboot. If you still have to reload the driver manually, please post the output of:
    Code:
    dmesg
    (There will be quite a bit of output; please post it all.)
    Last edited by pytheas22; January 25th, 2009 at 05:54 PM.

  3. #3
    Join Date
    Mar 2007
    Location
    Denver, CO
    Beans
    7,958
    Distro
    Ubuntu Mate 16.04 Xenial Xerus

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    pytheas -- again a great solution by making this a runlevel script, however I believe you should again add it in run level 99 rather than the default run level 20. This would allow every service to be started and the last thing to run -- the wireless configuration. I think this would be the preferred method.

    Also whatever just happened to placing these commands within rc.local? I know there are multiple ways to skin a cat, however I'm just trying to keep things straight forward and easy!!

  4. #4
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    kevdog: I didn't think it would make a difference when the script was run--basically I'm assuming that simply reloading the wl module after its initial insertion is what it takes to solve the problem--but I guess it can't hurt to run it as late as possible. I changed the original post to reflect that (please let me know if the syntax looks wrong; I'm rusty on the update-rc.d arguments). Thanks for the suggestion.

  5. #5
    Join Date
    Mar 2007
    Location
    Denver, CO
    Beans
    7,958
    Distro
    Ubuntu Mate 16.04 Xenial Xerus

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    Looks good to me -- You might be right about your assumption -- I just don't know. If I don't know I usually error for things to be loaded later in the boot sequence. Of course the beauty of using update-rc.d is that the parameter can quickly be changed.

  6. #6
    Join Date
    Feb 2009
    Beans
    4

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    I have a different laptop, a Dell Inspiron 1318, but ran into the same issue. Adding wl to /etc/modules didn't solve the problem, but adding the stuff you put in modprobe-wl.sh to rc.local did solve the problem.

    Just wanted to let you know that you got it (as well as anyone else who ends up looking here for a solution).

  7. #7
    Join Date
    May 2009
    Beans
    1

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    Thank you! I spent three days trying to figure this out. I have dell xps 1330 with 1505n wireless. After installing the script you suggested everything works perfectly when I reboot.

  8. #8
    Join Date
    Jun 2007
    Beans
    12

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    Hello all,

    Came across this thread when I was looking how to get more information from my iwconfig. I have the Broadcom STA driver and my wireless connection is working flawlessly. However, when I iwconfig all I get is

    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    eth1      IEEE 802.11  Nickname:""
              Access Point: Not-Associated
    I want to also set/ play with the rate and txpower which I am currently unable to do. Any ideas or suggestions?

    Thanks.
    Last edited by htpw16; October 26th, 2009 at 04:03 AM.

  9. #9
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    htpw16: the only suggestion I have is to try installing the STA driver using the version from Broadcom's website, which will probably be more up-to-date than the Ubuntu one and might work better.

    That said, I doubt it actually will. The driver may simply not be designed to support all the iwconfig calls on your hardware, and since it's closed-source and proprietary, there's not much that can be done about it besides complain to Broadcom and hope they fix it.

    If your card is supported by the open-source and standards-compliant b43 driver, you could try that instead, but there are a few Broadcom chips (in particular, the 11n ones) that don't yet work with b43.

  10. #10
    Join Date
    May 2007
    Location
    Columbia, SC
    Beans
    119
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Wireless not working unless Broadcom STA driver is deactivated reactivated

    I have been following this thread's suggestions and am at the dmesg command:
    I mistakenly hit No I think when enabling the driver during a fresh install of ubuntu, to allow the firmware to install also. How can I fix this?

    [ 9.408274] Brought up 1 CPUs
    [ 9.408344] CPU0 attaching sched-domain:
    [ 9.408347] domain 0: span 01
    [ 9.408348] groups: 01
    [ 9.408491] net_namespace: 64 bytes
    [ 9.408497] Booting paravirtualized kernel on bare hardware
    [ 9.408911] Time: 13:07:52 Date: 11/01/09
    [ 9.408931] NET: Registered protocol family 16
    [ 9.409080] EISA bus registered
    [ 9.409106] ACPI: bus type pci registered
    [ 9.415198] PCI: PCI BIOS revision 2.10 entry at 0xfd8cc, last bus=1
    [ 9.415200] PCI: Using configuration type 1
    [ 9.415205] Setting up standard PCI resources
    [ 9.416721] ACPI: EC: Look up EC in DSDT
    [ 9.418879] ACPI: Interpreter enabled
    [ 9.418881] ACPI: (supports S0 S3 S4 S5)
    [ 9.418890] ACPI: Using IOAPIC for interrupt routing
    [ 9.420854] ACPI: EC: non-query interrupt received, switching to interrupt mode
    [ 9.424091] ACPI: EC: GPE = 0x1, I/O: command/status = 0x66, data = 0x62
    [ 9.424093] ACPI: EC: driver started in interrupt mode
    [ 9.424121] ACPI: PCI Root Bridge [PCI0] (0000:00)
    [ 9.424476] PCI quirk: region 4000-407f claimed by vt8235 PM
    [ 9.424479] PCI quirk: region 8100-810f claimed by vt8235 SMB
    [ 9.424831] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 9.429505] ACPI: PCI Interrupt Link [ALKA] (IRQs 16 17 18 19 20 21 22 23) *9, disabled.
    [ 9.429566] ACPI: PCI Interrupt Link [ALKB] (IRQs 23) *11, disabled.
    [ 9.429623] ACPI: PCI Interrupt Link [ALKC] (IRQs 22) *10, disabled.
    [ 9.429679] ACPI: PCI Interrupt Link [ALKD] (IRQs 21) *10, disabled.
    [ 9.429758] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 *9 12 14 15)
    [ 9.429834] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 *11 12 14 15)
    [ 9.429911] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 11 12 14 15) *10
    [ 9.429989] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12 14 15)
    [ 9.430072] Linux Plug and Play Support v0.97 (c) Adam Belay
    [ 9.430094] pnp: PnP ACPI init
    [ 9.430100] ACPI: bus type pnp registered
    [ 9.431744] pnp: PnP ACPI: found 9 devices
    [ 9.431746] ACPI: ACPI bus type pnp unregistered
    [ 9.431749] PnPBIOS: Disabled by ACPI PNP
    [ 9.431911] PCI: Using ACPI for IRQ routing
    [ 9.431913] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    [ 9.440208] NET: Registered protocol family 8
    [ 9.440210] NET: Registered protocol family 20
    [ 9.440263] AppArmor: AppArmor Filesystem Enabled
    [ 9.444179] Time: tsc clocksource has been installed.
    [ 9.452194] system 00:05: iomem range 0x0-0x9ffff could not be reserved
    [ 9.452197] system 00:05: iomem range 0xe0000-0xfffff could not be reserved
    [ 9.452200] system 00:05: iomem range 0xfff00000-0xffffffff could not be reserved
    [ 9.452202] system 00:05: iomem range 0xffee0000-0xffefffff has been reserved
    [ 9.452205] system 00:05: iomem range 0xfee00400-0xfee013ff has been reserved
    [ 9.452209] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
    [ 9.452212] system 00:06: ioport range 0xf510-0xf511 has been reserved
    [ 9.452214] system 00:06: ioport range 0xf500-0xf500 has been reserved
    [ 9.452217] system 00:06: ioport range 0x4000-0x407f has been reserved
    [ 9.452219] system 00:06: ioport range 0x8100-0x811f could not be reserved
    [ 9.452222] system 00:06: ioport range 0x300-0x301 has been reserved
    [ 9.482489] PCI: Bridge: 0000:00:01.0
    [ 9.482491] IO window: 2000-2fff
    [ 9.482495] MEM window: d0100000-d01fffff
    [ 9.482498] PREFETCH window: d8000000-dfffffff
    [ 9.482501] PCI: Bus 2, cardbus bridge: 0000:00:0a.0
    [ 9.482503] IO window: 00003000-000030ff
    [ 9.482506] IO window: 00003400-000034ff
    [ 9.482509] PREFETCH window: 60000000-63ffffff
    [ 9.482513] MEM window: 64000000-67ffffff
    [ 9.482526] PCI: Setting latency timer of device 0000:00:01.0 to 64
    [ 9.482564] ACPI: PCI Interrupt 0000:00:0a.0[A] -> GSI 17 (level, low) -> IRQ 16
    [ 9.482578] NET: Registered protocol family 2
    [ 9.520129] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 9.520405] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 9.521568] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 9.522231] TCP: Hash tables configured (established 131072 bind 65536)
    [ 9.522234] TCP reno registered
    [ 9.532191] checking if image is initramfs... it is
    [ 9.983332] Switched to high resolution mode on CPU 0
    [ 10.125480] Freeing initrd memory: 7310k freed
    [ 10.126042] audit: initializing netlink socket (disabled)
    [ 10.126056] audit(1257080872.088:1): initialized
    [ 10.126203] highmem bounce pool size: 64 pages
    [ 10.127704] VFS: Disk quotas dquot_6.5.1
    [ 10.127763] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 10.127889] io scheduler noop registered
    [ 10.127891] io scheduler anticipatory registered
    [ 10.127893] io scheduler deadline registered
    [ 10.127902] io scheduler cfq registered (default)
    [ 10.127909] PCI: VIA PCI bridge detected. Disabling DAC.
    [ 10.127965] Boot video device is 0000:01:00.0
    [ 10.128171] isapnp: Scanning for PnP cards...
    [ 10.481255] isapnp: No Plug & Play device found
    [ 10.506159] Real Time Clock Driver v1.12ac
    [ 10.506238] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
    [ 10.507165] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
    [ 10.507222] input: Macintosh mouse button emulation as /devices/virtual/input/input0
    [ 10.507291] PNP: PS/2 Controller [PNP0303S2K,PNP0f13S2M] at 0x60,0x64 irq 1,12
    [ 10.510302] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 10.510306] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 10.510585] mice: PS/2 mouse device common for all mice
    [ 10.510673] EISA: Probing bus 0 at eisa.0
    [ 10.510680] Cannot allocate resource for EISA slot 1
    [ 10.510682] Cannot allocate resource for EISA slot 2
    [ 10.510684] Cannot allocate resource for EISA slot 3
    [ 10.510686] Cannot allocate resource for EISA slot 4
    [ 10.510703] EISA: Detected 0 cards.
    [ 10.510705] cpuidle: using governor ladder
    [ 10.510707] cpuidle: using governor menu
    [ 10.510788] NET: Registered protocol family 1
    [ 10.510810] Using IPI No-Shortcut mode
    [ 10.510841] registered taskstats version 1
    [ 10.510933] Magic number: 1:547:128
    [ 10.511069] hash matches device device:03
    [ 10.511071] hash matches device PNP0C02:00
    [ 10.511077] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
    [ 10.511079] EDD information not available.
    [ 10.511514] Freeing unused kernel memory: 368k freed
    [ 10.511538] Write protecting the kernel read-only data: 803k
    [ 10.538373] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    [ 11.718516] fuse init (API version 7.9)
    [ 11.734652] ACPI: CPU0 (power states: C1[C1] C2[C2])
    [ 12.176772] ACPI: PCI Interrupt 0000:00:0c.0[A] -> GSI 18 (level, low) -> IRQ 17
    [ 12.176801] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x04, vendor 0x4243)
    [ 12.176806] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x05, vendor 0x4243)
    [ 12.176811] ssb: Core 2 found: PCMCIA (cc 0x80D, rev 0x02, vendor 0x4243)
    [ 12.176816] ssb: Core 3 found: V90 (cc 0x807, rev 0x02, vendor 0x4243)
    [ 12.176820] ssb: Core 4 found: PCI (cc 0x804, rev 0x09, vendor 0x4243)
    [ 12.180106] ssb: Sonics Silicon Backplane found on PCI device 0000:00:0c.0
    [ 12.204392] usbcore: registered new interface driver usbfs
    [ 12.204422] usbcore: registered new interface driver hub
    [ 12.215611] usbcore: registered new device driver usb
    [ 12.227587] USB Universal Host Controller Interface driver v3.0
    [ 12.227751] ACPI: PCI Interrupt Link [ALKD] disabled and referenced, BIOS bug
    [ 12.227797] ACPI: PCI Interrupt Link [ALKD] BIOS reported IRQ 0, using IRQ 21
    [ 12.227800] ACPI: PCI Interrupt Link [ALKD] enabled at IRQ 21
    [ 12.227808] ACPI: PCI Interrupt 0000:00:10.0[A] -> Link [ALKD] -> GSI 21 (level, low) -> IRQ 18
    [ 12.227818] uhci_hcd 0000:00:10.0: UHCI Host Controller
    [ 12.228067] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    [ 12.228099] uhci_hcd 0000:00:10.0: irq 18, io base 0x00001c80
    [ 12.228224] usb usb1: configuration #1 chosen from 1 choice
    [ 12.228248] hub 1-0:1.0: USB hub found
    [ 12.228252] hub 1-0:1.0: 2 ports detected
    [ 12.271232] SCSI subsystem initialized
    [ 12.319408] libata version 3.00 loaded.
    [ 12.331500] ACPI: PCI Interrupt 0000:00:10.1[B] -> Link [ALKD] -> GSI 21 (level, low) -> IRQ 18
    [ 12.331513] uhci_hcd 0000:00:10.1: UHCI Host Controller
    [ 12.331544] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
    [ 12.331566] uhci_hcd 0000:00:10.1: irq 18, io base 0x00001ca0
    [ 12.331666] usb usb2: configuration #1 chosen from 1 choice
    [ 12.331687] hub 2-0:1.0: USB hub found
    [ 12.331692] hub 2-0:1.0: 2 ports detected
    [ 12.331733] via-rhine.c:v1.10-LK1.4.3 2007-03-06 Written by Donald Becker
    [ 12.435324] ACPI: PCI Interrupt 0000:00:10.2[C] -> Link [ALKD] -> GSI 21 (level, low) -> IRQ 18
    [ 12.435337] uhci_hcd 0000:00:10.2: UHCI Host Controller
    [ 12.435358] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
    [ 12.435380] uhci_hcd 0000:00:10.2: irq 18, io base 0x00001cc0
    [ 12.435479] usb usb3: configuration #1 chosen from 1 choice
    [ 12.435499] hub 3-0:1.0: USB hub found
    [ 12.435504] hub 3-0:1.0: 2 ports detected
    [ 12.539239] ACPI: PCI Interrupt 0000:00:10.3[D] -> Link [ALKD] -> GSI 21 (level, low) -> IRQ 18
    [ 12.539255] ehci_hcd 0000:00:10.3: EHCI Host Controller
    [ 12.539278] ehci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 4
    [ 12.539317] ehci_hcd 0000:00:10.3: irq 18, io mem 0xd0002800
    [ 12.551016] ehci_hcd 0000:00:10.3: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    [ 12.551114] usb usb4: configuration #1 chosen from 1 choice
    [ 12.551134] hub 4-0:1.0: USB hub found
    [ 12.551141] hub 4-0:1.0: 6 ports detected
    [ 12.655598] ACPI: PCI Interrupt Link [ALKB] disabled and referenced, BIOS bug
    [ 12.655645] ACPI: PCI Interrupt Link [ALKB] BIOS reported IRQ 0, using IRQ 23
    [ 12.655647] ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 23
    [ 12.655656] ACPI: PCI Interrupt 0000:00:12.0[A] -> Link [ALKB] -> GSI 23 (level, low) -> IRQ 19
    [ 12.659768] eth0: VIA Rhine II at 0xd0002c00, 00:03:25:13:26:68, IRQ 19.
    [ 12.660475] eth0: MII PHY found at address 1, status 0x786d advertising 05e1 Link 45e1.
    [ 12.660777] ACPI: PCI Interrupt Link [ALKA] disabled and referenced, BIOS bug
    [ 12.660811] ACPI: PCI Interrupt Link [ALKA] BIOS reported IRQ 0, using IRQ 22
    [ 12.660813] ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 22
    [ 12.660817] ACPI: PCI Interrupt 0000:00:11.1[A] -> Link [ALKA] -> GSI 22 (level, low) -> IRQ 20
    [ 12.660871] ACPI: PCI interrupt for device 0000:00:11.1 disabled
    [ 12.662989] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 19 (level, low) -> IRQ 21
    [ 12.715627] ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[21] MMIO=[d0002000-d00027ff] Max Packet=[2048] IR/IT contexts=[4/8]
    [ 12.728945] pata_via 0000:00:11.1: version 0.3.3
    [ 12.728968] ACPI: PCI Interrupt 0000:00:11.1[A] -> Link [ALKA] -> GSI 22 (level, low) -> IRQ 20
    [ 12.729802] scsi0 : pata_via
    [ 12.730314] scsi1 : pata_via
    [ 12.730817] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x1ce0 irq 14
    [ 12.730819] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x1ce8 irq 15
    [ 12.894882] ata1.00: ATA-5: HITACHI_DK23FA-60, 00M4A0A0, max UDMA/100
    [ 12.894887] ata1.00: 117210240 sectors, multi 16: LBA
    [ 12.902765] ata1.00: configured for UDMA/100
    [ 13.134061] hub 4-0:1.0: over-current change on port 1
    [ 13.222231] ata2.00: ATAPI: Slimtype COMBO LSC-24082K, JK0N, max UDMA/33
    [ 13.237881] hub 4-0:1.0: over-current change on port 2
    [ 13.393822] ata2.00: configured for UDMA/33
    [ 13.393926] scsi 0:0:0:0: Direct-Access ATA HITACHI_DK23FA-6 00M4 PQ: 0 ANSI: 5
    [ 13.394699] scsi 1:0:0:0: CD-ROM Slimtype COMBO LSC-24082K JK0N PQ: 0 ANSI: 5
    [ 13.402031] Driver 'sd' needs updating - please use bus_type methods
    [ 13.402118] sd 0:0:0:0: [sda] 117210240 512-byte hardware sectors (60012 MB)
    [ 13.402129] sd 0:0:0:0: [sda] Write Protect is off
    [ 13.402132] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 13.402146] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 13.402185] sd 0:0:0:0: [sda] 117210240 512-byte hardware sectors (60012 MB)
    [ 13.402192] sd 0:0:0:0: [sda] Write Protect is off
    [ 13.402194] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 13.402205] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 13.402208] sda:<4>Driver 'sr' needs updating - please use bus_type methods
    [ 13.438126] sda1 sda2 < sda5 >
    [ 13.466214] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 13.471810] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 13.471829] sr 1:0:0:0: Attached scsi generic sg1 type 5
    [ 13.474544] sr0: scsi3-mmc drive: 0x/24x writer cd/rw xa/form2 cdda tray
    [ 13.474549] Uniform CD-ROM driver Revision: 3.20
    [ 13.474589] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 13.764001] Attempting manual resume
    [ 13.764006] swsusp: Resume From Partition 8:5
    [ 13.764007] PM: Checking swsusp image.
    [ 13.764164] PM: Resume from disk failed.
    [ 13.808869] kjournald starting. Commit interval 5 seconds
    [ 13.808881] EXT3-fs: mounted filesystem with ordered data mode.
    [ 13.884803] usb 2-2: new full speed USB device using uhci_hcd and address 2
    [ 13.992725] ieee1394: Host added: ID:BUS[0-00:1023] GUID[000325212900abce]
    [ 14.059535] usb 2-2: configuration #1 chosen from 1 choice
    [ 14.065482] hub 2-2:1.0: USB hub found
    [ 14.066459] hub 2-2:1.0: 3 ports detected
    [ 14.377897] usb 2-2.1: new full speed USB device using uhci_hcd and address 3
    [ 14.512726] usb 2-2.1: configuration #1 chosen from 1 choice
    [ 14.725270] usb 2-2.2: new low speed USB device using uhci_hcd and address 4
    [ 14.870088] usb 2-2.2: configuration #1 chosen from 1 choice
    [ 25.832958] Yenta: CardBus bridge found at 0000:00:0a.0 [161f:2032]
    [ 25.832977] Yenta: Using CSCINT to route CSC interrupts to PCI
    [ 25.832979] Yenta: Routing CardBus interrupts to PCI
    [ 25.832982] Yenta TI: socket 0000:00:0a.0, mfunc 0x01001002, devctl 0x44
    [ 25.980749] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 26.020609] Linux agpgart interface v0.102
    [ 26.065315] Yenta: ISA IRQ mask 0x0808, PCI irq 16
    [ 26.065319] Socket status: 30000006
    [ 26.085693] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 26.120498] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 26.213107] irda_init()
    [ 26.213128] NET: Registered protocol family 23
    [ 26.370628] input: Power Button (FF) as /devices/virtual/input/input3
    [ 26.379993] ACPI: Power Button (FF) [PWRF]
    [ 26.380068] input: Power Button (CM) as /devices/virtual/input/input4
    [ 26.395953] ACPI: Power Button (CM) [PWRB]
    [ 26.396033] input: Sleep Button (CM) as /devices/virtual/input/input5
    [ 26.411922] ACPI: Sleep Button (CM) [SLPB]
    [ 26.411964] input: Lid Switch as /devices/virtual/input/input6
    [ 26.412322] ACPI: Lid Switch [LID]
    [ 26.438658] agpgart: Detected AGP bridge 0
    [ 26.455305] agpgart: AGP aperture is 256M @ 0xe0000000
    [ 26.780850] ACPI: AC Adapter [AC] (on-line)
    [ 26.880587] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x236eb3, caps: 0x904713/0x10008
    [ 26.916314] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
    [ 27.102240] ACPI: Battery Slot [BAT0] (battery present)
    [ 27.415180] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:11/LNXVIDEO:00/input/input8
    [ 27.442251] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 27.760670] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 27.852650] [fglrx] Maximum main memory to use for locked dma buffers: 1171 MBytes.
    [ 27.852683] [fglrx] ASYNCIO init succeed!
    [ 27.852916] [fglrx] PAT is enabled successfully!
    [ 27.876098] [fglrx] module loaded - fglrx 8.47.3 [Feb 25 2008] on minor 0
    [ 27.903249] ACPI: PCI Interrupt Link [ALKC] disabled and referenced, BIOS bug
    [ 27.903294] ACPI: PCI Interrupt Link [ALKC] BIOS reported IRQ 0, using IRQ 22
    [ 27.903296] ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22
    [ 27.903300] ACPI: PCI Interrupt 0000:00:11.6[C] -> Link [ALKC] -> GSI 22 (level, low) -> IRQ 20
    [ 27.920045] PCI: Setting latency timer of device 0000:00:11.6 to 64
    [ 28.041428] usbcore: registered new interface driver hiddev
    [ 28.045355] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2.1/2-2.1:1.0/input/input9
    [ 28.055747] b43-phy0: Broadcom 4306 WLAN found
    [ 28.061251] input,hidraw0: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:10.1-2.1
    [ 28.067236] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2.1/2-2.1:1.1/input/input10
    [ 28.077162] b43-phy0 debug: Found PHY: Analog 2, Type 2, Revision 2
    [ 28.077183] b43-phy0 debug: Found Radio: Manuf 0x17F, Version 0x2050, Revision 2
    [ 28.081216] input,hidraw1: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:10.1-2.1
    [ 28.096272] input: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2.2/2-2.2:1.0/input/input11
    [ 28.102537] phy0: Selected rate control algorithm 'simple'
    [ 28.117113] input,hidraw2: USB HID v1.10 Mouse [Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)] on usb-0000:00:10.1-2.2
    [ 28.117132] usbcore: registered new interface driver usbhid
    [ 28.117136] /build/buildd/linux-2.6.24/drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
    [ 28.524500] ALSA /build/buildd/linux-ubuntu-modules-2.6.24-2.6.24/debian/build/build-generic/sound/alsa-driver/pci/ac97/ac97_codec.c:2160: MC'97 1 converters and GPIO not ready (0xff00)
    [ 28.525400] ACPI: PCI Interrupt 0000:00:11.5[C] -> Link [ALKC] -> GSI 22 (level, low) -> IRQ 20
    [ 28.525529] PCI: Setting latency timer of device 0000:00:11.5 to 64
    [ 28.989028] cs: IO port probe 0x100-0x3af: clean.
    [ 28.990939] cs: IO port probe 0x3e0-0x4ff: clean.
    [ 28.991752] cs: IO port probe 0x820-0x8ff: clean.
    [ 28.992420] cs: IO port probe 0xc00-0xcf7: clean.
    [ 28.993230] cs: IO port probe 0xa00-0xaff: clean.
    [ 30.368121] lp: driver loaded but no devices found
    [ 30.439882] ieee80211_crypt: registered algorithm 'NULL'
    [ 30.550659] Adding 2441840k swap on /dev/sda5. Priority:-1 extents:1 across:2441840k
    [ 31.092266] EXT3 FS on sda1, internal journal
    [ 32.353029] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 32.863958] No dock devices found.
    [ 33.170133] powernow-k8: Found 1 Mobile AMD Athlon(tm) 64 Processor 3200+ processors (1 cpu cores) (version 2.20.00)
    [ 33.170171] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x6
    [ 33.170173] powernow-k8: 1 : fid 0x8 (1600 MHz), vid 0xe
    [ 33.170175] powernow-k8: 2 : fid 0x0 (800 MHz), vid 0x18
    [ 33.975984] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    [ 33.975990] apm: overridden by ACPI.
    [ 34.330024] ppdev: user-space parallel port driver
    [ 34.488787] audit(1257080897.302:2): type=1503 operation="inode_permission" requested_mask="a::" denied_mask="a::" name="/dev/tty" pid=4963 profile="/usr/sbin/cupsd" namespace="default"
    [ 35.409157] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
    [ 35.456149] input: b43-phy0 as /devices/virtual/input/input12
    [ 35.536136] Bluetooth: Core ver 2.11
    [ 35.539098] NET: Registered protocol family 31
    [ 35.539102] Bluetooth: HCI device and connection manager initialized
    [ 35.539107] Bluetooth: HCI socket layer initialized
    [ 35.564912] Bluetooth: L2CAP ver 2.9
    [ 35.564918] Bluetooth: L2CAP socket layer initialized
    [ 35.654599] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 35.654607] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 35.686296] Bluetooth: RFCOMM socket layer initialized
    [ 35.686312] Bluetooth: RFCOMM TTY layer initialized
    [ 35.686313] Bluetooth: RFCOMM ver 1.8
    [ 93.061767] Marking TSC unstable due to: cpufreq changes.
    [ 93.070745] Time: acpi_pm clocksource has been installed.
    [ 93.334810] Clocksource tsc unstable (delta = -163967774 ns)
    [ 94.145526] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 22
    [ 94.204036] input: b43-phy0 as /devices/virtual/input/input13
    [ 94.250143] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 94.250156] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 39.837772] [fglrx] Internal AGP support requested, but kernel AGP support active.
    [ 39.837779] [fglrx] Have to use kernel AGP support to avoid conflicts.
    [ 39.837784] [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    [ 39.838639] agpgart: Found an AGP 3.5 compliant device at 0000:00:00.0.
    [ 39.838889] agpgart: Putting AGP V3 device at 0000:00:00.0 into 8x mode
    [ 39.839172] agpgart: Putting AGP V3 device at 0000:01:00.0 into 8x mode
    [ 39.839413] [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    [ 39.843245] [fglrx] GART Table is not in FRAME_BUFFER range
    [ 39.843252] [fglrx] Reserve Block - 0 offset = 0X0 length = 0X40000
    [ 39.843255] [fglrx] Reserve Block - 1 offset = 0X3ff5000 length = 0Xb000
    [ 39.977036] [fglrx] interrupt source 20008000 successfully enabled
    [ 39.977044] [fglrx] enable ID = 0x00000004
    [ 39.977532] [fglrx] Receive enable interrupt message with irqEnableMask: 20008000
    [ 39.977814] [fglrx] interrupt source 10000000 successfully enabled
    [ 39.977817] [fglrx] enable ID = 0x00000005
    [ 39.978125] [fglrx] Receive enable interrupt message with irqEnableMask: 10000000
    [ 40.338588] NET: Registered protocol family 17
    [ 105.510821] NET: Registered protocol family 10
    [ 105.511846] lo: Disabled Privacy Extensions
    [ 115.954831] eth0: no IPv6 routers present
    [ 116.285683] input: b43-phy0 as /devices/virtual/input/input14
    [ 116.326507] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 116.326520] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 56.398300] input: b43-phy0 as /devices/virtual/input/input15
    [ 56.440041] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 56.440048] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 168.510305] input: b43-phy0 as /devices/virtual/input/input16
    [ 168.552324] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 168.552337] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 174.528929] ACPI: EC: missing write data confirmation, don't expect it any longer.
    [ 195.588844] input: b43-phy0 as /devices/virtual/input/input17
    [ 195.632287] b43-phy0 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 195.632300] b43-phy0 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 203.331498] b43-phy1: Broadcom 4306 WLAN found
    [ 203.352850] b43-phy1 debug: Found PHY: Analog 2, Type 2, Revision 2
    [ 203.352879] b43-phy1 debug: Found Radio: Manuf 0x17F, Version 0x2050, Revision 2
    [ 203.383669] phy1: Selected rate control algorithm 'simple'
    [ 203.389302] BUG: unable to handle kernel NULL pointer dereference at virtual address 0000000d
    [ 203.389313] printing eip: c031c5db *pde = 00000000
    [ 203.389322] Oops: 0002 [#1] SMP
    [ 203.389328] Modules linked in: ipv6 af_packet binfmt_misc rfcomm l2cap bluetooth rfkill_input ppdev powernow_k8 cpufreq_userspace cpufreq_conservative cpufreq_ondemand cpufreq_stats freq_table cpufreq_powersave container sbs sbshc dock iptable_filter ip_tables x_tables wl(P) ieee80211_crypt sbp2 parport_pc lp parport joydev pcmcia arc4 ecb blkcipher b43 snd_via82xx usbhid rfkill hid gameport mac80211 snd_via82xx_modem snd_ac97_codec fglrx(P) ac97_bus snd_mpu401_uart cfg80211 snd_pcm_oss snd_mixer_oss snd_pcm led_class video output input_polldev snd_seq_dummy snd_seq_oss snd_seq_midi battery snd_rawmidi snd_seq_midi_event i2c_viapro i2c_core serio_raw ac snd_seq snd_timer snd_seq_device via_ircc evdev amd64_agp button snd psmouse irda k8temp shpchp pci_hotplug agpgart pcspkr soundcore crc_ccitt yenta_socket rsrc_nonstatic pcmcia_core snd_page_alloc ext3 jbd mbcache sg sr_mod cdrom sd_mod pata_via ata_generic ohci1394 pata_acpi ieee1394 via_rhine mii libata scsi_mod ehci_hcd uhci_hcd usbcore ssb thermal processor fan fbcon tileblit font bitblit softcursor fuse
    [ 203.389443]
    [ 203.389449] Pid: 5196, comm: ipolldevd Tainted: P (2.6.24-25-generic #1)
    [ 203.389456] EIP: 0060:[<c031c5db>] EFLAGS: 00010246 CPU: 0
    [ 203.389468] EIP is at mutex_lock+0xb/0x20
    [ 203.389473] EAX: 0000000d EBX: 0000000d ECX: f44850d8 EDX: f7632000
    [ 203.389479] ESI: 0000000d EDI: f44850c0 EBP: 00000001 ESP: f7633f54
    [ 203.389484] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068
    [ 203.389490] Process ipolldevd (pid: 5196, ti=f7632000 task=f772b700 task.ti=f7632000)
    [ 203.389495] Stack: dfa83800 f8b87d94 c031bc1a df9c5374 000000fa f44850c0 f44850d4 dfa16080
    [ 203.389507] f8ad00d0 f8ad00e4 f44850d4 dfa16080 c013ceff 00000000 000000ff 00000000
    [ 203.389518] 00000000 dfa16084 dfa1608c dfa16080 c013d9a0 dfa16084 c013da24 00000000
    [ 203.389529] Call Trace:
    [ 203.389540] [<f8b87d94>] b43_rfkill_poll+0x24/0xf0 [b43]
    [ 203.389573] [<c031bc1a>] schedule+0x20a/0x600
    [ 203.389606] [<f8ad00d0>] input_polled_device_work+0x0/0x40 [input_polldev]
    [ 203.389620] [<f8ad00e4>] input_polled_device_work+0x14/0x40 [input_polldev]
    [ 203.389640] [<c013ceff>] run_workqueue+0xbf/0x160
    [ 203.389682] [<c013d9a0>] worker_thread+0x0/0xe0
    [ 203.389695] [<c013da24>] worker_thread+0x84/0xe0
    [ 203.389713] [<c0140cb0>] autoremove_wake_function+0x0/0x40
    [ 203.389740] [<c013d9a0>] worker_thread+0x0/0xe0
    [ 203.389753] [<c01409f2>] kthread+0x42/0x70
    [ 203.389760] [<c01409b0>] kthread+0x0/0x70
    [ 203.389775] [<c0105667>] kernel_thread_helper+0x7/0x10
    [ 203.389812] =======================
    [ 203.389815] Code: 53 89 c3 e8 a8 fa ff ff b8 ff ff ff ff 90 0f c1 03 83 e8 01 78 04 5b 31 c0 c3 89 d8 5b eb 21 90 53 89 c3 e8 88 fa ff ff 89 d8 90 <ff> 08 79 05 e8 fc 00 00 00 5b c3 8d 76 00 8d bc 27 00 00 00 00
    [ 203.389862] EIP: [<c031c5db>] mutex_lock+0xb/0x20 SS:ESP 0068:f7633f54
    [ 203.389879] ---[ end trace 2b075207c47a1dda ]---
    [ 207.472936] input: b43-phy1 as /devices/virtual/input/input18
    [ 207.538926] b43-phy1 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 207.538937] b43-phy1 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 212.075573] input: b43-phy1 as /devices/virtual/input/input19
    [ 212.117987] b43-phy1 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 212.117998] b43-phy1 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 119.251352] input: b43-phy1 as /devices/virtual/input/input20
    [ 119.300746] b43-phy1 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 119.300753] b43-phy1 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).
    [ 269.812226] input: b43-phy1 as /devices/virtual/input/input21
    [ 269.854413] b43-phy1 ERROR: Firmware file "b43/ucode5.fw" not found or load failed.
    [ 269.854424] b43-phy1 ERROR: You must go to http://linuxwireless.org/en/users/Dr...devicefirmware and download the correct firmware (version 4).

Page 1 of 4 123 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •