Last change
on this file since 85788 was 80721, checked in by vboxsync, 5 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.3 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver produces GraphicsOutput protocol based on the GraphicsInfo HOB information.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = GraphicsOutputDxe
|
---|
14 | FILE_GUID = 0B04B2ED-861C-42cd-A22F-C3AAFACCB896
|
---|
15 | MODULE_TYPE = UEFI_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | ENTRY_POINT = InitializeGraphicsOutput
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following information is for reference only and not required by the build tools.
|
---|
21 | #
|
---|
22 | # VALID_ARCHITECTURES = IA32 X64
|
---|
23 | #
|
---|
24 |
|
---|
25 | [Sources.common]
|
---|
26 | GraphicsOutput.h
|
---|
27 | GraphicsOutput.c
|
---|
28 | ComponentName.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | UefiDriverEntryPoint
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | DxeServicesTableLib
|
---|
38 | DebugLib
|
---|
39 | MemoryAllocationLib
|
---|
40 | BaseMemoryLib
|
---|
41 | DevicePathLib
|
---|
42 | FrameBufferBltLib
|
---|
43 | UefiLib
|
---|
44 | HobLib
|
---|
45 |
|
---|
46 | [Guids]
|
---|
47 | gEfiGraphicsInfoHobGuid ## CONSUMES ## HOB
|
---|
48 | gEfiGraphicsDeviceInfoHobGuid ## CONSUMES ## HOB
|
---|
49 |
|
---|
50 | [Protocols]
|
---|
51 | gEfiGraphicsOutputProtocolGuid ## BY_START
|
---|
52 | gEfiDevicePathProtocolGuid ## BY_START
|
---|
53 | gEfiPciIoProtocolGuid ## TO_START
|
---|
Note:
See
TracBrowser
for help on using the repository browser.