summaryrefslogtreecommitdiffstats
path: root/src/build/buildpnor/makefile
diff options
context:
space:
mode:
authorAdam Muhle <armuhle@us.ibm.com>2013-07-25 14:19:33 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-07-30 16:38:59 -0500
commitb24fe45bee8160d77f130161267ba5a575098a77 (patch)
tree7348298e275e8b7a86d348968ebf22d1595a68f7 /src/build/buildpnor/makefile
parent9e46a35aeaa2a4a02b412f22ece8094d98ec61c1 (diff)
downloadtalos-hostboot-b24fe45bee8160d77f130161267ba5a575098a77.tar.gz
talos-hostboot-b24fe45bee8160d77f130161267ba5a575098a77.zip
Disable VPO PNOR image build
I disabled building the VBU/VPO PNOR images as our code is getting too big to fit in fake PNOR. I also disabled the option to distribute a vpo target since it is pointless without the corresponding PNOR images. Change-Id: I20acd7955f9e5ed11038b7e1d677fde15b1885db Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/5574 Tested-by: Jenkins Server Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/buildpnor/makefile')
-rw-r--r--src/build/buildpnor/makefile32
1 files changed, 20 insertions, 12 deletions
diff --git a/src/build/buildpnor/makefile b/src/build/buildpnor/makefile
index e0412e941..c986fc223 100644
--- a/src/build/buildpnor/makefile
+++ b/src/build/buildpnor/makefile
@@ -24,6 +24,15 @@
#Also builds images which contain the test code.
ROOTPATH = ../../..
+##############################################################
+#Disabling this as our code size is getting too big for
+#fake PNOR. Only commenting out the bare minimum so it's easy
+#to revive should the situation arise where we're forced
+#to do so. This also keeps the 'make clean' path working
+#so people aren't stuck with dead files in their img directory.
+#
+##############################################################
+
# Default target to 'buildpnor'. This way you can type make
# in this directory without a target and it will build the
# pnor images. In the standard case, this makefile is called
@@ -35,17 +44,17 @@ PNOR_VBU_TARGETS = vbu_MURANO vbu_VENICE
define PNOR_vbu_template
$${IMGDIR}/$(1).pnor: $${IMGDIR}/hbicore_extended.bin $${IMGDIR}/$(1)_targeting.bin
-ifdef HOSTBOOT_PROFILE
- @echo " HOSTBOOT_PROFILE enabled."
- @echo " Build of vbu.pnor skipped due to space constraints."
-else
- ./buildpnorOld.pl --pnorLayout ./pnorLayoutVpo.xml \
- --genToc \
- --pnorOutBin $${IMGDIR}/$(1).pnor \
- --binFile_part $${IMGDIR}/$(1)_pnor.toc \
- --binFile_HBI $${IMGDIR}/hbicore_extended.bin \
- --binFile_HBD $${IMGDIR}/$(1)_targeting.bin
-endif
+#ifdef HOSTBOOT_PROFILE
+# @echo " HOSTBOOT_PROFILE enabled."
+# @echo " Build of vbu.pnor skipped due to space constraints."
+#else
+# ./buildpnorOld.pl --pnorLayout ./pnorLayoutVpo.xml \
+# --genToc \
+# --pnorOutBin $${IMGDIR}/$(1).pnor \
+# --binFile_part $${IMGDIR}/$(1)_pnor.toc \
+# --binFile_HBI $${IMGDIR}/hbicore_extended.bin \
+# --binFile_HBD $${IMGDIR}/$(1)_targeting.bin
+#endif
endef
PNOR_VBU_IMAGES = $(addsuffix .pnor, $(addprefix $(IMGDIR)/, ${PNOR_VBU_TARGETS})) \
@@ -57,6 +66,5 @@ include ${ROOTPATH}/config.mk
.PHONY: buildpnor
buildpnor: ${PNOR_VBU_IMAGES}
-
#VBU Specific images
$(foreach pnor,$(PNOR_VBU_TARGETS),$(eval $(call PNOR_vbu_template,$(pnor))))
OpenPOWER on IntegriCloud