diff options
author | Saul Wold <sgw@linux.intel.com> | 2017-12-04 17:10:35 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-02 17:24:12 +0000 |
commit | c0c10ae9f7e206ee156a68ddbed73c8820c37824 (patch) | |
tree | 959a6e1d843f3b44452b9817fcb703a25c06e7fd | |
parent | 003056db591ebee6464b51d29f706779936fcd83 (diff) | |
download | openembedded-core-c0c10ae9f7e206ee156a68ddbed73c8820c37824.tar.gz openembedded-core-c0c10ae9f7e206ee156a68ddbed73c8820c37824.tar.bz2 openembedded-core-c0c10ae9f7e206ee156a68ddbed73c8820c37824.zip |
oeqa/qemu: remove elf image type
Since we are depercating the ELF image type, we should not test it
here either.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 d359bf9fe3..bf3b633f04 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', 'elf'] +supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] class OEQemuTarget(OESSHTarget): def __init__(self, logger, ip, server_ip, timeout=300, user='root', |