From e5f33d0be128956cd7d6e37732914499a89123fa Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Tue, 5 Feb 2013 00:46:07 -0200 Subject: moving linux-libre-kmod-alx.install file to linux-libre-kmod-alx folder u_u --- .../linux-libre-kmod-alx.install | 33 ++++++++++++++++++++++ linux-libre-kmod-alx.install | 33 ---------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install delete mode 100644 linux-libre-kmod-alx.install 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!." +} + diff --git a/linux-libre-kmod-alx.install b/linux-libre-kmod-alx.install deleted file mode 100644 index aad4270cd..000000000 --- a/linux-libre-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!." -} - -- cgit v1.2.3