]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu.py: add 'elf' as supported fstype
authorJuro Bystricky <juro.bystricky@intel.com>
Mon, 6 Feb 2017 18:05:15 +0000 (10:05 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 15 Feb 2017 17:29:42 +0000 (09:29 -0800)
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>
meta/lib/oeqa/core/target/qemu.py

index 641dd6a093ab340a901c4452969b681557cfde78..9d3f68cb647749e2f8c95a2365729b96748d9e84 100644 (file)
@@ -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',