Last change
on this file since 101297 was 99404, checked in by vboxsync, 22 months ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
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 - 2021, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = SmbiosDxe
|
---|
14 | MODULE_UNI_FILE = SmbiosDxe.uni
|
---|
15 | FILE_GUID = F9D88642-0737-49bc-81B5-6889CD57D9EA
|
---|
16 | MODULE_TYPE = DXE_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 |
|
---|
19 | ENTRY_POINT = SmbiosDriverEntryPoint
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | SmbiosDxe.h
|
---|
29 | SmbiosDxe.c
|
---|
30 |
|
---|
31 | [Packages]
|
---|
32 | MdePkg/MdePkg.dec
|
---|
33 | MdeModulePkg/MdeModulePkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | MemoryAllocationLib
|
---|
38 | BaseMemoryLib
|
---|
39 | BaseLib
|
---|
40 | UefiLib
|
---|
41 | UefiDriverEntryPoint
|
---|
42 | DebugLib
|
---|
43 | PcdLib
|
---|
44 | HobLib
|
---|
45 |
|
---|
46 | [Protocols]
|
---|
47 | gEfiSmbiosProtocolGuid ## PRODUCES
|
---|
48 |
|
---|
49 | [Guids]
|
---|
50 | gEfiSmbiosTableGuid ## SOMETIMES_PRODUCES ## SystemTable
|
---|
51 | gEfiSmbios3TableGuid ## SOMETIMES_PRODUCES ## SystemTable
|
---|
52 | gUniversalPayloadSmbios3TableGuid ## CONSUMES ## HOB
|
---|
53 | gUniversalPayloadSmbiosTableGuid ## SOMETIMES_CONSUMES ## HOB
|
---|
54 |
|
---|
55 | [Pcd]
|
---|
56 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion ## CONSUMES
|
---|
57 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev ## SOMETIMES_CONSUMES
|
---|
58 | gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosEntryPointProvideMethod ## CONSUMES
|
---|
59 |
|
---|
60 | [Depex]
|
---|
61 | TRUE
|
---|
62 |
|
---|
63 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
64 | SmbiosDxeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.