From 5d063d6906d8310de7ca4fc471677026fb188930 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Wed, 12 Feb 2020 12:21:58 +0100 Subject: [PATCH] imx-boot: simplify copy of SRK_efuses.bin to DEPLOYDIR There is no need to generate PV-PR revision of this file since it's the same for any version. Signed-off-by: Hector Palacios --- meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend b/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend index 038f0f119..5c184bc7a 100644 --- a/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend +++ b/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend @@ -215,10 +215,7 @@ do_deploy_append () { trustfence-sign-uboot.sh ${DEPLOYDIR}/${UBOOT_PREFIX}-${MACHINE}-${ramc}.bin ${DEPLOYDIR}/${UBOOT_PREFIX}-${MACHINE}-${ramc}-signed.bin done - cd ${DEPLOYDIR} - cp ${B}/${config}SRK_efuses.bin ${DEPLOYDIR} - install ${B}/${config}SRK_efuses.bin SRK_efuses-${PV}-${PR}.bin - ln -sf SRK_efuses-${PV}-${PR}.bin SRK_efuses.bin + cp ${B}/SRK_efuses.bin ${DEPLOYDIR} fi }