u-boot-ti: Deploy MLO and u-boot.img files

These are the names used for the wic file creation.

BugzID: 74357
This commit is contained in:
Alexandre Bard 2021-08-23 14:16:56 +02:00
parent 4d68c84dfc
commit 139bb581ba
1 changed files with 7 additions and 0 deletions

View File

@ -11,8 +11,15 @@ SPL_BINARY = "MLO"
UBOOT_SUFFIX = "img" UBOOT_SUFFIX = "img"
do_deploy() { do_deploy() {
# xmodem files
cp ${S}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-u-boot-${MACHINE}.xmodem.bin 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 cp ${S}/u-boot.bin ${DEPLOYDIR}/u-boot-${MACHINE}.xmodem.bin
# files for wic file
cp ${S}/MLO ${DEPLOYDIR}/
cp ${S}/u-boot.img ${DEPLOYDIR}/
# files for user usage
cp ${S}/MLO ${DEPLOYDIR}/spl-u-boot-${MACHINE}.${UBOOT_SUFFIX} cp ${S}/MLO ${DEPLOYDIR}/spl-u-boot-${MACHINE}.${UBOOT_SUFFIX}
cp ${S}/u-boot.img ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX} cp ${S}/u-boot.img ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX}
} }