summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2018-06-07 06:00:43 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2018-06-11 08:54:10 +0200
commit900f61bc3b9d101862f18ffad43bf694924698ca (patch)
tree0bbf2bd0713d5f6c21d9b7d8cb62528bb56e10b1 /Documentation
parent17041667a27ac5fb51c81501402d6904e17b220c (diff)
downloadbarebox-900f61bc3b9d101862f18ffad43bf694924698ca.tar.gz
barebox-900f61bc3b9d101862f18ffad43bf694924698ca.tar.xz
Documentation: imx: Change block size for 'dd' to 1024
Real image starts at offset 0x400 (1024), so we can skip copying extra 512 bytes of zeros. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/boards/imx.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/boards/imx.rst b/Documentation/boards/imx.rst
index 9b1eb82d41..de389456ef 100644
--- a/Documentation/boards/imx.rst
+++ b/Documentation/boards/imx.rst
@@ -42,7 +42,7 @@ The above will overwrite the MBR (and consequently the partition table)
on the destination SD card. To preserve the MBR while writing the rest
of the image to the card, use::
- dd if=images/barebox-freescale-imx51-babbage.img of=/dev/sdd bs=512 skip=1 seek=1
+ dd if=images/barebox-freescale-imx51-babbage.img of=/dev/sdd bs=1024 skip=1 seek=1
The images can also always be started second stage::