diff mbox series

[master/kirkstone,07/52] packagegroup-arago-base-tisdk: Fix issue with optee pkgs not being included

Message ID 20220913040246.2365077-8-denis@denix.org
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series Latest 2022.09 sync-up with Dunfell | expand

Commit Message

Denys Dmytriyenko Sept. 13, 2022, 4:02 a.m. UTC
From: Yogesh Siraswar <yogeshs@ti.com>

In core-sdk 7.1 meta-ti OPTEEMACHINE description was updated to use combined
OPTEE_MACHINE and OPTEE_FLAVOR.

8ac0c757 conf/machine: pass OPTEEFLAVOR via OPTEEMACHINE as
<mach>-<flavor>

This caused the OPTEEMACHINE check to fail that was used to add
optee-client and optee-test. Fixing the issue by using
OPTEEOUTPUTMACHINE since it still uses ti/k3 as parameter.

Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
 .../packagegroups/packagegroup-arago-base-tisdk.bb            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
index a27a13ef..7812f981 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
@@ -1,6 +1,6 @@ 
 DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
 LICENSE = "MIT"
-PR = "r22"
+PR = "r23"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -26,5 +26,5 @@  RDEPENDS:${PN} = "\
     nfs-utils-client \
     cifs-utils \
     phytool \
-    ${@bb.utils.contains_any('OPTEEMACHINE', 'ti k3', "${OPTEE_PKGS}", "", d)} \
+    ${@bb.utils.contains_any('OPTEEOUTPUTMACHINE', 'ti k3', "${OPTEE_PKGS}", "", d)} \
 "