u-boot recipe: inital nmhw24 u-boot
BugzID: 58178 57912 Signed-off-by: Ramon Moesching <ramon.moesching@netmodule.com>
This commit is contained in:
parent
6cd203ba44
commit
21fe9db20c
|
|
@ -0,0 +1,24 @@
|
||||||
|
require u-boot-nm.inc
|
||||||
|
|
||||||
|
# Force machine configuration for this recipe
|
||||||
|
UBOOT_MACHINE = "am335x_nmhw24_defconfig"
|
||||||
|
|
||||||
|
# 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 ?= "${AUTOREV}"
|
||||||
|
PV = "v2016.05+git${SRCPV}"
|
||||||
|
|
||||||
|
SPL_BINARY = "MLO"
|
||||||
|
UBOOT_SUFFIX = "img"
|
||||||
|
|
||||||
|
do_deploy_append() {
|
||||||
|
rm -f ${DEPLOYDIR}/*${PN}.xmodem.bin
|
||||||
|
rm -f ${DEPLOYDIR}/*${PN}.${UBOOT_SUFFIX}
|
||||||
|
cp ${S}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-${PN}.xmodem.bin
|
||||||
|
cp ${S}/u-boot.bin ${DEPLOYDIR}/${PN}.xmodem.bin
|
||||||
|
cp ${S}/u-boot.img ${DEPLOYDIR}/${PN}.${UBOOT_SUFFIX}
|
||||||
|
cp ${S}/MLO ${DEPLOYDIR}/spl-${PN}.${UBOOT_SUFFIX}
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in New Issue