25 lines
758 B
BlitzBasic
25 lines
758 B
BlitzBasic
require u-boot-nm.inc
|
|
|
|
# Be aware github/netmodule git
|
|
SRC_URI = "git://git.netmodule.intranet/nmrouter/u-boot;protocol=ssh;user=gitea;branch=2016.05-am335x-netmodule"
|
|
|
|
# Should be updated when a new U-Boot Version is available
|
|
SRCREV ?= "7b4add1789640d188d2c5d4c7885f942908846f6"
|
|
|
|
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}
|
|
}
|