diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-11-14 19:16:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-11-14 19:16:04 +0000 |
commit | 9aca892304c49523c620ed964f2c0b3468a57667 (patch) | |
tree | f610202d7f5cd93decf1b9e9855d9735bb4684a6 /target/linux/ramips/image | |
parent | f38e6c782c917d7cfc5f19fad64a50423f759d6e (diff) | |
download | upstream-9aca892304c49523c620ed964f2c0b3468a57667.tar.gz upstream-9aca892304c49523c620ed964f2c0b3468a57667.tar.bz2 upstream-9aca892304c49523c620ed964f2c0b3468a57667.zip |
ramips: use dd bs=4096k instead of bs=4M to make it more portable
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 38806
Diffstat (limited to 'target/linux/ramips/image')
-rw-r--r-- | target/linux/ramips/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index a6db8136ae..3e845f8e37 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -368,7 +368,7 @@ define BuildFirmware/DCS930/squashfs else \ dd if=$(KDIR)/image.$(2) of=$(KDIR)/dcs.tmp bs=64K count=5 conv=sync ;\ cat $(KDIR)/image.$(2) >> $(KDIR)/dcs.tmp ; \ - dd if=$(KDIR)/dcs.tmp of=$(call imgname,$(1),$(2))-factory.bin bs=4M count=1 conv=sync ;\ + dd if=$(KDIR)/dcs.tmp of=$(call imgname,$(1),$(2))-factory.bin bs=4096k count=1 conv=sync ;\ $(STAGING_DIR_HOST)/bin/mkdcs932 $(call imgname,$(1),$(2))-factory.bin ; \ fi endef |