[coreboot-gerrit] New patch to review for coreboot: util/checklist: Place tables in proper boot order

Lee Leahy (leroy.p.leahy@intel.com) gerrit at coreboot.org
Wed Aug 3 02:49:00 CEST 2016


Lee Leahy (leroy.p.leahy at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16042

-gerrit

commit ba65f941153f5229c988f33dbd9add420a508bc8
Author: Lee Leahy <leroy.p.leahy at intel.com>
Date:   Tue Aug 2 17:46:12 2016 -0700

    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 <leroy.p.leahy at intel.com>
---
 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 c1fd89c..362498e 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



More information about the coreboot-gerrit mailing list