]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Nt32Pkg/WinNtGopDxe/WinNtGop.inf
Add WinNtGop driver into Nt32Pkg
[mirror_edk2.git] / Nt32Pkg / WinNtGopDxe / WinNtGop.inf
... / ...
CommitLineData
1#/** @file\r
2# Gop Driver\r
3#\r
4# GOP is short hand for UEFI Graphics Output protocol.\r
5# This file is a verision of GopIo the uses WinNtThunk system calls as an IO\r
6# abstraction. For a PCI device WinNtIo would be replaced with\r
7# a PCI IO abstraction that abstracted a specific PCI device.\r
8# Copyright (c) 2006 - 2007, Intel Corporation\r
9#\r
10# All rights reserved. This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18#**/\r
19\r
20################################################################################\r
21#\r
22# Defines Section - statements that will be processed to create a Makefile.\r
23#\r
24################################################################################\r
25[Defines]\r
26 INF_VERSION = 0x00010005\r
27 BASE_NAME = WinNtGop\r
28 FILE_GUID = 29b3c4c6-e5aa-49e4-8ce0-2772f782ddc2\r
29 MODULE_TYPE = UEFI_DRIVER\r
30 VERSION_STRING = 1.0\r
31 EDK_RELEASE_VERSION = 0x00020000\r
32 EFI_SPECIFICATION_VERSION = 0x00020000\r
33\r
34 ENTRY_POINT = InitializeWinNtGop\r
35\r
36#\r
37# The following information is for reference only and not required by the build tools.\r
38#\r
39# VALID_ARCHITECTURES = IA32\r
40#\r
41# DRIVER_BINDING = gWinNtGopDriverBinding \r
42# COMPONENT_NAME = gWinNtGopComponentName \r
43#\r
44\r
45################################################################################\r
46#\r
47# Sources Section - list of files that are required for the build to succeed.\r
48#\r
49################################################################################\r
50\r
51[Sources.common]\r
52 WinNtGopDriver.c\r
53 ComponentName.c\r
54 WinNtGop.h\r
55 WinNtGopInput.c\r
56 WinNtGopScreen.c\r
57\r
58################################################################################\r
59#\r
60# Includes Section - list of Include locations that are required for\r
61# this module.\r
62#\r
63################################################################################\r
64\r
65[Includes]\r
66 $(WORKSPACE)/MdePkg/Include/Library\r
67\r
68################################################################################\r
69#\r
70# Package Dependency Section - list of Package files that are required for\r
71# this module.\r
72#\r
73################################################################################\r
74\r
75[Packages]\r
76 Nt32Pkg/Nt32Pkg.dec\r
77 MdePkg/MdePkg.dec\r
78\r
79\r
80################################################################################\r
81#\r
82# Library Class Section - list of Library Classes that are required for\r
83# this module.\r
84#\r
85################################################################################\r
86\r
87[LibraryClasses]\r
88 MemoryAllocationLib\r
89 UefiBootServicesTableLib\r
90 BaseMemoryLib\r
91 UefiLib\r
92 UefiDriverEntryPoint\r
93 BaseLib\r
94 DebugLib\r
95\r
96\r
97################################################################################\r
98#\r
99# Guid C Name Section - list of Guids that this module uses or produces.\r
100#\r
101################################################################################\r
102\r
103[Guids]\r
104 gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID\r
105 gEfiWinNtGopGuid # ALWAYS_CONSUMED\r
106\r
107\r
108################################################################################\r
109#\r
110# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
111# that this module uses or produces.\r
112#\r
113################################################################################\r
114\r
115[Protocols]\r
116 gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START\r
117 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START\r
118 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START\r
119\r