summaryrefslogtreecommitdiffstats
path: root/src/build
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2014-01-31 13:51:20 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-02-04 14:21:37 -0600
commit7cc368715011b180c9954269846e4ce8d0267aea (patch)
tree4c90ab9b8e541df768f7a767a20c8f146837bcb3 /src/build
parent2971437433d92d54042b46275464f66d5c7b5be3 (diff)
downloadtalos-hostboot-7cc368715011b180c9954269846e4ce8d0267aea.tar.gz
talos-hostboot-7cc368715011b180c9954269846e4ce8d0267aea.zip
Fix makefile path issue
Change-Id: I6a75004bc6f27890e7ca0725ad6952373fe0c85c RTC: 65006 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/8485 Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Tested-by: Jenkins Server Reviewed-by: Brian H. Horton <brianh@linux.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build')
-rwxr-xr-xsrc/build/mkrules/hbfw/img/makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/build/mkrules/hbfw/img/makefile b/src/build/mkrules/hbfw/img/makefile
index 94e6c6580..021493ad4 100755
--- a/src/build/mkrules/hbfw/img/makefile
+++ b/src/build/mkrules/hbfw/img/makefile
@@ -257,17 +257,17 @@ inject_ecc: build_sbe_partitions
dd if=${${VENICE_TARG_IMG}:P} of=${TEMP_IMG} ibs=1024k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${VENICE_TARG_IMG_ECC} --p8; \
# SBE partition
- dd if=${MURANO_SBE_IMG} of=${TEMP_IMG} ibs=256k conv=sync; \
+ dd if=${${MURANO_SBE_IMG}:P} of=${TEMP_IMG} ibs=256k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${MURANO_SBE_IMG_ECC} --p8; \
- dd if=${VENICE_SBE_IMG} of=${TEMP_IMG} ibs=256k conv=sync; \
+ dd if=${${VENICE_SBE_IMG}:P} of=${TEMP_IMG} ibs=256k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${VENICE_SBE_IMG_ECC} --p8; \
# SBEC partition
- dd if=${SBEC_IMG} of=${TEMP_IMG} ibs=512k conv=sync; \
+ dd if=${${SBEC_IMG}:P} of=${TEMP_IMG} ibs=512k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${SBEC_IMG_ECC} --p8; \
# WINK partition
- dd if=${MURANO_LOCAL_SLW_IMG} of=${TEMP_IMG} ibs=1024k conv=sync; \
+ dd if=${${MURANO_LOCAL_SLW_IMG}:P} of=${TEMP_IMG} ibs=1024k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${MURANO_LOCAL_SLW_IMG_ECC} --p8; \
- dd if=${VENICE_LOCAL_SLW_IMG} of=${TEMP_IMG} ibs=1024k conv=sync; \
+ dd if=${${VENICE_LOCAL_SLW_IMG}:P} of=${TEMP_IMG} ibs=1024k conv=sync; \
ecc --inject ${TEMP_IMG} --output ${VENICE_LOCAL_SLW_IMG_ECC} --p8; \
rm ${TEMP_IMG}
OpenPOWER on IntegriCloud