diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2017-02-06 10:05:15 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 09:29:55 -0800 |
commit | ae98051014463f71d501e686e363579081adb2ef (patch) | |
tree | a8558921c73f7da8610d34466ed5159bdf906b4f /meta/lib | |
parent | 73d1c2713725602549fff99434be24fe593d80bb (diff) | |
download | poky-ae98051014463f71d501e686e363579081adb2ef.tar.gz |
qemu.py: add 'elf' as supported fstype
Add 'elf' as also supported by OEQemuTarget.
(From OE-Core rev: c1ec42ee9beb1603012db5cf990cdbf1596b2a3d)
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/core/target/qemu.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
9 | from .ssh import OESSHTarget | 9 | from .ssh import OESSHTarget |
10 | from oeqa.utils.qemurunner import QemuRunner | 10 | from oeqa.utils.qemurunner import QemuRunner |
11 | 11 | ||
12 | supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] | 12 | supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'elf'] |
13 | 13 | ||
14 | class OEQemuTarget(OESSHTarget): | 14 | class OEQemuTarget(OESSHTarget): |
15 | def __init__(self, logger, ip, server_ip, timeout=300, user='root', | 15 | def __init__(self, logger, ip, server_ip, timeout=300, user='root', |