summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2015-09-29 17:51:23 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-01 07:43:37 +0100
commit2ea0e4ca8ebb04015abe80b42d4d8b3d217a0ae6 (patch)
tree119131ef0b200ec9a4be8a36f4cfc5b4719a99d6 /scripts
parenta23239ad3a862b9b79793fcc2a9b2531fe002479 (diff)
downloadpoky-2ea0e4ca8ebb04015abe80b42d4d8b3d217a0ae6.tar.gz
runqemu-internal: qemuarm enable usage of virtio devices
We are experiencing occasional segfaults in scsi sym53c8xx driver on qemuarm boot. There are some old discussions into the mailing lists [1] about the scsi problem and seems to be isn't fixed. We use virtio blk/net devices into qemuarm64 also are supported into qemuarm so change to use it because virtio devices are the best choice. [YOCTO #8060] [1] https://bugzilla.yoctoproject.org/show_bug.cgi?id=8060#c10 (From OE-Core rev: bbfb3cd06e0ff5661ef3732ebfffa74b94400cd9) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-internal14
1 files changed, 12 insertions, 2 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 078545e931..13840b3023 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -364,8 +364,18 @@ if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarm
364 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" 364 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS"
365 # QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -force-pointer" 365 # QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -force-pointer"
366 if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then 366 if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then
367 KERNCMDLINE="root=/dev/sda rw console=ttyAMA0,115200 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY highres=off" 367 if [ "$MACHINE" = "qemuarm" ]; then
368 QEMUOPTIONS="$QEMU_NETWORK_CMD -M ${MACHINE_SUBTYPE} -drive file=$ROOTFS,format=raw -no-reboot $QEMU_UI_OPTIONS" 368 QEMU_NETWORK_CMD="-net nic,model=virtio $QEMU_TAP_CMD"
369 DROOT="/dev/vda"
370 ROOTFS_OPTIONS="-drive file=$ROOTFS,if=virtio,format=raw"
371 else
372 QEMU_NETWORK_CMD="-net nic,vlan=0 $QEMU_TAP_CMD"
373 DROOT="/dev/sda"
374 ROOTFS_OPTIONS="-drive file=$ROOTFS,format=raw"
375 fi
376
377 KERNCMDLINE="root=$DROOT rw console=ttyAMA0,115200 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY highres=off"
378 QEMUOPTIONS="$QEMU_NETWORK_CMD -M ${MACHINE_SUBTYPE} $ROOTFS_OPTIONS -no-reboot $QEMU_UI_OPTIONS"
369 fi 379 fi
370 if [ "$FSTYPE" = "nfs" ]; then 380 if [ "$FSTYPE" = "nfs" ]; then
371 if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then 381 if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then