Earlier daily builds

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
User avatar
rdagger
Posts: 143
Joined: Tue Feb 28, 2017 6:16 pm
Contact:

Earlier daily builds

Post by rdagger » Wed Jul 26, 2017 12:04 am

Looks like there is a problem with today's 7/25 daily firmware build.
Is there site where you can download previous daily builds?

User avatar
rdagger
Posts: 143
Joined: Tue Feb 28, 2017 6:16 pm
Contact:

Re: Earlier daily builds

Post by rdagger » Wed Jul 26, 2017 1:05 am

fyi: There was nothing wrong with the 7/25 firmware build.
Per Issue #109 you have to flash it at address 0x1000.

skylin008
Posts: 88
Joined: Wed Mar 11, 2015 6:21 am

Re: Earlier daily builds

Post by skylin008 » Thu Jul 27, 2017 9:53 am

Build the latest source code from github.com. The error information as follow:

Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity.
** WARNING **
The git hash of ESP IDF does not match the supported version
The build may complete and the firmware may work but it is not guaranteed
ESP IDF path: /home/ubuntu/esp/esp-idf
Current git hash: 843159b0d7284ba560345af312a1e7f8b14d19e7
Supported git hash: 4ec2abbf23084ac060679e4136fa222a2d0ab0e8
LINK build/bootloader.elf
xtensa-esp32-elf-gcc: error: build/bootloader//home/ubuntu/esp/esp-idf/components/bootloader/src/main/bootloader_start.o: No such file or directory
make: *** [build/bootloader.elf] Error 1
How to solve this issue ?Thanks!

User avatar
Roberthh
Posts: 3667
Joined: Sat May 09, 2015 4:13 pm
Location: Rhineland, Europe

Re: Earlier daily builds

Post by Roberthh » Thu Jul 27, 2017 10:14 am

Go into the esp-idf directory and issue the commands:

Code: Select all

git checkout 4ec2abbf23084ac060679e4136fa222a2d0ab0e8
git submodule update --init
And then rebuild & flash the firmware.

Post Reply