u-boot-dey: add recipe for v2021.10
This commit moves the ccmp15 platform to build U-Boot v2021.10 Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
3f6d5fc218
commit
91baf1643a
|
|
@ -199,6 +199,7 @@ do_deploy:append() {
|
|||
}
|
||||
|
||||
BOOT_TOOLS = "imx-boot-tools"
|
||||
BOOT_TOOLS:ccmp1 = "u-boot"
|
||||
|
||||
do_deploy:append:ccimx8x() {
|
||||
# Move all U-Boot artifacts to the imx-boot-tools folder
|
||||
|
|
@ -228,3 +229,10 @@ do_deploy:append:ccimx8m() {
|
|||
unset i
|
||||
fi
|
||||
}
|
||||
|
||||
do_deploy:append:ccmp1() {
|
||||
# Deploy u-boot-nodtb.bin and ccmp1x-dvk.dtb, to be packaged in fip binary by tf-a
|
||||
install -d ${DEPLOYDIR}/${BOOT_TOOLS}
|
||||
install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}/${FIP_UBOOT_DTB}-ccmp15-dvk-${FIP_UBOOT_CONFIG}.dtb
|
||||
install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,4 +8,4 @@ DEPENDS += "flex-native bison-native"
|
|||
SRCBRANCH = "v2021.04/master"
|
||||
SRCREV = "${AUTOREV}"
|
||||
|
||||
COMPATIBLE_MACHINE = "(ccimx8mp|ccmp15)"
|
||||
COMPATIBLE_MACHINE = "(ccimx8mp)"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
# Copyright (C) 2022 Digi International
|
||||
|
||||
require digi-u-boot.inc
|
||||
LIC_FILES_CHKSUM = "file://Licenses/README;md5=5a7450c57ffe5ae63fd732446b988025"
|
||||
|
||||
DEPENDS += "flex-native bison-native"
|
||||
DEPENDS += "python3-setuptools-native"
|
||||
|
||||
SRCBRANCH = "v2021.10/master"
|
||||
SRCREV = "${AUTOREV}"
|
||||
|
||||
COMPATIBLE_MACHINE = "(ccmp1)"
|
||||
Loading…
Reference in New Issue