Files
zephyr/drivers/debug/Kconfig
Karsten Koenig d833556ee5 drivers: debug: Moved nrf_etr from misc
Moved the nrf_etr driver from the drive/misc folder into the recently
established driver/debug folder where it is a better fit. Moved the
associated files such as bindings and headers accordingly as well.

Signed-off-by: Karsten Koenig <karsten.koenig@nordicsemi.no>
2025-10-08 10:09:02 +02:00

27 lines
577 B
Plaintext

# Copyright (c) 2025 Silicon Laboratories Inc.
# SPDX-License-Identifier: Apache-2.0
menuconfig DEBUG_DRIVER
bool "Debug drivers"
help
Enable support for debug drivers
if DEBUG_DRIVER
config DEBUG_DRIVER_INIT_PRIORITY
int "Initialization priority"
default KERNEL_INIT_PRIORITY_DEVICE
help
Debug drivers initialization priority.
# zephyr-keep-sorted-start
source "drivers/debug/Kconfig.nrf"
source "drivers/debug/Kconfig.silabs"
# zephyr-keep-sorted-stop
module = DEBUG_DRIVER
module-str = debug_driver
source "subsys/logging/Kconfig.template.log_config"
endif