mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-29 21:36:01 +00:00
virtio-scsi-pci as default SCSI for new VMS fix #1106
This commit is contained in:
parent
d33823bf07
commit
eca87c69bc
@ -111,6 +111,10 @@ Ext.define('PVE.qemu.HDInputPanel', {
|
|||||||
|
|
||||||
params[confid] = PVE.Parser.printQemuDrive(me.drive);
|
params[confid] = PVE.Parser.printQemuDrive(me.drive);
|
||||||
|
|
||||||
|
if (me.insideWizard) {
|
||||||
|
params.scsihw = PVE.qemu.OSDefaults.generic.scsihw;
|
||||||
|
}
|
||||||
|
|
||||||
return params;
|
return params;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -36,7 +36,8 @@ Ext.define('PVE.qemu.OSDefaults', {
|
|||||||
// default values
|
// default values
|
||||||
me.generic = {
|
me.generic = {
|
||||||
busType: 'ide',
|
busType: 'ide',
|
||||||
networkCard: 'e1000'
|
networkCard: 'e1000',
|
||||||
|
scsihw: 'virtio-scsi-pci'
|
||||||
};
|
};
|
||||||
|
|
||||||
// both of them are in kernel since 2.6.25
|
// both of them are in kernel since 2.6.25
|
||||||
|
Loading…
Reference in New Issue
Block a user