From a8eed43491eb3ae28617224c40b489042a8dc971 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 12 May 2025 14:58:37 -0400 Subject: [PATCH] scripts/logging: Add RX config detection The RX arch uses the CONFIG_RX kconfig symbol Signed-off-by: Keith Packard --- scripts/logging/dictionary/dictionary_parser/log_database.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/logging/dictionary/dictionary_parser/log_database.py b/scripts/logging/dictionary/dictionary_parser/log_database.py index a3fd378a325..a4514784853 100644 --- a/scripts/logging/dictionary/dictionary_parser/log_database.py +++ b/scripts/logging/dictionary/dictionary_parser/log_database.py @@ -43,6 +43,9 @@ ARCHS = { "riscv" : { "kconfig": "CONFIG_RISCV", }, + "rx" : { + "kconfig": "CONFIG_RX", + }, "xtensa" : { "kconfig": "CONFIG_XTENSA", },