summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-20 17:39:21 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-21 22:05:37 +0000
commit7dcf6c9d4545ee568b9ca769927f399790618740 (patch)
treefb7a25b443be7fc1e5fba4d66e5074f10c4c1027 /meta/lib/oeqa/targetcontrol.py
parent850642936887cff02b1f2cb2799c7dac01586bf0 (diff)
downloadpoky-7dcf6c9d4545ee568b9ca769927f399790618740.tar.gz
machine/qemu: Switch from ext3 to ext4
There is no good reason not to use ext4 at this point, it has advantages and few drawbacks. Therefore switch the qemu machines over (and the default runqemu script options). (From OE-Core rev: 430b9ae71b1aa76f8421127d17e0e0723d4818d3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r--meta/lib/oeqa/targetcontrol.py2
1 files changed, 1 insertions, 1 deletions
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