]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
remove some comments introduced by tools.
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / PartitionDxe / PartitionDxe.inf
CommitLineData
adbcbf8f 1#/** @file\r
2# Component description file for Partition module.\r
3#\r
4# Partition driver produces the logical BlockIo device\r
5# that represents the bytes Start to End of the Parent Block IO\r
6# device (one partition of physical BlockIo device,\r
7# which can be one of GPT, MBR, ElTorito partition).\r
8#\r
9# Copyright (c) 2006 - 2007, Intel Corporation\r
10# All rights reserved. This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14#\r
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17#\r
18#\r
19#**/\r
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
27 EDK_RELEASE_VERSION = 0x00020000\r
28 EFI_SPECIFICATION_VERSION = 0x00020000\r
29\r
30 ENTRY_POINT = InitializePartition\r
31\r
32#\r
33# The following information is for reference only and not required by the build tools.\r
34#\r
35# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
36#\r
37# DRIVER_BINDING = gPartitionDriverBinding\r
38# COMPONENT_NAME = gPartitionComponentName\r
39#\r
40\r
adbcbf8f 41[Sources.common]\r
42 ComponentName.c\r
43 Mbr.c\r
44 Gpt.c\r
45 ElTorito.c\r
46 Partition.c\r
47 Partition.h\r
48\r
49\r
adbcbf8f 50[Packages]\r
51 MdePkg/MdePkg.dec\r
52\r
53\r
adbcbf8f 54[LibraryClasses]\r
55 DevicePathLib\r
56 UefiBootServicesTableLib\r
57 MemoryAllocationLib\r
58 BaseMemoryLib\r
59 UefiLib\r
60 BaseLib\r
61 UefiDriverEntryPoint\r
62 DebugLib\r
63\r
64\r
adbcbf8f 65[Guids]\r
66 gEfiPartTypeUnusedGuid # SOMETIMES_CONSUMED\r
67 gEfiPartTypeSystemPartGuid # SOMETIMES_CONSUMED\r
68\r
69\r
adbcbf8f 70[Protocols]\r
71 gEfiBlockIoProtocolGuid # PROTOCOL BY_START\r
72 gEfiDevicePathProtocolGuid # PROTOCOL BY_START\r
73 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
74 gEfiDiskIoProtocolGuid # PROTOCOL TO_START\r
75 gEfiBlockIoProtocolGuid # PROTOCOL TO_START\r
76\r