* U-Boot now contains a copy of dtc, similar to the kernel. * By default, the DTC variable will point to this copy, so that make override is not necessary. * However, MKIMAGE_DTC_PATH does not use this, and by default, assumes dtc is on the PATH. * Use CONFIG_MKIMAGE_DTC_PATH to point to the dtc produced by U-Boot.
Signed-off-by: Jacob Stiffler <[email protected]> --- .../ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl index f12a4a5..6e8dd6e 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_u-boot-spl @@ -3,12 +3,12 @@ u-boot-spl: u-boot u-boot-spl_clean: u-boot_clean u-boot-spl_install: u-boot_install -u-boot: linux-dtbs +u-boot: @echo =================================== @echo Building U-boot @echo =================================== $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-boot-* CROSS_COMPILE=$(CROSS_COMPILE) $(UBOOT_MACHINE) - $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-boot-* CROSS_COMPILE=$(CROSS_COMPILE) DTC=$(LINUXKERNEL_INSTALL_DIR)/scripts/dtc/dtc + $(MAKE) -j $(MAKE_JOBS) -C $(TI_SDK_PATH)/board-support/u-boot-* CROSS_COMPILE=$(CROSS_COMPILE) CONFIG_MKIMAGE_DTC_PATH=$(TI_SDK_PATH)/board-support/u-boot-*/scripts/dtc/dtc u-boot_clean: @echo =================================== -- 2.7.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
