diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2012-10-17 13:14:15 -0200 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2012-10-17 13:14:15 -0200 |
commit | 8948d4e3d53f900898e55ebade36f8b0bb4fb6a8 (patch) | |
tree | 7c78ddf69969ab20fe3bc74388ec5225fc93bb92 /libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install | |
parent | acb705ccf45be188a40e17ed361f80a2e3431d28 (diff) | |
parent | c22b02fcf981f314d042344d25a7b58fb87b3ec4 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install')
-rw-r--r-- | libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install b/libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install new file mode 100644 index 000000000..aad4270cd --- /dev/null +++ b/libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install @@ -0,0 +1,33 @@ +generic() { + echo " > Running depmod now..." + depmod -a +} + +unload() { + lsmod | grep alx > /dev/null + if [ "$?" = "0" ]; then + rmmod alx + fi +} + +post_install() { + generic + echo " > Reloading alx module..." + echo " Please note that you may REBOOT your system to get it works!" + unload + sleep 0.5 + modprobe alx +} + +post_upgrade() { + post_install +} + +post_remove() { + generic + echo " > Unloading memory resident module..." + unload + rmmod compat + echo " Module unloaded!." +} + |