25 lines
767 B
BlitzBasic
25 lines
767 B
BlitzBasic
require u-boot-nm.inc
|
|
|
|
# Be aware github/netmodule git
|
|
SRC_URI = "git://gitlab.com/netmodule/bootloader/netmodule-uboot.git;protocol=ssh;user=git;branch=2016.05/standard/am335x"
|
|
|
|
# Should be updated when a new U-Boot Version is available
|
|
SRCREV = "69e9c386dd3734a01af79ca1cc565896facfb9f6"
|
|
|
|
SPL_BINARY = "MLO"
|
|
UBOOT_SUFFIX = "img"
|
|
|
|
do_deploy() {
|
|
# xmodem files
|
|
cp ${B}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-u-boot-${MACHINE}.xmodem.bin
|
|
cp ${B}/u-boot.bin ${DEPLOYDIR}/u-boot-${MACHINE}.xmodem.bin
|
|
|
|
# files for wic file
|
|
cp ${B}/MLO ${DEPLOYDIR}/
|
|
cp ${B}/u-boot.img ${DEPLOYDIR}/
|
|
|
|
# files for user usage
|
|
cp ${B}/MLO ${DEPLOYDIR}/spl-u-boot-${MACHINE}.${UBOOT_SUFFIX}
|
|
cp ${B}/u-boot.img ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX}
|
|
}
|