diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-05 00:42:18 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-05 00:42:18 -0200 |
commit | 4816d20a2ab59801670ecd6f34eab9574bc47035 (patch) | |
tree | 67567137a1052f4560349c13d3a5f432a357456e /linux-libre-kmod-alx.install | |
parent | 8ab23816436a1ffb349a429d9984c1bf38420f39 (diff) |
linux-libre-kmod-alx-3.8rc5.1-1: updating version and revert package name
Diffstat (limited to 'linux-libre-kmod-alx.install')
-rw-r--r-- | linux-libre-kmod-alx.install | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/linux-libre-kmod-alx.install b/linux-libre-kmod-alx.install new file mode 100644 index 000000000..aad4270cd --- /dev/null +++ b/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!." +} + |