diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-04 23:19:25 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-02-04 23:19:25 -0200 |
commit | 8ab23816436a1ffb349a429d9984c1bf38420f39 (patch) | |
tree | bb0c76bd808d8905aaae88252a1fb20037e71a43 /libre/linux-libre-kmod-alx/linux-libre-kmod-alx.install | |
parent | 1d27007747b63df16def1f76ad6da96ce4e5a7da (diff) | |
download | abslibre-8ab23816436a1ffb349a429d9984c1bf38420f39.tar.gz abslibre-8ab23816436a1ffb349a429d9984c1bf38420f39.tar.bz2 abslibre-8ab23816436a1ffb349a429d9984c1bf38420f39.zip |
kmod-alx-20130203-1: updating version
* rename package name
* build against linux-libre 3.7.6-1
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.install | 33 |
1 files changed, 0 insertions, 33 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 aad4270cd..000000000 --- a/libre/linux-libre-kmod-alx/linux-libre-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!." -} - |