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:42 -0800 |
commit | c1ec42ee9beb1603012db5cf990cdbf1596b2a3d (patch) | |
tree | 4c20b2d45ccd3b1931b72e7546448c77d19458cc | |
parent | 9f80b36a74d4eb407f9fc4d3afc056c41241cbc6 (diff) | |
download | openembedded-core-c1ec42ee9beb1603012db5cf990cdbf1596b2a3d.tar.gz openembedded-core-c1ec42ee9beb1603012db5cf990cdbf1596b2a3d.tar.bz2 openembedded-core-c1ec42ee9beb1603012db5cf990cdbf1596b2a3d.zip |
qemu.py: add 'elf' as supported fstype
Add 'elf' as also supported by OEQemuTarget.
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 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', |