diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2015-09-21 21:03:37 +0000 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2015-09-21 21:03:37 +0000 |
commit | 82a8aac378373f0354268f8a9ca5cc94e019d594 (patch) | |
tree | ef6793c9406abc5d6ea3b78385657fe743763f34 | |
parent | 7cf832486bf7ac59dfb1c6b3254b6ccabaa95f67 (diff) | |
download | master-187ad058-82a8aac378373f0354268f8a9ca5cc94e019d594.tar.gz master-187ad058-82a8aac378373f0354268f8a9ca5cc94e019d594.tar.bz2 master-187ad058-82a8aac378373f0354268f8a9ca5cc94e019d594.zip |
packages: uboot-mxs: do no modify the U-Boot image, copy as-is
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47017 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/boot/uboot-mxs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-mxs/Makefile b/package/boot/uboot-mxs/Makefile index a6a137ce43..eee73d27b4 100644 --- a/package/boot/uboot-mxs/Makefile +++ b/package/boot/uboot-mxs/Makefile @@ -77,7 +77,7 @@ endef define Package/uboot/install/default $(INSTALL_DIR) $(BIN_DIR)/uboot-$(BOARD)-$(1) - dd if=$(PKG_BUILD_DIR)/u-boot.sb of=$(BIN_DIR)/uboot-$(BOARD)-$(1)/uboot-$(BOARD)-$(1).sb bs=512 seek=4 + $(CP) $(PKG_BUILD_DIR)/u-boot.sb $(BIN_DIR)/uboot-$(BOARD)-$(1)/uboot-$(BOARD)-$(1).sb endef define Package/uboot/install/template |