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