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>2013-08-19 21:58:41 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-08-19 21:58:41 -0300
commitd043ba29f93999ae92724d2196a1aaf3d6a1e548 (patch)
tree3a248391fd3df27d84b377dd94c41f2091afee20 /libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install
parentf7139c96225259a1cc601e86e03170e061766dd3 (diff)
downloadabslibre-d043ba29f93999ae92724d2196a1aaf3d6a1e548.tar.gz
abslibre-d043ba29f93999ae92724d2196a1aaf3d6a1e548.tar.bz2
abslibre-d043ba29f93999ae92724d2196a1aaf3d6a1e548.zip
linux-libre-kmod-alx: removed from git due which it was implemented by default in linux-libre 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.install32
1 files changed, 0 insertions, 32 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
deleted file mode 100644
index 069348192..000000000
--- a/libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install
+++ /dev/null
@@ -1,32 +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!."
-}