From 0703ec4fb2f0342e88fa50dfae21710019774ad1 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Wed, 27 Mar 2013 00:16:11 -0500 Subject: chromeos: honor MOCK_TPM=1 The TPM code wasn't previously honoring MOCK_TPM=1. Because of this, boards with TPMs that didn't handle S3 resume properly would cause a hard reset. Allow one to build with MOCK_TPM=1 on the command line so that S3 can still work. Change-Id: I9adf06647de285c0b0a3203d8897be90d7783a1e Signed-off-by: Aaron Durbin Reviewed-on: http://review.coreboot.org/2976 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/vendorcode/google/chromeos/vboot.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vendorcode/google/chromeos/vboot.c') diff --git a/src/vendorcode/google/chromeos/vboot.c b/src/vendorcode/google/chromeos/vboot.c index 0f30547056..03d759cefc 100644 --- a/src/vendorcode/google/chromeos/vboot.c +++ b/src/vendorcode/google/chromeos/vboot.c @@ -231,8 +231,10 @@ static void init_vboot(int bootmode) return; } +#if !MOCK_TPM printk(BIOS_ERR, "TPM: Error code 0x%x. Hard reset!\n", result); hard_reset(); +#endif } #endif -- cgit v1.2.3