diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-08 19:10:31 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-05-08 19:10:31 -0300 |
commit | ab1197b1f637a909e0d95011795f3373338a4f23 (patch) | |
tree | 47a758b0548dff77d2c662becded58bff3cc0314 /libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install | |
parent | e3e74aa239d5956f409c7660fba8b7607b4abe2a (diff) | |
parent | 686a0e1b087db4f67b9dbad634bd1eb01e01d8bc (diff) | |
download | abslibre-ab1197b1f637a909e0d95011795f3373338a4f23.tar.gz abslibre-ab1197b1f637a909e0d95011795f3373338a4f23.tar.bz2 abslibre-ab1197b1f637a909e0d95011795f3373338a4f23.zip |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install')
-rw-r--r-- | libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install b/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install deleted file mode 100644 index 069348192..000000000 --- a/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install +++ /dev/null @@ -1,32 +0,0 @@ -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!." -} |