summaryrefslogtreecommitdiff
path: root/libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-10-15 12:14:46 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-10-15 12:14:46 -0200
commit6e9042f7f4f57e1e21f25cedb99203f865c731dd (patch)
tree9f8e46c9efc316e1ffc67740bc9d3e3f623250bd /libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install
parent2f6d75d71b6191b9db9a3e560bac9cd7aa67419c (diff)
downloadabslibre-6e9042f7f4f57e1e21f25cedb99203f865c731dd.tar.gz
abslibre-6e9042f7f4f57e1e21f25cedb99203f865c731dd.tar.bz2
abslibre-6e9042f7f4f57e1e21f25cedb99203f865c731dd.zip
linux-libre-kmod-alx: adding new package
Diffstat (limited to 'libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install')
-rw-r--r--libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install33
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!."
+}
+