From 72fe7acbbb9ef81a30950accbc241e31fc772893 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 2 Aug 2016 17:46:12 -0700 Subject: [PATCH] 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 Change-Id: I5df3ceb797aced58fe5ea3d10d78254a27341e47 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/16042 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- 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