fix: OTA update on x3 and progress bar on x4 and x3 (#1805)

Co-authored-by: Justin Mitchell <1875695+itsthisjustin@users.noreply.github.com>
This commit is contained in:
Justin Mitchell
2026-05-01 19:15:15 -04:00
committed by GitHub
co-authored by Justin Mitchell
parent 15ea7027df
commit ba4a361d64
5 changed files with 32 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
// Override the prebuilt libbootloader_support.a implementation.
// The X3's validation code misreads the new image's esp_app_desc_t through a
// misaligned bootloader_mmap pointer, producing garbage eFuse block revision
// values that fail the check. Safe to skip: the eFuse block revision gate is
// a manufacturing concern, not a runtime safety issue.
#include <esp_err.h>
esp_err_t __wrap_bootloader_common_check_efuse_blk_validity(uint32_t min_rev_full, uint32_t max_rev_full) {
(void)min_rev_full;
(void)max_rev_full;
return ESP_OK;
}