diff options
author | John Crispin <john@openwrt.org> | 2014-07-21 18:42:06 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-07-21 18:42:06 +0000 |
commit | 7d8f187201d361e1c0059d18d7e0f119ae4b6472 (patch) | |
tree | f0a41bad94859b216a0617a54dcc955cecd816d8 /target/linux/omap | |
parent | 941dab02d52dd27bad0ad2aa3c80619996309d2a (diff) | |
download | upstream-7d8f187201d361e1c0059d18d7e0f119ae4b6472.tar.gz upstream-7d8f187201d361e1c0059d18d7e0f119ae4b6472.tar.bz2 upstream-7d8f187201d361e1c0059d18d7e0f119ae4b6472.zip |
target/linux/*/image/Makefile: use new dts path variable
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 41791
Diffstat (limited to 'target/linux/omap')
-rw-r--r-- | target/linux/omap/image/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/omap/image/Makefile b/target/linux/omap/image/Makefile index c2f6f7cd94..ed3d90d222 100644 --- a/target/linux/omap/image/Makefile +++ b/target/linux/omap/image/Makefile @@ -22,14 +22,14 @@ define Image/BuildKernel endif ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),) $(INSTALL_DIR) $(TARGET_DIR)/boot - $(CP) $(LINUX_DIR)/arch/arm/boot/dts/am335x*.dtb $(TARGET_DIR)/boot/ - $(CP) $(LINUX_DIR)/arch/arm/boot/dts/omap3*.dtb $(TARGET_DIR)/boot/ - $(CP) $(LINUX_DIR)/arch/arm/boot/dts/omap4*.dtb $(TARGET_DIR)/boot/ + $(CP) $(DTS_DIR)/am335x*.dtb $(TARGET_DIR)/boot/ + $(CP) $(DTS_DIR)/omap3*.dtb $(TARGET_DIR)/boot/ + $(CP) $(DTS_DIR)/omap4*.dtb $(TARGET_DIR)/boot/ endif -mkdir $(BIN_DIR)/dtbs - -$(CP) $(LINUX_DIR)/arch/arm/boot/dts/am335x*.dtb $(BIN_DIR)/dtbs/ - -$(CP) $(LINUX_DIR)/arch/arm/boot/dts/omap3*.dtb $(BIN_DIR)/dtbs/ - -$(CP) $(LINUX_DIR)/arch/arm/boot/dts/omap4*.dtb $(BIN_DIR)/dtbs/ + -$(CP) $(DTS_DIR)/am335x*.dtb $(BIN_DIR)/dtbs/ + -$(CP) $(DTS_DIR)/omap3*.dtb $(BIN_DIR)/dtbs/ + -$(CP) $(DTS_DIR)/omap4*.dtb $(BIN_DIR)/dtbs/ endef define Image/Build |