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