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 |
56 | ################################################################################\r |
57 | #\r |
58 | # Includes Section - list of Include locations that are required for\r |
59 | # this module.\r |
60 | #\r |
61 | ################################################################################\r |
62 | \r |
63 | [Includes]\r |
64 | $(WORKSPACE)/MdePkg/Include/Library\r |
65 | \r |
66 | ################################################################################\r |
67 | #\r |
68 | # Package Dependency Section - list of Package files that are required for\r |
69 | # this module.\r |
70 | #\r |
71 | ################################################################################\r |
72 | \r |
73 | [Packages]\r |
74 | Nt32Pkg/Nt32Pkg.dec\r |
75 | MdePkg/MdePkg.dec\r |
76 | \r |
77 | \r |
78 | ################################################################################\r |
79 | #\r |
80 | # Library Class Section - list of Library Classes that are required for\r |
81 | # this module.\r |
82 | #\r |
83 | ################################################################################\r |
84 | \r |
85 | [LibraryClasses]\r |
86 | MemoryAllocationLib\r |
87 | DevicePathLib\r |
88 | UefiBootServicesTableLib\r |
89 | BaseMemoryLib\r |
90 | PcdLib\r |
91 | UefiLib\r |
92 | UefiDriverEntryPoint\r |
93 | BaseLib\r |
94 | DebugLib\r |
95 | \r |
96 | \r |
97 | ################################################################################\r |
98 | #\r |
99 | # Guid C Name Section - list of Guids that this module uses or produces.\r |
100 | #\r |
101 | ################################################################################\r |
102 | \r |
103 | [Guids]\r |
104 | gEfiWinNtCPUSpeedGuid # ALWAYS_CONSUMED\r |
105 | gEfiWinNtCPUModelGuid # ALWAYS_CONSUMED\r |
106 | gEfiWinNtMemoryGuid # ALWAYS_CONSUMED\r |
107 | gEfiWinNtConsoleGuid # ALWAYS_CONSUMED\r |
108 | gEfiWinNtGopGuid # ALWAYS_CONSUMED\r |
109 | gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED\r |
110 | gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED\r |
111 | gEfiWinNtPhysicalDisksGuid # ALWAYS_CONSUMED\r |
112 | gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED\r |
113 | \r |
114 | \r |
115 | ################################################################################\r |
116 | #\r |
117 | # Protocol C Name Section - list of Protocol and Protocol Notify C Names\r |
118 | # that this module uses or produces.\r |
119 | #\r |
120 | ################################################################################\r |
121 | \r |
122 | [Protocols]\r |
123 | gWinNtBusDriverGuid # PROTOCOL BY_START\r |
124 | gEfiDevicePathProtocolGuid # PROTOCOL BY_START\r |
125 | gEfiWinNtThunkProtocolGuid # PROTOCOL TO_START\r |
126 | gEfiWinNtIoProtocolGuid # PROTOCOL BY_START\r |
127 | \r |
128 | \r |
129 | ################################################################################\r |
130 | #\r |
131 | # Pcd DYNAMIC - list of PCDs that this module is coded for.\r |
132 | #\r |
133 | ################################################################################\r |
134 | \r |
135 | [PcdsDynamic.common]\r |
136 | PcdWinNtMemorySize|gEfiNt32PkgTokenSpaceGuid\r |
137 | PcdWinNtCpuSpeed|gEfiNt32PkgTokenSpaceGuid\r |
138 | PcdWinNtCpuModel|gEfiNt32PkgTokenSpaceGuid\r |
139 | PcdWinNtPhysicalDisk|gEfiNt32PkgTokenSpaceGuid\r |
140 | PcdWinNtVirtualDisk|gEfiNt32PkgTokenSpaceGuid\r |
141 | PcdWinNtFileSystem|gEfiNt32PkgTokenSpaceGuid\r |
142 | PcdWinNtSerialPort|gEfiNt32PkgTokenSpaceGuid\r |
143 | PcdWinNtGop|gEfiNt32PkgTokenSpaceGuid\r |
144 | PcdWinNtUga|gEfiNt32PkgTokenSpaceGuid\r |
145 | PcdWinNtConsole|gEfiNt32PkgTokenSpaceGuid\r |
146 | \r |