diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2016-06-05 18:45:22 -0700 |
---|---|---|
committer | Leroy P Leahy <leroy.p.leahy@intel.com> | 2016-06-09 23:10:40 +0200 |
commit | c9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23 (patch) | |
tree | 6560caaf5b51b7542473a8c86bf3217d3c6d4e52 /util/checklist/Makefile.inc | |
parent | 9048384defbe752e03c4e2b9cc995820c60d0cd2 (diff) | |
download | coreboot-c9bf8bfabfeb75500ea0f3b4a0bfb5ce5485ae23.tar.xz |
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/checklist/Makefile.inc')
-rw-r--r-- | util/checklist/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/checklist/Makefile.inc b/util/checklist/Makefile.inc index f8e5ebd5e6..e400725609 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 |