From: Mikko Rapeli Date: Thu, 14 Sep 2023 10:36:44 +0000 (+0300) Subject: testimage.bbclass: remove QEMU_USE_SLIRP variable X-Git-Tag: yocto-5.2~5182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99fd24f0d9ff79fed389ae5a01c3031d7e7167d0;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git testimage.bbclass: remove QEMU_USE_SLIRP variable QEMU_USE_SLIRP is replaced by TEST_RUNQEMUPARAMS with "slirp" and possibly other arguments to runqemu script. Signed-off-by: Mikko Rapeli Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass index 8a944f58098..7c56fe9674c 100644 --- a/meta/classes-recipe/testimage.bbclass +++ b/meta/classes-recipe/testimage.bbclass @@ -322,7 +322,7 @@ def testimage_main(d): ovmf = d.getVar("QEMU_USE_OVMF") slirp = False - if d.getVar("QEMU_USE_SLIRP") or bb.utils.contains('TEST_RUNQEMUPARAMS', 'slirp', True, False, d): + if bb.utils.contains('TEST_RUNQEMUPARAMS', 'slirp', True, False, d): slirp = True # TODO: We use the current implementation of qemu runner because of