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