summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils/commands.py')
-rw-r--r--meta/lib/oeqa/utils/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 73ede2379f..82c5908e9c 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -218,7 +218,7 @@ def create_temp_layer(templayerdir, templayername, priority=999, recipepathspec=
218 218
219 219
220@contextlib.contextmanager 220@contextlib.contextmanager
221def runqemu(pn, ssh=True, runqemuparams=''): 221def runqemu(pn, ssh=True, runqemuparams='', image_fstype=None):
222 222
223 import bb.tinfoil 223 import bb.tinfoil
224 import bb.build 224 import bb.build
@@ -240,7 +240,7 @@ def runqemu(pn, ssh=True, runqemuparams=''):
240 logger.propagate = False 240 logger.propagate = False
241 logdir = recipedata.getVar("TEST_LOG_DIR") 241 logdir = recipedata.getVar("TEST_LOG_DIR")
242 242
243 qemu = oeqa.targetcontrol.QemuTarget(recipedata) 243 qemu = oeqa.targetcontrol.QemuTarget(recipedata, image_fstype)
244 finally: 244 finally:
245 # We need to shut down tinfoil early here in case we actually want 245 # We need to shut down tinfoil early here in case we actually want
246 # to run tinfoil-using utilities with the running QEMU instance. 246 # to run tinfoil-using utilities with the running QEMU instance.