From: Aníbal Limón Date: Mon, 1 May 2017 17:11:23 +0000 (-0500) Subject: selftest/devtool: change write to append config in virtual_kernel_modify X-Git-Tag: uninative-1.7~842 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=65bab9210be51aeb431ea85c90e31ad9f0d2340c;p=openembedded-core.git 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 Signed-off-by: Ross Burton --- 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)