Martin Roth has uploaded this change for review. ( 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 --- M src/security/intel/stm/Makefile 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/20/54020/1
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; \