diff options
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-x | scripts/runqemu-internal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index c219419014..f6274e20e8 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal | |||
@@ -264,7 +264,7 @@ else | |||
264 | ROOTFS_OPTIONS="-hda $ROOTFS" | 264 | ROOTFS_OPTIONS="-hda $ROOTFS" |
265 | fi | 265 | fi |
266 | if [ "$MACHINE" = "qemuarm64" ]; then | 266 | if [ "$MACHINE" = "qemuarm64" ]; then |
267 | QEMU_NETWORK_CMD="-netdev user,id=net0 -device virtio-net-device,netdev=net0" | 267 | QEMU_NETWORK_CMD="-netdev tap,id=net0,ifname=$TAP,script=no,downscript=no -device virtio-net-device,netdev=net0 " |
268 | DROOT="/dev/vda" | 268 | DROOT="/dev/vda" |
269 | ROOTFS_OPTIONS="-drive id=disk0,file=$ROOTFS -device virtio-blk-device,drive=disk0" | 269 | ROOTFS_OPTIONS="-drive id=disk0,file=$ROOTFS -device virtio-blk-device,drive=disk0" |
270 | fi | 270 | fi |
@@ -381,7 +381,7 @@ if [ "$MACHINE" = "qemuarm64" ]; then | |||
381 | export QEMU_AUDIO_DRV="none" | 381 | export QEMU_AUDIO_DRV="none" |
382 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" | 382 | QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" |
383 | if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then | 383 | if [ "${FSTYPE:0:3}" = "ext" -o "$FSTYPE" = "btrfs" ]; then |
384 | KERNCMDLINE="root=/dev/vda rw console=ttyAMA0,38400 mem=$QEMU_MEMORY highres=off" | 384 | KERNCMDLINE="root=/dev/vda rw console=ttyAMA0,38400 mem=$QEMU_MEMORY highres=off $KERNEL_NETWORK_CMD" |
385 | # qemu-system-aarch64 only support '-machine virt -cpu cortex-a57' for now | 385 | # qemu-system-aarch64 only support '-machine virt -cpu cortex-a57' for now |
386 | QEMUOPTIONS="$QEMU_NETWORK_CMD -machine virt -cpu cortex-a57 $ROOTFS_OPTIONS $QEMU_UI_OPTIONS" | 386 | QEMUOPTIONS="$QEMU_NETWORK_CMD -machine virt -cpu cortex-a57 $ROOTFS_OPTIONS $QEMU_UI_OPTIONS" |
387 | fi | 387 | fi |