summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntony Pavlov <antonynpavlov@gmail.com>2014-07-09 00:22:56 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-09 07:33:27 +0200
commit00e5e81a1d0c6cbbb861502aae29262a4138e8e7 (patch)
treea90833bcec14bc756a06072f7e7d2e5c3ccd4c9e
parent4e14a437971b2e6068070266f6e9758505845295 (diff)
downloadbarebox-00e5e81a1d0c6cbbb861502aae29262a4138e8e7.tar.gz
barebox-00e5e81a1d0c6cbbb861502aae29262a4138e8e7.tar.xz
Documentation: add uemd mb7707 barebox mini-howto
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--Documentation/boards/uemd.rst40
1 files changed, 40 insertions, 0 deletions
diff --git a/Documentation/boards/uemd.rst b/Documentation/boards/uemd.rst
new file mode 100644
index 0000000000..4fb30fa86b
--- /dev/null
+++ b/Documentation/boards/uemd.rst
@@ -0,0 +1,40 @@
+UEMD
+====
+
+MB 77.07
+--------
+
+MB 77.07 board uses MBOOT as bootloader.
+MBOOT is a U-Boot clone with reduced functionality.
+See https://github.com/RC-MODULE/mboot for details.
+
+Running barebox
+^^^^^^^^^^^^^^^
+
+ 1. Connect to the boards's UART (38400 8N1);
+
+ 2. Turn board's power on;
+
+ 3. Wait ``Hit any key (in 2 sec) to skip autoload...`` prompt and press the space key;
+
+ 4. Compile ``zbarebox.bin`` image and upload it to the board via tftp
+
+.. code-block:: none
+
+ MBOOT # tftpboot zbarebox.bin
+ greth: greth_halt
+ TFTP Using GRETH_10/100 device
+ TFTP params: server 192.168.0.1 our_ip 192.168.0.7
+ TFTP params: filename 'zbarebox.bin' load_address 0x40100000
+ TFTP Loading: ################
+ TFTP done
+
+..
+
+ 5. Run barebox
+
+.. code-block:: none
+
+ MBOOT # go 0x40100000
+
+..