diff options
author | Simon Glass <sjg@chromium.org> | 2024-08-28 14:13:54 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-10-18 14:10:21 -0600 |
commit | e1c0dd369d759e1dc23e2cd7ab9fca2095c9b714 (patch) | |
tree | 875de07417140bfe8c971e26d88d578a6e28b423 | |
parent | 734b0cbbca62a70d5a7c40d17fc45eb6cf1298ea (diff) |
x86: coreboot: Add timestamps from coreboot to bootstage
Receiving timestamps from coreboot was unceremoniously dropped some time
ago. Add it back.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 8ad01ce36f7 ("x86: Remove x86 specific GD flags as they are...")
-rw-r--r-- | arch/x86/cpu/coreboot/coreboot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/cpu/coreboot/coreboot.c b/arch/x86/cpu/coreboot/coreboot.c index ef1a3f42d2e..b15715c935d 100644 --- a/arch/x86/cpu/coreboot/coreboot.c +++ b/arch/x86/cpu/coreboot/coreboot.c @@ -77,6 +77,8 @@ static void board_final_init(void) static int last_stage_init(void) { + timestamp_add_to_bootstage(); + if (IS_ENABLED(CONFIG_XPL_BUILD)) return 0; |