]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: Drop pseudo exclusion
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 10 Jul 2021 10:04:45 +0000 (11:04 +0100)
committerSteve Sakoman <steve@sakoman.com>
Wed, 14 Jul 2021 22:27:38 +0000 (12:27 -1000)
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 <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3279e43fcb469edb63c7c4eb60fdc565d5751f9d)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/classes/sstate.bbclass

index 9ed0e0c139b37de76f5f6d1bb67520ae257544f3..0a25e3ed9dacedba8af3aaeff0d740d13ce4a3ab 100644 (file)
@@ -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):