From: Ben Pfaff Date: Tue, 20 Dec 2005 00:26:27 +0000 (+0000) Subject: Call qemu with "-nics 0" to avoid calling any network initialization X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=f079d0c60adccc790ceb4fcda093768fb04c641e Call qemu with "-nics 0" to avoid calling any network initialization script. --- diff --git a/src/utils/pintos b/src/utils/pintos index c29b6a3..fd5078e 100755 --- a/src/utils/pintos +++ b/src/utils/pintos @@ -446,7 +446,7 @@ sub run_qemu { push (@cmd, $option, $disks_by_iface[$iface]{FILENAME}) if defined $disks_by_iface[$iface]{FILENAME}; } - push (@cmd, '-m', $mem); + push (@cmd, '-m', $mem, '-nics', '0'); push (@cmd, '-nographic') if $vga eq 'none'; push (@cmd, '-serial', 'stdio') if $serial_out && $vga ne 'none'; push (@cmd, '-S') if $debug eq 'monitor';