From ef3d62986a4e195452561d67ae4e650fea19f134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Tue, 30 Apr 2013 22:27:18 -0300 Subject: linux-libre-kmod-alx-3.9rc4.2-1: updating version, but under testing --- .../linux-libre-kmod-alx.install | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install (limited to 'libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install') 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 new file mode 100644 index 000000000..069348192 --- /dev/null +++ b/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install @@ -0,0 +1,32 @@ +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-2-g168b