]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
Update the copyright notice format
[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
f42be642 10# \r
e5eed7d3
HT
11# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
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
f42be642 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
f42be642 19# \r
6bfbb5f0 20##\r
adbcbf8f 21\r
adbcbf8f 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
adbcbf8f 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
d354ab7f 37# COMPONENT_NAME2 = gDiskIoComponentName2\r
adbcbf8f 38#\r
39\r
6bfbb5f0 40[Sources]\r
adbcbf8f 41 ComponentName.c\r
42 DiskIo.h\r
43 DiskIo.c\r
44\r
45\r
adbcbf8f 46[Packages]\r
47 MdePkg/MdePkg.dec\r
48\r
49\r
adbcbf8f 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
adbcbf8f 60[Protocols]\r
a503cc69 61 gEfiDiskIoProtocolGuid ## BY_START\r
62 gEfiBlockIoProtocolGuid ## TO_START\r
adbcbf8f 63\r