summaryrefslogtreecommitdiff
path: root/qemu-options.hx
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2009-06-28 16:55:55 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-06-29 14:18:06 -0500
commit541c6725fc6c1865c735b9ae3b7320a9ec9e120d (patch)
treeaa874b52ccac088ace33fdc47dde8e9e2a4519c5 /qemu-options.hx
parentc9aa22dd9cd938af05ff7f452ac650e1cfa951e4 (diff)
downloadqemu-541c6725fc6c1865c735b9ae3b7320a9ec9e120d.tar.gz
qemu-541c6725fc6c1865c735b9ae3b7320a9ec9e120d.tar.bz2
qemu-541c6725fc6c1865c735b9ae3b7320a9ec9e120d.zip
Add documentation for Multiboot
The documentation shows how to use -kernel and friends for booting Linux, but obviously knows nothing about multiboot yet. Let's include some documentation for multiboot, so people know how to fully exploit this cool new feature. Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-options.hx')
-rw-r--r--qemu-options.hx17
1 files changed, 13 insertions, 4 deletions
diff --git a/qemu-options.hx b/qemu-options.hx
index 2f21e0a430..dc54115e52 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1100,10 +1100,11 @@ ETEXI
DEFHEADING()
-DEFHEADING(Linux boot specific:)
+DEFHEADING(Linux/Multiboot boot specific:)
STEXI
-When using these options, you can use a given
-Linux kernel without installing it in the disk image. It can be useful
+
+When using these options, you can use a given Linux or Multiboot
+kernel without installing it in the disk image. It can be useful
for easier testing of various kernels.
@table @option
@@ -1113,7 +1114,8 @@ DEF("kernel", HAS_ARG, QEMU_OPTION_kernel, \
"-kernel bzImage use 'bzImage' as kernel image\n")
STEXI
@item -kernel @var{bzImage}
-Use @var{bzImage} as kernel image.
+Use @var{bzImage} as kernel image. The kernel can be either a Linux kernel
+or in multiboot format.
ETEXI
DEF("append", HAS_ARG, QEMU_OPTION_append, \
@@ -1128,6 +1130,13 @@ DEF("initrd", HAS_ARG, QEMU_OPTION_initrd, \
STEXI
@item -initrd @var{file}
Use @var{file} as initial ram disk.
+
+@item -initrd "@var{file1} arg=foo,@var{file2}"
+
+This syntax is only available with multiboot.
+
+Use @var{file1} and @var{file2} as modules and pass arg=foo as parameter to the
+first module.
ETEXI
STEXI