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:37 +0000 |
commit | c27f5dc245f4aa4f7df96075222e06d3fd49c835 (patch) | |
tree | 38a02a4211470790d8279368385d79fd9e17bab0 | |
parent | 9de82270e4b2706429c02679ba4ff61690ac5328 (diff) | |
download | poky-c27f5dc245f4aa4f7df96075222e06d3fd49c835.tar.gz |
oeqa/qemu: remove elf image type
Since we are depercating the ELF image type, we should not test it
here either.
(From OE-Core rev: c0c10ae9f7e206ee156a68ddbed73c8820c37824)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@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 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 | |||
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', 'elf'] | 12 | supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] |
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', |