diff options
Diffstat (limited to 'qemu-config.c')
-rw-r--r-- | qemu-config.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qemu-config.c b/qemu-config.c index c9763e0..7d9da78 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -566,6 +566,18 @@ static QemuOptsList qemu_machine_opts = { .name = "kvm_shadow_mem", .type = QEMU_OPT_SIZE, .help = "KVM shadow MMU size", + }, { + .name = "kernel", + .type = QEMU_OPT_STRING, + .help = "Linux kernel image file", + }, { + .name = "initrd", + .type = QEMU_OPT_STRING, + .help = "Linux initial ramdisk file", + }, { + .name = "append", + .type = QEMU_OPT_STRING, + .help = "Linux kernel command line", }, { /* End of list */ } }, |