]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
Add DiskIo2 protocol definition to MdePkg.
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / DiskIoDxe / DiskIoDxe.inf
1 ## @file
2 # Module that lays Disk I/O protocol on every Block I/O protocol.
3 #
4 # This module produces Disk I/O protocol to abstract the block accesses
5 # of the Block I/O protocol to a more general offset-length protocol
6 # to provide byte-oriented access to block media. It adds this protocol
7 # to any Block I/O interface that appears in the system that does not
8 # already have a Disk I/O protocol. File systems and other disk access
9 # code utilize the Disk I/O protocol.
10 #
11 # Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
12 # This program and the accompanying materials
13 # are licensed and made available under the terms and conditions of the BSD License
14 # which accompanies this distribution. The full text of the license may be found at
15 # http://opensource.org/licenses/bsd-license.php
16 #
17 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 #
20 ##
21
22 [Defines]
23 INF_VERSION = 0x00010005
24 BASE_NAME = DiskIoDxe
25 FILE_GUID = 6B38F7B4-AD98-40e9-9093-ACA2B5A253C4
26 MODULE_TYPE = UEFI_DRIVER
27 VERSION_STRING = 1.0
28 ENTRY_POINT = InitializeDiskIo
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 = gDiskIoDriverBinding
36 # COMPONENT_NAME = gDiskIoComponentName
37 # COMPONENT_NAME2 = gDiskIoComponentName2
38 #
39
40 [Sources]
41 ComponentName.c
42 DiskIo.h
43 DiskIo.c
44
45
46 [Packages]
47 MdePkg/MdePkg.dec
48
49
50 [LibraryClasses]
51 UefiBootServicesTableLib
52 MemoryAllocationLib
53 BaseMemoryLib
54 BaseLib
55 UefiLib
56 UefiDriverEntryPoint
57 DebugLib
58
59
60 [Protocols]
61 gEfiDiskIoProtocolGuid ## BY_START
62 gEfiDiskIo2ProtocolGuid ## BY_START
63 gEfiBlockIoProtocolGuid ## TO_START
64 gEfiBlockIo2ProtocolGuid ## TO_START
65