]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriver.inf
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2920 6f19259b...
[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 # Package Dependency Section - list of Package files that are required for
59 # this module.
60 #
61 ################################################################################
62
63 [Packages]
64 MdePkg/MdePkg.dec
65 Nt32Pkg/Nt32Pkg.dec
66
67
68 ################################################################################
69 #
70 # Library Class Section - list of Library Classes that are required for
71 # this module.
72 #
73 ################################################################################
74
75 [LibraryClasses]
76 MemoryAllocationLib
77 DevicePathLib
78 UefiBootServicesTableLib
79 BaseMemoryLib
80 PcdLib
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 gEfiWinNtCPUSpeedGuid # ALWAYS_CONSUMED
95 gEfiWinNtCPUModelGuid # ALWAYS_CONSUMED
96 gEfiWinNtMemoryGuid # ALWAYS_CONSUMED
97 gEfiWinNtConsoleGuid # ALWAYS_CONSUMED
98 gEfiWinNtGopGuid # ALWAYS_CONSUMED
99 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED
100 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
101 gEfiWinNtPhysicalDisksGuid # ALWAYS_CONSUMED
102 gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED
103
104
105 ################################################################################
106 #
107 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
108 # that this module uses or produces.
109 #
110 ################################################################################
111
112 [Protocols]
113 gWinNtBusDriverGuid # PROTOCOL BY_START
114 gEfiDevicePathProtocolGuid # PROTOCOL BY_START
115 gEfiWinNtThunkProtocolGuid # PROTOCOL TO_START
116 gEfiWinNtIoProtocolGuid # PROTOCOL BY_START
117
118
119 ################################################################################
120 #
121 # Pcd DYNAMIC - list of PCDs that this module is coded for.
122 #
123 ################################################################################
124
125 [PcdsDynamic.common]
126 PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid
127 PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid
128 PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid
129 PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid
130 PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid
131 PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid
132 PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid
133 PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid
134 PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid
135 PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid
136