zephyr/subsys/shell/modules/CMakeLists.txt
Henrik Brix Andersen fe2075d140 shell: modules: promote edac mem shell subcommand to root shell command
Promote the "edac mem" shell subcommand to a generic "devmem" root shell
command. This command is useful for poking around registers and memory
outside of the EDAC drivers.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
2021-07-02 13:21:25 -04:00

19 lines
303 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_sources_ifdef(
CONFIG_KERNEL_SHELL
kernel_service.c
)
zephyr_sources_ifdef(
CONFIG_DEVICE_SHELL
device_service.c
)
zephyr_sources_ifdef(
CONFIG_DATE_SHELL
date_service.c
)
zephyr_sources_ifdef(
CONFIG_DEVMEM_SHELL
devmem_service.c
)