0006-src-security-intel-stm-Add-warning-for-non-reproduci.patch 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. From 1804c7cb2e6e62a363a18f237ecdf8337e58c20d Mon Sep 17 00:00:00 2001
  2. From: Martin Roth <martin@coreboot.org>
  3. Date: Mon, 10 May 2021 11:28:45 -0600
  4. Subject: [PATCH 06/19] src/security/intel/stm: Add warning for
  5. non-reproducible build
  6. Because the STM build doesn't use the coreboot toolchain it's not
  7. reproducible. Make sure that's displayed during the build.
  8. Signed-off-by: Martin Roth <martin@coreboot.org>
  9. Change-Id: I3f0101400dc221eca09c928705f30d30492f171f
  10. Reviewed-on: https://review.coreboot.org/c/coreboot/+/54020
  11. Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
  12. Reviewed-by: Angel Pons <th3fanbus@gmail.com>
  13. Reviewed-by: Patrick Georgi <pgeorgi@google.com>
  14. ---
  15. src/security/intel/stm/Makefile | 2 ++
  16. 1 file changed, 2 insertions(+)
  17. diff --git a/src/security/intel/stm/Makefile b/src/security/intel/stm/Makefile
  18. index 1493869e80..31e5bdd88a 100644
  19. --- a/src/security/intel/stm/Makefile
  20. +++ b/src/security/intel/stm/Makefile
  21. @@ -18,6 +18,8 @@ all: build
  22. build:
  23. echo "STM - Build"
  24. + echo "-- WARNING: This uses the system toolchain instead of"
  25. + echo " the coreboot toolchain, so is not reproducible."
  26. cd $(project_dir)/Stm; \
  27. mkdir -p build; \
  28. cd build; \
  29. --
  30. 2.25.1