modwifi/genrelease.sh

17 lines
456 B
Bash
Raw Permalink Normal View History

2015-01-15 22:28:00 +00:00
#!/bin/bash
set -e
echo -e "Make sure all projects are on the correct branch...\n"
# Let at modules generate their result in a tar
cd ../ath9k-htc/ && ./build.sh release && cd -
cd ../backports/ && ./release.sh && cd -
2016-04-03 10:44:08 +00:00
cd ../tools/ && ./release.sh && cd -
2015-01-15 22:28:00 +00:00
# Combine and zip all results
cp ../drivers.tar modwifi.tar
tar --concatenate --file=modwifi.tar ../firmware.tar
tar --concatenate --file=modwifi.tar ../tools.tar
gzip modwifi.tar