log: fix log crash due to missing strdup
ESP32 requires some content as fatal.c rodata to be placed into RAM to allow cache disabled exceptions. The consequence is that it will trigger missing log_strdup call when normal exception is called. Disabling that by default fix the error and stops terminal output flooding warning event. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
This commit is contained in:
parent
13b9f8aa52
commit
222e82a619
1 changed files with 7 additions and 0 deletions
|
@ -9,3 +9,10 @@ config BOARD
|
|||
|
||||
config ENTROPY_ESP32_RNG
|
||||
default y if ENTROPY_GENERATOR
|
||||
|
||||
if LOG
|
||||
|
||||
config LOG_DETECT_MISSED_STRDUP
|
||||
default n
|
||||
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue