Last change
on this file since 99396 was 80721, checked in by vboxsync, 6 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.0 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | #
|
---|
3 | # This hybrid driver produces the Graphics Output Protocol for the Virtio GPU
|
---|
4 | # device (head #0, only and unconditionally).
|
---|
5 | #
|
---|
6 | # Copyright (C) 2016, Red Hat, Inc.
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = VirtioGpuDxe
|
---|
15 | FILE_GUID = D6099B94-CD97-4CC5-8714-7F6312701A8A
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = VirtioGpuEntryPoint
|
---|
19 |
|
---|
20 | [Sources]
|
---|
21 | Commands.c
|
---|
22 | DriverBinding.c
|
---|
23 | Gop.c
|
---|
24 | VirtioGpu.h
|
---|
25 |
|
---|
26 | [Packages]
|
---|
27 | MdePkg/MdePkg.dec
|
---|
28 | OvmfPkg/OvmfPkg.dec
|
---|
29 |
|
---|
30 | [LibraryClasses]
|
---|
31 | BaseMemoryLib
|
---|
32 | DebugLib
|
---|
33 | DevicePathLib
|
---|
34 | MemoryAllocationLib
|
---|
35 | PrintLib
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | UefiDriverEntryPoint
|
---|
38 | UefiLib
|
---|
39 | VirtioLib
|
---|
40 |
|
---|
41 | [Protocols]
|
---|
42 | gEfiDevicePathProtocolGuid ## TO_START ## BY_START
|
---|
43 | gEfiGraphicsOutputProtocolGuid ## BY_START
|
---|
44 | gEfiPciIoProtocolGuid ## TO_START
|
---|
45 | gVirtioDeviceProtocolGuid ## TO_START
|
---|
Note:
See
TracBrowser
for help on using the repository browser.