From 65a70abc8e035d90735258193bc17e6a89a8925b Mon Sep 17 00:00:00 2001 From: bnewbold Date: Tue, 18 Sep 2012 00:23:21 +0200 Subject: add remote-fetching install scripts --- install_src.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 install_src.sh (limited to 'install_src.sh') diff --git a/install_src.sh b/install_src.sh new file mode 100755 index 0000000..cf5bc13 --- /dev/null +++ b/install_src.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +echo "installing required packages..." +#apt-get update +apt-get install -y module-assistant linux-headers-kirkwood build-essential git-core + +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 -pv /lib/modules/$(uname -r)/kernel/drivers/net/wireless/libertas_uap +cp -v uap8xxx.ko /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?" -- cgit v1.2.3