
Jean-Christophe PLAGNIOL-VILLARD wrote:
On 18:06 Sun 23 Dec , Shinya Kuribayashi wrote:
Vlad Lungu wrote:
make qemu_mips_config ; make
Copy (or symlink) u-boot.bin to mips_bios.bin and launch qemu-system-mips -L . /dev/null -L . so that qemu picks the BIOS from the current directory and /dev/null because qemu wants a disk image. Qemu willl load and launch U-Boot.
$ cd u-boot.git $ make distclean $ make qemu_mips_config $ make CROSS_COMPILE=mips-linux- $ cp -a u-boot.bin mips_bios.bin $ qemu-system-mips -L . /dev/nulll
at this point, qemu console window appears but I can't see any u-boot's bootlog. I tried qemu on Debian testing or the latest CVS, but the same results.
I've test it on debian unstable with qemu from it and it's work with this cmd
qemu-system-mips -L . /dev/null -nographic
Thanks, J-C. You beat me to it. It's etiher that to work without a graphical interface or press Ctrl-Alt-3 to get to the serial console (Ctrl-Alt-2 is the qemu monitor shortcut, Ctrl-Alt-1 is the VGA emulation, unused and probably not working).
Vlad