Page 1 of 1

How to combine bootloader.bin, partitions.bin and application.bin?

Posted: Tue Jun 19, 2018 12:27 pm
by ZKDMun
Hi there,
to build a firmware for the ESP8266 I use this one:
https://github.com/adafruit/esp8266-micropython-vagrant
Like you can see in the README, the result will be an output "firmware-combined.bin".

But for the ESP32 there are build three binary firmware images (bootloader.bin, partitions.bin and applications.bin).
(see Readme: https://github.com/micropython/micropyt ... orts/esp32)

How can I make something like a "firmware-combined.bin" (see the abovementioned esp8266 example)?
(I try to build a single binary firmware image, like this ones here: http://micropython.org/download#esp32)

Re: How to combine bootloader.bin, partitions.bin and application.bin?

Posted: Tue Jun 19, 2018 12:53 pm
by ZKDMun
Found the combined firmware:
https://github.com/micropython/micropyt ... 2/Makefile (line 652)
To copy out the firmware bin file:

Code: Select all

cp ./build/firmware.bin /vagrant/
can be closed...