2010-02-24 00:58:38 +01:00
|
|
|
## @file
|
2007-06-27 08:46:00 +02:00
|
|
|
# Misc Sub class driver
|
|
|
|
#
|
|
|
|
# Parses the MiscSubclassDataTable and reports any generated data to the DataHub.
|
|
|
|
# All .uni file who tagged with "ToolCode="DUMMY"" in following file list is included by
|
|
|
|
# MiscSubclassDriver.uni file, the StrGather tool will expand MiscSubclassDriver.uni file
|
|
|
|
# and parse all .uni file.
|
2010-04-28 14:24:39 +02:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2007-06-27 08:46:00 +02:00
|
|
|
#
|
2010-04-28 14:24:39 +02:00
|
|
|
# This program and the accompanying materials
|
2007-06-27 08:46:00 +02:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 00:58:38 +01:00
|
|
|
##
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = MiscSubclass
|
|
|
|
FILE_GUID = 4A9B9DB8-EC62-4A92-818F-8AA0246D246E
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = MiscSubclassDriverEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32
|
|
|
|
#
|
|
|
|
|
2010-01-30 00:30:55 +01:00
|
|
|
[Sources]
|
2009-11-20 05:02:03 +01:00
|
|
|
MiscBaseBoardManufacturerData.c
|
|
|
|
MiscBaseBoardManufacturerFunction.c
|
|
|
|
MiscBiosVendorData.c
|
|
|
|
MiscBiosVendorFunction.c
|
|
|
|
MiscBootInformationData.c
|
|
|
|
MiscBootInformationFunction.c
|
|
|
|
MiscChassisManufacturerData.c
|
|
|
|
MiscChassisManufacturerFunction.c
|
|
|
|
MiscNumberOfInstallableLanguagesData.c
|
|
|
|
MiscNumberOfInstallableLanguagesFunction.c
|
|
|
|
MiscOemStringData.c
|
|
|
|
MiscOemStringFunction.c
|
|
|
|
MiscPortInternalConnectorDesignatorData.c
|
2007-06-27 08:46:00 +02:00
|
|
|
MiscPortInternalConnectorDesignatorFunction.c
|
|
|
|
MiscResetCapabilitiesData.c
|
2009-11-20 05:02:03 +01:00
|
|
|
MiscResetCapabilitiesFunction.c
|
|
|
|
MiscSystemLanguageStringData.c
|
|
|
|
MiscSystemLanguageStringFunction.c
|
|
|
|
MiscSystemManufacturerData.c
|
|
|
|
MiscSystemManufacturerFunction.c
|
|
|
|
MiscSystemOptionStringData.c
|
|
|
|
MiscSystemOptionStringFunction.c
|
|
|
|
MiscSystemSlotDesignationData.c
|
|
|
|
MiscSystemSlotDesignationFunction.c
|
2007-06-27 08:46:00 +02:00
|
|
|
MiscDevicePath.h
|
2009-11-20 05:02:03 +01:00
|
|
|
MiscSubclassDriver.h
|
2007-06-27 08:46:00 +02:00
|
|
|
MiscSubclassDriver.uni
|
2009-11-20 05:02:03 +01:00
|
|
|
MiscSubclassDriverDataTable.c
|
|
|
|
MiscSubclassDriverEntryPoint.c
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2008-11-13 10:24:27 +01:00
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-06-27 08:46:00 +02:00
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
|
|
|
Nt32Pkg/Nt32Pkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
DevicePathLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiLib
|
2008-01-21 15:42:45 +01:00
|
|
|
HiiLib
|
2007-06-27 08:46:00 +02:00
|
|
|
DebugLib
|
|
|
|
BaseLib
|
2009-11-20 05:02:03 +01:00
|
|
|
MemoryAllocationLib
|
2007-07-26 23:33:37 +02:00
|
|
|
PcdLib
|
2007-06-27 08:46:00 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiWinNtIoProtocolGuid # PROTOCOL_NOTIFY SOMETIMES_CONSUMED
|
2009-11-20 05:02:03 +01:00
|
|
|
gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
|
|
|
2010-01-30 00:30:55 +01:00
|
|
|
[Pcd]
|
2009-11-20 05:02:03 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString
|
2007-08-30 11:11:54 +02:00
|
|
|
gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize
|
2009-11-20 05:02:03 +01:00
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
|
2007-07-26 23:33:37 +02:00
|
|
|
|
2007-07-02 08:37:16 +02:00
|
|
|
[Depex]
|
2009-11-20 05:02:03 +01:00
|
|
|
gEfiSmbiosProtocolGuid
|