diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2023-08-24 15:44:16 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-08-24 15:44:20 +1000 |
commit | bc1af5ab7f9f28d0bfd882a7f00027b146feb11e (patch) | |
tree | 7514ecd651c5473b571d464d667f738a99bca678 /tools/autobuild/autobuild.sh | |
parent | 326dfd2a8579828c4159d965c6a41883a2a90029 (diff) | |
download | micropython-bc1af5ab7f9f28d0bfd882a7f00027b146feb11e.tar.gz micropython-bc1af5ab7f9f28d0bfd882a7f00027b146feb11e.zip |
cc3200/Makefile: Build firmware.zip.
This allows the cc3200 port to be build with the standard autobuild script
rather than the custom build-cc3200-latest.sh (which is now removed).
This also fixes the path inside the zip file (by using the `-j` flag to
zip).
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tools/autobuild/autobuild.sh')
-rwxr-xr-x | tools/autobuild/autobuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/autobuild/autobuild.sh b/tools/autobuild/autobuild.sh index 12ac230dfb..e1f2287ee5 100755 --- a/tools/autobuild/autobuild.sh +++ b/tools/autobuild/autobuild.sh @@ -60,7 +60,7 @@ FW_TAG="-$FW_DATE-unstable-$FW_GIT" # build new firmware cd ports/cc3200 -${AUTODIR}/build-cc3200-latest.sh ${FW_TAG} ${LOCAL_FIRMWARE} +build_cc3200_boards ${FW_TAG} ${LOCAL_FIRMWARE} cd ../esp8266 build_esp8266_boards ${FW_TAG} ${LOCAL_FIRMWARE} cd ../esp32 |