summaryrefslogtreecommitdiff
path: root/libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-09-20 17:25:40 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-09-20 17:25:40 -0300
commit739b80aa9f5784e34b2b72d779eb9f12d6d95463 (patch)
tree7ba5425fee44df35fff26fb30038403419ce61f8 /libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install
parent8bb646850762f30fc8b381db8a4dbeca71c7151e (diff)
remove linux-libre-lts-kmod-alx due which now linux-libre-lts has alx module support by default
Diffstat (limited to 'libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install')
-rw-r--r--libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install33
1 files changed, 0 insertions, 33 deletions
diff --git a/libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install b/libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install
deleted file mode 100644
index aad4270cd..000000000
--- a/libre/linux-libre-lts-kmod-alx/linux-libre-lts-kmod-alx.install
+++ /dev/null
@@ -1,33 +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!."
-}
-