updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / rt2860 / install.rt2860
blobfafff54fcca6f8e467ddeea3634418b7ffaaceed
1  # arg 1:  the new package version
2  post_install() {
3    depmod -a
4    echo "This driver is called rt2860sta. Use 'modprobe rt2860sta' to load it. Please make sure you edit /etc/rc.conf accordingly.";
5    echo "IMPORTANT: To avoid conflicts backup and delete your current rt2860sta module included in the kernel26 pkg"
6    echo "at path /lib/modules/$(uname -r)/kernel/drivers/staging/rt2860/rt2860sta.ko, then run depmod -a."
7  }
9  # arg 1:  the new package version
10  # arg 2:  the old package version
11  post_upgrade() {
12    post_install $1
13  }
15  # arg 1:  the old package version
16  post_remove() {
17    depmod -a
18  }
20  op=$1
21  shift
22  $op $*