]> git.proxmox.com Git - mirror_edk2.git/blob - UnixPkg/UnixBlockIoDxe/UnixBlockIo.inf
1. Correct File header to ## @file
[mirror_edk2.git] / UnixPkg / UnixBlockIoDxe / UnixBlockIo.inf
1 ## @file
2 # Block Io driver
3 #
4 # Produce block IO abstractions for real devices on your PC using Unix APIs.
5 # The configuration of what devices to mount or emulate comes from
6 # environment variables.
7 # Copyright (c) 2006 - 2010, 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 = UnixBlockIo
22 FILE_GUID = f3085888-8985-11db-9c93-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 = InitializeUnixBlockIo
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 = gUnixBlockIoDriverBinding
36 # COMPONENT_NAME = gUnixBlockIoComponentName
37 # DRIVER_DIAG = gUnixBlockIoDriverDiagnostics
38 #
39
40 [Sources]
41 DriverDiagnostics.c
42 DriverConfiguration.c
43 ComponentName.c
44 UnixBlockIo.c
45 UnixBlockIo.h
46 EntryPoint.c
47
48
49 [Packages]
50 MdePkg/MdePkg.dec
51 UnixPkg/UnixPkg.dec
52
53 [LibraryClasses]
54 UefiBootServicesTableLib
55 MemoryAllocationLib
56 BaseMemoryLib
57 UefiLib
58 UefiDriverEntryPoint
59 BaseLib
60 DebugLib
61
62
63 [Guids]
64 gEfiUnixPhysicalDisksGuid # SOMETIMES_CONSUMED
65 gEfiUnixVirtualDisksGuid # ALWAYS_CONSUMED
66
67
68 [Protocols]
69 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
70 gEfiUnixIoProtocolGuid # PROTOCOL TO_START
71