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