From: Richard Purdie Date: Sat, 10 Jul 2021 10:04:45 +0000 (+0100) Subject: sstate: Drop pseudo exclusion X-Git-Tag: 2021-04.3~107 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4c7c9326da92ea93fdef1ad804685c21a197f1d4;p=openembedded-core.git sstate: Drop pseudo exclusion Now that pseudo-native always includes statx support and we have sanity checks on pseudo-native to ensure it always contains a minimum feature set, we no longer need to mark pseudo-native as distro specific. This fixes eSDK build problems. [YOCTO #14428] Signed-off-by: Richard Purdie (cherry picked from commit 3279e43fcb469edb63c7c4eb60fdc565d5751f9d) Signed-off-by: Anuj Mittal --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 2b5d94dd1f..55d2937812 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -123,8 +123,6 @@ SSTATE_HASHEQUIV_REPORT_TASKDATA[doc] = "Report additional useful data to the \ python () { if bb.data.inherits_class('native', d): d.setVar('SSTATE_PKGARCH', d.getVar('BUILD_ARCH', False)) - if d.getVar("PN") == "pseudo-native": - d.appendVar('SSTATE_PKGARCH', '_${ORIGNATIVELSBSTRING}') elif bb.data.inherits_class('crosssdk', d): d.setVar('SSTATE_PKGARCH', d.expand("${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS}")) elif bb.data.inherits_class('cross', d):