boot: zephyr: socs: add esp32c61 and esp32s31 config - #2809
Open
sylvioalves wants to merge 2 commits into
Open
Conversation
almir-okato
approved these changes
Jul 31, 2026
nordicjm
reviewed
Aug 4, 2026
|
|
||
| CONFIG_XIP=n | ||
| CONFIG_HEAP_MEM_POOL_SIZE=4096 | ||
| CONFIG_PICOLIBC=y |
Collaborator
There was a problem hiding this comment.
picolibc isn't needed since it's set in prj.conf
Collaborator
Author
There was a problem hiding this comment.
also updated other socs
nordicjm
reviewed
Aug 4, 2026
| CONFIG_XIP=n | ||
| CONFIG_HEAP_MEM_POOL_SIZE=4096 | ||
| CONFIG_PICOLIBC=y | ||
| CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=0 |
Collaborator
There was a problem hiding this comment.
likewise with malloc size
nordicjm
reviewed
Aug 4, 2026
Comment on lines
+13
to
+14
| CONFIG_MCUBOOT_LOG_LEVEL_OFF=y | ||
| CONFIG_LOG_DEFAULT_LEVEL=0 |
Collaborator
There was a problem hiding this comment.
why not just disable logging?
Collaborator
Author
There was a problem hiding this comment.
CONFIG_LOG=n costs ~1.4 KB on any RISC-V Zephyr target because it swaps a compile-time-gated LOG_ERR for an ungated printk, so better keep as is until some work is done.
Collaborator
Author
There was a problem hiding this comment.
CONFIG_PICOLIBC and CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE are already set to the same values in prj.conf, so setting them again per SoC has no effect. Remove them from the Espressif fragments. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
Add Kconfig for the ESP32-C61 and ESP32-S31 SoCs, mirroring the existing Espressif bootloader configuration. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
sylvioalves
force-pushed
the
add-esp32c61-esp32s31-socs
branch
from
August 6, 2026 14:30
2014ee8 to
930ae10
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Kconfig for the ESP32-C61 and ESP32-S31 SoCs, mirroring
the existing Espressif bootloader configuration.
Also cleanup other SoCs .conf entries.