diff mbox

[kvm-unit-tests] arm/arm64: don't configure default devices

Message ID 1474636135-16119-1-git-send-email-drjones@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Andrew Jones Sept. 23, 2016, 1:08 p.m. UTC
Remove virtio-net-pci from the config.

Signed-off-by: Andrew Jones <drjones@redhat.com>
---
 arm/run | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/arm/run b/arm/run
index a2f35ef6a7e6..daf6012c3fce 100755
--- a/arm/run
+++ b/arm/run
@@ -68,7 +68,8 @@  chr_testdev='-device virtio-serial-device'
 chr_testdev+=' -device virtconsole,chardev=ctd -chardev testdev,id=ctd'
 
 M+=",accel=$ACCEL"
-command="$qemu $M -cpu $processor $chr_testdev"
+command="$qemu -nodefaults -nodefconfig"
+command+=" $M -cpu $processor $chr_testdev"
 command+=" -display none -serial stdio -kernel"
 command="$(timeout_cmd) $command"
 echo $command "$@"