diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-05 00:46:07 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-05 00:46:07 -0200 |
commit | e5f33d0be128956cd7d6e37732914499a89123fa (patch) | |
tree | 6420e2cfdab6809d65c286f629bb9a19e93158a8 /libre/linux-libre-kmod-alx | |
parent | 4816d20a2ab59801670ecd6f34eab9574bc47035 (diff) | |
download | abslibre-e5f33d0be128956cd7d6e37732914499a89123fa.tar.gz abslibre-e5f33d0be128956cd7d6e37732914499a89123fa.tar.bz2 abslibre-e5f33d0be128956cd7d6e37732914499a89123fa.zip |
moving linux-libre-kmod-alx.install file to linux-libre-kmod-alx folder u_u
Diffstat (limited to 'libre/linux-libre-kmod-alx')
-rw-r--r-- | libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install | 33 |
1 files changed, 33 insertions, 0 deletions
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!." +} + |