mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
qemu: command: Always assume 'QEMU_CAPS_BOOT_STRICT'
Added by c8a6ae8bb9 in qemu-v1.5.0 and can't be compiled out. Assume that it's present and fix all fake-caps tests. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
021015148b
commit
e2aa0c3b5a
@ -6206,8 +6206,7 @@ qemuBuildPMCommandLine(virCommand *cmd,
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
qemuBuildBootCommandLine(virCommand *cmd,
|
qemuBuildBootCommandLine(virCommand *cmd,
|
||||||
const virDomainDef *def,
|
const virDomainDef *def)
|
||||||
virQEMUCaps *qemuCaps)
|
|
||||||
{
|
{
|
||||||
g_auto(virBuffer) boot_buf = VIR_BUFFER_INITIALIZER;
|
g_auto(virBuffer) boot_buf = VIR_BUFFER_INITIALIZER;
|
||||||
g_autofree char *boot_opts_str = NULL;
|
g_autofree char *boot_opts_str = NULL;
|
||||||
@ -6228,10 +6227,7 @@ qemuBuildBootCommandLine(virCommand *cmd,
|
|||||||
if (def->os.bm_timeout_set)
|
if (def->os.bm_timeout_set)
|
||||||
virBufferAsprintf(&boot_buf, "splash-time=%u,", def->os.bm_timeout);
|
virBufferAsprintf(&boot_buf, "splash-time=%u,", def->os.bm_timeout);
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOT_STRICT))
|
virBufferAddLit(&boot_buf, "strict=on");
|
||||||
virBufferAddLit(&boot_buf, "strict=on,");
|
|
||||||
|
|
||||||
virBufferTrim(&boot_buf, ",");
|
|
||||||
|
|
||||||
boot_opts_str = virBufferContentAndReset(&boot_buf);
|
boot_opts_str = virBufferContentAndReset(&boot_buf);
|
||||||
if (boot_opts_str) {
|
if (boot_opts_str) {
|
||||||
@ -10563,7 +10559,7 @@ qemuBuildCommandLine(virQEMUDriver *driver,
|
|||||||
if (qemuBuildPMCommandLine(cmd, def, priv) < 0)
|
if (qemuBuildPMCommandLine(cmd, def, priv) < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (qemuBuildBootCommandLine(cmd, def, qemuCaps) < 0)
|
if (qemuBuildBootCommandLine(cmd, def) < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (qemuBuildIOMMUCommandLine(cmd, def) < 0)
|
if (qemuBuildIOMMUCommandLine(cmd, def) < 0)
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -25,4 +25,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-drive file=/aarch64.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/aarch64.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,4 +24,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,4 +24,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,4 +24,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,4 +24,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda rootwait physmap.enabled=0' \
|
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda rootwait physmap.enabled=0' \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /var/lib/libvirt/images/guest.vmlinuz \
|
-kernel /var/lib/libvirt/images/guest.vmlinuz \
|
||||||
-initrd /var/lib/libvirt/images/guest.initramfs \
|
-initrd /var/lib/libvirt/images/guest.initramfs \
|
||||||
-append 'console=ttyAMA0 rw root=/dev/vda rootwait' \
|
-append 'console=ttyAMA0 rw root=/dev/vda rootwait' \
|
||||||
|
@ -26,4 +26,5 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1 \
|
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1 \
|
||||||
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
||||||
-device pcie-root-port,port=0x10,chassis=3,id=pci.3,bus=pcie.0,addr=0x2 \
|
-device pcie-root-port,port=0x10,chassis=3,id=pci.3,bus=pcie.0,addr=0x2 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device pcie-root-port,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,addr=0x1 \
|
-device pcie-root-port,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,addr=0x1 \
|
||||||
-device pcie-pci-bridge,id=pci.2,bus=pci.1,addr=0x0 \
|
-device pcie-pci-bridge,id=pci.2,bus=pci.1,addr=0x0 \
|
||||||
-device pcie-root-port,port=0x9,chassis=3,id=pci.3,bus=pcie.0,addr=0x1.0x1 \
|
-device pcie-root-port,port=0x9,chassis=3,id=pci.3,bus=pcie.0,addr=0x1.0x1 \
|
||||||
|
@ -23,5 +23,6 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device nec-usb-xhci,id=usb,bus=pcie.0,addr=0x1 \
|
-device nec-usb-xhci,id=usb,bus=pcie.0,addr=0x1 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,5 +23,6 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device qemu-xhci,id=usb,bus=pcie.0,addr=0x1 \
|
-device qemu-xhci,id=usb,bus=pcie.0,addr=0x1 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1 \
|
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1 \
|
||||||
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
||||||
-device ioh3420,port=0x10,chassis=3,id=pci.3,bus=pcie.0,addr=0x2 \
|
-device ioh3420,port=0x10,chassis=3,id=pci.3,bus=pcie.0,addr=0x2 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device ioh3420,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,addr=0x1 \
|
-device ioh3420,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,addr=0x1 \
|
||||||
-device ioh3420,port=0x9,chassis=2,id=pci.2,bus=pcie.0,multifunction=on,addr=0x1.0x1 \
|
-device ioh3420,port=0x9,chassis=2,id=pci.2,bus=pcie.0,multifunction=on,addr=0x1.0x1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append console=ttyAMA0 \
|
-append console=ttyAMA0 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-acpitable sig=SLIC,file=/var/lib/libvirt/acpi/slic.dat \
|
-acpitable sig=SLIC,file=/var/lib/libvirt/acpi/slic.dat \
|
||||||
-usb \
|
-usb \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,115200n8 rw root=/dev/mmcblk0p3 rootwait physmap.enabled=0' \
|
-append 'console=ttyAMA0,115200n8 rw root=/dev/mmcblk0p3 rootwait physmap.enabled=0' \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append console=ttyAMA0,115200n8 \
|
-append console=ttyAMA0,115200n8 \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda3 rootwait physmap.enabled=0' \
|
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda3 rootwait physmap.enabled=0' \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda rootwait physmap.enabled=0' \
|
-append 'console=ttyAMA0,115200n8 rw root=/dev/vda rootwait physmap.enabled=0' \
|
||||||
|
@ -36,6 +36,7 @@ QEMU_AUDIO_DAC_DEV=/dev/dsp1 \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=alsa \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -36,6 +36,7 @@ QEMU_COREAUDIO_BUFFER_SIZE=200 \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=coreaudio \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=alsa \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ SDL_AUDIODRIVER=esd \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=spice \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=alsa \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -35,6 +35,7 @@ QEMU_WAV_PATH=audio.wav \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=wav \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -34,6 +34,7 @@ QEMU_AUDIO_DAC_FIXED_FMT=f32 \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -39,6 +39,7 @@ QEMU_OSS_NFRAGS=30 \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=oss \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -38,6 +38,7 @@ QEMU_PA_SERVER=%s=acme.example.org \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=pa \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -36,6 +36,7 @@ SDL_AUDIODRIVER=pulseaudio \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=sdl \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -34,6 +34,7 @@ QEMU_AUDIO_DAC_FIXED_FMT=f32 \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=spice \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \
|
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \
|
||||||
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
||||||
-device ioh3420,port=0x8,chassis=3,id=pci.3,bus=pcie.0,addr=0x1 \
|
-device ioh3420,port=0x8,chassis=3,id=pci.3,bus=pcie.0,addr=0x1 \
|
||||||
|
@ -22,5 +22,6 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-balloon-ccw,id=balloon0,devno=fe.0.000a,deflate-on-oom=on \
|
-device virtio-balloon-ccw,id=balloon0,devno=fe.0.000a,deflate-on-oom=on \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
||||||
|
@ -25,7 +25,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-boot menu=on \
|
-boot menu=on,strict=on \
|
||||||
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \
|
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \
|
||||||
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
||||||
-device ioh3420,port=0x8,chassis=3,id=pci.3,bus=pcie.0,addr=0x1 \
|
-device ioh3420,port=0x8,chassis=3,id=pci.3,bus=pcie.0,addr=0x1 \
|
||||||
|
@ -24,7 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-boot menu=on \
|
-boot menu=on,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -24,7 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=on \
|
-boot menu=on,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x4,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=3 \
|
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x4,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=3 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-drive file=/tmp/firmware.img,format=raw,if=none,id=drive-fdc0-0-0 \
|
-drive file=/tmp/firmware.img,format=raw,if=none,id=drive-fdc0-0-0 \
|
||||||
-device isa-fdc,driveA=drive-fdc0-0-0,bootindexA=1 \
|
-device isa-fdc,driveA=drive-fdc0-0-0,bootindexA=1 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
||||||
|
@ -23,7 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=off \
|
-boot menu=off,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,7 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=off \
|
-boot menu=off,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,7 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=on,splash-time=3000 \
|
-boot menu=on,splash-time=3000,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,7 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=on \
|
-boot menu=on,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,7 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot menu=on \
|
-boot menu=on,strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,readonly=on \
|
||||||
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
-device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=spice \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=16,vectors=4,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=16,vectors=4,bus=pci.0,addr=0x2 \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-device virtio-serial-pci,id=virtio-serial2,bus=pci.0,addr=0x3 \
|
-device virtio-serial-pci,id=virtio-serial2,bus=pci.0,addr=0x3 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,addr=0x2 \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0x3 \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0x3 \
|
||||||
-usb \
|
-usb \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,addr=0x2 \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-usb \
|
-usb \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
||||||
-usb \
|
-usb \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
||||||
-usb \
|
-usb \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
||||||
-usb \
|
-usb \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc,driftfix=slew \
|
-rtc base=utc,driftfix=slew \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=localtime \
|
-rtc base=localtime \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-no-hpet \
|
-no-hpet \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=2009-02-14T00:01:30 \
|
-rtc base=2009-02-14T00:01:30 \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=localtime \
|
-rtc base=localtime \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc,clock=rt \
|
-rtc base=utc,clock=rt \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=2009-02-15T09:49:06 \
|
-rtc base=2009-02-15T09:49:06 \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
-device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 \
|
||||||
|
@ -22,6 +22,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-ccw,id=virtio-serial0,devno=fe.0.0001 \
|
-device virtio-serial-ccw,id=virtio-serial0,devno=fe.0.0001 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-ccw,devno=fe.0.0000,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
-device virtio-blk-ccw,devno=fe.0.0000,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
|
@ -23,6 +23,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x2 \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
|
||||||
|
@ -21,7 +21,7 @@ QEMU_AUDIO_DRV=spice \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-boot menu=off \
|
-boot menu=off,strict=on \
|
||||||
-device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 \
|
-device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 \
|
||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x7 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x7 \
|
||||||
-device usb-hub,id=hub0,bus=usb.0,port=1 \
|
-device usb-hub,id=hub0,bus=usb.0,port=1 \
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
@ -24,6 +24,7 @@ QEMU_AUDIO_DRV=none \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
|
-boot strict=on \
|
||||||
-usb \
|
-usb \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x2 \
|
||||||
-msg timestamp=on
|
-msg timestamp=on
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user