summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2013-07-17 19:39:24 +0530
committerNaresh Kamboju <naresh.kamboju@linaro.org>2013-07-17 19:39:24 +0530
commita9d346066384516742f9d4654b657e6dfe6f1e4c (patch)
tree657b6bc27f242d3668a5af77dfc28558fc0bfcb6
parenta761b3e1a9eeee0a1251cd61aaaf0377fcbbfbda (diff)
test-kvm.sh: Removed -netdev tap,id=tap0
With the network options I have found following error on LAVA qemu-system-arm: -netdev tap,id=tap0: could not open /dev/net/tun: No such file or directory qemu-system-arm: -netdev tap,id=tap0: Device 'tap' could not be initialized so deleting -netdev option on qemu-system-arm Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
-rwxr-xr-xtest-kvm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-kvm.sh b/test-kvm.sh
index 8cb9515..f849848 100755
--- a/test-kvm.sh
+++ b/test-kvm.sh
@@ -20,7 +20,7 @@ cp test-rt-tests.sh /mnt/root/test-rt-tests.sh
chmod 777 /mnt/root/test-rt-tests.sh
umount /mnt
-qemu-system-arm -smp 2 -m 1024 -cpu cortex-a15 -M vexpress-a15 -kernel ./zImage -dtb ./rtsm_ve-cortex_a15x1.dtb -append 'root=/dev/mmcblk0p2 rw rootwait mem=1024M console=ttyAMA0,38400n8' -drive if=sd,cache=writeback,file=kvm.qcow2,id=foo -device virtio-blk-device,drive=foo -netdev tap,id=tap0 -device virtio-net-device,netdev=tap0 -device virtio-net-device,netdev=tap0 -redir tcp:5022::22 -nographic -enable-kvm 2>&1|tee kvm-log.txt
+qemu-system-arm -smp 2 -m 1024 -cpu cortex-a15 -M vexpress-a15 -kernel ./zImage -dtb ./rtsm_ve-cortex_a15x1.dtb -append 'root=/dev/mmcblk0p2 rw rootwait mem=1024M console=ttyAMA0,38400n8' -drive if=sd,cache=writeback,file=kvm.qcow2,id=foo -device virtio-blk-device,drive=foo -redir tcp:5022::22 -nographic -enable-kvm 2>&1|tee kvm-log.txt
if ! grep -q "kvm-boot-1:" kvm-log.txt
then