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