Last change
on this file was 101291, checked in by vboxsync, 19 months ago |
EFI/FirmwareNew: Make edk2-stable202308 build on all supported platforms (using gcc at least, msvc not tested yet), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.6 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # OVMF ACPI Platform Driver
|
---|
3 | #
|
---|
4 | # Copyright (c) 2020, Rebecca Cran <[email protected]>
|
---|
5 | # Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 1.29
|
---|
12 | BASE_NAME = AcpiPlatform
|
---|
13 | FILE_GUID = D5F92408-BAB5-44CA-8A60-C212F01D7E9D
|
---|
14 | MODULE_TYPE = DXE_DRIVER
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 | ENTRY_POINT = AcpiPlatformEntryPoint
|
---|
17 |
|
---|
18 | #
|
---|
19 | # The following information is for reference only and not required by the build tools.
|
---|
20 | #
|
---|
21 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
22 | #
|
---|
23 |
|
---|
24 | [Sources]
|
---|
25 | AcpiPlatform.c
|
---|
26 | AcpiPlatform.h
|
---|
27 | Bhyve.c
|
---|
28 | EntryPoint.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 | OvmfPkg/OvmfPkg.dec
|
---|
34 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
35 |
|
---|
36 | [LibraryClasses]
|
---|
37 | AcpiPlatformLib
|
---|
38 | BaseLib
|
---|
39 | BaseMemoryLib
|
---|
40 | BhyveFwCtlLib
|
---|
41 | DebugLib
|
---|
42 | DxeServicesTableLib
|
---|
43 | MemoryAllocationLib
|
---|
44 | OrderedCollectionLib
|
---|
45 | PcdLib
|
---|
46 | QemuFwCfgLib
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | UefiDriverEntryPoint
|
---|
49 | UefiLib
|
---|
50 |
|
---|
51 | [Protocols]
|
---|
52 | gEfiAcpiTableProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
53 | gEfiFirmwareVolume2ProtocolGuid # PROTOCOL SOMETIMES_CONSUMED
|
---|
54 | gEfiPciIoProtocolGuid # PROTOCOL SOMETIMES_CONSUMED
|
---|
55 |
|
---|
56 | [Guids]
|
---|
57 | gRootBridgesConnectedEventGroupGuid
|
---|
58 |
|
---|
59 | [Pcd]
|
---|
60 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiTableStorageFile
|
---|
61 | gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration
|
---|
62 | gUefiCpuPkgTokenSpaceGuid.PcdCpuLocalApicBaseAddress
|
---|
63 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFdBaseAddress
|
---|
64 |
|
---|
65 | [Depex]
|
---|
66 | gEfiAcpiTableProtocolGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.