mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
3648085c46
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18 lines
354 B
Text
18 lines
354 B
Text
|
|
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
|