From: Juro Bystricky Date: Mon, 6 Feb 2017 18:05:15 +0000 (-0800) Subject: qemu.py: add 'elf' as supported fstype X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~22565 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1ec42ee9beb1603012db5cf990cdbf1596b2a3d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 641dd6a093a..9d3f68cb647 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',