From 3847adcc0a24fd1faf00a4444b5866ab80bc353f Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Wed, 12 Oct 2016 10:40:50 +0200 Subject: Fix initramfs build for sota MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The initramfs_fstypes default to cpio.gz, we need ext4.gz. Change-Id: Ib35e7ff23767fbe02b25f7605a22fcfb7b5899c8 Signed-off-by: Jan-Simon Möller --- meta-sota/recipes-core/images/initramfs-ostree-image.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-sota/recipes-core/images/initramfs-ostree-image.bb b/meta-sota/recipes-core/images/initramfs-ostree-image.bb index 9e47086..e4123d4 100644 --- a/meta-sota/recipes-core/images/initramfs-ostree-image.bb +++ b/meta-sota/recipes-core/images/initramfs-ostree-image.bb @@ -13,7 +13,9 @@ IMAGE_LINGUAS = "" LICENSE = "MIT" -IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" +# was ${INITRAMFS_FSTYPES} which defaults to cpio.gz +# due to xattr, we need ext3/4 +IMAGE_FSTYPES = "ext4.gz" inherit core-image IMAGE_ROOTFS_SIZE = "8192" -- cgit 1.2.3-korg