
Hi Devarsh,
On Thu, 31 Aug 2023 at 00:02, Devarsh Thakkar devarsht@ti.com wrote:
Hi Simon,
On 25/08/23 01:28, Simon Glass wrote:
This relates to booting since it fixes up the devicetree for the OS. Move it into the boot/ directory.
Signed-off-by: Simon Glass sjg@chromium.org
boot/Makefile | 3 +++ {common => boot}/fdt_support.c | 0 common/Makefile | 2 -- 3 files changed, 3 insertions(+), 2 deletions(-) rename {common => boot}/fdt_support.c (100%)
diff --git a/boot/Makefile b/boot/Makefile index 10f015722378..f15a161614ff 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -16,6 +16,7 @@ obj-$(CONFIG_QFW) += bootmeth_qfw.o endif
obj-y += image.o image-board.o
obj-$(CONFIG_ANDROID_AB) += android_ab.o obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o
@@ -37,6 +38,8 @@ obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o endif
+obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o
Can this be, obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o image-fdt.o ?
Yes...unfortunately I missed this when sending v3
Regards, Simon