]>
Commit | Line | Data |
---|---|---|
7b202cb0 | 1 | ## @file\r |
c9fc89a3 | 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 | |
8f2a5f80 | 8 | # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r |
c9fc89a3 | 9 | #\r |
8f2a5f80 | 10 | # This program and the accompanying materials\r |
c9fc89a3 | 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 | |
7b202cb0 | 18 | ##\r |
c9fc89a3 | 19 | \r |
c9fc89a3 | 20 | [Defines]\r |
21 | INF_VERSION = 0x00010005\r | |
2ad8b20d | 22 | BASE_NAME = WinNtGopDxe\r |
c9fc89a3 | 23 | FILE_GUID = 29b3c4c6-e5aa-49e4-8ce0-2772f782ddc2\r |
24 | MODULE_TYPE = UEFI_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
c9fc89a3 | 26 | \r |
27 | ENTRY_POINT = InitializeWinNtGop\r | |
28 | \r | |
29 | #\r | |
30 | # The following information is for reference only and not required by the build tools.\r | |
31 | #\r | |
32 | # VALID_ARCHITECTURES = IA32\r | |
33 | #\r | |
34 | # DRIVER_BINDING = gWinNtGopDriverBinding \r | |
35 | # COMPONENT_NAME = gWinNtGopComponentName \r | |
36 | #\r | |
37 | \r | |
7b202cb0 | 38 | [Sources]\r |
c9fc89a3 | 39 | WinNtGopDriver.c\r |
40 | ComponentName.c\r | |
41 | WinNtGop.h\r | |
42 | WinNtGopInput.c\r | |
43 | WinNtGopScreen.c\r | |
44 | \r | |
c9fc89a3 | 45 | [Packages]\r |
c9fc89a3 | 46 | MdePkg/MdePkg.dec\r |
0dea993c | 47 | Nt32Pkg/Nt32Pkg.dec\r |
c9fc89a3 | 48 | \r |
49 | \r | |
c9fc89a3 | 50 | [LibraryClasses]\r |
51 | MemoryAllocationLib\r | |
52 | UefiBootServicesTableLib\r | |
53 | BaseMemoryLib\r | |
54 | UefiLib\r | |
55 | UefiDriverEntryPoint\r | |
56 | BaseLib\r | |
57 | DebugLib\r | |
58 | \r | |
59 | \r | |
c9fc89a3 | 60 | [Guids]\r |
61 | gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID\r | |
62 | gEfiWinNtGopGuid # ALWAYS_CONSUMED\r | |
c9fc89a3 | 63 | \r |
c9fc89a3 | 64 | [Protocols]\r |
65 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START\r | |
66 | gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START\r | |
62cf113f | 67 | gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START\r |
c9fc89a3 | 68 | gEfiWinNtIoProtocolGuid # PROTOCOL TO_START\r |