]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / PartitionDxe / PartitionDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
48557c65 2# Modules that produces the logic Block I/O protocol for every partition\r
3# it discovers via the physical Block I/O.\r
4#\r
5# This module produces the logical Block I/O device that represents\r
6# the bytes from Start to End of the Parent Block I/O device.\r
7# The partition of physical BlockIo device supported is one of legacy MBR, GPT,\r
8# and "El Torito" partitions.\r
f42be642 9# \r
e5eed7d3
HT
10# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
11# This program and the accompanying materials\r
adbcbf8f 12# are licensed and made available under the terms and conditions of the BSD License\r
f42be642 13# which accompanies this distribution. The full text of the license may be found at\r
adbcbf8f 14# http://opensource.org/licenses/bsd-license.php\r
f42be642 15# \r
adbcbf8f 16# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
f42be642 18# \r
6bfbb5f0 19##\r
adbcbf8f 20\r
adbcbf8f 21[Defines]\r
22 INF_VERSION = 0x00010005\r
23 BASE_NAME = PartitionDxe\r
24 FILE_GUID = 1FA1F39E-FEFF-4aae-BD7B-38A070A3B609\r
25 MODULE_TYPE = UEFI_DRIVER\r
26 VERSION_STRING = 1.0\r
adbcbf8f 27 ENTRY_POINT = InitializePartition\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
33#\r
48557c65 34# DRIVER_BINDING = gPartitionDriverBinding\r
35# COMPONENT_NAME = gPartitionComponentName\r
36# COMPONENT_NAME2 = gPartitionComponentName2\r
adbcbf8f 37#\r
38\r
6bfbb5f0 39[Sources]\r
adbcbf8f 40 ComponentName.c\r
41 Mbr.c\r
42 Gpt.c\r
43 ElTorito.c\r
44 Partition.c\r
45 Partition.h\r
46\r
47\r
adbcbf8f 48[Packages]\r
49 MdePkg/MdePkg.dec\r
50\r
51\r
adbcbf8f 52[LibraryClasses]\r
53 DevicePathLib\r
54 UefiBootServicesTableLib\r
55 MemoryAllocationLib\r
56 BaseMemoryLib\r
57 UefiLib\r
58 BaseLib\r
59 UefiDriverEntryPoint\r
60 DebugLib\r
61\r
62\r
adbcbf8f 63[Guids]\r
a503cc69 64 gEfiPartTypeUnusedGuid ## SOMETIMES_CONSUMES ## GUID\r
65 gEfiPartTypeSystemPartGuid ## SOMETIMES_CONSUMES ## Protocol\r
adbcbf8f 66\r
67\r
adbcbf8f 68[Protocols]\r
a503cc69 69 gEfiBlockIoProtocolGuid ## BY_START\r
70 gEfiDevicePathProtocolGuid ## BY_START\r
71 gEfiDiskIoProtocolGuid ## BY_START\r
72 gEfiBlockIoProtocolGuid ## TO_START\r
73 gEfiDevicePathProtocolGuid ## TO_START\r
74 gEfiDiskIoProtocolGuid ## TO_START\r