Last change
on this file since 61103 was 58466, checked in by vboxsync, 9 years ago |
EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .
|
-
Property svn:eol-style
set to
native
|
File size:
1.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver initializes and installs the SMBIOS protocol, constructs SMBIOS table into system configuration table.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2009 - 2014, 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
|
---|
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 ## PRODUCES ## SystemTable
|
---|
55 |
|
---|
56 | [Pcd]
|
---|
57 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion ## CONSUMES
|
---|
58 |
|
---|
59 | [Depex]
|
---|
60 | TRUE
|
---|
61 |
|
---|
62 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
63 | SmbiosDxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.