1# Copyright (c) 2025 Silicon Laboratories Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig DEBUG_DRIVER
5	bool "Debug drivers"
6	help
7	  Enable support for debug drivers
8
9if DEBUG_DRIVER
10
11config DEBUG_DRIVER_INIT_PRIORITY
12	int "Initialization priority"
13	default KERNEL_INIT_PRIORITY_DEVICE
14	help
15	  Debug drivers initialization priority.
16
17# zephyr-keep-sorted-start
18source "drivers/debug/Kconfig.nrf"
19source "drivers/debug/Kconfig.silabs"
20# zephyr-keep-sorted-stop
21
22module = DEBUG_DRIVER
23module-str = debug_driver
24source "subsys/logging/Kconfig.template.log_config"
25
26endif
27