From 72d14f16bf3e16f977e483446dbac2c92fd0f68a Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Thu, 22 Feb 2018 07:54:38 +0100 Subject: Hotfix for db410 on rocko MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- meta-netboot/recipes-core/images/initramfs-netboot-image.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'meta-netboot') 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" -- cgit 1.2.3-korg