diff options
author | Nicolás Reynolds <fauno@parabola.nu> | 2013-05-09 12:56:22 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@parabola.nu> | 2013-05-09 12:56:22 -0300 |
commit | fc6ac266ca40c415d00a893e04386d4b5ab22535 (patch) | |
tree | 03b151d5cde183e2fbacbf450670a146fb328fc8 /libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install | |
parent | 38645b8df2bcf7ffe483e47145d876ad3a17964f (diff) | |
parent | d940a67681beff3d6204cd08d31456dbef3a0cb1 (diff) |
Merge branch 'master' of vparabola: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!." -} |