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_binary.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 install_binary.sh (limited to 'install_binary.sh') diff --git a/install_binary.sh b/install_binary.sh new file mode 100755 index 0000000..86a13fb --- /dev/null +++ b/install_binary.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +if ! [ `uname -r` = "3.2.9-kirkwood" ] +then + echo "Got: `uname -r`, need 3.2.9-kirkwood" + echo "Wrong kernel version, binary module won't work. Try a source install?" + exit 1 +fi + +echo "git fetching kernel module binaries..." +rm -rf /tmp/dpla +git clone --depth 1 http://github.com/bnewbold/dreamplug-libertas_uap /tmp/dpla +cd /tmp/dpla + +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 +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