summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/machine/include/qemu.inc2
-rw-r--r--meta/lib/oeqa/targetcontrol.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc
index a5fc88aa01..d5c0b376ce 100644
--- a/meta/conf/machine/include/qemu.inc
+++ b/meta/conf/machine/include/qemu.inc
@@ -15,7 +15,7 @@ MACHINE_FEATURES = "alsa bluetooth usbgadget screen"
15 15
16MACHINEOVERRIDES =. "qemuall:" 16MACHINEOVERRIDES =. "qemuall:"
17 17
18IMAGE_FSTYPES += "tar.bz2 ext3" 18IMAGE_FSTYPES += "tar.bz2 ext4"
19 19
20# Don't include kernels in standard images 20# Don't include kernels in standard images
21RDEPENDS_kernel-base = "" 21RDEPENDS_kernel-base = ""
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index cc582dd1ad..1f4770f94e 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -110,7 +110,7 @@ class BaseTarget(object):
110 110
111class QemuTarget(BaseTarget): 111class QemuTarget(BaseTarget):
112 112
113 supported_image_fstypes = ['ext3'] 113 supported_image_fstypes = ['ext3', 'ext4']
114 114
115 def __init__(self, d): 115 def __init__(self, d):
116 116