summaryrefslogtreecommitdiffstats
path: root/src/build/tools
diff options
context:
space:
mode:
authorChristian Geddes <crgeddes@us.ibm.com>2019-01-07 16:06:41 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2019-01-14 16:46:56 -0600
commitac15fd763d3ef2968adcb4140f1f930f29ba6ecb (patch)
tree5f33812d5bc7a7e80ef0888f15d7429c0bd6fe58 /src/build/tools
parent2d59cd70dae624b16a957a1735299e12097c128a (diff)
downloadtalos-hostboot-ac15fd763d3ef2968adcb4140f1f930f29ba6ecb.tar.gz
talos-hostboot-ac15fd763d3ef2968adcb4140f1f930f29ba6ecb.zip
Add new pnorLayoutAxone.xml w/ new EECACHE section
This commit introduces a new pnor layout which will be used when the simics_axone.config file is used. (Note: axone.config was renamed to simics_axone.config). This new layout introduces the EECACHE section which will be used to store copies of the various EEPROMS in the system. The eventual goal is to be able to remove the MVPD/DJVPD sections in PNOR and only use this EECACHE section Change-Id: Ifae610c4dd7f3aa9c87a5ca911cc4faa1ba2a98a Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70172 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: Roland Veloz <rveloz@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/tools')
-rwxr-xr-xsrc/build/tools/hbDistribute11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/build/tools/hbDistribute b/src/build/tools/hbDistribute
index 8c501ad97..94816df8d 100755
--- a/src/build/tools/hbDistribute
+++ b/src/build/tools/hbDistribute
@@ -6,7 +6,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2012,2018
+# Contributors Listed Below - COPYRIGHT 2012,2019
# [+] International Business Machines Corp.
#
#
@@ -210,9 +210,16 @@ fi
# Note this file is generated in the hb config file rule in top level makefile
if [[ -f ${PROJECT_ROOT}/obj/genfiles/hb_fsp_release ]]; then
echo "FSP build, using fsp pnor xml layout"
+ # PNOR_LAYOUT_SELECTED == 0 is FSP XML
+ export PNOR_LAYOUT_SELECTED=0
+elif [[ -f ${PROJECT_ROOT}/obj/genfiles/hb_simics_axone_release ]]; then
+ echo "Axone build, using axone pnor xml layout"
+ # PNOR_LAYOUT_SELECTED == 2 is AXONE XML
+ export PNOR_LAYOUT_SELECTED=2
else
+ # PNOR_LAYOUT_SELECTED == 1 is DEFAULT XML
echo "Non FSP build, using default pnor xml layout"
- export DEFAULT_PNOR=1
+ export PNOR_LAYOUT_SELECTED=1
fi
# Clean up preivous rand files. Should only be needed if a previous call failed.
OpenPOWER on IntegriCloud