blob: e413beb7f38d3d3aa6750b2f8774b1fe0a5c4804 [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301## @file
2#
3# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
4# This program and the accompanying materials
5# are licensed and made available under the terms and conditions of the BSD License
6# which accompanies this distribution. The full text of the license may be found at
7# http://opensource.org/licenses/bsd-license.php
8#
9# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11#
12# Module Name:
13#
14# SmbiosGen.inf
15#
16# Abstract:
17#
18# Component description file for SmbiosGen module.
19#
20##
21
22[Defines]
23 INF_VERSION = 0x00010005
24 BASE_NAME = SmbiosGenDxe
25 FILE_GUID = A17F4A89-5F19-444f-B7BE-48195E0575DB
26 MODULE_TYPE = DXE_DRIVER
27 VERSION_STRING = 1.0
28 ENTRY_POINT = SmbiosGenEntrypoint
29
30[Packages]
31 MdePkg/MdePkg.dec
32 MdeModulePkg/MdeModulePkg.dec
33 IntelFrameworkPkg/IntelFrameworkPkg.dec
34
35[LibraryClasses]
36 UefiLib
37 HobLib
38 UefiBootServicesTableLib
39 BaseMemoryLib
40 MemoryAllocationLib
41 UefiDriverEntryPoint
42 BaseLib
43 HiiLib
44
45[Sources]
46 SmbiosGen.c
47 SmbiosGen.h
48 SmbiosGenStrings.uni
49
50[Guids]
51 gEfiSmbiosTableGuid
52
53[Protocols]
54 gEfiHiiDatabaseProtocolGuid
55 gEfiSmbiosProtocolGuid
56 gEfiHiiProtocolGuid
57
58[Depex]
59 gEfiSmbiosProtocolGuid AND gEfiHiiDatabaseProtocolGuid
60