Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/64427 )
Change subject: soc/intel/apl: Generate buildtest bootblock ......................................................................
soc/intel/apl: Generate buildtest bootblock
Now that the bootblock isn't added to cbfs anymore, its only conditionally build when stitched into an IFWI. This is always done when compiling for real targets but not by the CI builder. This adds a dummy target to make sure the bootblock always gets buildtested.
Change-Id: I60601e01a2c370b5c21493b71d51f495bb42f41d Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/soc/intel/apollolake/Makefile.inc 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/27/64427/1
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc index a6d4224..20f8b4c 100644 --- a/src/soc/intel/apollolake/Makefile.inc +++ b/src/soc/intel/apollolake/Makefile.inc @@ -144,6 +144,9 @@ $(IFWITOOL) $(objcbfs)/ifwi.bin.tmp delete -n OBBP $(IFWITOOL) $(objcbfs)/ifwi.bin.tmp replace -n IBBP -f $(objcbfs)/bootblock.bin -d -e IBBL $(CBFSTOOL) $< write -r $(CONFIG_IFWI_FMAP_NAME) -f $(objcbfs)/ifwi.bin.tmp --fill-upward +else +# make sure the bootblock gets buildtested +$(call add_intermediate, gen_bootblock, $(objcbfs)/bootblock.bin) endif
# When booting APL the IBBL loader places the microcode updates embedded