From a9ac74dac758a26d200fe4ee2e449df8f243cf1d Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Mon, 23 Aug 2021 15:02:36 +0200 Subject: [PATCH] u-boot-armada: Deploy u-boot-spl.kwb file This is the name used for the wic file creation. BugzID: 74357 --- recipes-bsp/u-boot/u-boot-armada_git.bb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/recipes-bsp/u-boot/u-boot-armada_git.bb b/recipes-bsp/u-boot/u-boot-armada_git.bb index 29eb6f1..1b1d3f5 100644 --- a/recipes-bsp/u-boot/u-boot-armada_git.bb +++ b/recipes-bsp/u-boot/u-boot-armada_git.bb @@ -15,8 +15,14 @@ UBOOT_SUFFIX = "kwb" UBOOT_BINARY = "u-boot-spl.${UBOOT_SUFFIX}" do_deploy() { + # xmodem files cp ${S}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-u-boot-${MACHINE}.xmodem.bin cp ${S}/u-boot.bin ${DEPLOYDIR}/u-boot-${MACHINE}.xmodem.bin + + # file for wic file + cp ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-spl.${UBOOT_SUFFIX} + + # file for user usage cp ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX} }