Pārlūkot izejas kodu

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>
Juro Bystricky 7 gadi atpakaļ
vecāks
revīzija
c1ec42ee9b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      meta/lib/oeqa/core/target/qemu.py

+ 1 - 1
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',