The boot script from RedBass don't solve everything...
I have a bcm4306 wireless card in my Dell Inspiron 5150 laptop and with the script, it solve my wireless problem (using ndiswrapper by the way).
BUT: i have b44 module used to manage my wired ethernet port that is no more loaded because of the script...
Had to modify the script like this to correct my problem:
#! /bin/sh
### BEGIN INIT INFO
# Provides: ndiswrapper
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: enable to load ndiswrapper
# Description: enable to load ndiswrapper
### END INIT INFO
The boot script from RedBass don't solve everything...
I have a bcm4306 wireless card in my Dell Inspiron 5150 laptop and with the script, it solve my wireless problem (using ndiswrapper by the way).
BUT: i have b44 module used to manage my wired ethernet port that is no more loaded because of the script...
Had to modify the script like this to correct my problem:
#! /bin/sh
### BEGIN INIT INFO
# Provides: ndiswrapper
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: enable to load ndiswrapper
# Description: enable to load ndiswrapper
### END INIT INFO
rmmod b44
rmmod ohci_hcd
rmmod ssb
rmmod ndiswrapper
modprobe ndiswrapper
modprobe ssb
modprobe ohci_hcd
modproble b44
############# end file ############