aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-05-01 12:11:23 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-18 14:01:38 +0100
commit65bab9210be51aeb431ea85c90e31ad9f0d2340c (patch)
tree84a2858d9ceb63ce15b5f60a835d24cb8ac9ac31
parentebc37ede5b247347483128f091b505fe33356591 (diff)
downloadopenembedded-core-contrib-65bab9210be51aeb431ea85c90e31ad9f0d2340c.tar.gz
selftest/devtool: change write to append config in virtual_kernel_modify
When uses write it creates a full new configuration in selftest.inc causing to fail populate_sdk_ext linux-yocto because the signature of the sstate changes. [YOCTO #11300] Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r--meta/lib/oeqa/selftest/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index 57048665c0..39f3543417 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -1635,7 +1635,7 @@ class DevtoolTests(DevtoolBase):
#Set machine to qemxu86 to be able to modify the kernel and
#verify the modification.
features = 'MACHINE = "qemux86"\n'
- self.write_config(features)
+ self.append_config(features)
kernel_provider = get_bb_var('PREFERRED_PROVIDER_virtual/kernel')
# Clean up the enviroment
bitbake('%s -c clean' % kernel_provider)