prepare for release

This commit is contained in:
Xianjun Jiao
2020-03-04 19:39:12 +01:00
parent 92ad903f06
commit b73660ad79
34 changed files with 3823 additions and 588 deletions

28
user_space/get_fpga.sh Executable file
View File

@ -0,0 +1,28 @@
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "You must enter the \$OPENWIFI_DIR (the openwifi root directory) as argument"
exit 1
fi
OPENWIFI_DIR=$1
if [ -f "$OPENWIFI_DIR/LICENSE" ]; then
echo "\$OPENWIFI_DIR is found!"
else
echo "\$OPENWIFI_DIR is not correct. Please check!"
exit 1
fi
home_dir=$(pwd)
set -ex
cd $OPENWIFI_DIR/
git submodule init openwifi-hw
git submodule update openwifi-hw
cd openwifi-hw
git checkout master
git pull
cd $home_dir