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.silabs"
19# zephyr-keep-sorted-stop
20
21module = DEBUG_DRIVER
22module-str = debug_driver
23source "subsys/logging/Kconfig.template.log_config"
24
25endif
26