Skip to content

Commit

Permalink
amlogic-boot-fip: do not copy *usb.bl/tpl
Browse files Browse the repository at this point in the history
Signed-off-by: Neil Armstrong <[email protected]>
  • Loading branch information
superna9999 committed Nov 5, 2023
1 parent 8fd1a55 commit 443956d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions recipes-bsp/trusted-firmware-a/amlogic-boot-fip.bb
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,12 @@ do_compile[cleandirs] = "${B}"
do_deploy () {
install ${B}/u-boot.bin.sd.bin ${DEPLOYDIR}/u-boot.bin.sd.bin
install ${B}/u-boot.bin ${DEPLOYDIR}/u-boot.bin.mmc.bin
install ${B}/u-boot.bin.usb.bl2 ${DEPLOYDIR}/u-boot.bin.usb.bl2
install ${B}/u-boot.bin.usb.tpl ${DEPLOYDIR}/u-boot.bin.usb.tpl
if [ -e ${B}/u-boot.bin.usb.bl2 ]; then
install ${B}/u-boot.bin.usb.bl2 ${DEPLOYDIR}/u-boot.bin.usb.bl2
fi
if [ -e ${B}/u-boot.bin.usb.tpl ]; then
install ${B}/u-boot.bin.usb.tpl ${DEPLOYDIR}/u-boot.bin.usb.tpl
fi
}

addtask deploy after do_compile

0 comments on commit 443956d

Please sign in to comment.