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 /libre/kmod-alx/kmod-alx.install | |
parent | 8ab23816436a1ffb349a429d9984c1bf38420f39 (diff) |
linux-libre-kmod-alx-3.8rc5.1-1: updating version and revert package name
Diffstat (limited to 'libre/kmod-alx/kmod-alx.install')
-rw-r--r-- | libre/kmod-alx/kmod-alx.install | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/libre/kmod-alx/kmod-alx.install b/libre/kmod-alx/kmod-alx.install deleted file mode 100644 index aad4270cd..000000000 --- a/libre/kmod-alx/kmod-alx.install +++ /dev/null @@ -1,33 +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!." -} - |