yb_arm/build_jesd.sh

18 lines
307 B
Bash
Raw Normal View History

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
git clean -dxf
git fetch
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
echo "#board_type:${BOARD_TYPE}"
make all board_type=${BOARD_TYPE}
2023-07-14 17:29:38 +08:00
popd