Jean-Christophe PLAGNIOL-VILLARD | 3648085 | 2008-05-02 19:48:56 +0200 | [diff] [blame] | 1 | |
| 2 | Notes for the Qemu MIPS port |
| 3 | |
| 4 | Example usage: |
| 5 | |
| 6 | # ln -s u-boot.bin mips_bios.bin |
| 7 | start it: |
| 8 | qemu-system-mips -L . /dev/null -nographic |
| 9 | |
| 10 | or |
| 11 | |
| 12 | if you use a qemu version after commit 4224 |
| 13 | |
| 14 | create image: |
| 15 | # dd of=flash bs=1k count=4k if=/dev/zero |
| 16 | # dd of=flash bs=1k conv=notrunc if=u-boot.bin |
| 17 | start it: |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame^] | 18 | # qemu-system-mips -M mips -pflash flash -monitor null -nographic |