Comment 25 for bug 333903

Revision history for this message
pauls (paulatgm) wrote :

> @ pauls: oh, great! so you are saying that if you have this file:
>
> ----------------- 8< ------------------
> blacklist bcm43xx
> blacklist b43
> blacklist b43legacy
> blacklist ssb
> blacklist b44
> # load wl before b44 so that both work
> install wl modprobe -r b43 b44 b43legacy ssb; modprobe --ignore-install wl $CMDLINE_OPTS; modprobe b44
> ----------------- 8< ------------------

It's almost the same .. just the --ignore-install option on b44 at the end:

paul :~$ cat /etc/modprobe.d/blacklist-bcm43
blacklist bcm43xx
blacklist b43
blacklist b43legacy
blacklist ssb
blacklist b44
# load wl before b44 so that both work
install wl modprobe -r b43 b44 b43legacy ssb; modprobe --ignore-install wl $CMDLINE_OPTS; modprobe --ignore-install b44

>
> and do update-initramfs, then everything works as it should? Did you
> also remove "wl" from /etc/modules again?

Yes, I removed "wl" from /etc/modules.

This works now for at least a couple reboots. Thanks for the great job Martin.