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