]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscSystemManufacturerData.c
MdeModulePkg/CapsuleApp: Center bitmap at bottom of screen
[mirror_edk2.git] / Vlv2TbltDevicePkg / SmBiosMiscDxe / MiscSystemManufacturerData.c
1 /** @file
2
3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4
5 This program and the accompanying materials are licensed and made available under
6 the terms and conditions of the BSD License that accompanies this distribution.
7 The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13
14
15 Module Name:
16
17 MiscSystemManufacturerData.c
18
19 Abstract:
20
21 Static data of System manufacturer information.
22 System manufacturer information is Misc. subclass type 3 and SMBIOS type 1.
23
24
25 **/
26
27
28 #include "CommonHeader.h"
29
30 #include "MiscSubclassDriver.h"
31
32 //
33 // Static (possibly build generated) System Manufacturer data.
34 //
35 MISC_SMBIOS_TABLE_DATA(EFI_MISC_SYSTEM_MANUFACTURER_DATA, MiscSystemManufacturer)
36 = {
37 STRING_TOKEN(STR_MISC_SYSTEM_MANUFACTURER), // SystemManufactrurer
38 STRING_TOKEN(STR_MISC_SYSTEM_PRODUCT_NAME), // SystemProductName
39 STRING_TOKEN(STR_MISC_SYSTEM_VERSION), // SystemVersion
40 STRING_TOKEN(STR_MISC_SYSTEM_SERIAL_NUMBER), // SystemSerialNumber
41 { // SystemUuid
42 //
43 // Undefined GUID but can be programmed later.
44 //0xFFFFFFFF, 0xFFFF, 0xFFFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
45
46 // Undefined GUID that cannot be programmed later.
47 //0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
48 // TODO Hard code here for WHCT test.
49 0xa5000288, 0x6462, 0x4524, 0x98, 0x6a, 0x9b, 0x77, 0x37, 0xe3, 0x15, 0xcf
50 //
51 },
52 EfiSystemWakeupTypePowerSwitch // SystemWakeupType
53 };