diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-11-08 07:37:17 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-15 15:18:48 +0000 |
commit | 40a64e64b2ff41661ff254d0836c5f60120c6795 (patch) | |
tree | d95ffcdd9b453e00869c8e3063e47f22d278a829 /meta/conf | |
parent | 7c0fdfa1316011b856a795d8e42c36ac8b5638b2 (diff) | |
download | openembedded-core-40a64e64b2ff41661ff254d0836c5f60120c6795.tar.gz openembedded-core-40a64e64b2ff41661ff254d0836c5f60120c6795.tar.bz2 openembedded-core-40a64e64b2ff41661ff254d0836c5f60120c6795.zip |
qemuarm64.conf: make runqemu's graphics work
Fixed:
$ runqemu qemuarm64 (without -nographics)
There is no output in qemu console without this fix.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/machine/qemuarm64.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemuarm64.conf b/meta/conf/machine/qemuarm64.conf index d0750624a8..df2010cb85 100644 --- a/meta/conf/machine/qemuarm64.conf +++ b/meta/conf/machine/qemuarm64.conf @@ -16,7 +16,7 @@ QB_MACHINE = "-machine virt" QB_CPU = "-cpu cortex-a57" QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0,38400" # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy -QB_OPT_APPEND = "-show-cursor -device virtio-rng-pci" +QB_OPT_APPEND = "-show-cursor -device virtio-rng-pci -monitor null" QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no -device virtio-net-device,netdev=net0,mac=@MAC@" QB_SLIRP_OPT = "-netdev user,id=net0 -device virtio-net-device,netdev=net0" QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0" |