]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
wrong package name
[mirror_edk2.git] / Nt32Pkg / WinNtBlockIoDxe / WinNtBlockIo.inf
... / ...
CommitLineData
1#/** @file\r
2# Block Io driver\r
3#\r
4# Produce block IO abstractions for real devices on your PC using Win32 APIs.\r
5# The configuration of what devices to mount or emulate comes from NT\r
6# environment variables. The variables must be visible to the Microsoft*\r
7# Developer Studio for them to work.\r
8# Copyright (c) 2006 - 2007, Intel Corporation\r
9#\r
10# All rights reserved. This program and the accompanying materials\r
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
18#**/\r
19\r
20################################################################################\r
21#\r
22# Defines Section - statements that will be processed to create a Makefile.\r
23#\r
24################################################################################\r
25[Defines]\r
26 INF_VERSION = 0x00010005\r
27 BASE_NAME = WinNtBlockIo\r
28 FILE_GUID = F479E147-A125-11d4-BCFC-0080C73C8881\r
29 MODULE_TYPE = UEFI_DRIVER\r
30 VERSION_STRING = 1.0\r
31 EDK_RELEASE_VERSION = 0x00020000\r
32 EFI_SPECIFICATION_VERSION = 0x00020000\r
33\r
34 ENTRY_POINT = InitializeWinNtBlockIo\r
35\r
36#\r
37# The following information is for reference only and not required by the build tools.\r
38#\r
39# VALID_ARCHITECTURES = IA32\r
40#\r
41# DRIVER_BINDING = gWinNtBlockIoDriverBinding \r
42# COMPONENT_NAME = gWinNtBlockIoComponentName \r
43# DRIVER_DIAG = gWinNtBlockIoDriverDiagnostics \r
44#\r
45\r
46################################################################################\r
47#\r
48# Sources Section - list of files that are required for the build to succeed.\r
49#\r
50################################################################################\r
51\r
52[Sources.common]\r
53 DriverDiagnostics.c\r
54 DriverConfiguration.c\r
55 ComponentName.c\r
56 WinNtBlockIo.c\r
57 WinNtBlockIo.h\r
58\r
59\r
60################################################################################\r
61#\r
62# Includes Section - list of Include locations that are required for\r
63# this module.\r
64#\r
65################################################################################\r
66\r
67[Includes]\r
68 $(WORKSPACE)/MdePkg/Include/Library\r
69\r
70################################################################################\r
71#\r
72# Package Dependency Section - list of Package files that are required for\r
73# this module.\r
74#\r
75################################################################################\r
76\r
77[Packages]\r
78 Nt32Pkg/Nt32Pkg.dec\r
79 MdePkg/MdePkg.dec\r
80\r
81\r
82################################################################################\r
83#\r
84# Library Class Section - list of Library Classes that are required for\r
85# this module.\r
86#\r
87################################################################################\r
88\r
89[LibraryClasses]\r
90 MemoryAllocationLib\r
91 UefiBootServicesTableLib\r
92 BaseMemoryLib\r
93 UefiLib\r
94 UefiDriverEntryPoint\r
95 BaseLib\r
96 DebugLib\r
97\r
98\r
99################################################################################\r
100#\r
101# Guid C Name Section - list of Guids that this module uses or produces.\r
102#\r
103################################################################################\r
104\r
105[Guids]\r
106 gEfiWinNtPhysicalDisksGuid # SOMETIMES_CONSUMED\r
107 gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED\r
108\r
109\r
110################################################################################\r
111#\r
112# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
113# that this module uses or produces.\r
114#\r
115################################################################################\r
116\r
117[Protocols]\r
118 gEfiBlockIoProtocolGuid # PROTOCOL BY_START\r
119 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START\r
120\r