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