summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/u-boot/u-boot.inc
diff options
context:
space:
mode:
authorPeter Hoyes <Peter.Hoyes@arm.com>2021-10-13 15:50:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-16 17:41:59 +0100
commita3d3c2d4ac421a0dde2a20825eab4434f16b2452 (patch)
tree80b5150624004486e435b0c9afffa8570eca80a3 /meta/recipes-bsp/u-boot/u-boot.inc
parent7300618171c6e22a4fbc2eaf8d8362fe5b3b4b92 (diff)
downloadpoky-a3d3c2d4ac421a0dde2a20825eab4434f16b2452.tar.gz
u-boot: Convert ${UBOOT_ENV}.cmd into ${UBOOT_ENV}.scr
* Add extra SRC variables to uboot-config.class for source cmd file * Add DEPENDS on u-boot-mkimage-native if UBOOT_ENV_SUFFIX is scr * Compile cmd -> scr in do_compile if UBOOT_ENV_SUFFIX is scr (From OE-Core rev: 0ea02ca5c1fc4e15f640b1c26c0a5ce34fc08c05) Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/u-boot/u-boot.inc')
-rw-r--r--meta/recipes-bsp/u-boot/u-boot.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index f27fdd5998..ec4a3d201d 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -4,6 +4,7 @@ PROVIDES = "virtual/bootloader"
4PACKAGE_ARCH = "${MACHINE_ARCH}" 4PACKAGE_ARCH = "${MACHINE_ARCH}"
5 5
6DEPENDS += "kern-tools-native" 6DEPENDS += "kern-tools-native"
7DEPENDS += "${@bb.utils.contains('UBOOT_ENV_SUFFIX', 'scr', 'u-boot-mkimage-native', '', d)}"
7 8
8inherit uboot-config uboot-extlinux-config uboot-sign deploy cml1 python3native kernel-arch 9inherit uboot-config uboot-extlinux-config uboot-sign deploy cml1 python3native kernel-arch
9 10
@@ -106,6 +107,11 @@ do_compile () {
106 oe_runmake -C ${S} O=${B} u-boot-initial-env 107 oe_runmake -C ${S} O=${B} u-boot-initial-env
107 fi 108 fi
108 fi 109 fi
110
111 if [ -n "${UBOOT_ENV}" && "${UBOOT_ENV_SUFFIX}" = "scr" ]
112 then
113 ${UBOOT_MKIMAGE} -C none -A ${UBOOT_ARCH} -T script -d ${WORKDIR}/${UBOOT_ENV_SRC} ${WORKDIR}/${UBOOT_ENV_BINARY}
114 fi
109} 115}
110 116
111do_install () { 117do_install () {