Patrick Georgi has uploaded this change for review.

View Change

timestamps: denote "end of romstage" right before loading ramstage

Change-Id: I3524a757f5274815d62a17c58a18ed6b9aa726bf
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
---
M src/arch/x86/cbfs_and_run.c
1 file changed, 2 insertions(+), 0 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/27329/1
diff --git a/src/arch/x86/cbfs_and_run.c b/src/arch/x86/cbfs_and_run.c
index f25052b..d403009 100644
--- a/src/arch/x86/cbfs_and_run.c
+++ b/src/arch/x86/cbfs_and_run.c
@@ -15,8 +15,10 @@

#include <arch/stages.h>
#include <program_loading.h>
+#include <timestamp.h>

asmlinkage void copy_and_run(void)
{
+ timestamp_add_now(TS_END_ROMSTAGE);
run_ramstage();
}

To view, visit change 27329. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3524a757f5274815d62a17c58a18ed6b9aa726bf
Gerrit-Change-Number: 27329
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi@google.com>