]>
Commit | Line | Data |
---|---|---|
7b202cb0 | 1 | ## @file\r |
8879d432 | 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 | |
6 | # MiscSubclassDriver.uni file, the StrGather tool will expand MiscSubclassDriver.uni file\r | |
7 | # and parse all .uni file.\r | |
8f2a5f80 | 8 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r |
8879d432 | 9 | #\r |
8f2a5f80 | 10 | # This program and the accompanying materials\r |
8879d432 | 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 | |
7b202cb0 | 18 | ##\r |
8879d432 | 19 | \r |
8879d432 | 20 | [Defines]\r |
21 | INF_VERSION = 0x00010005\r | |
22 | BASE_NAME = MiscSubclass\r | |
23 | FILE_GUID = 4A9B9DB8-EC62-4A92-818F-8AA0246D246E\r | |
24 | MODULE_TYPE = DXE_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
8879d432 | 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\r | |
32 | #\r | |
33 | \r | |
f7c58a94 | 34 | [Sources]\r |
1fdd39d3 | 35 | MiscBaseBoardManufacturerData.c\r |
36 | MiscBaseBoardManufacturerFunction.c\r | |
37 | MiscBiosVendorData.c\r | |
38 | MiscBiosVendorFunction.c\r | |
39 | MiscBootInformationData.c \r | |
40 | MiscBootInformationFunction.c\r | |
41 | MiscChassisManufacturerData.c\r | |
42 | MiscChassisManufacturerFunction.c\r | |
43 | MiscNumberOfInstallableLanguagesData.c\r | |
44 | MiscNumberOfInstallableLanguagesFunction.c\r | |
45 | MiscOemStringData.c \r | |
46 | MiscOemStringFunction.c \r | |
47 | MiscPortInternalConnectorDesignatorData.c \r | |
8879d432 | 48 | MiscPortInternalConnectorDesignatorFunction.c\r |
8879d432 | 49 | MiscResetCapabilitiesData.c\r |
1fdd39d3 | 50 | MiscResetCapabilitiesFunction.c\r |
51 | MiscSystemLanguageStringData.c\r | |
52 | MiscSystemLanguageStringFunction.c\r | |
53 | MiscSystemManufacturerData.c\r | |
54 | MiscSystemManufacturerFunction.c\r | |
55 | MiscSystemOptionStringData.c\r | |
56 | MiscSystemOptionStringFunction.c\r | |
57 | MiscSystemSlotDesignationData.c\r | |
58 | MiscSystemSlotDesignationFunction.c\r | |
8879d432 | 59 | MiscDevicePath.h\r |
1fdd39d3 | 60 | MiscSubclassDriver.h\r |
8879d432 | 61 | MiscSubclassDriver.uni\r |
1fdd39d3 | 62 | MiscSubclassDriverDataTable.c\r |
63 | MiscSubclassDriverEntryPoint.c\r | |
8879d432 | 64 | \r |
8879d432 | 65 | [Packages]\r |
66 | MdePkg/MdePkg.dec\r | |
7cfb679a | 67 | MdeModulePkg/MdeModulePkg.dec\r |
8879d432 | 68 | IntelFrameworkPkg/IntelFrameworkPkg.dec\r |
69 | Nt32Pkg/Nt32Pkg.dec\r | |
70 | \r | |
8879d432 | 71 | [LibraryClasses]\r |
72 | DevicePathLib\r | |
73 | UefiBootServicesTableLib\r | |
8879d432 | 74 | BaseMemoryLib\r |
75 | UefiDriverEntryPoint\r | |
76 | UefiLib\r | |
5fd5fcd3 | 77 | HiiLib\r |
8879d432 | 78 | DebugLib\r |
79 | BaseLib\r | |
1fdd39d3 | 80 | MemoryAllocationLib\r |
b397fbbb | 81 | PcdLib\r |
8879d432 | 82 | \r |
8879d432 | 83 | [Protocols]\r |
84 | gEfiWinNtIoProtocolGuid # PROTOCOL_NOTIFY SOMETIMES_CONSUMED\r | |
1fdd39d3 | 85 | gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED\r |
86 | \r | |
f7c58a94 | 87 | [Pcd]\r |
1fdd39d3 | 88 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString\r |
89 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString\r | |
b3af5df6 | 90 | gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize\r |
1fdd39d3 | 91 | gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang\r |
b397fbbb | 92 | \r |
4bd1b0f1 | 93 | [Depex]\r |
1fdd39d3 | 94 | gEfiSmbiosProtocolGuid\r |