1#
2#
3# Copyright (c)  1999  - 2014, Intel Corporation. All rights reserved
4#
5
6# This program and the accompanying materials are licensed and made available under
7
8# the terms and conditions of the BSD License that accompanies this distribution.
9
10# The full text of the license may be found at
11
12# http://opensource.org/licenses/bsd-license.php.
13
14#
15
16# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17
18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19
20#
21
22#
23#
24#  Module Name:
25#
26#   PlatformInfoDxe.inf
27#
28#  Abstract:
29#
30#
31--*/
32
33
34[defines]
35  INF_VERSION                    = 0x00010005
36  BASE_NAME                      = PlatformInfoDxe
37  FILE_GUID                      = 025F738B-4EBD-4d55-B728-5F421B601F1F
38  MODULE_TYPE                    = DXE_DRIVER
39  VERSION_STRING                 = 1.0
40  ENTRY_POINT                    = PlatformInfoInit
41
42[sources]
43  PlatformInfoDxe.c
44  PlatformInfoDxe.h
45
46[Guids]
47  gEfiAcpiVariableGuid                     # ALWAYS_CONSUMED
48  gEfiPlatformInfoGuid                     # ALWAYS_CONSUMED
49  gEfiVlv2VariableGuid
50  gEfiNormalSetupGuid
51  gOsSelectionVariableGuid
52
53[Packages]
54  MdePkg/MdePkg.dec
55  MdeModulePkg/MdeModulePkg.dec
56  Vlv2TbltDevicePkg/PlatformPkg.dec
57  Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec
58
59[LibraryClasses]
60  HobLib
61  UefiRuntimeServicesTableLib
62  UefiDriverEntryPoint
63  BaseMemoryLib
64
65[Depex]
66  gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
67