projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
575dc45
)
Call qemu with "-nics 0" to avoid calling any network initialization
author
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 20 Dec 2005 00:26:27 +0000
(
00:26
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 20 Dec 2005 00:26:27 +0000
(
00:26
+0000)
script.
src/utils/pintos
patch
|
blob
|
history
diff --git
a/src/utils/pintos
b/src/utils/pintos
index c29b6a3c4043b85968fec25de43e0a8d699634b6..fd5078e387a132698ae72fac0e2607fbf33e7e2c 100755
(executable)
--- 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';