diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2015-08-11 12:02:43 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-16 22:40:51 +0100 |
commit | 7cc816b9ffefd5debb23bfb7ba66a7dc8e0ac94d (patch) | |
tree | 849f250890b2751ce7b637b8ed22a82bf2655caa /meta/recipes-core | |
parent | 407d1562450d430a25a9cc2e89a8bf18a75099b7 (diff) | |
download | poky-7cc816b9ffefd5debb23bfb7ba66a7dc8e0ac94d.tar.gz |
build-appliance-image: use ext4 for rootfs
Changes due to IMAGES_FSTYPES "vmdk" and "vdi" now defaulting to ext4.
Switching Build Appliance to Ext4 will bring it more in-line with other BSPs.
[YOCTO #8096]
(From OE-Core rev: 0c747865f761d825c8a9b826d843573e5aac3ca5)
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/images/build-appliance-image_12.0.1.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/images/build-appliance-image_12.0.1.bb b/meta/recipes-core/images/build-appliance-image_12.0.1.bb index 8e71b36ba1..0a86ba4b3d 100644 --- a/meta/recipes-core/images/build-appliance-image_12.0.1.bb +++ b/meta/recipes-core/images/build-appliance-image_12.0.1.bb | |||
@@ -14,7 +14,7 @@ IMAGE_FEATURES += "x11-base package-management splash" | |||
14 | IMAGE_ROOTFS_EXTRA_SPACE = "41943040" | 14 | IMAGE_ROOTFS_EXTRA_SPACE = "41943040" |
15 | 15 | ||
16 | # Do a quiet boot with limited console messages | 16 | # Do a quiet boot with limited console messages |
17 | APPEND += "quiet" | 17 | APPEND += "rootfstype=ext4 quiet" |
18 | 18 | ||
19 | DEPENDS = "zip-native" | 19 | DEPENDS = "zip-native" |
20 | IMAGE_FSTYPES = "vmdk" | 20 | IMAGE_FSTYPES = "vmdk" |
@@ -27,9 +27,9 @@ SRC_URI = "git://git.yoctoproject.org/poky \ | |||
27 | file://Yocto_Build_Appliance.vmxf \ | 27 | file://Yocto_Build_Appliance.vmxf \ |
28 | " | 28 | " |
29 | 29 | ||
30 | IMAGE_CMD_ext3_append () { | 30 | IMAGE_CMD_ext4_append () { |
31 | # We don't need to reserve much space for root, 0.5% is more than enough | 31 | # We don't need to reserve much space for root, 0.5% is more than enough |
32 | tune2fs -m 0.5 ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3 | 32 | tune2fs -m 0.5 ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext4 |
33 | } | 33 | } |
34 | 34 | ||
35 | fakeroot do_populate_poky_src () { | 35 | fakeroot do_populate_poky_src () { |