| b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |||||
| 3 | DIR=`mktemp -d` | ||||
| 4 | pushd ../.. > /dev/null | ||||
| 5 | git archive --format=tar --prefix=hostap-build/ HEAD > $DIR/hostap-build.tar | ||||
| 6 | popd > /dev/null | ||||
| 7 | |||||
| 8 | echo "Build test directory: $DIR" | ||||
| 9 | echo | ||||
| 10 | |||||
| 11 | for i in build-hostapd-*.config; do | ||||
| 12 | ./build-hostapd.sh $DIR $i | ||||
| 13 | done | ||||
| 14 | |||||
| 15 | for i in build-wpa_supplicant-*.config; do | ||||
| 16 | ./build-wpa_supplicant.sh $DIR $i | ||||
| 17 | done | ||||
| 18 | |||||
| 19 | echo | ||||
| 20 | echo "Build test directory: $DIR" | ||||