aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2008-05-02 19:48:56 +0200
committerWolfgang Denk <wd@denx.de>2008-05-04 00:18:15 +0200
commit3648085c464c8c22ef76fab006ca4344d3796124 (patch)
tree891df66996cf61523eae43fbd84e85c52838e257 /doc
parent4a89b766bf7798e1f4fc4ffabb68172cf88c65f0 (diff)
qemu_mips: add README
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.qemu_mips18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/README.qemu_mips b/doc/README.qemu_mips
new file mode 100644
index 000000000..476c5e689
--- /dev/null
+++ b/doc/README.qemu_mips
@@ -0,0 +1,18 @@
+
+Notes for the Qemu MIPS port
+
+Example usage:
+
+# ln -s u-boot.bin mips_bios.bin
+start it:
+qemu-system-mips -L . /dev/null -nographic
+
+or
+
+if you use a qemu version after commit 4224
+
+create image:
+# dd of=flash bs=1k count=4k if=/dev/zero
+# dd of=flash bs=1k conv=notrunc if=u-boot.bin
+start it:
+# qemu-system-mips -pflash flash -monitor null -nographic