Home | History | Annotate | Download | only in WinNtBlockIoDxe
      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 - 2010, Intel Corporation. All rights reserved.<BR>

      9 #

     10 #  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 [Defines]
     21   INF_VERSION                    = 0x00010005
     22   BASE_NAME                      = WinNtBlockIo
     23   FILE_GUID                      = F479E147-A125-11d4-BCFC-0080C73C8881
     24   MODULE_TYPE                    = UEFI_DRIVER
     25   VERSION_STRING                 = 1.0
     26 
     27   ENTRY_POINT                    = InitializeWinNtBlockIo
     28 
     29 #

     30 # The following information is for reference only and not required by the build tools.

     31 #

     32 #  VALID_ARCHITECTURES           = IA32

     33 #

     34 #  DRIVER_BINDING                =  gWinNtBlockIoDriverBinding                   

     35 #  COMPONENT_NAME                =  gWinNtBlockIoComponentName                   

     36 #  DRIVER_DIAG                   =  gWinNtBlockIoDriverDiagnostics               

     37 #

     38 
     39 [Sources]
     40   DriverDiagnostics.c
     41   DriverConfiguration.c
     42   ComponentName.c
     43   WinNtBlockIo.c
     44   WinNtBlockIo.h
     45 
     46 
     47 [Packages]
     48   MdePkg/MdePkg.dec
     49   Nt32Pkg/Nt32Pkg.dec
     50 
     51 
     52 [LibraryClasses]
     53   MemoryAllocationLib
     54   UefiBootServicesTableLib
     55   BaseMemoryLib
     56   UefiLib
     57   UefiDriverEntryPoint
     58   BaseLib
     59   DebugLib
     60 
     61 
     62 [Guids]
     63   gEfiWinNtPhysicalDisksGuid                    # SOMETIMES_CONSUMED

     64   gEfiWinNtVirtualDisksGuid                     # ALWAYS_CONSUMED

     65 
     66 
     67 [Protocols]
     68   gEfiBlockIoProtocolGuid                       # PROTOCOL BY_START

     69   gEfiWinNtIoProtocolGuid                       # PROTOCOL TO_START

     70 
     71