Leroy P Leahy (leroy.p.leahy@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15131
-gerrit
commit f623cac38c633987bf64a0208b77cba1c67ff60f Author: Lee Leahy leroy.p.leahy@intel.com Date: Sun Jun 5 18:49:55 2016 -0700
lib: Build reg_script for bootblock
Allow reg_script to be used during the bootblock.
TEST=Build and run on Galileo Gen2
Change-Id: I55fe0be3f50116927b801ce67a3f23bb1931f6e7 Signed-off-by: Lee Leahy leroy.p.leahy@intel.com --- src/lib/Makefile.inc | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index b446e10..49720a7 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -146,6 +146,7 @@ bootblock-y += hexdump.c ramstage-y += hexdump.c romstage-y += hexdump.c
+bootblock-$(CONFIG_REG_SCRIPT) += reg_script.c verstage-$(CONFIG_REG_SCRIPT) += reg_script.c romstage-$(CONFIG_REG_SCRIPT) += reg_script.c ramstage-$(CONFIG_REG_SCRIPT) += reg_script.c