diff options
author | Thomas Perrot <thomas.perrot@bootlin.com> | 2022-02-02 10:36:25 +0100 |
---|---|---|
committer | Thomas Perrot <thomas.perrot@bootlin.com> | 2022-02-02 10:38:16 +0100 |
commit | dce05576561f89e34e1218614852b4597c16f5c6 (patch) | |
tree | a98244114400c576b338b6c6ba0882a7044b7d2d | |
parent | 0e3d6ed0f52ef004680b5c2c0a270105acd62604 (diff) | |
download | meta-freescale-dce05576561f89e34e1218614852b4597c16f5c6.tar.gz |
optee-os: fix an override syntax
Correct a forgotten change when switching to the new syntax.
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
-rw-r--r-- | recipes-security/optee/optee-os.nxp.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-security/optee/optee-os.nxp.inc b/recipes-security/optee/optee-os.nxp.inc index f376b3ce..72af6ca4 100644 --- a/recipes-security/optee/optee-os.nxp.inc +++ b/recipes-security/optee/optee-os.nxp.inc | |||
@@ -18,7 +18,7 @@ B = "${WORKDIR}/build.${PLATFORM_FLAVOR}" | |||
18 | PLATFORM_FLAVOR ?= "${MACHINE}" | 18 | PLATFORM_FLAVOR ?= "${MACHINE}" |
19 | 19 | ||
20 | OPTEE_ARCH ?= "arm64" | 20 | OPTEE_ARCH ?= "arm64" |
21 | OPTEE_ARCH_armv7a = "arm32" | 21 | OPTEE_ARCH:armv7a = "arm32" |
22 | OPTEE_ARCH:aarch64 = "arm64" | 22 | OPTEE_ARCH:aarch64 = "arm64" |
23 | 23 | ||
24 | OPTEE_CORE_LOG_LEVEL ?= "1" | 24 | OPTEE_CORE_LOG_LEVEL ?= "1" |
@@ -73,4 +73,3 @@ FILES:${PN}-staticdev = "/usr/include/optee/" | |||
73 | RDEPENDS:${PN}-dev += "${PN}-staticdev" | 73 | RDEPENDS:${PN}-dev += "${PN}-staticdev" |
74 | 74 | ||
75 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 75 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
76 | |||