]> git.proxmox.com Git - pve-manager.git/commitdiff
make Win XP and Win 2003 use the same defaults as Win 2000
authorEmmanuel Kasper <e.kasper@proxmox.com>
Mon, 10 Oct 2016 08:13:25 +0000 (10:13 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 11 Oct 2016 04:47:40 +0000 (06:47 +0200)
(this means: rtl8139 as nic and lsi as hardware controller)

XP & 2003 ISO E1000 drivers are missing or do not work with Qemu
(source: https://pve.proxmox.com/wiki/Windows_2003_guest_best_practices)
(source: https://pve.proxmox.com/wiki/Windows_XP_Guest_Notes)

The lsi SCSI controller was the default SCSI controller until recently and works with Win2003.
(NB: An IDE controller is still selected during installation for these OSes)

The aim is to provide an out-of-the box besser experience when using the Create Wizard.

NB: we have a distinct OS type between wxp and w2k3 in QemuServer.pm but since they
use the same defaults we can still wxp for both of those.

www/manager6/qemu/OSDefaults.js

index c351226c084e7f6e4de4d0de2ae67cae88e4de5d..1b114ce883cc41cee9acbbcad44cf174dda59517 100644 (file)
@@ -56,11 +56,10 @@ Ext.define('PVE.qemu.OSDefaults', {
            networkCard: 'rtl8139',
            scsihw: 'lsi'
        });
-
+       // https://pve.proxmox.com/wiki/Windows_XP_Guest_Notes
        addOS({
            pveOS: 'wxp',
-           parent : 'generic',
-           scsihw: 'lsi'
+           parent : 'w2k',
        });
 
     }