summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2016-06-05 18:45:22 -0700
committerLeroy P Leahy <leroy.p.leahy@intel.com>2016-06-09 23:10:40 +0200
commitc9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23 (patch)
tree6560caaf5b51b7542473a8c86bf3217d3c6d4e52 /util
parent9048384defbe752e03c4e2b9cc995820c60d0cd2 (diff)
downloadcoreboot-c9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23.tar.gz
coreboot-c9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23.tar.bz2
coreboot-c9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23.zip
util/checklist: Add bootblock support
Scan the boot block when building it with C_ENVIRONMENT_BOOTBLOCK selected. TEST=Build and run with Galileo Gen2 Change-Id: I922f761c31e95efde0975d8572c47084b91b2879 Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/15130 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/checklist/Makefile.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/checklist/Makefile.inc b/util/checklist/Makefile.inc
index f8e5ebd5e653..e400725609ee 100644
--- a/util/checklist/Makefile.inc
+++ b/util/checklist/Makefile.inc
@@ -182,6 +182,9 @@ percent_complete = $$(($(done_lines) * 100 / ($(expected_lines) - $(optional_lin
#
# Determine which HTML files to include into the webpage
#
+ifeq ($(CONFIG_C_ENVIRONMENT_BOOTBLOCK),y)
+html_table_files += $(objcbfs)/bootblock.html
+endif
ifeq ($(CONFIG_SEPARATE_VERSTAGE),y)
html_table_files += $(objcbfs)/verstage.html
endif