summaryrefslogtreecommitdiff
path: root/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-27 05:06:50 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-27 05:06:50 +0000
commit10160456368b728b172f485fce202d1e10f6ee81 (patch)
treecde75d52a2416387d08e0023ffd723f04f18a8b5 /Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
parentff9f122612aea205673901d89b89e4e743e3e5d4 (diff)
downloadedk2-platforms-10160456368b728b172f485fce202d1e10f6ee81.tar.xz
Add WinNtBlockIoDxe module into Nt32Pkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2770 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf')
-rw-r--r--Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf120
1 files changed, 120 insertions, 0 deletions
diff --git a/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf b/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
new file mode 100644
index 0000000000..436a22a4b8
--- /dev/null
+++ b/Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIo.inf
@@ -0,0 +1,120 @@
+#/** @file
+# Block Io driver
+#
+# Produce block IO abstractions for real devices on your PC using Win32 APIs.
+# The configuration of what devices to mount or emulate comes from NT
+# environment variables. The variables must be visible to the Microsoft*
+# Developer Studio for them to work.
+# Copyright (c) 2006 - 2007, Intel Corporation
+#
+# All rights reserved. This program and the accompanying materials
+# are licensed and made available under the terms and conditions of the BSD License
+# which accompanies this distribution. The full text of the license may be found at
+# http://opensource.org/licenses/bsd-license.php
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+#
+#
+#**/
+
+################################################################################
+#
+# Defines Section - statements that will be processed to create a Makefile.
+#
+################################################################################
+[Defines]
+ INF_VERSION = 0x00010005
+ BASE_NAME = WinNtBlockIo
+ FILE_GUID = F479E147-A125-11d4-BCFC-0080C73C8881
+ MODULE_TYPE = UEFI_DRIVER
+ VERSION_STRING = 1.0
+ EDK_RELEASE_VERSION = 0x00020000
+ EFI_SPECIFICATION_VERSION = 0x00020000
+
+ ENTRY_POINT = InitializeWinNtBlockIo
+
+#
+# The following information is for reference only and not required by the build tools.
+#
+# VALID_ARCHITECTURES = IA32
+#
+# DRIVER_BINDING = gWinNtBlockIoDriverBinding
+# COMPONENT_NAME = gWinNtBlockIoComponentName
+# DRIVER_DIAG = gWinNtBlockIoDriverDiagnostics
+#
+
+################################################################################
+#
+# Sources Section - list of files that are required for the build to succeed.
+#
+################################################################################
+
+[Sources.common]
+ DriverDiagnostics.c
+ DriverConfiguration.c
+ ComponentName.c
+ WinNtBlockIo.c
+ WinNtBlockIo.h
+
+
+################################################################################
+#
+# Includes Section - list of Include locations that are required for
+# this module.
+#
+################################################################################
+
+[Includes]
+ $(WORKSPACE)/MdePkgPkg/Include/Library
+
+################################################################################
+#
+# Package Dependency Section - list of Package files that are required for
+# this module.
+#
+################################################################################
+
+[Packages]
+ Nt32Pkg/Nt32Pkg.dec
+ MdePkg/MdePkg.dec
+
+
+################################################################################
+#
+# Library Class Section - list of Library Classes that are required for
+# this module.
+#
+################################################################################
+
+[LibraryClasses]
+ MemoryAllocationLib
+ UefiBootServicesTableLib
+ BaseMemoryLib
+ UefiLib
+ UefiDriverEntryPoint
+ BaseLib
+ DebugLib
+
+
+################################################################################
+#
+# Guid C Name Section - list of Guids that this module uses or produces.
+#
+################################################################################
+
+[Guids]
+ gEfiWinNtPhysicalDisksGuid # SOMETIMES_CONSUMED
+ gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED
+
+
+################################################################################
+#
+# Protocol C Name Section - list of Protocol and Protocol Notify C Names
+# that this module uses or produces.
+#
+################################################################################
+
+[Protocols]
+ gEfiBlockIoProtocolGuid # PROTOCOL BY_START
+ gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
+