Last change
on this file was 99404, checked in by vboxsync, 21 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.8 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver is a sample implementation of the Graphics Output Protocol for
|
---|
3 | # the QEMU (Cirrus Logic 5446) video controller.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2006 - 2019, 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 = QemuVideoDxe
|
---|
14 | FILE_GUID = e3752948-b9a1-4770-90c4-df41c38986be
|
---|
15 | MODULE_TYPE = UEFI_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 |
|
---|
18 | ENTRY_POINT = InitializeQemuVideo
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
24 | #
|
---|
25 | # DRIVER_BINDING = gQemuVideoDriverBinding
|
---|
26 | # COMPONENT_NAME = gQemuVideoComponentName
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources.common]
|
---|
30 | ComponentName.c
|
---|
31 | Driver.c
|
---|
32 | Gop.c
|
---|
33 | Initialize.c
|
---|
34 | Qemu.h
|
---|
35 |
|
---|
36 | [Sources.Ia32, Sources.X64]
|
---|
37 | VbeShim.c
|
---|
38 | VbeShim.h
|
---|
39 |
|
---|
40 | [Packages]
|
---|
41 | MdePkg/MdePkg.dec
|
---|
42 | MdeModulePkg/MdeModulePkg.dec
|
---|
43 | OvmfPkg/OvmfPkg.dec
|
---|
44 |
|
---|
45 | [LibraryClasses]
|
---|
46 | BaseMemoryLib
|
---|
47 | FrameBufferBltLib
|
---|
48 | DebugLib
|
---|
49 | DevicePathLib
|
---|
50 | MemoryAllocationLib
|
---|
51 | PcdLib
|
---|
52 | PciLib
|
---|
53 | PrintLib
|
---|
54 | TimerLib
|
---|
55 | UefiBootServicesTableLib
|
---|
56 | UefiDriverEntryPoint
|
---|
57 | UefiLib
|
---|
58 |
|
---|
59 | [Protocols]
|
---|
60 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START
|
---|
61 | gEfiDevicePathProtocolGuid # PROTOCOL BY_START
|
---|
62 | gEfiPciIoProtocolGuid # PROTOCOL TO_START
|
---|
63 |
|
---|
64 | [Pcd]
|
---|
65 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId
|
---|
66 | gUefiOvmfPkgTokenSpaceGuid.PcdVideoResolutionSource
|
---|
67 | gEfiMdeModulePkgTokenSpaceGuid.PcdNullPointerDetectionPropertyMask
|
---|
68 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution
|
---|
69 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution
|
---|
Note:
See
TracBrowser
for help on using the repository browser.