We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b3ce3 commit 102cc12Copy full SHA for 102cc12
tools/autobuild/build-boards.sh
@@ -30,8 +30,8 @@ function build_board {
30
dest=$dest_dir/$descr$fw_tag.$ext
31
if [ -r $build_dir/firmware.$ext ]; then
32
mv $build_dir/firmware.$ext $dest
33
- else
34
- # esp32 has micropython.elf and micropython.map
+ elif [ -r $build_dir/micropython.$ext ]; then
+ # esp32 has micropython.elf, etc
35
mv $build_dir/micropython.$ext $dest
36
fi
37
done
@@ -93,7 +93,7 @@ function build_esp32_boards {
93
else
94
if [ $mcu != esp32 ]; then
95
# build esp32-s2/s3/c3 based boards with IDF v4.4+
96
- build_board $board_json $fw_tag $dest_dir bin elf map
+ build_board $board_json $fw_tag $dest_dir bin elf map uf2
97
98
99
0 commit comments