diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-05-01 12:11:23 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-18 14:01:47 +0100 |
commit | 3266238516fd1214d97b7f606733cbfe655779fd (patch) | |
tree | 57ee0518b7212a15602e08d4fb02995f6df8f6dc /meta/lib | |
parent | 4fdb6aa28d5d442dfd87f748d33f2c45784b4730 (diff) | |
download | poky-3266238516fd1214d97b7f606733cbfe655779fd.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]
(From OE-Core rev: 65bab9210be51aeb431ea85c90e31ad9f0d2340c)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 2 |
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): | |||
1635 | #Set machine to qemxu86 to be able to modify the kernel and | 1635 | #Set machine to qemxu86 to be able to modify the kernel and |
1636 | #verify the modification. | 1636 | #verify the modification. |
1637 | features = 'MACHINE = "qemux86"\n' | 1637 | features = 'MACHINE = "qemux86"\n' |
1638 | self.write_config(features) | 1638 | self.append_config(features) |
1639 | kernel_provider = get_bb_var('PREFERRED_PROVIDER_virtual/kernel') | 1639 | kernel_provider = get_bb_var('PREFERRED_PROVIDER_virtual/kernel') |
1640 | # Clean up the enviroment | 1640 | # Clean up the enviroment |
1641 | bitbake('%s -c clean' % kernel_provider) | 1641 | bitbake('%s -c clean' % kernel_provider) |