summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index 91e72cbc50..c43db8c227 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -736,11 +736,12 @@ class BaseConfig(object):
736 if self.fstype == 'nfs': 736 if self.fstype == 'nfs':
737 self.setup_nfs() 737 self.setup_nfs()
738 self.kernel_cmdline_script += " ip=192.168.7.%s::192.168.7.%s:255.255.255.0" % (n2, n1) 738 self.kernel_cmdline_script += " ip=192.168.7.%s::192.168.7.%s:255.255.255.0" % (n2, n1)
739 mac = "52:54:00:12:34:%02x" % n2
739 qb_tap_opt = self.get('QB_TAP_OPT') 740 qb_tap_opt = self.get('QB_TAP_OPT')
740 if qb_tap_opt: 741 if qb_tap_opt:
741 qemu_tap_opt = qb_tap_opt.replace('@TAP@', tap) 742 qemu_tap_opt = qb_tap_opt.replace('@TAP@', tap).replace('@MAC@', mac)
742 else: 743 else:
743 qemu_tap_opt = "-net nic,model=virtio -net tap,vlan=0,ifname=%s,script=no,downscript=no" % self.tap 744 qemu_tap_opt = "-net nic,model=virtio,mac=%s -net tap,vlan=0,ifname=%s,script=no,downscript=no" % (mac, self.tap)
744 745
745 if self.vhost_enabled: 746 if self.vhost_enabled:
746 qemu_tap_opt += ',vhost=on' 747 qemu_tap_opt += ',vhost=on'