[oe-commits] [openembedded-core] 08/47: runqemu-internal: Update the qemuzynq boot options

git at git.openembedded.org git at git.openembedded.org
Sun Jun 12 22:47:50 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit e76f62a862a895147a89cea2519679aad337a679
Author: Alistair Francis <alistair.francis at xilinx.com>
AuthorDate: Tue Jun 7 11:33:37 2016 -0700

    runqemu-internal: Update the qemuzynq boot options
    
    The current qemuzynq options were causing QEMU to exit instead of
    booting as the QEMU Zynq-7000 machine does not have virtio or
    display devices.
    
    Signed-off-by: Alistair Francis <alistair.francis at xilinx.com>
    Reported-by: Arno <star at gmx.li>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/runqemu-internal | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 5671b4f..ea1a307 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -489,7 +489,8 @@ config_qemush4() {
 config_qemuzynq() {
     set_mem_size 1024
     QEMU=qemu-system-arm
-    QEMU_SYSTEM_OPTIONS="$QEMU_NETWORK_CMD -M xilinx-zynq-a9 -serial null -serial mon:stdio -dtb $KERNEL-$MACHINE.dtb"
+    QEMU_NETWORK_CMD="-net nic -net nic $QEMU_TAP_CMD"
+    QEMU_SYSTEM_OPTIONS="$QEMU_NETWORK_CMD -M xilinx-zynq-a9 -serial null -serial mon:stdio -nographic -dtb $KERNEL-$MACHINE.dtb"
     # zynq serial ports are named 'ttyPS0' and 'ttyPS1', fixup the default values
     SCRIPT_KERNEL_OPT=$(echo "$SCRIPT_KERNEL_OPT" | sed 's/console=ttyS/console=ttyPS/g')
     if [ "${FSTYPE:0:3}" = "ext" -o "${FSTYPE:0:4}" = "cpio" ]; then

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list