28 lines
794 B
BlitzBasic
28 lines
794 B
BlitzBasic
require u-boot-nm.inc
|
|
|
|
SRC_URI = "git://git.netmodule.intranet/nmrouter/u-boot.git;protocol=ssh;user=gitea;branch=nrsw-armada-2017.11 \
|
|
file://0001-remove-redundant-YYLOC-declaration.patch;name=yylloc \
|
|
"
|
|
SRC_URI[yylloc.md5sum] = "504cb5b73a174a32e55c58f60608925d"
|
|
|
|
DEPENDS += "bc-native"
|
|
|
|
SRCREV = "2fe363eb69a360c9e9b6bd53dfdab32772b2f41a"
|
|
|
|
|
|
UBOOT_SUFFIX = "kwb"
|
|
UBOOT_BINARY = "u-boot-spl.${UBOOT_SUFFIX}"
|
|
|
|
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
|
|
|
|
# file for wic file
|
|
cp ${B}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-spl.${UBOOT_SUFFIX}
|
|
|
|
# file for user usage
|
|
cp ${B}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX}
|
|
}
|
|
|