Commit 5d800858 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge branch 'berendt-fix_qemu_size_argument'

parents a4761087 3504e4c1
...@@ -186,7 +186,7 @@ qemu-system-x86 command. The arguments are all printed for review. ...@@ -186,7 +186,7 @@ qemu-system-x86 command. The arguments are all printed for review.
```javascript ```javascript
// ... // ...
"qemuargs": [ "qemuargs": [
[ "-m", "1024m" ], [ "-m", "1024M" ],
[ "--no-acpi", "" ], [ "--no-acpi", "" ],
[ [
"-netdev", "-netdev",
...@@ -201,9 +201,9 @@ qemu-system-x86 command. The arguments are all printed for review. ...@@ -201,9 +201,9 @@ qemu-system-x86 command. The arguments are all printed for review.
would produce the following (not including other defaults supplied by the builder and not otherwise conflicting with the qemuargs): would produce the following (not including other defaults supplied by the builder and not otherwise conflicting with the qemuargs):
```text <pre class="prettyprint">
qemu-system-x86 -m 1024m --no-acpi -netdev user,id=mynet0,hostfwd=hostip:hostport-guestip:guestport -device virtio-net,netdev=mynet0" qemu-system-x86 -m 1024m --no-acpi -netdev user,id=mynet0,hostfwd=hostip:hostport-guestip:guestport -device virtio-net,netdev=mynet0"
``` </pre>
* `qemu_binary` (string) - The name of the Qemu binary to look for. This * `qemu_binary` (string) - The name of the Qemu binary to look for. This
defaults to "qemu-system-x86_64", but may need to be changed for some defaults to "qemu-system-x86_64", but may need to be changed for some
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment