Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/54020 )
Change subject: src/security/intel/stm: Add warning for non-reproducible build ......................................................................
src/security/intel/stm: Add warning for non-reproducible build
Because the STM build doesn't use the coreboot toolchain it's not reproducible. Make sure that's displayed during the build.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: I3f0101400dc221eca09c928705f30d30492f171f Reviewed-on: https://review.coreboot.org/c/coreboot/+/54020 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Patrick Georgi pgeorgi@google.com --- M src/security/intel/stm/Makefile 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Angel Pons: Looks good to me, but someone else must approve
diff --git a/src/security/intel/stm/Makefile b/src/security/intel/stm/Makefile index 1493869..31e5bdd 100644 --- a/src/security/intel/stm/Makefile +++ b/src/security/intel/stm/Makefile @@ -18,6 +18,8 @@
build: echo "STM - Build" + echo "-- WARNING: This uses the system toolchain instead of" + echo " the coreboot toolchain, so is not reproducible." cd $(project_dir)/Stm; \ mkdir -p build; \ cd build; \