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:
Sylvio Alves 2021-04-05 10:09:18 -03:00 committed by Anas Nashif
commit 222e82a619

View file

@ -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