diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2015-08-11 12:02:42 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-16 09:25:17 +0100 |
commit | 2b56d671d2f0ef22786c97e29e1215eb80c94490 (patch) | |
tree | 0d1938bea1e55fc979207458a81bd8162f7a92b3 /meta/classes/image-live.bbclass | |
parent | 73c98d38e94d3b1407620c134f3b00dcd9d6132c (diff) | |
download | openembedded-core-2b56d671d2f0ef22786c97e29e1215eb80c94490.tar.gz openembedded-core-2b56d671d2f0ef22786c97e29e1215eb80c94490.tar.bz2 openembedded-core-2b56d671d2f0ef22786c97e29e1215eb80c94490.zip |
IMAGES_FSTYPES: default to EXT4
The following IMAGES_FSTYPES defaulted to ext3:
"vmdk", "vdi", "qcow2", "live", "iso", "hddimg"
This patch changes the default for those IMAGES_FSTYPES to
ext4 in order to bring the images more in line with other BSPs.
Besides improvements in performance and reliability ext4 provides
additional functionality as well (option to turn off the journaling,
dynamic resizing of VDI volumes etc.).
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-live.bbclass')
-rw-r--r-- | meta/classes/image-live.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index 52b6de718a..fa7a131eda 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass @@ -7,12 +7,12 @@ SYSLINUX_TIMEOUT ?= "50" SYSLINUX_LABELS ?= "boot install" LABELS_append = " ${SYSLINUX_LABELS} " -ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_BASENAME}-${MACHINE}.ext3" +ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_BASENAME}-${MACHINE}.ext4" do_bootimg[depends] += "${INITRD_IMAGE}:do_rootfs" do_bootimg[depends] += "${PN}:do_rootfs" inherit bootimg -IMAGE_TYPEDEP_live = "ext3" +IMAGE_TYPEDEP_live = "ext4" IMAGE_TYPES_MASKED += "live" |