openwifi/user_space/build_wpa_supplicant_wo11b.sh

27 lines
650 B
Bash
Raw Normal View History

2020-03-04 18:39:12 +00:00
#!/bin/bash
2021-01-20 12:30:12 +00:00
2021-02-03 14:47:20 +00:00
# Author: Michael Mehari
# SPDX-FileCopyrightText: 2019 UGent
2021-01-20 12:30:12 +00:00
# SPDX-License-Identifier: AGPL-3.0-or-later
# if [ "$#" -ne 1 ]; then
# echo "You must enter exactly 1 arguments: \$OPENWIFI_DIR"
# exit 1
# fi
2020-03-04 18:39:12 +00:00
OPENWIFI_DIR=$(pwd)/../
2020-03-04 18:39:12 +00:00
set -x
cd $OPENWIFI_DIR/user_space
wget http://w1.fi/releases/wpa_supplicant-2.1.tar.gz
tar xzvf wpa_supplicant-2.1.tar.gz
patch -d wpa_supplicant-2.1/src/drivers/ < driver_nl80211.patch
cd wpa_supplicant-2.1/wpa_supplicant/
cp defconfig .config
sed -i 's/#CONFIG_LIBNL32.*/CONFIG_LIBNL32=y/g' .config
make -j16
# sudo make install
cd ../../
rm -r wpa_supplicant-2.1/ wpa_supplicant-2.1.tar.gz