From c46aa046c3269d47083b6c182c9dab5ffefb5c5d Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Mon, 13 Jul 2009 00:48:11 +0800 Subject: [PATCH] fix the u-boot makefile 'dd' command --- target/linux/xburst/image/u-boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/xburst/image/u-boot/Makefile b/target/linux/xburst/image/u-boot/Makefile index 8c455a955..a59dd31ae 100644 --- a/target/linux/xburst/image/u-boot/Makefile +++ b/target/linux/xburst/image/u-boot/Makefile @@ -29,7 +29,7 @@ endef define Build/InstallDev mkdir -p $(BIN_DIR) - dd if=$(PKG_BUILD_DIR)/u-boot-nand.bin of=$(BIN_DIR)/u-boot-$(UBOOT_CONFIG).bin bs=64k conv=sync + dd if=$(PKG_BUILD_DIR)/u-boot-nand.bin of=$(BIN_DIR)/u-boot-$(UBOOT_CONFIG).bin endef $(eval $(call Build/DefaultTargets))