|
@@ -26,51 +26,50 @@ while [ "$1" != "" ]; do
|
|
|
esac
|
|
|
done
|
|
|
|
|
|
-echo "Building wpa_supplicant"
|
|
|
-cd ../../wpa_supplicant
|
|
|
+echo "Building TNC testing tools"
|
|
|
+cd tnc
|
|
|
+make clean > /dev/null
|
|
|
+make QUIET=1 -j8
|
|
|
+
|
|
|
+echo "Building wlantest"
|
|
|
+cd ../../../wlantest
|
|
|
+make clean > /dev/null
|
|
|
+make QUIET=1 -j8 > /dev/null
|
|
|
+
|
|
|
+echo "Building hostapd"
|
|
|
+cd ../hostapd
|
|
|
if [ ! -e .config -o $force_config -eq 1 ]; then
|
|
|
- cp ../tests/hwsim/example-wpa_supplicant.config .config
|
|
|
+ cp ../tests/hwsim/example-hostapd.config .config
|
|
|
else
|
|
|
- echo "wpa_supplicant config file exists"
|
|
|
+ echo "hostapd config file exists"
|
|
|
fi
|
|
|
|
|
|
if [ $use_lcov -eq 1 ]; then
|
|
|
if ! grep -q CONFIG_CODE_COVERAGE .config; then
|
|
|
echo CONFIG_CODE_COVERAGE=y >> .config
|
|
|
else
|
|
|
- echo "CONFIG_CODE_COVERAGE already exists in wpa_supplicant/.config. Ignore"
|
|
|
+ echo "CONFIG_CODE_COVERAGE already exists in hostapd/.config. Ignore"
|
|
|
fi
|
|
|
fi
|
|
|
|
|
|
make clean > /dev/null
|
|
|
-make QUIET=1 -j8
|
|
|
+make QUIET=1 -j8 hostapd hostapd_cli hlr_auc_gw
|
|
|
|
|
|
-echo "Building hostapd"
|
|
|
-cd ../hostapd
|
|
|
+echo "Building wpa_supplicant"
|
|
|
+cd ../wpa_supplicant
|
|
|
if [ ! -e .config -o $force_config -eq 1 ]; then
|
|
|
- cp ../tests/hwsim/example-hostapd.config .config
|
|
|
+ cp ../tests/hwsim/example-wpa_supplicant.config .config
|
|
|
else
|
|
|
- echo "hostapd config file exists"
|
|
|
+ echo "wpa_supplicant config file exists"
|
|
|
fi
|
|
|
|
|
|
if [ $use_lcov -eq 1 ]; then
|
|
|
if ! grep -q CONFIG_CODE_COVERAGE .config; then
|
|
|
echo CONFIG_CODE_COVERAGE=y >> .config
|
|
|
else
|
|
|
- echo "CONFIG_CODE_COVERAGE already exists in hostapd/.config. Ignore"
|
|
|
+ echo "CONFIG_CODE_COVERAGE already exists in wpa_supplicant/.config. Ignore"
|
|
|
fi
|
|
|
fi
|
|
|
|
|
|
-make clean > /dev/null
|
|
|
-make QUIET=1 -j8 hostapd hostapd_cli hlr_auc_gw
|
|
|
-
|
|
|
-echo "Building wlantest"
|
|
|
-cd ../wlantest
|
|
|
-make clean > /dev/null
|
|
|
-make QUIET=1 -j8 > /dev/null
|
|
|
-
|
|
|
-echo "Building TNC testing tools"
|
|
|
-cd ../tests/hwsim/tnc
|
|
|
make clean > /dev/null
|
|
|
make QUIET=1 -j8
|
|
|
-cd ..
|