mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2024-12-21 22:48:00 +00:00
18 lines
306 B
Bash
18 lines
306 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
source ./scripts/mod_helpers.sh
|
||
|
|
||
|
if test "$(mod_filename mac80211)" = "mac80211.ko.gz" ; then
|
||
|
compr=".gz"
|
||
|
else
|
||
|
compr=""
|
||
|
fi
|
||
|
|
||
|
for driver in $(find ${BACKPORT_PWD} -type f -name *.ko); do
|
||
|
mod_name=${KLIB}${KMODDIR}/${driver}${compr}
|
||
|
echo " uninstall" $mod_name
|
||
|
rm -f $mod_name
|
||
|
done
|