Merge "Change the libvirt NIC driver to virtio"

This commit is contained in:
Jenkins 2016-02-22 19:33:30 +00:00 committed by Gerrit Code Review
commit a5eb2e5c9c
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ def main():
help="What boot device to use (hd/network).")
parser.add_argument('--network', default="brbm",
help='The libvirt network name to use')
parser.add_argument('--libvirt-nic-driver', default='e1000',
parser.add_argument('--libvirt-nic-driver', default='virtio',
help='The libvirt network driver to use')
parser.add_argument('--console-log',
help='File to log console')

View File

@ -26,7 +26,7 @@ BRIDGE=$6
EMULATOR=$7
LOGDIR=$8
LIBVIRT_NIC_DRIVER=${LIBVIRT_NIC_DRIVER:-"e1000"}
LIBVIRT_NIC_DRIVER=${LIBVIRT_NIC_DRIVER:-"virtio"}
LIBVIRT_STORAGE_POOL=${LIBVIRT_STORAGE_POOL:-"default"}
LIBVIRT_CONNECT_URI=${LIBVIRT_CONNECT_URI:-"qemu:///system"}