From fa97205f611b922b85299e79edba9a0bbbe3cfb2 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 20 Apr 2006 22:46:07 +0000 Subject: [PATCH] Don't pass "-nics 0" to qemu, because this option name has changed from version to version and it's just not worth it. --- src/utils/pintos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; -- 2.30.2