]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf
0518a963b426b2de58c2576697629b0e67ec6b97
[mirror_edk2.git] / Nt32Pkg / WinNtBusDriverDxe / WinNtBusDriverDxe.inf
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 - 2007, Intel Corporation
8 #
9 # All rights reserved. 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 EDK_RELEASE_VERSION = 0x00020000
26 EFI_SPECIFICATION_VERSION = 0x00020000
27
28 ENTRY_POINT = InitializeWinNtBusDriver
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32
34 #
35 # DRIVER_BINDING = gWinNtBusDriverBinding
36 # COMPONENT_NAME = gWinNtBusDriverComponentName
37 #
38
39 [Sources.common]
40 ComponentName.c
41 WinNtBusDriver.c
42 WinNtBusDriver.h
43
44
45 [Packages]
46 MdePkg/MdePkg.dec
47 Nt32Pkg/Nt32Pkg.dec
48
49
50 [LibraryClasses]
51 MemoryAllocationLib
52 DevicePathLib
53 UefiBootServicesTableLib
54 BaseMemoryLib
55 PcdLib
56 UefiLib
57 UefiDriverEntryPoint
58 BaseLib
59 DebugLib
60
61
62 [Guids]
63 gEfiWinNtConsoleGuid # ALWAYS_CONSUMED
64 gEfiWinNtGopGuid # ALWAYS_CONSUMED
65 gEfiWinNtSerialPortGuid # ALWAYS_CONSUMED
66 gEfiWinNtFileSystemGuid # ALWAYS_CONSUMED
67 gEfiWinNtPhysicalDisksGuid # ALWAYS_CONSUMED
68 gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED
69
70
71 [Protocols]
72 gWinNtBusDriverGuid # PROTOCOL BY_START
73 gEfiDevicePathProtocolGuid # PROTOCOL BY_START
74 gEfiWinNtThunkProtocolGuid # PROTOCOL TO_START
75 gEfiWinNtIoProtocolGuid # PROTOCOL BY_START
76
77
78 [Pcd.common]
79 gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize
80 gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk
81 gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk
82 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem
83 gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort
84 gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop
85 gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga
86 gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole
87