2023-07-14 17:29:38 +08:00
|
|
|
set -e
|
|
|
|
|
|
|
|
git submodule init
|
2023-07-21 13:55:19 +08:00
|
|
|
git submodule update --remote --merge --recursive driver/rfic
|
2023-07-14 17:29:38 +08:00
|
|
|
|
|
|
|
pushd driver/rfic
|
2023-07-21 09:17:30 +08:00
|
|
|
git clean -dxf
|
|
|
|
git fetch
|
2023-09-25 15:38:35 +08:00
|
|
|
git checkout DEV
|
2023-07-14 17:29:38 +08:00
|
|
|
git pull
|
|
|
|
#git checkout commitid
|
2023-07-21 13:55:19 +08:00
|
|
|
#git submodule init
|
|
|
|
#git submodule update
|
2023-07-14 17:29:38 +08:00
|
|
|
|
|
|
|
make clean
|
2023-07-21 09:17:30 +08:00
|
|
|
echo "#board_type:${BOARD_TYPE}"
|
|
|
|
make all board_type=${BOARD_TYPE}
|
2023-07-14 17:29:38 +08:00
|
|
|
popd
|