diff options
author | Christian Geddes <crgeddes@us.ibm.com> | 2019-08-06 17:31:15 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-08-08 09:49:30 -0500 |
commit | 9bdc8a41dd5bcb8c921b14f59c9edd071746d820 (patch) | |
tree | 4b9c97230322a15064d7124f5c4a21bfe08f46ab /src/usr/runtime | |
parent | 650345ffb1238670ec27ebb0444e1664ab4089d1 (diff) | |
download | talos-hostboot-9bdc8a41dd5bcb8c921b14f59c9edd071746d820.tar.gz talos-hostboot-9bdc8a41dd5bcb8c921b14f59c9edd071746d820.zip |
Temp workaround to skip filling in TPM info for RT on axone systems
We hit issues during bringup when we tried to call the function that
fills in the info we need so we will skip for now.
Change-Id: I012476f0a67bc8f84dc12173db0b2daeef8ab05c
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/81829
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Glenn Miles <milesg@ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/runtime')
-rw-r--r-- | src/usr/runtime/populate_hbruntime.C | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/usr/runtime/populate_hbruntime.C b/src/usr/runtime/populate_hbruntime.C index 4093abfc5..78fafd406 100644 --- a/src/usr/runtime/populate_hbruntime.C +++ b/src/usr/runtime/populate_hbruntime.C @@ -2886,6 +2886,12 @@ errlHndl_t populate_hbTpmInfo() // if single node system if (!hb_images) { + // TODO RTC: 214260 Remove workaround skipping the population + // of the TPM info for runtime on single node on Axone systems + #ifdef CONFIG_AXONE_BRING_UP + TRACFCOMP( g_trac_runtime, "SKIPPING populate_hbTpmInfo: Single node system"); + break; + #endif TRACDCOMP( g_trac_runtime, "populate_hbTpmInfo: Single node system"); l_elog = populate_TpmInfoByNode(0); // 0 for single node if(l_elog != nullptr) |