From cfc885d714b2e3584c6ba14208d49e468535d09a Mon Sep 17 00:00:00 2001 From: Krystian Hebel Date: Mon, 3 Jul 2023 13:28:00 +0200 Subject: [PATCH] src/Kconfig: enable timestamps by default on PPC64 PPC64 has architectural reliable timer, so there is no reason to have timestamps disabled. Signed-off-by: Krystian Hebel --- src/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kconfig b/src/Kconfig index 0d3879ecbf7..aa8c5e5632e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -229,7 +229,7 @@ config INCLUDE_CONFIG_FILE config COLLECT_TIMESTAMPS bool "Create a table of timestamps collected during boot" - default y if ARCH_X86 + default y if ARCH_X86 || ARCH_PPC64 help Make coreboot create a table of timer-ID/timer-value pairs to allow measuring time spent at different phases of the boot process.