aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/flash.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/flash.c b/core/flash.c
index 8f00d85..8e7b90e 100644
--- a/core/flash.c
+++ b/core/flash.c
@@ -823,7 +823,12 @@ done_reading:
* Verify and measure the retrieved PNOR partition as part of the
* secure boot and trusted boot requirements
*/
- secureboot_verify(id, buf, *len);
+ /*
+ * FIXME: TEMPORARY HACK: Don't verify VERSION until all bits of code
+ * to produce a signed VERSION partition are upstream for a while.
+ */
+ if (id != RESOURCE_ID_VERSION)
+ secureboot_verify(id, buf, *len);
trustedboot_measure(id, buf, *len);
/* Find subpartition */