From: Ben Pfaff Date: Thu, 20 Apr 2006 22:46:07 +0000 (+0000) Subject: Don't pass "-nics 0" to qemu, because this option name has changed X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=fa97205f611b922b85299e79edba9a0bbbe3cfb2 Don't pass "-nics 0" to qemu, because this option name has changed from version to version and it's just not worth it. --- diff --git a/src/utils/pintos b/src/utils/pintos index fdaa918..214e051 100755 --- a/src/utils/pintos +++ b/src/utils/pintos @@ -449,7 +449,7 @@ sub run_qemu { push (@cmd, $option, $disks_by_iface[$iface]{FILENAME}) if defined $disks_by_iface[$iface]{FILENAME}; } - push (@cmd, '-m', $mem, '-nics', '0'); + push (@cmd, '-m', $mem); push (@cmd, '-nographic') if $vga eq 'none'; push (@cmd, '-serial', 'stdio') if $serial_out && $vga ne 'none'; push (@cmd, '-S') if $debug eq 'monitor';