From c1ec42ee9beb1603012db5cf990cdbf1596b2a3d Mon Sep 17 00:00:00 2001 From: Juro Bystricky Date: Mon, 6 Feb 2017 10:05:15 -0800 Subject: qemu.py: add 'elf' as supported fstype Add 'elf' as also supported by OEQemuTarget. Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- meta/lib/oeqa/core/target/qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oeqa/core') diff --git a/meta/lib/oeqa/core/target/qemu.py b/meta/lib/oeqa/core/target/qemu.py index 641dd6a093..9d3f68cb64 100644 --- a/meta/lib/oeqa/core/target/qemu.py +++ b/meta/lib/oeqa/core/target/qemu.py @@ -9,7 +9,7 @@ import time from .ssh import OESSHTarget from oeqa.utils.qemurunner import QemuRunner -supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] +supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'elf'] class OEQemuTarget(OESSHTarget): def __init__(self, logger, ip, server_ip, timeout=300, user='root', -- cgit 1.2.3-korg