mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-17 14:18:14 +01:00
arm: qemu: Mention -nographic in the docs
Without this option QEMU appears to hang. Add it to avoid confusion. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
00a4280d77
commit
6d7636c946
@ -41,14 +41,15 @@ The minimal QEMU command line to get U-Boot up and running is:
|
|||||||
|
|
||||||
- For ARM::
|
- For ARM::
|
||||||
|
|
||||||
qemu-system-arm -machine virt -bios u-boot.bin
|
qemu-system-arm -machine virt -nographic -bios u-boot.bin
|
||||||
|
|
||||||
- For AArch64::
|
- For AArch64::
|
||||||
|
|
||||||
qemu-system-aarch64 -machine virt -cpu cortex-a57 -bios u-boot.bin
|
qemu-system-aarch64 -machine virt -nographic -cpu cortex-a57 -bios u-boot.bin
|
||||||
|
|
||||||
Note that for some odd reason qemu-system-aarch64 needs to be explicitly
|
Note that for some odd reason qemu-system-aarch64 needs to be explicitly
|
||||||
told to use a 64-bit CPU or it will boot in 32-bit mode.
|
told to use a 64-bit CPU or it will boot in 32-bit mode. The -nographic argument
|
||||||
|
ensures that output appears on the terminal. Use Ctrl-A X to quit.
|
||||||
|
|
||||||
Additional persistent U-boot environment support can be added as follows:
|
Additional persistent U-boot environment support can be added as follows:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user