meta-digi-arm: fix regression in optee userspace support
OPTEE_PKGS variable must have a default (empty) value to prevent bitbake parsing errors. This fixes a build failure for MP1 platforms where the variable was undefined in the commit that added the support. Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
7bd3ebc76e
commit
eb1bc0eeb3
|
|
@ -64,6 +64,7 @@ MACHINE_VARIANT ?= ""
|
||||||
MACHINEOVERRIDES .= "${@['', ':${MACHINE_VARIANT}']['${MACHINE_VARIANT}' != '']}"
|
MACHINEOVERRIDES .= "${@['', ':${MACHINE_VARIANT}']['${MACHINE_VARIANT}' != '']}"
|
||||||
|
|
||||||
# Extra RDEPENDS
|
# Extra RDEPENDS
|
||||||
|
OPTEE_PKGS ??= ""
|
||||||
MACHINE_EXTRA_RDEPENDS += " \
|
MACHINE_EXTRA_RDEPENDS += " \
|
||||||
${@bb.utils.contains("MACHINE_FEATURES", "mca", "mca-tool", "", d)} \
|
${@bb.utils.contains("MACHINE_FEATURES", "mca", "mca-tool", "", d)} \
|
||||||
${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_PKGS}', '', d)} \
|
${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_PKGS}', '', d)} \
|
||||||
|
|
|
||||||
|
|
@ -279,7 +279,7 @@ PREFERRED_VERSION_optee-test:mx8-nxp-bsp ??= "3.19.0.imx"
|
||||||
PREFERRED_VERSION_optee-test:mx9-nxp-bsp ??= "3.19.0.imx"
|
PREFERRED_VERSION_optee-test:mx9-nxp-bsp ??= "3.19.0.imx"
|
||||||
|
|
||||||
# Optee runtime packages to install
|
# Optee runtime packages to install
|
||||||
OPTEE_PKGS:use-nxp-bsp ??= "optee-client optee-os"
|
OPTEE_PKGS ??= "optee-client optee-os"
|
||||||
|
|
||||||
# Use i.MX opencv Version
|
# Use i.MX opencv Version
|
||||||
PREFERRED_VERSION_opencv:mx8-nxp-bsp ??= "4.6.0.imx"
|
PREFERRED_VERSION_opencv:mx8-nxp-bsp ??= "4.6.0.imx"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue