From 09696761131339b3049ba8f5e2a0f6b70743fc69 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Tue, 16 Apr 2019 17:31:02 +0200 Subject: [PATCH] imx-boot: add fimrware-imx dependencies for do_compile() and do_populate_lic() These dependencies went missing when we deleted our first .bb file and replaced it with a .bbappend. Without these dependencies, the build can sometimes fail. Signed-off-by: Gabriel Valcazar --- meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend b/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend index 650b543e8..5bdb21502 100644 --- a/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend +++ b/meta-digi-arm/recipes-bsp/imx-mkimage/imx-boot_0.2.bbappend @@ -14,6 +14,7 @@ IMX_M4_DEMOS = "imx-m4-demos" # so set the appropriate dependencies do_compile[depends] += " \ ${@' '.join('%s:do_deploy' % r for r in '${IMX_M4_DEMOS}'.split() )} \ + firmware-imx:do_deploy \ " # This package aggregates dependencies with other packages, @@ -23,6 +24,7 @@ do_populate_lic[depends] += " \ ${@' '.join('%s:do_populate_lic' % r for r in '${IMX_EXTRA_FIRMWARE}'.split() )} \ imx-atf:do_populate_lic \ ${@' '.join('%s:do_populate_lic' % r for r in '${IMX_M4_DEMOS}'.split() )} \ + firmware-imx:do_populate_lic \ " UBOOT_NAME = "u-boot-${MACHINE}.bin"