From 6e7e6e37664b0a86111272f5f6f4a4e1d0f23302 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Fri, 13 Jan 2017 15:12:45 +0200 Subject: oeqa.utils.metadata: allow storing any bitbake config variables Make it possible to store any bitbake config variables in the metadata. Config values will be stored under a new config element in the xml report: qemux86 The value of MACHINE is moved there instead of having a dedicated element. [YOCTO #10590] Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- scripts/oe-selftest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/oe-selftest b/scripts/oe-selftest index 5b045e8672..fb33c08512 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest @@ -604,7 +604,7 @@ def main(): l_branches = {str(branch) for branch in repo.branches} branch = '%s/%s/%s' % (metadata['hostname'], metadata['layers']['meta'].get('branch', '(nogit)'), - metadata['machine']) + metadata['config']['MACHINE']) if branch in l_branches: log.debug('Found branch in local repository, checking out') @@ -634,7 +634,7 @@ def main(): values.get('branch', '(nogit)'), values.get('commit', '0'*40)) msg = 'Selftest for build %s of %s for machine %s on %s\n\n%s' % ( log_prefix[12:], metadata['distro']['pretty_name'], - metadata['machine'], metadata['hostname'], layer_info) + metadata['config']['MACHINE'], metadata['hostname'], layer_info) log.debug('Commiting results to local repository') repo.index.commit(msg) -- cgit 1.2.3-korg