mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-01-03 12:34:34 +00:00
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source ./scripts/mod_helpers.sh
|
|
|
|
if test "$(mod_filename mac80211)" = "mac80211.ko.gz" ; then
|
|
for driver in $(find "$1" -type f -name *.ko); do
|
|
echo COMPRESS $driver
|
|
gzip -9 $driver
|
|
done
|
|
fi
|