This problem is still not solved but you can get wireless working by using ndiswrapper.
this will give you an output of the modules loaded to get iwl3945 working. The modules it shows are: iwl3945, iwlwifi_mac80211, cfg80211.
Then we must make sure that these are not loaded again
Code:
sudo nano /etc/modprobe.d/blacklist
and add:
#iwl
blacklist iwl3945
blacklist iwlwifi_mac80211
blacklist cfg80211
then remove the modules:
Code:
sudo rmmod iwl3945
sudo rmmod iwlwifi_mac80211
sudo rmmod cfg80211
then install ndiswrapper
Code:
sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9
install the windows driver
Code:
sudo ndiswrapper -i drivername.inf
make sure it starts at boottime, add ndiswrapper to /etc/modules
Code:
sudo nano /etc/modules
Now reboot and all should be fine
Jeroen
Bookmarks