Home | History | Annotate | Download | only in WinNtBusDriverDxe
      1 ## @file

      2 # Win NT Bus driver

      3 #

      4 # This following section documents the envirnoment variables for the Win NT

      5 #  build. These variables are used to define the (virtual) hardware

      6 #  configuration of the NT environment

      7 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>

      8 #

      9 #  This program and the accompanying materials

     10 #  are licensed and made available under the terms and conditions of the BSD License

     11 #  which accompanies this distribution. The full text of the license may be found at

     12 #  http://opensource.org/licenses/bsd-license.php

     13 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     14 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     15 #

     16 #

     17 ##

     18 
     19 [Defines]
     20   INF_VERSION                    = 0x00010005
     21   BASE_NAME                      = WinNtBusDriverDxe
     22   FILE_GUID                      = BD7E9A27-D6C5-416a-B245-5F507D95B2BD
     23   MODULE_TYPE                    = UEFI_DRIVER
     24   VERSION_STRING                 = 1.0
     25 
     26   ENTRY_POINT                    = InitializeWinNtBusDriver
     27 
     28 #

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

     30 #

     31 #  VALID_ARCHITECTURES           = IA32

     32 #

     33 #  DRIVER_BINDING                =  gWinNtBusDriverBinding

     34 #  COMPONENT_NAME                =  gWinNtBusDriverComponentName

     35 #

     36 
     37 [Sources]
     38   ComponentName.c
     39   WinNtBusDriver.c
     40   WinNtBusDriver.h
     41 
     42 
     43 [Packages]
     44   MdePkg/MdePkg.dec
     45   Nt32Pkg/Nt32Pkg.dec
     46 
     47 
     48 [LibraryClasses]
     49   MemoryAllocationLib
     50   DevicePathLib
     51   UefiBootServicesTableLib
     52   BaseMemoryLib
     53   PcdLib
     54   UefiLib
     55   UefiDriverEntryPoint
     56   BaseLib
     57   DebugLib
     58 
     59 
     60 [Guids]
     61   gEfiWinNtConsoleGuid                          # ALWAYS_CONSUMED

     62   gEfiWinNtGopGuid                              # ALWAYS_CONSUMED

     63   gEfiWinNtSerialPortGuid                       # ALWAYS_CONSUMED

     64   gEfiWinNtFileSystemGuid                       # ALWAYS_CONSUMED

     65   gEfiWinNtPhysicalDisksGuid                    # ALWAYS_CONSUMED

     66   gEfiWinNtVirtualDisksGuid                     # ALWAYS_CONSUMED

     67 
     68 
     69 [Protocols]
     70   gWinNtBusDriverGuid                           # PROTOCOL BY_START

     71   gEfiDevicePathProtocolGuid                    # PROTOCOL BY_START

     72   gEfiWinNtThunkProtocolGuid                    # PROTOCOL TO_START

     73   gEfiWinNtIoProtocolGuid                       # PROTOCOL BY_START

     74 
     75 
     76 [Pcd]
     77   gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize
     78   gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk
     79   gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk
     80   gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem
     81   gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort
     82   gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop
     83   gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga
     84   gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole
     85 
     86