updated on Fri Jan 13 04:01:25 UTC 2012
[aur-mirror.git] / rtl8192se-bfs / rtl8192se-bfs.install
blob221bbacbb6010020276614660951afd6a20eaf5a
1 KERNEL_VERSION="2.6.39-bfs"
3 refresh_depmod()
5     echo "updating kernel modules..."
6     depmod $KERNEL_VERSION -a
9 replace_module()
11     if [ `uname -r` = $KERNEL_VERSION ];then
12         echo "replacing the old modules..."
13         rmmod r8192se_pci
14         insmod r8192se_pci
15     fi
18 # arg 1:  the new package version
19 post_install()
21     refresh_depmod
24 # arg 1:  the new package version
25 # arg 2:  the old package version
26 post_upgrade()
28     refresh_depmod
29     replace_module
32 # arg 1:  the old package version
33 post_remove()
35     refresh_depmod
38 op=$1
39 shift
41 $op $*