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