diff options
author | Dominik Sliwa <dominik.sliwa@toradex.com> | 2017-11-21 12:59:41 +0000 |
---|---|---|
committer | Dominik Sliwa <dominik.sliwa@toradex.com> | 2017-12-22 09:40:23 +0000 |
commit | e34cb44ac7c08783b98a16eec70125e205e6eb12 (patch) | |
tree | 1101d23f1a73e5627ae187b07c7a0cf8826e10d1 /scripts/compress_modules.sh |
initial commit
Generated againts 4.14 kernel source with
git backports 1d8cc151d365582b42be00af776270b834a7a37d
Diffstat (limited to 'scripts/compress_modules.sh')
-rwxr-xr-x | scripts/compress_modules.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/compress_modules.sh b/scripts/compress_modules.sh new file mode 100755 index 0000000..b2034c2 --- /dev/null +++ b/scripts/compress_modules.sh @@ -0,0 +1,12 @@ +#!/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 |