blob: b7673d7bd636f729ec0e7449431e8dc728dc013d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
set -e
echo "installing required packages..."
apt-get update
apt-get install module-assistant linux-headers-kirkwood build-essentials
echo "git fetching kernel module src..."
rm -rf /tmp/dpla
git clone --depth 1 http://github.com/bnewbold/dreamplug-libertas_uap /tmp/dpla
echo "building..."
cd /tmp/dpla/libertas_uap
make CONFIG_LIBERTAS_UAP=m -C /lib/modules/$(uname -r)/build M=$(pwd)
echo "installing..."
mkdir -v /lib/modules/$(uname -r)/kernel/drivers/net/wireless/libertas_uap
cp -v uap8xxx.ko-3.2.9-kirkwood /lib/modules/$(uname -r)/kernel/drivers/net/wireless/libertas_uap
depmod -a
cd ..
cp -vr firmware/mrvl /lib/firmware/mrvl
cp -v modprobe_libertas_uap.conf /etc/modprobe.d/libertas_uap
echo "installed, probably need to reboot now?"
|