]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/MiscSubClassPlatformDxe/MiscChassisManufacturerData.c
BaseTools: Library hashing fix and optimization for --hash feature
[mirror_edk2.git] / EmulatorPkg / MiscSubClassPlatformDxe / MiscChassisManufacturerData.c
1 /*++
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 MiscChassisManufacturerData.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) Chassis Manufacturer data.
21 //
22 MISC_SMBIOS_TABLE_DATA(EFI_MISC_CHASSIS_MANUFACTURER_DATA, MiscChassisManufacturer) = {
23 STRING_TOKEN(STR_MISC_CHASSIS_MANUFACTURER), // ChassisManufactrurer
24 STRING_TOKEN(STR_MISC_CHASSIS_VERSION), // ChassisVersion
25 STRING_TOKEN(STR_MISC_CHASSIS_SERIAL_NUMBER), // ChassisSerialNumber
26 STRING_TOKEN(STR_MISC_CHASSIS_ASSET_TAG), // ChassisAssetTag
27 { // ChassisTypeStatus
28 EfiMiscChassisTypeOther, // ChassisType
29 0, // ChassisLockPresent
30 0 // Reserved
31 },
32 EfiChassisStateOther, // ChassisBootupState
33 EfiChassisStateOther, // ChassisPowerSupplyState
34 EfiChassisStateOther, // ChassisThermalState
35 EfiChassisSecurityStatusOther, // ChassisSecurityState
36 0 // ChassisOemDefined
37 };
38
39 /* eof - MiscChassisManufacaturerData.c */