From 139bb581baf03c948214ae0570cd9bd017f220ba Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Mon, 23 Aug 2021 14:16:56 +0200 Subject: [PATCH] u-boot-ti: Deploy MLO and u-boot.img files These are the names used for the wic file creation. BugzID: 74357 --- recipes-bsp/u-boot/u-boot-ti33x_git.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/recipes-bsp/u-boot/u-boot-ti33x_git.bb b/recipes-bsp/u-boot/u-boot-ti33x_git.bb index 7e7447e..41a1a40 100644 --- a/recipes-bsp/u-boot/u-boot-ti33x_git.bb +++ b/recipes-bsp/u-boot/u-boot-ti33x_git.bb @@ -11,8 +11,15 @@ SPL_BINARY = "MLO" UBOOT_SUFFIX = "img" 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 + + # 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}/u-boot.img ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX} }