From a7f3875134aa44649614651e2e46875fc2f87813 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Sun, 17 May 2020 19:57:25 +0300 Subject: [PATCH] debug: Fix BOOT_TIME_MEASUREMENT dependencies The boot time measurement can also run with the HPET timer so there's no reason to restrict it to APIC. Signed-off-by: Johan Hedberg --- subsys/debug/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/debug/Kconfig b/subsys/debug/Kconfig index 2b6c0e4d191..8ed38cfda03 100644 --- a/subsys/debug/Kconfig +++ b/subsys/debug/Kconfig @@ -8,7 +8,7 @@ menu "System Monitoring Options" config BOOT_TIME_MEASUREMENT bool "Boot time measurements" - depends on ARCH_POSIX || ARM || (X86 && APIC_TIMER && APIC_TIMER_TSC) + depends on ARCH_POSIX || ARM || X86 help This option enables the recording of timestamps during system boot.