From ac15fd763d3ef2968adcb4140f1f930f29ba6ecb Mon Sep 17 00:00:00 2001 From: Christian Geddes Date: Mon, 7 Jan 2019 16:06:41 -0600 Subject: 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 Tested-by: Jenkins OP Build CI Tested-by: Jenkins OP HW Tested-by: FSP CI Jenkins Reviewed-by: Matt Derksen Reviewed-by: Roland Veloz Reviewed-by: Daniel M. Crowell --- makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index cfd8c9d58..16217fd5d 100644 --- a/makefile +++ b/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2010,2017 +# Contributors Listed Below - COPYRIGHT 2010,2019 # [+] International Business Machines Corp. # # @@ -36,8 +36,9 @@ SKIP_CONFIG_FILE_LOAD = 1 IMAGE_PASS_POST += $(GENDIR)/hwp_id.html CLEAN_TARGETS += $(GENDIR)/hwp_id.html -# Name of file to indicate if hostboot is building an fsp release. +# Name of file to indicate which release Hostboot is building for HB_FSP_RELEASE = $(GENDIR)/hb_fsp_release +HB_AXONE_RELEASE = $(GENDIR)/hb_simics_axone_release ifndef BUILD_MINIMAL IMAGE_PASS_POST += cscope ctags @@ -74,6 +75,7 @@ check_istep_modules: $(OBJS) GENCONFIG_TOOL = src/build/tools/hbGenConfig # At end of rule, create HB_FSP_RELEASE file if compiling with fsprelease.config +# or create HB_AXONE_RELEASE if compiling with simics_axone.config $(GENDIR)/.$(notdir $(CONFIG_FILE)).config: \ $(shell find -name HBconfig) \ $(filter-out $(GENDIR)/.$(notdir $(CONFIG_FILE)).config,\ @@ -88,6 +90,10 @@ $(GENDIR)/.$(notdir $(CONFIG_FILE)).config: \ @rm -f $(wildcard $(GENDIR)/.*.config) @touch $@ @rm -f $(HB_FSP_RELEASE) + @rm -f $(HB_AXONE_RELEASE) ifneq (,$(findstring fsprelease.config, $(strip $(CONFIG_FILE)))) @touch $(HB_FSP_RELEASE) endif + ifneq (,$(findstring simics_axone.config, $(strip $(CONFIG_FILE)))) + @touch $(HB_AXONE_RELEASE) + endif -- cgit v1.2.1