mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-26 15:14:42 +00:00
qemu: capabilities: Always assume QEMU_CAPS_BOOTINDEX
The field was added in qemu v0.13.0-rc0-731-g1ca4d09ae0 so all supported qemu versions now use it. There's a LOT of test fallout as we did not use capabilities close enough to upstream for many of our tests. Several tests had a 'bootindex' variant. Since they'd become redundant they are also removed here. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
f72c5945e1
commit
caccbba64a
@ -860,8 +860,7 @@ virQEMUCapsInitGuestFromBinary(virCapsPtr caps,
|
|||||||
if (!virCapabilitiesAddGuestFeature(guest, "cpuselection", true, false))
|
if (!virCapabilitiesAddGuestFeature(guest, "cpuselection", true, false))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemubinCaps, QEMU_CAPS_BOOTINDEX) &&
|
if (!virCapabilitiesAddGuestFeature(guest, "deviceboot", true, false))
|
||||||
!virCapabilitiesAddGuestFeature(guest, "deviceboot", true, false))
|
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemubinCaps, QEMU_CAPS_DISK_SNAPSHOT))
|
if (virQEMUCapsGet(qemubinCaps, QEMU_CAPS_DISK_SNAPSHOT))
|
||||||
@ -1158,7 +1157,6 @@ static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsVirtioBalloon[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsVirtioBlk[] = {
|
static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsVirtioBlk[] = {
|
||||||
{ "bootindex", QEMU_CAPS_BOOTINDEX },
|
|
||||||
{ "ioeventfd", QEMU_CAPS_VIRTIO_IOEVENTFD },
|
{ "ioeventfd", QEMU_CAPS_VIRTIO_IOEVENTFD },
|
||||||
{ "event_idx", QEMU_CAPS_VIRTIO_BLK_EVENT_IDX },
|
{ "event_idx", QEMU_CAPS_VIRTIO_BLK_EVENT_IDX },
|
||||||
{ "scsi", QEMU_CAPS_VIRTIO_BLK_SCSI },
|
{ "scsi", QEMU_CAPS_VIRTIO_BLK_SCSI },
|
||||||
|
@ -115,7 +115,7 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */
|
|||||||
QEMU_CAPS_SPICE, /* Is -spice avail */
|
QEMU_CAPS_SPICE, /* Is -spice avail */
|
||||||
X_QEMU_CAPS_VGA_NONE, /* The 'none' arg for '-vga' */
|
X_QEMU_CAPS_VGA_NONE, /* The 'none' arg for '-vga' */
|
||||||
X_QEMU_CAPS_MIGRATE_QEMU_FD, /* -incoming fd:n */
|
X_QEMU_CAPS_MIGRATE_QEMU_FD, /* -incoming fd:n */
|
||||||
QEMU_CAPS_BOOTINDEX, /* -device bootindex property */
|
X_QEMU_CAPS_BOOTINDEX, /* -device bootindex property */
|
||||||
|
|
||||||
/* 50 */
|
/* 50 */
|
||||||
QEMU_CAPS_HDA_DUPLEX, /* -device hda-duplex */
|
QEMU_CAPS_HDA_DUPLEX, /* -device hda-duplex */
|
||||||
|
@ -2088,7 +2088,7 @@ qemuBuildDiskDeviceStr(const virDomainDef *def,
|
|||||||
VIR_FREE(backendAlias);
|
VIR_FREE(backendAlias);
|
||||||
|
|
||||||
virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
|
virBufferAsprintf(&opt, ",id=%s", disk->info.alias);
|
||||||
if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
|
if (bootindex)
|
||||||
virBufferAsprintf(&opt, ",bootindex=%u", bootindex);
|
virBufferAsprintf(&opt, ",bootindex=%u", bootindex);
|
||||||
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
|
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BLOCKIO)) {
|
||||||
if (disk->blockio.logical_block_size > 0)
|
if (disk->blockio.logical_block_size > 0)
|
||||||
@ -2318,22 +2318,17 @@ qemuBuildDisksCommandLine(virCommandPtr cmd,
|
|||||||
unsigned int bootFloppy = 0;
|
unsigned int bootFloppy = 0;
|
||||||
unsigned int bootDisk = 0;
|
unsigned int bootDisk = 0;
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DRIVE_BOOT) ||
|
for (i = 0; i < def->os.nBootDevs; i++) {
|
||||||
virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
|
switch (def->os.bootDevs[i]) {
|
||||||
/* bootDevs will get translated into either bootindex=N or boot=on
|
case VIR_DOMAIN_BOOT_CDROM:
|
||||||
* depending on what qemu supports */
|
bootCD = i + 1;
|
||||||
for (i = 0; i < def->os.nBootDevs; i++) {
|
break;
|
||||||
switch (def->os.bootDevs[i]) {
|
case VIR_DOMAIN_BOOT_FLOPPY:
|
||||||
case VIR_DOMAIN_BOOT_CDROM:
|
bootFloppy = i + 1;
|
||||||
bootCD = i + 1;
|
break;
|
||||||
break;
|
case VIR_DOMAIN_BOOT_DISK:
|
||||||
case VIR_DOMAIN_BOOT_FLOPPY:
|
bootDisk = i + 1;
|
||||||
bootFloppy = i + 1;
|
break;
|
||||||
break;
|
|
||||||
case VIR_DOMAIN_BOOT_DISK:
|
|
||||||
bootDisk = i + 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2360,10 +2355,6 @@ qemuBuildDisksCommandLine(virCommandPtr cmd,
|
|||||||
bootDisk = 0;
|
bootDisk = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
|
|
||||||
driveBoot = !!bootindex;
|
|
||||||
bootindex = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (qemuBuildDiskCommandLine(cmd, def, disk, qemuCaps,
|
if (qemuBuildDiskCommandLine(cmd, def, disk, qemuCaps,
|
||||||
@ -3569,7 +3560,7 @@ qemuBuildNicDevStr(virDomainDefPtr def,
|
|||||||
goto error;
|
goto error;
|
||||||
if (qemuBuildRomStr(&buf, &net->info) < 0)
|
if (qemuBuildRomStr(&buf, &net->info) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
if (bootindex && virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX))
|
if (bootindex)
|
||||||
virBufferAsprintf(&buf, ",bootindex=%u", bootindex);
|
virBufferAsprintf(&buf, ",bootindex=%u", bootindex);
|
||||||
if (usingVirtio &&
|
if (usingVirtio &&
|
||||||
qemuBuildVirtioOptionsStr(&buf, net->virtio, qemuCaps) < 0)
|
qemuBuildVirtioOptionsStr(&buf, net->virtio, qemuCaps) < 0)
|
||||||
@ -6457,53 +6448,9 @@ qemuBuildBootCommandLine(virCommandPtr cmd,
|
|||||||
const virDomainDef *def,
|
const virDomainDef *def,
|
||||||
virQEMUCapsPtr qemuCaps)
|
virQEMUCapsPtr qemuCaps)
|
||||||
{
|
{
|
||||||
size_t i;
|
|
||||||
virBuffer boot_buf = VIR_BUFFER_INITIALIZER;
|
virBuffer boot_buf = VIR_BUFFER_INITIALIZER;
|
||||||
char *boot_order_str = NULL, *boot_opts_str = NULL;
|
char *boot_order_str = NULL, *boot_opts_str = NULL;
|
||||||
|
|
||||||
/*
|
|
||||||
* We prefer using explicit bootindex=N parameters for predictable
|
|
||||||
* results even though domain XML doesn't use per device boot elements.
|
|
||||||
*/
|
|
||||||
if (!virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
|
|
||||||
char boot[VIR_DOMAIN_BOOT_LAST+1];
|
|
||||||
|
|
||||||
if (def->os.nBootDevs == 0) {
|
|
||||||
/* def->os.nBootDevs is guaranteed to be > 0 unless per-device boot
|
|
||||||
* configuration is used
|
|
||||||
*/
|
|
||||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
||||||
_("hypervisor lacks deviceboot feature"));
|
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < def->os.nBootDevs; i++) {
|
|
||||||
switch (def->os.bootDevs[i]) {
|
|
||||||
case VIR_DOMAIN_BOOT_CDROM:
|
|
||||||
boot[i] = 'd';
|
|
||||||
break;
|
|
||||||
case VIR_DOMAIN_BOOT_FLOPPY:
|
|
||||||
boot[i] = 'a';
|
|
||||||
break;
|
|
||||||
case VIR_DOMAIN_BOOT_DISK:
|
|
||||||
boot[i] = 'c';
|
|
||||||
break;
|
|
||||||
case VIR_DOMAIN_BOOT_NET:
|
|
||||||
boot[i] = 'n';
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
boot[i] = 'c';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
boot[def->os.nBootDevs] = '\0';
|
|
||||||
|
|
||||||
virBufferAsprintf(&boot_buf, "%s", boot);
|
|
||||||
if (virBufferCheckError(&boot_buf) < 0)
|
|
||||||
goto error;
|
|
||||||
boot_order_str = virBufferContentAndReset(&boot_buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (def->os.bootmenu) {
|
if (def->os.bootmenu) {
|
||||||
if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
|
if (def->os.bootmenu == VIR_TRISTATE_BOOL_YES)
|
||||||
virBufferAddLit(&boot_buf, "menu=on,");
|
virBufferAddLit(&boot_buf, "menu=on,");
|
||||||
@ -7396,8 +7343,7 @@ qemuBuildMachineCommandLine(virCommandPtr cmd,
|
|||||||
virBufferAsprintf(&buf, ",max-cpu-compat=%s", cpu->model);
|
virBufferAsprintf(&buf, ",max-cpu-compat=%s", cpu->model);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX) &&
|
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_LOADPARM))
|
||||||
virQEMUCapsGet(qemuCaps, QEMU_CAPS_LOADPARM))
|
|
||||||
qemuAppendLoadparmMachineParm(&buf, def);
|
qemuAppendLoadparmMachineParm(&buf, def);
|
||||||
|
|
||||||
if (def->sev)
|
if (def->sev)
|
||||||
@ -8716,15 +8662,11 @@ qemuBuildNetCommandLine(virQEMUDriverPtr driver,
|
|||||||
if (def->nnets) {
|
if (def->nnets) {
|
||||||
unsigned int bootNet = 0;
|
unsigned int bootNet = 0;
|
||||||
|
|
||||||
if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_BOOTINDEX)) {
|
/* convert <boot dev='network'/> to bootindex since we didn't emit -boot n */
|
||||||
/* convert <boot dev='network'/> to bootindex since we didn't emit
|
for (i = 0; i < def->os.nBootDevs; i++) {
|
||||||
* -boot n
|
if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
|
||||||
*/
|
bootNet = i + 1;
|
||||||
for (i = 0; i < def->os.nBootDevs; i++) {
|
break;
|
||||||
if (def->os.bootDevs[i] == VIR_DOMAIN_BOOT_NET) {
|
|
||||||
bootNet = i + 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
<flag name='ccid-passthru'/>
|
<flag name='ccid-passthru'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
<flag name='ccid-passthru'/>
|
<flag name='ccid-passthru'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
<flag name='ccid-passthru'/>
|
<flag name='ccid-passthru'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
<flag name='virtio-blk-pci.event_idx'/>
|
<flag name='virtio-blk-pci.event_idx'/>
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='pci-configfd'/>
|
<flag name='pci-configfd'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='pci-bootindex'/>
|
<flag name='pci-bootindex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
<selfvers>0</selfvers>
|
<selfvers>0</selfvers>
|
||||||
<usedQMP/>
|
<usedQMP/>
|
||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='virtio-tx-alg'/>
|
<flag name='virtio-tx-alg'/>
|
||||||
<flag name='virtio-blk-pci.ioeventfd'/>
|
<flag name='virtio-blk-pci.ioeventfd'/>
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
<flag name='kvm'/>
|
<flag name='kvm'/>
|
||||||
<flag name='no-hpet'/>
|
<flag name='no-hpet'/>
|
||||||
<flag name='spice'/>
|
<flag name='spice'/>
|
||||||
<flag name='boot-index'/>
|
|
||||||
<flag name='hda-duplex'/>
|
<flag name='hda-duplex'/>
|
||||||
<flag name='ccid-emulated'/>
|
<flag name='ccid-emulated'/>
|
||||||
<flag name='ccid-passthru'/>
|
<flag name='ccid-passthru'/>
|
||||||
|
@ -21,14 +21,13 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
-dtb /aarch64.dtb \
|
-dtb /aarch64.dtb \
|
||||||
-device virtio-serial-device,id=virtio-serial0 \
|
-device virtio-serial-device,id=virtio-serial0 \
|
||||||
-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 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
||||||
-chardev pty,id=charconsole0 \
|
-chardev pty,id=charconsole0 \
|
||||||
|
@ -23,5 +23,4 @@ unit=1 \
|
|||||||
server,nowait \
|
server,nowait \
|
||||||
-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 c
|
|
||||||
|
@ -21,6 +21,5 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1
|
||||||
|
@ -20,5 +20,4 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi
|
||||||
-boot c
|
|
||||||
|
@ -20,5 +20,4 @@ server,nowait \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi
|
||||||
-boot c
|
|
||||||
|
@ -20,5 +20,4 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi
|
||||||
-boot c
|
|
||||||
|
@ -20,5 +20,4 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi
|
||||||
-boot c
|
|
||||||
|
@ -20,12 +20,11 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-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' \
|
||||||
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
|
@ -21,7 +21,6 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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'
|
||||||
|
@ -24,5 +24,4 @@ server,nowait \
|
|||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi
|
||||||
-boot c
|
|
||||||
|
@ -20,7 +20,6 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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 \
|
||||||
|
@ -20,7 +20,6 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device pcie-root-port,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,\
|
-device pcie-root-port,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,\
|
||||||
addr=0x1 \
|
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 \
|
||||||
|
@ -20,5 +20,4 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device nec-usb-xhci,id=usb,bus=pcie.0,addr=0x1
|
-device nec-usb-xhci,id=usb,bus=pcie.0,addr=0x1
|
||||||
|
@ -20,5 +20,4 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device qemu-xhci,id=usb,bus=pcie.0,addr=0x1
|
-device qemu-xhci,id=usb,bus=pcie.0,addr=0x1
|
||||||
|
@ -20,7 +20,6 @@ path=/tmp/lib/domain--1-aarch64-vgpu/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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 \
|
||||||
|
@ -21,7 +21,6 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
@ -32,7 +31,7 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.2,addr=0x2 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.2,addr=0x2 \
|
||||||
-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-pci,bus=pci.2,addr=0x3,drive=drive-virtio-disk0,\
|
-device virtio-blk-pci,bus=pci.2,addr=0x3,drive=drive-virtio-disk0,\
|
||||||
id=virtio-disk0 \
|
id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.2,\
|
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.2,\
|
||||||
addr=0x1 \
|
addr=0x1 \
|
||||||
|
@ -21,7 +21,6 @@ path=/tmp/lib/domain--1-aarch64-virt-default/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-kernel /aarch64.kernel \
|
-kernel /aarch64.kernel \
|
||||||
-initrd /aarch64.initrd \
|
-initrd /aarch64.initrd \
|
||||||
-append console=ttyAMA0 \
|
-append console=ttyAMA0 \
|
||||||
|
@ -21,14 +21,13 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
-dtb /aarch64.dtb \
|
-dtb /aarch64.dtb \
|
||||||
-device virtio-serial-device,id=virtio-serial0 \
|
-device virtio-serial-device,id=virtio-serial0 \
|
||||||
-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 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
|
@ -21,7 +21,6 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
@ -36,7 +35,7 @@ addr=0x1 \
|
|||||||
-device virtio-serial-pci,id=virtio-serial0,bus=pci.2,addr=0x0 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.2,addr=0x0 \
|
||||||
-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-pci,bus=pci.3,addr=0x0,drive=drive-virtio-disk0,\
|
-device virtio-blk-pci,bus=pci.3,addr=0x0,drive=drive-virtio-disk0,\
|
||||||
id=virtio-disk0 \
|
id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.1,\
|
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.1,\
|
||||||
addr=0x0 \
|
addr=0x0 \
|
||||||
|
@ -21,7 +21,6 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
@ -32,7 +31,7 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-device virtio-scsi-pci,id=scsi0,bus=pci.3,addr=0x1 \
|
-device virtio-scsi-pci,id=scsi0,bus=pci.3,addr=0x1 \
|
||||||
-drive file=/aarch64.raw,format=raw,if=none,id=drive-scsi0-0-0-0 \
|
-drive file=/aarch64.raw,format=raw,if=none,id=drive-scsi0-0-0-0 \
|
||||||
-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,\
|
-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,\
|
||||||
drive=drive-scsi0-0-0-0,id=scsi0-0-0-0 \
|
drive=drive-scsi0-0-0-0,id=scsi0-0-0-0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.3,\
|
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37,bus=pci.3,\
|
||||||
addr=0x2 \
|
addr=0x2 \
|
||||||
|
@ -19,6 +19,5 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-acpitable sig=SLIC,file=/var/lib/libvirt/acpi/slic.dat \
|
-acpitable sig=SLIC,file=/var/lib/libvirt/acpi/slic.dat \
|
||||||
-usb
|
-usb
|
||||||
|
@ -19,7 +19,6 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,\
|
-append 'console=ttyAMA0,\
|
||||||
|
@ -19,7 +19,6 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append console=ttyAMA0,115200n8 \
|
-append console=ttyAMA0,115200n8 \
|
||||||
|
@ -19,7 +19,6 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-kernel /arm.kernel \
|
-kernel /arm.kernel \
|
||||||
-initrd /arm.initrd \
|
-initrd /arm.initrd \
|
||||||
-append 'console=ttyAMA0,\
|
-append 'console=ttyAMA0,\
|
||||||
@ -28,7 +27,7 @@ server,nowait \
|
|||||||
-device virtio-serial-device,id=virtio-serial0 \
|
-device virtio-serial-device,id=virtio-serial0 \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
|
@ -19,14 +19,13 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-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' \
|
||||||
-dtb /arm.dtb \
|
-dtb /arm.dtb \
|
||||||
-device virtio-serial-device,id=virtio-serial0 \
|
-device virtio-serial-device,id=virtio-serial0 \
|
||||||
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
-drive file=/arm.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0 \
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
-device virtio-net-device,netdev=hostnet0,id=net0,mac=52:54:00:09:a4:37 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
|
@ -20,7 +20,6 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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=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 \
|
||||||
@ -55,4 +54,4 @@ addr=0x2 \
|
|||||||
-device ich9-usb-uhci3,masterbus=usb4.0,firstport=4,bus=pci.2,addr=0x2.0x2 \
|
-device ich9-usb-uhci3,masterbus=usb4.0,firstport=4,bus=pci.2,addr=0x2.0x2 \
|
||||||
-device ich9-usb-ehci1,id=usb4,bus=pci.2,addr=0x2.0x7 \
|
-device ich9-usb-ehci1,id=usb4,bus=pci.2,addr=0x2.0x7 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-sata0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-sata0-0-0 \
|
||||||
-device ide-drive,bus=ide.0,drive=drive-sata0-0-0,id=sata0-0-0
|
-device ide-drive,bus=ide.0,drive=drive-sata0-0-0,id=sata0-0-0,bootindex=1
|
||||||
|
@ -19,5 +19,4 @@ server,nowait \
|
|||||||
-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 c \
|
|
||||||
-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
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12,deflate-on-oom=off
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12,deflate-on-oom=off
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12,deflate-on-oom=on
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12,deflate-on-oom=on
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x12
|
||||||
|
@ -21,7 +21,6 @@ path=/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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' \
|
||||||
|
@ -23,12 +23,12 @@ server,nowait \
|
|||||||
-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 order=c,menu=on \
|
-boot menu=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=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 \
|
||||||
-device virtio-scsi-pci,id=scsi0,bus=pci.2,addr=0x1 \
|
-device virtio-scsi-pci,id=scsi0,bus=pci.2,addr=0x1 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-scsi0-0-0-0 \
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-scsi0-0-0-0 \
|
||||||
-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,\
|
-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,\
|
||||||
drive=drive-scsi0-0-0-0,id=scsi0-0-0-0 \
|
drive=drive-scsi0-0-0-0,id=scsi0-0-0-0,bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.2,addr=0x2
|
-device virtio-balloon-pci,id=balloon0,bus=pci.2,addr=0x2
|
||||||
|
@ -22,9 +22,10 @@ server,nowait \
|
|||||||
-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 order=c,menu=on \
|
-boot menu=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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device usb-tablet,id=input0,bus=usb.0,port=1 \
|
-device usb-tablet,id=input0,bus=usb.0,port=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -22,10 +22,11 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=c,menu=on \
|
-boot menu=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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charserial0 \
|
-chardev pty,id=charserial0 \
|
||||||
-device isa-serial,chardev=charserial0,id=serial0 \
|
-device isa-serial,chardev=charserial0,id=serial0 \
|
||||||
-device usb-tablet,id=input0,bus=usb.0,port=1 \
|
-device usb-tablet,id=input0,bus=usb.0,port=1 \
|
||||||
|
@ -20,13 +20,13 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
||||||
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
||||||
throttling.bps-total-max=10000,throttling.iops-total-max=11000,\
|
throttling.bps-total-max=10000,throttling.iops-total-max=11000,\
|
||||||
throttling.group=libvirt_iotune_group1 \
|
throttling.group=libvirt_iotune_group1 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
||||||
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
||||||
throttling.iops-read=3500,throttling.iops-write=4000,\
|
throttling.iops-read=3500,throttling.iops-write=4000,\
|
||||||
|
@ -20,13 +20,13 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
||||||
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
||||||
throttling.bps-total-max=10000,throttling.iops-total-max=11000,\
|
throttling.bps-total-max=10000,throttling.iops-total-max=11000,\
|
||||||
throttling.bps-total-max-length=3,throttling.iops-total-max-length=5 \
|
throttling.bps-total-max-length=3,throttling.iops-total-max-length=5 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
||||||
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
||||||
throttling.iops-read=3500,throttling.iops-write=4000,\
|
throttling.iops-read=3500,throttling.iops-write=4000,\
|
||||||
|
@ -20,12 +20,12 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
-drive file=/dev/HostVG/QEMUGuest1,format=qcow2,if=none,id=drive-ide0-0-0,\
|
||||||
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
cache=none,throttling.bps-total=5000,throttling.iops-total=6000,\
|
||||||
throttling.bps-total-max=10000,throttling.iops-total-max=11000 \
|
throttling.bps-total-max=10000,throttling.iops-total-max=11000 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
-drive file=/dev/HostVG/QEMUGuest2,format=qcow2,if=none,id=drive-ide0-0-1,\
|
||||||
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
cache=none,throttling.bps-read=5000,throttling.bps-write=5500,\
|
||||||
throttling.iops-read=3500,throttling.iops-write=4000,\
|
throttling.iops-read=3500,throttling.iops-write=4000,\
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,8 +20,8 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot d \
|
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
LC_ALL=C \
|
|
||||||
PATH=/bin \
|
|
||||||
HOME=/home/test \
|
|
||||||
USER=test \
|
|
||||||
LOGNAME=test \
|
|
||||||
QEMU_AUDIO_DRV=none \
|
|
||||||
/usr/bin/qemu-system-i686 \
|
|
||||||
-name QEMUGuest1 \
|
|
||||||
-S \
|
|
||||||
-machine pc,accel=tcg,usb=off,dump-guest-core=off \
|
|
||||||
-m 214 \
|
|
||||||
-smp 1,sockets=1,cores=1,threads=1 \
|
|
||||||
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
||||||
-display none \
|
|
||||||
-no-user-config \
|
|
||||||
-nodefaults \
|
|
||||||
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
||||||
server,nowait \
|
|
||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
||||||
-rtc base=utc \
|
|
||||||
-no-shutdown \
|
|
||||||
-no-acpi \
|
|
||||||
-usb \
|
|
||||||
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \
|
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x5,drive=drive-virtio-disk0,\
|
|
||||||
id=virtio-disk0,bootindex=3 \
|
|
||||||
-drive file=/tmp/vdb.img,format=raw,if=none,id=drive-virtio-disk1 \
|
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x6,drive=drive-virtio-disk1,\
|
|
||||||
id=virtio-disk1 \
|
|
||||||
-drive file=/dev/HostVG/hda,format=raw,if=none,id=drive-ide0-0-0 \
|
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
|
||||||
-drive file=/dev/HostVG/hdb,format=raw,if=none,id=drive-ide0-0-1 \
|
|
||||||
-device ide-drive,bus=ide.0,unit=1,drive=drive-ide0-0-1,id=ide0-0-1 \
|
|
||||||
-drive file=/dev/HostVG/hdc,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
|
||||||
readonly=on \
|
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
|
||||||
bootindex=1 \
|
|
||||||
-drive file=/dev/fd0,format=raw,if=none,id=drive-fdc0-0-0 \
|
|
||||||
-global isa-fdc.driveA=drive-fdc0-0-0 \
|
|
||||||
-global isa-fdc.bootindexA=4 \
|
|
||||||
-drive file=/dev/fd1,format=raw,if=none,id=drive-fdc0-0-1 \
|
|
||||||
-global isa-fdc.driveB=drive-fdc0-0-1 \
|
|
||||||
-netdev user,id=hostnet0 \
|
|
||||||
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=00:11:22:33:44:11,bus=pci.0,\
|
|
||||||
addr=0x3,bootindex=2 \
|
|
||||||
-netdev user,id=hostnet1 \
|
|
||||||
-device virtio-net-pci,netdev=hostnet1,id=net1,mac=00:11:22:33:44:22,bus=pci.0,\
|
|
||||||
addr=0x4
|
|
@ -1,66 +0,0 @@
|
|||||||
<domain type='qemu'>
|
|
||||||
<name>QEMUGuest1</name>
|
|
||||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
|
||||||
<memory unit='KiB'>219100</memory>
|
|
||||||
<currentMemory unit='KiB'>219100</currentMemory>
|
|
||||||
<vcpu placement='static'>1</vcpu>
|
|
||||||
<os>
|
|
||||||
<type arch='i686' machine='pc'>hvm</type>
|
|
||||||
<boot dev='cdrom'/>
|
|
||||||
<boot dev='network'/>
|
|
||||||
<boot dev='hd'/>
|
|
||||||
<boot dev='fd'/>
|
|
||||||
</os>
|
|
||||||
<clock offset='utc'/>
|
|
||||||
<on_poweroff>destroy</on_poweroff>
|
|
||||||
<on_reboot>restart</on_reboot>
|
|
||||||
<on_crash>destroy</on_crash>
|
|
||||||
<devices>
|
|
||||||
<emulator>/usr/bin/qemu-system-i686</emulator>
|
|
||||||
<disk type='file' device='disk'>
|
|
||||||
<source file='/tmp/vdb.img'/>
|
|
||||||
<target dev='vdb' bus='virtio'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='block' device='disk'>
|
|
||||||
<source dev='/dev/HostVG/hdb'/>
|
|
||||||
<target dev='hdb' bus='ide'/>
|
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='1'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='block' device='disk'>
|
|
||||||
<source dev='/dev/HostVG/hda'/>
|
|
||||||
<target dev='hda' bus='ide'/>
|
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='file' device='disk'>
|
|
||||||
<source file='/tmp/vda.img'/>
|
|
||||||
<target dev='vda' bus='virtio'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='block' device='cdrom'>
|
|
||||||
<source dev='/dev/HostVG/hdc'/>
|
|
||||||
<target dev='hdc' bus='ide'/>
|
|
||||||
<address type='drive' controller='0' bus='1' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='block' device='floppy'>
|
|
||||||
<source dev='/dev/fd1'/>
|
|
||||||
<target dev='fdb' bus='fdc'/>
|
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='1'/>
|
|
||||||
</disk>
|
|
||||||
<disk type='block' device='floppy'>
|
|
||||||
<source dev='/dev/fd0'/>
|
|
||||||
<target dev='fda' bus='fdc'/>
|
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<controller type='usb' index='0'/>
|
|
||||||
<controller type='fdc' index='0'/>
|
|
||||||
<controller type='ide' index='0'/>
|
|
||||||
<interface type='user'>
|
|
||||||
<mac address='00:11:22:33:44:11'/>
|
|
||||||
<model type='virtio'/>
|
|
||||||
</interface>
|
|
||||||
<interface type='user'>
|
|
||||||
<mac address='00:11:22:33:44:22'/>
|
|
||||||
<model type='virtio'/>
|
|
||||||
</interface>
|
|
||||||
<memballoon model='none'/>
|
|
||||||
</devices>
|
|
||||||
</domain>
|
|
@ -20,11 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot dnca \
|
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0,boot=on \
|
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x5,drive=drive-virtio-disk0,\
|
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x5,drive=drive-virtio-disk0,\
|
||||||
id=virtio-disk0 \
|
id=virtio-disk0,bootindex=3 \
|
||||||
-drive file=/tmp/vdb.img,format=raw,if=none,id=drive-virtio-disk1 \
|
-drive file=/tmp/vdb.img,format=raw,if=none,id=drive-virtio-disk1 \
|
||||||
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x6,drive=drive-virtio-disk1,\
|
-device virtio-blk-pci,scsi=off,bus=pci.0,addr=0x6,drive=drive-virtio-disk1,\
|
||||||
id=virtio-disk1 \
|
id=virtio-disk1 \
|
||||||
@ -34,14 +33,16 @@ id=virtio-disk1 \
|
|||||||
-device ide-drive,bus=ide.0,unit=1,drive=drive-ide0-0-1,id=ide0-0-1 \
|
-device ide-drive,bus=ide.0,unit=1,drive=drive-ide0-0-1,id=ide0-0-1 \
|
||||||
-drive file=/dev/HostVG/hdc,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/HostVG/hdc,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-drive file=/dev/fd0,format=raw,if=none,id=drive-fdc0-0-0 \
|
-drive file=/dev/fd0,format=raw,if=none,id=drive-fdc0-0-0 \
|
||||||
-global isa-fdc.driveA=drive-fdc0-0-0 \
|
-global isa-fdc.driveA=drive-fdc0-0-0 \
|
||||||
|
-global isa-fdc.bootindexA=4 \
|
||||||
-drive file=/dev/fd1,format=raw,if=none,id=drive-fdc0-0-1 \
|
-drive file=/dev/fd1,format=raw,if=none,id=drive-fdc0-0-1 \
|
||||||
-global isa-fdc.driveB=drive-fdc0-0-1 \
|
-global isa-fdc.driveB=drive-fdc0-0-1 \
|
||||||
-netdev user,id=hostnet0 \
|
-netdev user,id=hostnet0 \
|
||||||
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=00:11:22:33:44:11,bus=pci.0,\
|
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=00:11:22:33:44:11,bus=pci.0,\
|
||||||
addr=0x3 \
|
addr=0x3,bootindex=2 \
|
||||||
-netdev user,id=hostnet1 \
|
-netdev user,id=hostnet1 \
|
||||||
-device virtio-net-pci,netdev=hostnet1,id=net1,mac=00:11:22:33:44:22,bus=pci.0,\
|
-device virtio-net-pci,netdev=hostnet1,id=net1,mac=00:11:22:33:44:22,bus=pci.0,\
|
||||||
addr=0x4
|
addr=0x4
|
||||||
|
@ -20,6 +20,5 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot a \
|
|
||||||
-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
|
-device isa-fdc,driveA=drive-fdc0-0-0,bootindexA=1
|
||||||
|
@ -20,9 +20,9 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot a \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
||||||
-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 \
|
||||||
-global isa-fdc.driveA=drive-fdc0-0-0
|
-global isa-fdc.driveA=drive-fdc0-0-0 \
|
||||||
|
-global isa-fdc.bootindexA=1
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
LC_ALL=C \
|
|
||||||
PATH=/bin \
|
|
||||||
HOME=/home/test \
|
|
||||||
USER=test \
|
|
||||||
LOGNAME=test \
|
|
||||||
QEMU_AUDIO_DRV=none \
|
|
||||||
/usr/bin/qemu-system-i686 \
|
|
||||||
-name QEMUGuest1 \
|
|
||||||
-S \
|
|
||||||
-machine pc,accel=tcg,usb=off,dump-guest-core=off \
|
|
||||||
-m 214 \
|
|
||||||
-smp 1,sockets=1,cores=1,threads=1 \
|
|
||||||
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
||||||
-display none \
|
|
||||||
-no-user-config \
|
|
||||||
-nodefaults \
|
|
||||||
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
||||||
server,nowait \
|
|
||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
||||||
-rtc base=utc \
|
|
||||||
-no-shutdown \
|
|
||||||
-no-acpi \
|
|
||||||
-boot menu=off \
|
|
||||||
-usb \
|
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
|
||||||
readonly=on \
|
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
|
||||||
bootindex=1 \
|
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
|
@ -1,28 +0,0 @@
|
|||||||
<domain type='qemu'>
|
|
||||||
<name>QEMUGuest1</name>
|
|
||||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
|
||||||
<memory unit='KiB'>219100</memory>
|
|
||||||
<currentMemory unit='KiB'>219100</currentMemory>
|
|
||||||
<vcpu placement='static'>1</vcpu>
|
|
||||||
<os>
|
|
||||||
<type arch='i686' machine='pc'>hvm</type>
|
|
||||||
<boot dev='cdrom'/>
|
|
||||||
<bootmenu enable='no'/>
|
|
||||||
</os>
|
|
||||||
<clock offset='utc'/>
|
|
||||||
<on_poweroff>destroy</on_poweroff>
|
|
||||||
<on_reboot>restart</on_reboot>
|
|
||||||
<on_crash>destroy</on_crash>
|
|
||||||
<devices>
|
|
||||||
<emulator>/usr/bin/qemu-system-i686</emulator>
|
|
||||||
<disk type='block' device='cdrom'>
|
|
||||||
<source dev='/dev/cdrom'/>
|
|
||||||
<target dev='hdc' bus='ide'/>
|
|
||||||
<readonly/>
|
|
||||||
<address type='drive' controller='0' bus='1' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<controller type='usb' index='0'/>
|
|
||||||
<controller type='ide' index='0'/>
|
|
||||||
<memballoon model='virtio'/>
|
|
||||||
</devices>
|
|
||||||
</domain>
|
|
@ -20,9 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=d,menu=off \
|
-boot menu=off \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,9 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=d,menu=off \
|
-boot menu=off \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
LC_ALL=C \
|
|
||||||
PATH=/bin \
|
|
||||||
HOME=/home/test \
|
|
||||||
USER=test \
|
|
||||||
LOGNAME=test \
|
|
||||||
QEMU_AUDIO_DRV=none \
|
|
||||||
/usr/bin/qemu-system-i686 \
|
|
||||||
-name QEMUGuest1 \
|
|
||||||
-S \
|
|
||||||
-machine pc,accel=tcg,usb=off,dump-guest-core=off \
|
|
||||||
-m 214 \
|
|
||||||
-smp 1,sockets=1,cores=1,threads=1 \
|
|
||||||
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
||||||
-display none \
|
|
||||||
-no-user-config \
|
|
||||||
-nodefaults \
|
|
||||||
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
||||||
server,nowait \
|
|
||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
||||||
-rtc base=utc \
|
|
||||||
-no-shutdown \
|
|
||||||
-no-acpi \
|
|
||||||
-boot menu=on \
|
|
||||||
-usb \
|
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
|
||||||
readonly=on \
|
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
|
||||||
bootindex=1 \
|
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
|
@ -1,28 +0,0 @@
|
|||||||
<domain type='qemu'>
|
|
||||||
<name>QEMUGuest1</name>
|
|
||||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
|
||||||
<memory unit='KiB'>219100</memory>
|
|
||||||
<currentMemory unit='KiB'>219100</currentMemory>
|
|
||||||
<vcpu placement='static'>1</vcpu>
|
|
||||||
<os>
|
|
||||||
<type arch='i686' machine='pc'>hvm</type>
|
|
||||||
<boot dev='cdrom'/>
|
|
||||||
<bootmenu enable='yes'/>
|
|
||||||
</os>
|
|
||||||
<clock offset='utc'/>
|
|
||||||
<on_poweroff>destroy</on_poweroff>
|
|
||||||
<on_reboot>restart</on_reboot>
|
|
||||||
<on_crash>destroy</on_crash>
|
|
||||||
<devices>
|
|
||||||
<emulator>/usr/bin/qemu-system-i686</emulator>
|
|
||||||
<disk type='block' device='cdrom'>
|
|
||||||
<source dev='/dev/cdrom'/>
|
|
||||||
<target dev='hdc' bus='ide'/>
|
|
||||||
<readonly/>
|
|
||||||
<address type='drive' controller='0' bus='1' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<controller type='usb' index='0'/>
|
|
||||||
<controller type='ide' index='0'/>
|
|
||||||
<memballoon model='virtio'/>
|
|
||||||
</devices>
|
|
||||||
</domain>
|
|
@ -20,9 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=d,menu=on,splash-time=3000 \
|
-boot menu=on,splash-time=3000 \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,9 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=d,menu=on \
|
-boot menu=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,9 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot order=dcna,menu=on \
|
-boot menu=on \
|
||||||
-usb \
|
-usb \
|
||||||
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
-drive file=/dev/cdrom,format=raw,if=none,id=drive-ide0-1-0,media=cdrom,\
|
||||||
readonly=on \
|
readonly=on \
|
||||||
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 \
|
-device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,\
|
||||||
|
bootindex=1 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -20,7 +20,6 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot n \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
LC_ALL=C \
|
|
||||||
PATH=/bin \
|
|
||||||
HOME=/home/test \
|
|
||||||
USER=test \
|
|
||||||
LOGNAME=test \
|
|
||||||
QEMU_AUDIO_DRV=none \
|
|
||||||
/usr/bin/qemu-system-x86_64 \
|
|
||||||
-name QEMUGuest1 \
|
|
||||||
-S \
|
|
||||||
-machine pc-q35-2.4,accel=tcg,usb=off,dump-guest-core=off \
|
|
||||||
-m 214 \
|
|
||||||
-smp 1,sockets=1,cores=1,threads=1 \
|
|
||||||
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
||||||
-display none \
|
|
||||||
-no-user-config \
|
|
||||||
-nodefaults \
|
|
||||||
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
||||||
server,nowait \
|
|
||||||
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
||||||
-rtc base=utc \
|
|
||||||
-no-shutdown \
|
|
||||||
-no-acpi \
|
|
||||||
-drive file=/tmp/firmware.img,format=raw,if=none,id=drive-fdc0-0-0 \
|
|
||||||
-device isa-fdc,driveA=drive-fdc0-0-0,bootindexA=1
|
|
@ -1,32 +0,0 @@
|
|||||||
<domain type='qemu'>
|
|
||||||
<name>QEMUGuest1</name>
|
|
||||||
<uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
|
|
||||||
<memory unit='KiB'>219100</memory>
|
|
||||||
<currentMemory unit='KiB'>219100</currentMemory>
|
|
||||||
<vcpu placement='static'>1</vcpu>
|
|
||||||
<os>
|
|
||||||
<type arch='x86_64' machine='pc-q35-2.4'>hvm</type>
|
|
||||||
<boot dev='fd'/>
|
|
||||||
</os>
|
|
||||||
<clock offset='utc'/>
|
|
||||||
<on_poweroff>destroy</on_poweroff>
|
|
||||||
<on_reboot>restart</on_reboot>
|
|
||||||
<on_crash>destroy</on_crash>
|
|
||||||
<devices>
|
|
||||||
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
|
||||||
<disk type='file' device='floppy'>
|
|
||||||
<driver name='qemu' type='raw'/>
|
|
||||||
<source file='/tmp/firmware.img'/>
|
|
||||||
<target dev='fda' bus='fdc'/>
|
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
|
||||||
</disk>
|
|
||||||
<controller type='sata' index='0'>
|
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
|
|
||||||
</controller>
|
|
||||||
<controller type='pci' index='0' model='pcie-root'/>
|
|
||||||
<controller type='fdc' index='0'/>
|
|
||||||
<input type='mouse' bus='ps2'/>
|
|
||||||
<input type='keyboard' bus='ps2'/>
|
|
||||||
<memballoon model='none'/>
|
|
||||||
</devices>
|
|
||||||
</domain>
|
|
@ -20,10 +20,10 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pipe,id=charchannel0,path=/tmp/guestfwd \
|
-chardev pipe,id=charchannel0,path=/tmp/guestfwd \
|
||||||
-netdev user,guestfwd=tcp:10.0.2.1:4600-chardev:charchannel0,id=user-channel0 \
|
-netdev user,guestfwd=tcp:10.0.2.1:4600-chardev:charchannel0,id=user-channel0 \
|
||||||
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|
||||||
|
@ -19,11 +19,11 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev spicevmc,id=charchannel0,name=vdagent \
|
-chardev spicevmc,id=charchannel0,name=vdagent \
|
||||||
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
||||||
id=channel0,name=com.redhat.spice.0 \
|
id=channel0,name=com.redhat.spice.0 \
|
||||||
|
@ -20,14 +20,14 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=16,vectors=4,bus=pci.0,\
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=16,vectors=4,bus=pci.0,\
|
||||||
addr=0x3 \
|
addr=0x3 \
|
||||||
-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=0x4 \
|
-device virtio-serial-pci,id=virtio-serial2,bus=pci.0,addr=0x4 \
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
||||||
id=channel0,name=org.linux-kvm.port.0 \
|
id=channel0,name=org.linux-kvm.port.0 \
|
||||||
|
@ -20,13 +20,13 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,\
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,\
|
||||||
addr=0x3 \
|
addr=0x3 \
|
||||||
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0x4 \
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0x4 \
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
||||||
id=channel0,name=org.linux-kvm.port.0 \
|
id=channel0,name=org.linux-kvm.port.0 \
|
||||||
|
@ -20,13 +20,13 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,\
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,\
|
||||||
addr=0x3 \
|
addr=0x3 \
|
||||||
-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 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel0,\
|
||||||
id=channel0,name=org.linux-kvm.port.0 \
|
id=channel0,name=org.linux-kvm.port.0 \
|
||||||
|
@ -20,12 +20,12 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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=0x3 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x3 \
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
||||||
id=channel0 \
|
id=channel0 \
|
||||||
|
@ -20,11 +20,11 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
||||||
id=channel0,name=org.linux-kvm.port.foo \
|
id=channel0,name=org.linux-kvm.port.foo \
|
||||||
|
@ -20,12 +20,12 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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=0x3 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x3 \
|
||||||
-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-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev socket,id=charchannel0,\
|
-chardev socket,id=charchannel0,\
|
||||||
path=/tmp/channel/domain--1-QEMUGuest1/org.qemu.guest_agent.0,server,nowait \
|
path=/tmp/channel/domain--1-QEMUGuest1/org.qemu.guest_agent.0,server,nowait \
|
||||||
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
||||||
|
@ -20,11 +20,11 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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 \
|
||||||
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
|
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,\
|
||||||
|
bootindex=1 \
|
||||||
-chardev pty,id=charchannel0 \
|
-chardev pty,id=charchannel0 \
|
||||||
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel0,\
|
||||||
id=channel0,name=org.linux-kvm.port.foo \
|
id=channel0,name=org.linux-kvm.port.foo \
|
||||||
|
@ -20,7 +20,6 @@ server,nowait \
|
|||||||
-rtc base=utc \
|
-rtc base=utc \
|
||||||
-no-shutdown \
|
-no-shutdown \
|
||||||
-no-acpi \
|
-no-acpi \
|
||||||
-boot c \
|
|
||||||
-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=0x3 \
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x3 \
|
||||||
-device usb-ccid,id=ccid0,bus=usb.0,port=1 \
|
-device usb-ccid,id=ccid0,bus=usb.0,port=1 \
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user