diff --git a/subsys/debug/Kconfig b/subsys/debug/Kconfig index e7948c59deecca1..399b52e78f7c06f 100644 --- a/subsys/debug/Kconfig +++ b/subsys/debug/Kconfig @@ -369,16 +369,6 @@ config DEBUG_INFO used by debuggers in debugging the system, or enable additional debugging information to be reported at runtime. -config SYMTAB - bool "Generate symbol table" - help - Generate the symbol table with the offset and name of every - function. - The symbol table can be accessed by including the - header. - - Choose N if you have no idea what is this. - config EXCEPTION_STACK_TRACE bool "Attempt to print stack traces upon exceptions" default y @@ -421,6 +411,7 @@ config DEBUG_THREAD_INFO rsource "coredump/Kconfig" rsource "gdbstub/Kconfig" +rsource "symtab/Kconfig" endmenu config SEGGER_DEBUGMON diff --git a/subsys/debug/symtab/Kconfig b/subsys/debug/symtab/Kconfig new file mode 100644 index 000000000000000..8094c2dc077674b --- /dev/null +++ b/subsys/debug/symtab/Kconfig @@ -0,0 +1,12 @@ +# Copyright (c) 2024 Meta Platforms +# SPDX-License-Identifier: Apache-2.0 + +config SYMTAB + bool "Generate symbol table" + help + Generate the symbol table with the offset and name of every + function. + The symbol table can be accessed by including the + header. + + Choose N if you have no idea what is this.