mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
targetcontrol: add image_fstype argument to commands.runqemu
qemu runner picks up first fsimage type from the hard-coded list of supported types. This makes it impossible to test particular image type unless it's not ext4(first type in the hardcoded list of types). Added image_fstypes argument to commands.runqemu and QemuTarget __init__ to specify type of the image to run qemu with. This will be used to pass wic image type to test efi wic images. (From OE-Core rev: f1f224a2d4d3f2a760632c2254e91a8f94c8814f) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
383cd20828
commit
27badf83ec
@@ -218,7 +218,7 @@ def create_temp_layer(templayerdir, templayername, priority=999, recipepathspec=
|
||||
|
||||
|
||||
@contextlib.contextmanager
|
||||
def runqemu(pn, ssh=True, runqemuparams=''):
|
||||
def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None):
|
||||
|
||||
import bb.tinfoil
|
||||
import bb.build
|
||||
@@ -240,7 +240,7 @@ def runqemu(pn, ssh=True, runqemuparams=''):
|
||||
logger.propagate = False
|
||||
logdir = recipedata.getVar("TEST_LOG_DIR")
|
||||
|
||||
qemu = oeqa.targetcontrol.QemuTarget(recipedata)
|
||||
qemu = oeqa.targetcontrol.QemuTarget(recipedata, image_fstype)
|
||||
finally:
|
||||
# We need to shut down tinfoil early here in case we actually want
|
||||
# to run tinfoil-using utilities with the running QEMU instance.
|
||||
|
||||
Reference in New Issue
Block a user