]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / DiskIoDxe / DiskIoDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
48557c65 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
d1102dba
LG
10#\r
11# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 12# This program and the accompanying materials\r
adbcbf8f 13# are licensed and made available under the terms and conditions of the BSD License\r
f42be642 14# which accompanies this distribution. The full text of the license may be found at\r
adbcbf8f 15# http://opensource.org/licenses/bsd-license.php\r
d1102dba 16#\r
adbcbf8f 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
d1102dba 19#\r
6bfbb5f0 20##\r
adbcbf8f 21\r
adbcbf8f 22[Defines]\r
23 INF_VERSION = 0x00010005\r
24 BASE_NAME = DiskIoDxe\r
6036e94d 25 MODULE_UNI_FILE = DiskIoDxe.uni\r
adbcbf8f 26 FILE_GUID = 6B38F7B4-AD98-40e9-9093-ACA2B5A253C4\r
27 MODULE_TYPE = UEFI_DRIVER\r
28 VERSION_STRING = 1.0\r
adbcbf8f 29 ENTRY_POINT = InitializeDiskIo\r
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
35#\r
36# DRIVER_BINDING = gDiskIoDriverBinding\r
37# COMPONENT_NAME = gDiskIoComponentName\r
d354ab7f 38# COMPONENT_NAME2 = gDiskIoComponentName2\r
adbcbf8f 39#\r
40\r
6bfbb5f0 41[Sources]\r
adbcbf8f 42 ComponentName.c\r
43 DiskIo.h\r
44 DiskIo.c\r
45\r
46\r
adbcbf8f 47[Packages]\r
48 MdePkg/MdePkg.dec\r
e645bd85 49 MdeModulePkg/MdeModulePkg.dec\r
adbcbf8f 50\r
adbcbf8f 51[LibraryClasses]\r
52 UefiBootServicesTableLib\r
53 MemoryAllocationLib\r
54 BaseMemoryLib\r
55 BaseLib\r
56 UefiLib\r
57 UefiDriverEntryPoint\r
58 DebugLib\r
e645bd85 59 PcdLib\r
adbcbf8f 60\r
adbcbf8f 61[Protocols]\r
a503cc69 62 gEfiDiskIoProtocolGuid ## BY_START\r
493d8e3a 63 gEfiDiskIo2ProtocolGuid ## BY_START\r
a503cc69 64 gEfiBlockIoProtocolGuid ## TO_START\r
493d8e3a 65 gEfiBlockIo2ProtocolGuid ## TO_START\r
adbcbf8f 66\r
e645bd85 67[Pcd]\r
6036e94d
SZ
68 gEfiMdeModulePkgTokenSpaceGuid.PcdDiskIoDataBufferBlockNum ## SOMETIMES_CONSUMES\r
69\r
70[UserExtensions.TianoCore."ExtraFiles"]\r
71 DiskIoDxeExtra.uni\r