mirror of
https://github.com/open-sdr/openwifi.git
synced 2024-12-19 13:48:24 +00:00
27 lines
636 B
Bash
Executable File
27 lines
636 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2019 Jiao Xianjun <putaoshu@msn.com>
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "You must enter exactly 1 arguments: \$OPENWIFI_DIR"
|
|
exit 1
|
|
fi
|
|
|
|
OPENWIFI_DIR=$1
|
|
|
|
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
|