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:
parent
fce0809b47
commit
0969676113
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue