zephyr/subsys/debug/symtab/Kconfig
Yong Cong Sin ff2cbf9445 debug: symtab: add shell command
Implement shell commands to access the symbol table.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>
2024-09-10 11:43:55 +02:00

23 lines
490 B
Plaintext

# 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
<zephyr/debug/symtab.h> header.
Choose N if you have no idea what is this.
if SYMTAB
config SYMTAB_SHELL
bool "Symbol table shell commands"
depends on SHELL
help
Shell commands to access the symbol table.
endif # SYMTAB