Skip to content

Commit 35a4a3e

Browse files
author
Mario Limonciello
committed
Recognize the Windows 10 version 1607 and 1703 OSI strings
The public Microsoft document listing recognized OSI strings [1] shows that these two strings were introduced. version 1607 / Anniversary Update / "Redstone 1" version 1703 / Creators Update / "Redstone 2" [1] http://download.microsoft.com/download/7/e/7/7e7662cf-cbea-470b-a97e-ce7ce0d98dc2/winacpi_osi.docx
1 parent ab9c839 commit 35a4a3e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

source/components/utilities/utosi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,8 @@ static ACPI_INTERFACE_INFO AcpiDefaultSupportedInterfaces[] =
214214
{"Windows 2012", NULL, 0, ACPI_OSI_WIN_8}, /* Windows 8 and Server 2012 - Added 08/2012 */
215215
{"Windows 2013", NULL, 0, ACPI_OSI_WIN_8}, /* Windows 8.1 and Server 2012 R2 - Added 01/2014 */
216216
{"Windows 2015", NULL, 0, ACPI_OSI_WIN_10}, /* Windows 10 - Added 03/2015 */
217+
{"Windows 2016", NULL, 0, ACPI_OSI_WIN_10_RS1}, /* Windows 10 version 1607 - Added 12/2017 */
218+
{"Windows 2017", NULL, 0, ACPI_OSI_WIN_10_RS2}, /* Windows 10 version 1703 - Added 12/2017 */
217219

218220
/* Feature Group Strings */
219221

source/include/actypes.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,6 +1509,8 @@ typedef enum
15091509
#define ACPI_OSI_WIN_7 0x0B
15101510
#define ACPI_OSI_WIN_8 0x0C
15111511
#define ACPI_OSI_WIN_10 0x0D
1512+
#define ACPI_OSI_WIN_10_RS1 0x0E
1513+
#define ACPI_OSI_WIN_10_RS2 0x0F
15121514

15131515

15141516
/* Definitions of getopt */

0 commit comments

Comments
 (0)