diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2023-09-14 13:36:44 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-14 21:57:16 +0100 |
commit | bd1fc66e4c342590f329723fa77f4577ae3c49f7 (patch) | |
tree | 9b5d2881cc080d685804c3a9c33e3730a5f3151b | |
parent | aee5f979ed77c12b225ad8618e16ad0dc83fee3c (diff) | |
download | poky-bd1fc66e4c342590f329723fa77f4577ae3c49f7.tar.gz |
testimage.bbclass: remove QEMU_USE_SLIRP variable
QEMU_USE_SLIRP is replaced by TEST_RUNQEMUPARAMS with "slirp" and
possibly other arguments to runqemu script.
(From OE-Core rev: 99fd24f0d9ff79fed389ae5a01c3031d7e7167d0)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes-recipe/testimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass index 8a944f5809..7c56fe9674 100644 --- a/meta/classes-recipe/testimage.bbclass +++ b/meta/classes-recipe/testimage.bbclass | |||
@@ -322,7 +322,7 @@ def testimage_main(d): | |||
322 | ovmf = d.getVar("QEMU_USE_OVMF") | 322 | ovmf = d.getVar("QEMU_USE_OVMF") |
323 | 323 | ||
324 | slirp = False | 324 | slirp = False |
325 | if d.getVar("QEMU_USE_SLIRP") or bb.utils.contains('TEST_RUNQEMUPARAMS', 'slirp', True, False, d): | 325 | if bb.utils.contains('TEST_RUNQEMUPARAMS', 'slirp', True, False, d): |
326 | slirp = True | 326 | slirp = True |
327 | 327 | ||
328 | # TODO: We use the current implementation of qemu runner because of | 328 | # TODO: We use the current implementation of qemu runner because of |