From: Jan-Simon Möller Date: Thu, 22 Feb 2018 06:54:38 +0000 (+0100) Subject: Hotfix for db410 on rocko X-Git-Tag: 5.99.1~58 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=72d14f16bf3e16f977e483446dbac2c92fd0f68a;p=AGL%2Fmeta-agl.git Hotfix for db410 on rocko The db410c build uses IMAGE_FSTYPES_append which is a bad idea and should be changed to IMAGE_FSTYPES ?= Anyway - add a hotfix directly in the recipes. Change-Id: I163e4fdccfc890085cf98571dcf5d7bf21cffadd Signed-off-by: Jan-Simon Möller --- diff --git a/meta-netboot/recipes-core/images/initramfs-netboot-image.bb b/meta-netboot/recipes-core/images/initramfs-netboot-image.bb index cc6bc6753..965a0bd37 100644 --- a/meta-netboot/recipes-core/images/initramfs-netboot-image.bb +++ b/meta-netboot/recipes-core/images/initramfs-netboot-image.bb @@ -11,9 +11,12 @@ IMAGE_LINGUAS = "" LICENSE = "MIT" -IMAGE_FSTYPES = "${NETBOOT_FSTYPES}" +IMAGE_FSTYPES := "${NETBOOT_FSTYPES}" inherit core-image +# hotfix for dragonboard (which uses _append in the bsp) +IMAGE_FSTYPES_remove += "wic.gz" + IMAGE_ROOTFS_SIZE = "8192" IMAGE_ROOTFS_EXTRA_SPACE = "256"