Add script to easily build wpa_supplicant and hostapd

This commit is contained in:
Mathy 2020-05-22 18:12:21 +00:00 committed by Mathy Vanhoef
parent 7b4eb6403b
commit 3b6e997a2e

12
build.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
cd wpa_supplicant
make clean
cp defconfig .config
make -j 4
cd ../hostapd
make clean
cp defconfig .config
make -j 4