]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/UnixBusDriverDxe/UnixBusDriver.inf
update file header
[mirror_edk2.git] / UnixPkg / UnixBusDriverDxe / UnixBusDriver.inf
1 #/** @file
2 # Unix 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, 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 = UnixBusDriver
22 FILE_GUID = f320d656-8985-11db-90e0-0040d02b1835
23 MODULE_TYPE = UEFI_DRIVER
24 VERSION_STRING = 1.0
25 EDK_RELEASE_VERSION = 0x00020000
26 EFI_SPECIFICATION_VERSION = 0x00020000
27
28 ENTRY_POINT = InitializeUnixBusDriver
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
34 #
35 # DRIVER_BINDING = gUnixBusDriverBinding
36 # COMPONENT_NAME = gUnixBusDriverComponentName
37 #
38
39 [Sources.common]
40 ComponentName.c
41 UnixBusDriver.c
42 UnixBusDriver.h
43 EntryPoint.c
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48 UnixPkg/UnixPkg.dec
49
50
51 [LibraryClasses]
52 DevicePathLib
53 UefiBootServicesTableLib
54 MemoryAllocationLib
55 BaseMemoryLib
56 PcdLib
57 UefiLib
58 UefiDriverEntryPoint
59 BaseLib
60 DebugLib
61
62
63 [Guids]
64 gEfiUnixConsoleGuid # ALWAYS_CONSUMED
65 gEfiUnixUgaGuid # ALWAYS_CONSUMED
66 gEfiUnixSerialPortGuid # ALWAYS_CONSUMED
67 gEfiUnixFileSystemGuid # ALWAYS_CONSUMED
68 gEfiUnixPhysicalDisksGuid # ALWAYS_CONSUMED
69 gEfiUnixVirtualDisksGuid # ALWAYS_CONSUMED
70 gEfiUnixCPUModelGuid
71 gEfiUnixCPUSpeedGuid
72 gEfiUnixMemoryGuid
73
74
75 [Protocols]
76 gPcdProtocolGuid # PROTOCOL ALWAYS_CONSUMED
77 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
78 gEfiUnixThunkProtocolGuid # PROTOCOL TO_START
79 gEfiUnixIoProtocolGuid # PROTOCOL BY_START
80
81
82 [Pcd.common]
83 gEfiUnixPkgTokenSpaceGuid.PcdUnixSerialPort
84 gEfiUnixPkgTokenSpaceGuid.PcdUnixMemorySize
85 gEfiUnixPkgTokenSpaceGuid.PcdUnixCpuSpeed
86 gEfiUnixPkgTokenSpaceGuid.PcdUnixCpuModel
87 gEfiUnixPkgTokenSpaceGuid.PcdUnixPhysicalDisk
88 gEfiUnixPkgTokenSpaceGuid.PcdUnixVirtualDisk
89 gEfiUnixPkgTokenSpaceGuid.PcdUnixFileSystem
90 gEfiUnixPkgTokenSpaceGuid.PcdUnixUga
91 gEfiUnixPkgTokenSpaceGuid.PcdUnixConsole
92