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 <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2019-04-16 17:31:02 +02:00
parent fce0809b47
commit 0969676113
1 changed files with 2 additions and 0 deletions

View File

@ -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"