]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/MiscSubClassPlatformDxe/MiscSystemManufacturerData.c
IntelFsp2Pkg/SplitFspBin.py: Support rebasing 1.x binary.
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscSystemManufacturerData.c
CommitLineData
949f388f 1/*++\r
2\r
3Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
e3ba31da 4SPDX-License-Identifier: BSD-2-Clause-Patent\r
949f388f 5\r
6Module Name:\r
7\r
8 MiscSystemManufacturerData.c\r
d18d8a1d 9\r
10Abstract:\r
949f388f 11\r
12 This driver parses the mMiscSubclassDataTable structure and reports\r
13 any generated data to the DataHub.\r
14\r
15**/\r
16\r
17#include "MiscSubClassDriver.h"\r
18\r
19//\r
20// Static (possibly build generated) System Manufacturer data.\r
21//\r
22MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_MANUFACTURER_DATA, MiscSystemManufacturer)\r
23= {\r
24 STRING_TOKEN(STR_MISC_SYSTEM_MANUFACTURER),\r
25 // SystemManufactrurer\r
26 STRING_TOKEN(STR_MISC_SYSTEM_PRODUCT_NAME),\r
27 // SystemProductName\r
28 STRING_TOKEN(STR_MISC_SYSTEM_VERSION),\r
29 // SystemVersion\r
30 STRING_TOKEN(STR_MISC_SYSTEM_SERIAL_NUMBER),\r
31 // SystemSerialNumber\r
32 {\r
33 0xbadfaced,\r
34 0xdead,\r
35 0xbeef,\r
36 {\r
37 0x13,\r
38 0x13,\r
39 0x13,\r
40 0x13,\r
41 0x13,\r
42 0x13,\r
43 0x13,\r
44 0x13\r
45 }\r
46 },\r
47 // SystemUuid\r
48 EfiSystemWakeupTypePowerSwitch // SystemWakeupType\r
49};\r
50\r
51/* eof - MiscSystemManufacturerData.c */\r