Last change
on this file since 109019 was 89983, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202105 and openssl 1.1.1j and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # GOP driver
|
---|
3 | #
|
---|
4 | # Copyright (c) 2020, Rebecca Cran <[email protected]>
|
---|
5 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | # Portions copyright (c) 2011, Apple Inc. All rights reserved.
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 1.29
|
---|
14 | BASE_NAME = EmuGopDxe
|
---|
15 | FILE_GUID = 1b290126-5760-424e-8aa2-3faf4d0d7978
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 |
|
---|
19 | ENTRY_POINT = InitializeEmuGop
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
25 | #
|
---|
26 | # DRIVER_BINDING = gEmuGopDriverBinding
|
---|
27 | # COMPONENT_NAME = gEmuGopComponentName
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | ComponentName.c
|
---|
32 | Gop.h
|
---|
33 | GopDriver.c
|
---|
34 | GopScreen.c
|
---|
35 | VbeShim.c
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 | OvmfPkg/OvmfPkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 |
|
---|
42 |
|
---|
43 | [LibraryClasses]
|
---|
44 | BaseLib
|
---|
45 | BaseMemoryLib
|
---|
46 | BltLib
|
---|
47 | DebugLib
|
---|
48 | DevicePathLib
|
---|
49 | MemoryAllocationLib
|
---|
50 | PciLib
|
---|
51 | PcdLib
|
---|
52 | PrintLib
|
---|
53 | UefiLib
|
---|
54 | UefiBootServicesTableLib
|
---|
55 | UefiDriverEntryPoint
|
---|
56 |
|
---|
57 | [Protocols]
|
---|
58 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START
|
---|
59 | gEfiDevicePathProtocolGuid # PROTOCOL TO_START
|
---|
60 | gEfiPciIoProtocolGuid # PROTOCOL TO_START
|
---|
61 |
|
---|
62 | [Pcd]
|
---|
63 | # gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution
|
---|
65 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution
|
---|
66 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.