]>
Commit | Line | Data |
---|---|---|
949f388f | 1 | ## @file\r |
2 | # Misc Sub class driver\r | |
3 | #\r | |
4 | # Parses the MiscSubclassDataTable and reports any generated data to the DataHub.\r | |
5 | # All .uni file who tagged with "ToolCode="DUMMY"" in following file list is included by\r | |
d18d8a1d | 6 | # MiscSubclassDriver.uni file, the StrGather tool will expand MiscSubclassDriver.uni file\r |
949f388f | 7 | # and parse all .uni file.\r |
8 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r | |
9 | #\r | |
10 | # This program and the accompanying materials\r | |
11 | # are licensed and made available under the terms and conditions of the BSD License\r | |
12 | # which accompanies this distribution. The full text of the license may be found at\r | |
13 | # http://opensource.org/licenses/bsd-license.php\r | |
14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
16 | #\r | |
17 | #\r | |
18 | ##\r | |
19 | \r | |
20 | [Defines]\r | |
21 | INF_VERSION = 0x00010005\r | |
22 | BASE_NAME = MiscSubclass\r | |
23 | FILE_GUID = f2fbd108-8985-11db-b06a-0040d02b1835\r | |
24 | MODULE_TYPE = DXE_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
26 | ENTRY_POINT = MiscSubclassDriverEntryPoint\r | |
27 | \r | |
28 | #\r | |
29 | # The following information is for reference only and not required by the build tools.\r | |
30 | #\r | |
31 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
32 | #\r | |
33 | \r | |
34 | [Sources]\r | |
35 | MiscBaseBoardManufacturer.uni\r | |
36 | MiscBaseBoardManufacturerData.c\r | |
37 | MiscBaseBoardManufacturerFunction.c\r | |
38 | MiscBiosVendor.uni\r | |
39 | MiscBiosVendorData.c\r | |
40 | MiscBiosVendorFunction.c\r | |
d18d8a1d | 41 | MiscBootInformationData.c\r |
949f388f | 42 | MiscBootInformationFunction.c\r |
43 | MiscChassisManufacturer.uni\r | |
44 | MiscChassisManufacturerData.c\r | |
45 | MiscChassisManufacturerFunction.c\r | |
46 | MiscNumberOfInstallableLanguagesData.c\r | |
47 | MiscNumberOfInstallableLanguagesFunction.c\r | |
d18d8a1d | 48 | MiscOemString.uni\r |
49 | MiscOemStringData.c\r | |
50 | MiscOemStringFunction.c\r | |
949f388f | 51 | MiscPortInternalConnectorDesignator.uni\r |
d18d8a1d | 52 | MiscPortInternalConnectorDesignatorData.c\r |
949f388f | 53 | MiscPortInternalConnectorDesignatorFunction.c\r |
54 | MiscResetCapabilitiesData.c\r | |
55 | MiscResetCapabilitiesFunction.c\r | |
56 | MiscSystemLanguageString.uni\r | |
57 | MiscSystemLanguageStringData.c\r | |
58 | MiscSystemLanguageStringFunction.c\r | |
59 | MiscSystemManufacturer.uni\r | |
60 | MiscSystemManufacturerData.c\r | |
61 | MiscSystemManufacturerFunction.c\r | |
62 | MiscSystemOptionString.uni\r | |
63 | MiscSystemOptionStringData.c\r | |
64 | MiscSystemOptionStringFunction.c\r | |
65 | MiscSystemSlotDesignation.uni\r | |
66 | MiscSystemSlotDesignationData.c\r | |
67 | MiscSystemSlotDesignationFunction.c\r | |
68 | MiscDevicePath.h\r | |
69 | MiscSubClassDriver.h\r | |
70 | MiscSubClassDriver.uni\r | |
71 | MiscSubclassDriverDataTable.c\r | |
72 | MiscSubclassDriverEntryPoint.c\r | |
73 | \r | |
74 | [Packages]\r | |
75 | MdePkg/MdePkg.dec\r | |
76 | MdeModulePkg/MdeModulePkg.dec\r | |
77 | IntelFrameworkPkg/IntelFrameworkPkg.dec\r | |
bb89ec1a | 78 | EmulatorPkg/EmulatorPkg.dec\r |
949f388f | 79 | \r |
80 | [LibraryClasses]\r | |
81 | DevicePathLib\r | |
82 | UefiBootServicesTableLib\r | |
83 | MemoryAllocationLib\r | |
84 | BaseMemoryLib\r | |
85 | UefiDriverEntryPoint\r | |
86 | UefiLib\r | |
87 | HiiLib\r | |
88 | DebugLib\r | |
89 | BaseLib\r | |
90 | PcdLib\r | |
91 | \r | |
92 | [Protocols]\r | |
93 | gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED\r | |
94 | \r | |
95 | [Pcd]\r | |
96 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString\r | |
97 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString\r | |
d18d8a1d | 98 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang\r |
bb89ec1a | 99 | gEmulatorPkgTokenSpaceGuid.PcdEmuMemorySize\r |
949f388f | 100 | \r |
101 | \r | |
102 | [Depex]\r | |
103 | gEfiSmbiosProtocolGuid\r |