]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriver.inf
d33b8c8ceb4c1ecbdceeef342f8e0086d8ae716a
[mirror_edk2.git] / Nt32Pkg / WinNtBusDriverDxe / WinNtBusDriver.inf
1 #/** @file
2 # Win NT Bus driver
3 #
4 # This following section documents the envirnoment variables for the Win NT
5 # build. These variables are used to define the (virtual) hardware
6 # configuration of the NT environment
7 # Copyright (c) 2006 - 2007, Intel Corporation
8 #
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #
17 #**/
18
19 ################################################################################
20 #
21 # Defines Section - statements that will be processed to create a Makefile.
22 #
23 ################################################################################
24 [Defines]
25 INF_VERSION = 0x00010005
26 BASE_NAME = WinNtBusDriver
27 FILE_GUID = BD7E9A27-D6C5-416a-B245-5F507D95B2BD
28 MODULE_TYPE = UEFI_DRIVER
29 VERSION_STRING = 1.0
30 EDK_RELEASE_VERSION = 0x00020000
31 EFI_SPECIFICATION_VERSION = 0x00020000
32
33 ENTRY_POINT = InitializeWinNtBusDriver
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32
39 #
40 # DRIVER_BINDING = gWinNtBusDriverBinding
41 # COMPONENT_NAME = gWinNtBusDriverComponentName
42 #
43
44 ################################################################################
45 #
46 # Sources Section - list of files that are required for the build to succeed.
47 #
48 ################################################################################
49
50 [Sources.common]
51 ComponentName.c
52 WinNtBusDriver.c
53 WinNtBusDriver.h
54
55
56 ################################################################################
57 #
58 # Includes Section - list of Include locations that are required for
59 # this module.
60 #
61 ################################################################################
62
63 [Includes]
64 $(WORKSPACE)/MdePkg/Include/Library
65
66 ################################################################################
67 #
68 # Package Dependency Section - list of Package files that are required for
69 # this module.
70 #
71 ################################################################################
72
73 [Packages]
74 Nt32Pkg/Nt32Pkg.dec
75 MdePkg/MdePkg.dec
76
77
78 ################################################################################
79 #
80 # Library Class Section - list of Library Classes that are required for
81 # this module.
82 #
83 ################################################################################
84
85 [LibraryClasses]
86 MemoryAllocationLib
87 DevicePathLib
88 UefiBootServicesTableLib
89 BaseMemoryLib
90 PcdLib
91 UefiLib
92 UefiDriverEntryPoint
93 BaseLib
94 DebugLib
95
96
97 ################################################################################
98 #
99 # Guid C Name Section - list of Guids that this module uses or produces.
100 #
101 ################################################################################
102
103 [Guids]
104 gEfiWinNtCPUSpeedGuid # ALWAYS_CONSUMED
105 gEfiWinNtCPUModelGuid # ALWAYS_CONSUMED
106 gEfiWinNtMemoryGuid # ALWAYS_CONSUMED
107 gEfiWinNtConsoleGuid # ALWAYS_CONSUMED
108 gEfiWinNtGopGuid # ALWAYS_CONSUMED
109 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED
110 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
111 gEfiWinNtPhysicalDisksGuid # ALWAYS_CONSUMED
112 gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED
113
114
115 ################################################################################
116 #
117 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
118 # that this module uses or produces.
119 #
120 ################################################################################
121
122 [Protocols]
123 gWinNtBusDriverGuid # PROTOCOL BY_START
124 gEfiDevicePathProtocolGuid # PROTOCOL BY_START
125 gEfiWinNtThunkProtocolGuid # PROTOCOL TO_START
126 gEfiWinNtIoProtocolGuid # PROTOCOL BY_START
127
128
129 ################################################################################
130 #
131 # Pcd DYNAMIC - list of PCDs that this module is coded for.
132 #
133 ################################################################################
134
135 [PcdsDynamic.common]
136 PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid
137 PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid
138 PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid
139 PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid
140 PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid
141 PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid
142 PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid
143 PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid
144 PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid
145 PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid
146