diff options
| author | Angus Gratton <angus@redyak.com.au> | 2025-12-03 11:23:34 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-12-03 15:04:21 +1100 |
| commit | 5ea9a2662d9f530f88d566aec76cfaef5f6d392d (patch) | |
| tree | 6a51134632b7a2295fee7615d3a965c90551cf25 | |
| parent | a94f8114f3bd6a01093b99a75ef62ff619a61a23 (diff) | |
esp32: Don't disable component manager when updating submodules.
- Reverts the change from ec527a1 - since later change cccac2cc we
no longer exit CMake early to get the submodule list, so it's OK
to run component manager during this phase.
- Fixes issue where "make submodules BOARD=ESP32_GENERIC_S3" (or any other
board that depends on USB) would fail due to missing component(s).
This work was funded through GitHub Sponsors.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
| -rw-r--r-- | ports/esp32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/Makefile b/ports/esp32/Makefile index d0984127c..e767f96c2 100644 --- a/ports/esp32/Makefile +++ b/ports/esp32/Makefile @@ -112,4 +112,4 @@ size-files: # This is done in a dedicated build directory as some CMake cache values are not # set correctly if not all submodules are loaded yet. submodules: - $(Q)IDF_COMPONENT_MANAGER=0 idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure + $(Q)idf.py $(IDFPY_FLAGS) -B $(BUILD)/submodules -D UPDATE_SUBMODULES=1 reconfigure |
