summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-05-08 16:15:15 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-05-08 16:15:15 -0300
commitb8f51a44a630a25e763ffc6ce5dc74f009bf57d1 (patch)
tree72151715114745caa093831752f8f1bbfbf55590 /libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install
parent81e96516c28818a35ba888ecc89727dae1f76bfa (diff)
linux-libre-kmod-alx-3.9rc4.2-2: updating version
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.install32
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!."
-}