dbd1e184e3
This implements minimal IMC and IMV to allow TNC testing with PEAP (SoH) and TTLS/FAST with EAP-TNC. Signed-off-by: Jouni Malinen <j@w1.fi>
28 lines
438 B
Bash
Executable file
28 lines
438 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
cd ../../wpa_supplicant
|
|
if [ ! -e .config ]; then
|
|
cp ../tests/hwsim/example-wpa_supplicant.config .config
|
|
fi
|
|
make clean
|
|
make -j8
|
|
cd ../hostapd
|
|
if [ ! -e .config ]; then
|
|
cp ../tests/hwsim/example-hostapd.config .config
|
|
fi
|
|
make clean
|
|
make -j8 hostapd hlr_auc_gw
|
|
cd ../wlantest
|
|
make clean
|
|
make -j8
|
|
cd ../mac80211_hwsim/tools
|
|
make clean
|
|
make -j8
|
|
cd ../../tests/hwsim/tnc
|
|
make clean
|
|
make -j8
|
|
cd ..
|