README.qemu_mips 362 B

123456789101112131415161718
  1. Notes for the Qemu MIPS port
  2. Example usage:
  3. # ln -s u-boot.bin mips_bios.bin
  4. start it:
  5. qemu-system-mips -L . /dev/null -nographic
  6. or
  7. if you use a qemu version after commit 4224
  8. create image:
  9. # dd of=flash bs=1k count=4k if=/dev/zero
  10. # dd of=flash bs=1k conv=notrunc if=u-boot.bin
  11. start it:
  12. # qemu-system-mips -M mips -pflash flash -monitor null -nographic