mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
classes/populate_sdk_ext: Add SDK_EXT_TARGET_MANIFEST and SDK_EXT_HOST_MANIFEST
Extensible SDK needs to point to the correct manifest so add SDK_EXT_TARGET_MANIFEST and SDK_EXT_HOST_MANIFEST variables. oeqa/oetest.py: Fix SDKExtTestContext for load the correct manifests. (From OE-Core rev: 2310d5ad03531b7e1f9572c12c83c2fedc0291c9) Signed-off-by: Aníbal Limón <limon.anibal@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4cfdf174ce
commit
062dbd6da7
@@ -382,14 +382,18 @@ class SDKTestContext(TestContext):
|
||||
self.sdktestdir = sdktestdir
|
||||
self.sdkenv = sdkenv
|
||||
|
||||
if not hasattr(self, 'target_manifest'):
|
||||
self.target_manifest = d.getVar("SDK_TARGET_MANIFEST", True)
|
||||
try:
|
||||
with open(d.getVar("SDK_TARGET_MANIFEST", True)) as f:
|
||||
with open(self.target_manifest) as f:
|
||||
self.pkgmanifest = f.read()
|
||||
except IOError as e:
|
||||
bb.fatal("No package manifest file found. Did you build the sdk image?\n%s" % e)
|
||||
|
||||
if not hasattr(self, 'host_manifest'):
|
||||
self.host_manifest = d.getVar("SDK_HOST_MANIFEST", True)
|
||||
try:
|
||||
with open(d.getVar("SDK_HOST_MANIFEST", True)) as f:
|
||||
with open(self.host_manifest) as f:
|
||||
self.hostpkgmanifest = f.read()
|
||||
except IOError as e:
|
||||
bb.fatal("No host package manifest file found. Did you build the sdk image?\n%s" % e)
|
||||
@@ -406,6 +410,9 @@ class SDKTestContext(TestContext):
|
||||
|
||||
class SDKExtTestContext(SDKTestContext):
|
||||
def __init__(self, d, sdktestdir, sdkenv):
|
||||
self.target_manifest = d.getVar("SDK_EXT_TARGET_MANIFEST", True)
|
||||
self.host_manifest = d.getVar("SDK_EXT_HOST_MANIFEST", True)
|
||||
|
||||
super(SDKExtTestContext, self).__init__(d, sdktestdir, sdkenv)
|
||||
|
||||
self.sdkextfilesdir = os.path.join(os.path.dirname(os.path.abspath(
|
||||
|
||||
Reference in New Issue
Block a user