u-boot-armada: Deploy u-boot-spl.kwb file

This is the name used for the wic file creation.

BugzID: 74357
This commit is contained in:
Alexandre Bard 2021-08-23 15:02:36 +02:00
parent 139bb581ba
commit a9ac74dac7
1 changed files with 6 additions and 0 deletions

View File

@ -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}
}