Last change
on this file was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver installs SMBIOS information for OVMF
|
---|
3 | #
|
---|
4 | # Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
|
---|
5 | # Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = SmbiosPlatformDxe
|
---|
14 | FILE_GUID = 4110465d-5ff3-4f4b-b580-24ed0d06747a
|
---|
15 | MODULE_TYPE = DXE_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 |
|
---|
18 | ENTRY_POINT = SmbiosTablePublishEntry
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | CloudHv.c
|
---|
28 | EntryPoint.c
|
---|
29 | Qemu.c
|
---|
30 | SmbiosPlatformDxe.c
|
---|
31 | SmbiosPlatformDxe.h
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 | MdeModulePkg/MdeModulePkg.dec
|
---|
36 | OvmfPkg/OvmfPkg.dec
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | BaseLib
|
---|
40 | BaseMemoryLib
|
---|
41 | DebugLib
|
---|
42 | MemoryAllocationLib
|
---|
43 | PcdLib
|
---|
44 | QemuFwCfgLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiDriverEntryPoint
|
---|
47 |
|
---|
48 | [Pcd]
|
---|
49 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId
|
---|
50 | gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated
|
---|
51 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor
|
---|
52 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString
|
---|
53 | gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareReleaseDateString
|
---|
54 |
|
---|
55 | [Protocols]
|
---|
56 | gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
57 |
|
---|
58 | [Depex]
|
---|
59 | gEfiSmbiosProtocolGuid
|
---|
60 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.