2013-08-17 20:54:27 +00:00
|
|
|
post_install (){
|
|
|
|
|
|
|
|
MODULE="mt7601"
|
2014-07-13 20:32:03 +00:00
|
|
|
VERSION="v3.0.0.4"
|
2013-08-17 20:54:27 +00:00
|
|
|
DKMS=$(which dkms)
|
|
|
|
MODPROBE=$(which modprobe)
|
|
|
|
CP=$(which cp)
|
|
|
|
MKDIR=$(which mkdir)
|
2014-07-13 20:32:03 +00:00
|
|
|
DEPMOD=$(which depmod)
|
2013-08-17 20:54:27 +00:00
|
|
|
|
|
|
|
# TODO: replace /usr/src with a variable.
|
|
|
|
SRCDIR=/usr/src/$MODULE-$VERSION
|
|
|
|
|
|
|
|
$DKMS add -m $MODULE -v $VERSION
|
|
|
|
$DKMS build -m $MODULE -v $VERSION
|
|
|
|
$DKMS install -m $MODULE -v $VERSION
|
|
|
|
|
|
|
|
# This file is read form a hardcoded location.
|
|
|
|
# Can we put this in a standard location?
|
|
|
|
PARAMSDIR="/etc/Wireless/RT2870STA"
|
|
|
|
$MKDIR -p $PARAMSDIR
|
|
|
|
$CP $SRCDIR/RT2870STA.dat $PARAMSDIR
|
|
|
|
|
2014-07-13 20:32:03 +00:00
|
|
|
$DEPMOD -a $(uname -r)
|
|
|
|
|
|
|
|
#$MODPROBE -a mt7601Usta mtutil7601Usta mtnet7601Usta
|
|
|
|
$MODPROBE -a mt7601Usta
|
2013-08-17 20:54:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre_upgrade(){
|
|
|
|
pre_remove
|
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade(){
|
|
|
|
post_install
|
|
|
|
}
|
|
|
|
|
|
|
|
pre_remove (){
|
|
|
|
_inmemory=$(/usr/bin/lsmod | /usr/bin/grep mt7601)
|
|
|
|
if [ ! -z "$_inmemory" ]; then
|
|
|
|
/usr/bin/rmmod mt7601 &> /dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
DKMS=$(which dkms)
|
|
|
|
|
|
|
|
_line=$($DKMS status -m mt7601)
|
|
|
|
if echo "$_line" | grep -E 'added|built|installed'; then
|
|
|
|
version=$(echo "$_line" | sed 's/mt7601,\([^,]*\)[,:].*/\1/;t;d')
|
|
|
|
$DKMS remove -m mt7601 -v $version --all
|
|
|
|
fi
|
2013-08-17 23:18:31 +00:00
|
|
|
|
|
|
|
RM=$(which rm)
|
|
|
|
RMDIR=$(which rmdir)
|
|
|
|
$RM -rf /etc/Wireless/RT2870STA
|
|
|
|
$RMDIR --ignore-fail-on-non-empty /etc/Wireless
|
2013-08-17 20:54:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_remove () {
|
|
|
|
/sbin/depmod -a
|
|
|
|
}
|
|
|
|
|
|
|
|
op=$1
|
|
|
|
shift
|
|
|
|
$op $*
|