From: Juro Bystricky Date: Mon, 6 Feb 2017 18:05:15 +0000 (-0800) Subject: qemu.py: add 'elf' as supported fstype X-Git-Tag: uninative-1.5~368 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c1ec42ee9beb1603012db5cf990cdbf1596b2a3d;p=openembedded-core.git qemu.py: add 'elf' as supported fstype Add 'elf' as also supported by OEQemuTarget. Signed-off-by: Juro Bystricky Signed-off-by: Richard Purdie --- 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',