1*02b54b36SMike Garrettinherit uboot-sign
2*02b54b36SMike Garrett
3*02b54b36SMike GarrettUBOOT_SIGN_ENABLE = "0"
4*02b54b36SMike GarrettUBOOT_SIGN_KEYDIR = "${COREBASE}/meta-hpe/meta-gxp/recipes-bsp/u-boot/u-boot-gxp/"
5*02b54b36SMike GarrettUBOOT_SIGN_KEYNAME = "dev"
6*02b54b36SMike GarrettFIT_HASH_ALG = "sha512"
7*02b54b36SMike GarrettUBOOT_FIT_HASH_ALG = "sha512"
8*02b54b36SMike Garrett
9*02b54b36SMike Garrettconcat_dtb_helper:append() {
10*02b54b36SMike Garrett	if [ -e "${DEPLOYDIR}/${UBOOT_NODTB_IMAGE}" -a -e "$deployed_uboot_dtb_binary" ]; then
11*02b54b36SMike Garrett		cd ${DEPLOYDIR}
12*02b54b36SMike Garrett		cat ${UBOOT_NODTB_IMAGE} $deployed_uboot_dtb_binary | tee ${B}/${UBOOT_BINARY} > ${UBOOT_IMAGE}
13*02b54b36SMike Garrett	fi
14*02b54b36SMike Garrett}
15