KERNEL_DTB is not set. This results in a FIT image without dtb files. Signed-off-by: Robin van der Gracht <[email protected]> ---
changes for v2: - use 'addprefix' instead of 'foreach'. rules/kernel-fit.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/kernel-fit.make b/rules/kernel-fit.make index ffead846b..64e82042f 100644 --- a/rules/kernel-fit.make +++ b/rules/kernel-fit.make @@ -28,7 +28,7 @@ KERNEL_FIT_KERNEL = $(KERNEL_IMAGE_PATH_y) ifdef PTXCONF_KERNEL_FIT_INITRAMFS KERNEL_FIT_INITRAMFS := $(IMAGEDIR)/root.cpio endif -KERNEL_FIT_DTB = $(KERNEL_DTB) +KERNEL_FIT_DTB = $(addprefix $(IMAGEDIR)/,$(KERNEL_DTB_FILES)) # ---------------------------------------------------------------------------- # Target-Install -- 2.30.2 _______________________________________________ ptxdist mailing list [email protected] To unsubscribe, send a mail with subject "unsubscribe" to [email protected]
