1## @file
2# This driver initializes and installs the SMBIOS protocol, constructs SMBIOS table into system configuration table.
3#
4# Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = SmbiosDxe
19  MODULE_UNI_FILE                = SmbiosDxe.uni
20  FILE_GUID                      = F9D88642-0737-49bc-81B5-6889CD57D9EA
21  MODULE_TYPE                    = DXE_DRIVER
22  VERSION_STRING                 = 1.0
23
24  ENTRY_POINT                    = SmbiosDriverEntryPoint
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC ARM AARCH64
30#
31
32[Sources]
33  SmbiosDxe.h
34  SmbiosDxe.c
35
36[Packages]
37  MdePkg/MdePkg.dec
38  MdeModulePkg/MdeModulePkg.dec
39
40[LibraryClasses]
41  UefiBootServicesTableLib
42  MemoryAllocationLib
43  BaseMemoryLib
44  BaseLib
45  UefiLib
46  UefiDriverEntryPoint
47  DebugLib
48  PcdLib
49
50[Protocols]
51  gEfiSmbiosProtocolGuid                            ## PRODUCES
52
53[Guids]
54  gEfiSmbiosTableGuid                               ## SOMETIMES_PRODUCES ## SystemTable
55  gEfiSmbios3TableGuid                              ## SOMETIMES_PRODUCES ## SystemTable
56
57[Pcd]
58  gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion   ## CONSUMES
59  gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev    ## SOMETIMES_CONSUMES
60  gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosEntryPointProvideMethod   ## CONSUMES
61
62[Depex]
63  TRUE
64
65[UserExtensions.TianoCore."ExtraFiles"]
66  SmbiosDxeExtra.uni
67