g60-g70 team mailing list archive
-
g60-g70 team
-
Mailing list archive
-
Message #00024
fix for atheros wireless
Hi,
This fix has been reported in ubuntuforums for people with atheros
wireless chips:
http://ubuntuforums.org/showpost.php?p=8225680&postcount=73
a) boot with "noapic nolapic"
http://ubuntuforums.org/showpost.php?p=8488006&postcount=83
b) to solve the suspend/resume issues, add this to the starting scripts:
Create 10_getstupidwirelessworking in /etc/pm/sleep.d (with no
extension) and copy and paste this in the file:
#!/bin/bash
case "${1}" in
resume|thaw)
rmmod ath9k
modprobe ath9k
echo "The ath9k script sucessfully ran on $(date)" | sudo tee -a
/var/log/ath9k_resume_script.log
;;
esac
Cheers,
Albert.
Follow ups