From 923c656b43732763b6505bdc1050f120f6b33a03 Mon Sep 17 00:00:00 2001 From: Ryan Eatmon Date: Mon, 5 Dec 2022 12:05:46 -0600 Subject: [PATCH] conf: Remove vmlinux.gz from KERNEL_IMAGETYPES With a recent patch to the TI kernel that includes debug symbols, the vmlinux.gz file grew in size that impacted the testing. This file is not needed to be in the final image so remove it from the list. Signed-off-by: Ryan Eatmon --- conf/machine/include/k3.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc index 8109cd02..349f4fda 100644 --- a/conf/machine/include/k3.inc +++ b/conf/machine/include/k3.inc @@ -15,7 +15,7 @@ PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging" PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging" KERNEL_IMAGETYPE = "Image" -KERNEL_IMAGETYPES = "Image vmlinux.gz fitImage" +KERNEL_IMAGETYPES = "Image fitImage" UBOOT_ARCH = "arm" UBOOT_ENTRYPOINT = "0x80008000"