Created
May 20, 2011 02:47
-
-
Save philcryer/982260 to your computer and use it in GitHub Desktop.
Install Broadcom Wifi driver on Dell Mini9 in Meego 1.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# MEEGO 1.2 WIFI | |
# install Broadcom Wifi driver on Dell Mini9 in Meego 1.2 | |
# created from http://slaine.org/_slaine/Meego_1.2_Wifi.html | |
# thanks slaine.org | |
sudo zypper update | |
sudo zypper install rpmdevtools | |
sudo zypper install pattern:meego-development-tools | |
sudo zypper install kernel-devel | |
wget http://slaine.org/meego/releases/1.2/ia32/source/wl-kmod-5.100.82.38-1.src.rpm | |
rpmbuild --rebuild --target=i586 wl-kmod-5.100.82.38-1.src.rpm | |
sudo rpm -ivh ~/rpmbuild/RPMS/i586/wl-kmod-5.100.82.38-1.i586.rpm | |
sudo modprobe -a wl | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment