Add entry for windows 10 and 2016 support

All special flags for Windows 8 and Windows 2012 (win8 type)
are kept the same , since we set flags based on checking  if
/^win(\d+)$/ is greater than 6 or 7
This commit is contained in:
Emmanuel Kasper 2016-11-17 15:03:38 +01:00 committed by Dietmar Maurer
parent 90e1670df8
commit 0cb9971ec2

View File

@ -273,7 +273,7 @@ my $confdesc = {
ostype => { ostype => {
optional => 1, optional => 1,
type => 'string', type => 'string',
enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 l24 l26 solaris)], enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 win10 l24 l26 solaris)],
description => "Specify guest operating system.", description => "Specify guest operating system.",
verbose_description => <<EODESC, verbose_description => <<EODESC,
Specify guest operating system. This is used to enable special Specify guest operating system. This is used to enable special
@ -1185,6 +1185,7 @@ sub os_list_description {
wvista => 'Windows Vista', wvista => 'Windows Vista',
win7 => 'Windows 7', win7 => 'Windows 7',
win8 => 'Windows 8/2012', win8 => 'Windows 8/2012',
win10 => 'Windows 10/2016',
l24 => 'Linux 2.4', l24 => 'Linux 2.4',
l26 => 'Linux 2.6', l26 => 'Linux 2.6',
}; };