diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-07-27 18:46:09 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-08-03 20:29:55 +0200 |
commit | 260ebed70441f251469549c6a7bc622a69b36b36 (patch) | |
tree | 6eb8f7ead9d5af97a0a1fe164b0fc433d4fd7bee /doc | |
parent | 68941e3b2c217907a49aa66af8bb65729b913397 (diff) | |
download | u-boot-260ebed70441f251469549c6a7bc622a69b36b36.zip u-boot-260ebed70441f251469549c6a7bc622a69b36b36.tar.gz u-boot-260ebed70441f251469549c6a7bc622a69b36b36.tar.bz2 |
doc: qemu-mips build instructions
Correct the make commands for the defconfigs.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/board/emulation/qemu-mips.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/board/emulation/qemu-mips.rst b/doc/board/emulation/qemu-mips.rst index f206039..d359251 100644 --- a/doc/board/emulation/qemu-mips.rst +++ b/doc/board/emulation/qemu-mips.rst @@ -29,28 +29,28 @@ Using u-boot.bin as ROM (replaces Qemu monitor): .. code-block:: bash - make qemu_mips + make qemu_mips_defconfig qemu-system-mips -M mips -bios u-boot.bin -nographic 32 bit, little endian .. code-block:: bash - make qemu_mipsel + make qemu_mipsel_defconfig qemu-system-mipsel -M mips -bios u-boot.bin -nographic 64 bit, big endian .. code-block:: bash - make qemu_mips64 + make qemu_mips64_defconfig qemu-system-mips64 -cpu MIPS64R2-generic -M mips -bios u-boot.bin -nographic 64 bit, little endian .. code-block:: bash - make qemu_mips64el + make qemu_mips64el_defconfig qemu-system-mips64el -cpu MIPS64R2-generic -M mips -bios u-boot.bin -nographic or using u-boot.bin from emulated flash: |