[meta-ti][scarthgap][PATCH v2 2/4] k3: fix weak IMAGE_BOOT_FILES assignment
Moteen Shah <[email protected]>
| Newsgroups | org.yoctoproject.lists.meta-ti |
|---|---|
| Message-ID | <[email protected]> |
From: Ryan Eatmon <[email protected]> ti-core-initramfs.inc appends the initramfs image file to IMAGE_BOOT_FILES. A weak default (?=) elsewhere in the same variable's assignment chain can silently drop that append depending on include order, so switch k3.inc's own default to a normal append (+=) to guarantee the required boot files are never clobbered. Signed-off-by: Ryan Eatmon <[email protected]> Signed-off-by: Moteen Shah <[email protected]> --- meta-ti-bsp/conf/machine/include/k3.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-ti-bsp/conf/machine/include/k3.inc b/meta-ti-bsp/conf/machine/include/k3.inc index d17ae71b..21738316 100644 --- a/meta-ti-bsp/conf/machine/include/k3.inc +++ b/meta-ti-bsp/conf/machine/include/k3.inc @@ -44,7 +44,7 @@ MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "ti-pka-fw" IMAGE_FSTYPES += "tar.xz wic.xz wic.bmap" -IMAGE_BOOT_FILES ?= "${SPL_BINARYNAME} u-boot.${UBOOT_SUFFIX} tiboot3.bin tiboot3-*-evm.bin" +IMAGE_BOOT_FILES += "${SPL_BINARYNAME} u-boot.${UBOOT_SUFFIX} tiboot3.bin tiboot3-*-evm.bin" IMAGE_EFI_BOOT_FILES ?= "${IMAGE_BOOT_FILES}" EFI_PROVIDER ?= "grub-efi" -- 2.34.1