diff options
author | Luka Perkov <luka@openwrt.org> | 2013-10-23 20:21:27 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-10-23 20:21:27 +0000 |
commit | a0c9c711cd30c26f7b06eeea208fad6233c90d5c (patch) | |
tree | 6f1b60683cab5255f4d7e72e0543690aa7c64081 /target/linux/imx6/image | |
parent | 9e01011b5ca289484d302983ed277aeeb3417b24 (diff) | |
download | upstream-a0c9c711cd30c26f7b06eeea208fad6233c90d5c.tar.gz upstream-a0c9c711cd30c26f7b06eeea208fad6233c90d5c.tar.bz2 upstream-a0c9c711cd30c26f7b06eeea208fad6233c90d5c.zip |
imx6: fix symlink of dtb files
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
SVN-Revision: 38510
Diffstat (limited to 'target/linux/imx6/image')
-rw-r--r-- | target/linux/imx6/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/imx6/image/Makefile b/target/linux/imx6/image/Makefile index 4b9625aaac..346ea33004 100644 --- a/target/linux/imx6/image/Makefile +++ b/target/linux/imx6/image/Makefile @@ -41,7 +41,7 @@ define Image/InstallKernel/Template $(INSTALL_DIR) $(TARGET_DIR)/boot ifneq ($(1),) $(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/ - ln -sf $(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/$(1) + ln -sf $(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/$(1).dtb endif endif endef |