From db54acd1aaa74de403713c82fe633a1d27f71104 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 2 Aug 2016 17:46:12 -0700 Subject: [PATCH] UPSTREAM: util/checklist: Place tables in proper boot order during the boot, romstage occurs before postchar which is before ramstage. Place the tables in the proper boot order when generating the final webpage. TEST=Build and run on Galileo Gen2 BUG=None BRANCH=None Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/16042 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth Change-Id: I5df3ceb797aced58fe5ea3d10d78254a27341e47 Reviewed-on: https://chromium-review.googlesource.com/368024 Commit-Ready: Furquan Shaikh Tested-by: Furquan Shaikh Reviewed-by: Aaron Durbin --- util/checklist/Makefile.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/checklist/Makefile.inc b/util/checklist/Makefile.inc index c1fd89cd34..362498e358 100644 --- a/util/checklist/Makefile.inc +++ b/util/checklist/Makefile.inc @@ -225,10 +225,11 @@ endif ifeq ($(CONFIG_SEPARATE_VERSTAGE),y) html_table_files += $(objcbfs)/verstage.html endif +html_table_files += $(objcbfs)/romstage.html ifeq ($(CONFIG_POSTCAR_STAGE),y) html_table_files += $(objcbfs)/postcar.html endif -html_table_files += $(objcbfs)/romstage.html $(objcbfs)/ramstage.html +html_table_files += $(objcbfs)/ramstage.html # # Create a list with each file on a separate line