diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-20 17:39:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-21 22:04:26 +0000 |
commit | 430b9ae71b1aa76f8421127d17e0e0723d4818d3 (patch) | |
tree | bed3133e9ab33e868172a7f3199c8fcc5b1636b2 /meta/lib/oeqa/targetcontrol.py | |
parent | d1cf0edd79ec3ba3bd17126183e4cb99aa50ffaf (diff) | |
download | openembedded-core-430b9ae71b1aa76f8421127d17e0e0723d4818d3.tar.gz openembedded-core-430b9ae71b1aa76f8421127d17e0e0723d4818d3.tar.bz2 openembedded-core-430b9ae71b1aa76f8421127d17e0e0723d4818d3.zip |
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).
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
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): class QemuTarget(BaseTarget): - supported_image_fstypes = ['ext3'] + supported_image_fstypes = ['ext3', 'ext4'] def __init__(self, d): |