mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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 <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/16042 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Change-Id: I5df3ceb797aced58fe5ea3d10d78254a27341e47 Reviewed-on: https://chromium-review.googlesource.com/368024 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
9828882b43
commit
db54acd1aa
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue