]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.inf
832de945c174ee93bb4a500bb3274eff5831d52c
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / Partition / Dxe / Partition.inf
1 #/** @file
2 # Component description file for Partition module.
3 #
4 # Partition driver produces the logical BlockIo device
5 # that represents the bytes Start to End of the Parent Block IO
6 # device (one partition of physical BlockIo device,
7 # which can be one of GPT, MBR, ElTorito partition).
8 # Copyright (c) 2006 - 2007, Intel Corporation
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #
17 #
18 #**/
19
20 ################################################################################
21 #
22 # Defines Section - statements that will be processed to create a Makefile.
23 #
24 ################################################################################
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = Partition
28 FILE_GUID = 1FA1F39E-FEFF-4aae-BD7B-38A070A3B609
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 EDK_RELEASE_VERSION = 0x00020000
32 EFI_SPECIFICATION_VERSION = 0x00020000
33
34 ENTRY_POINT = InitializePartition
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
40 #
41 # DRIVER_BINDING = gPartitionDriverBinding
42 # COMPONENT_NAME = gPartitionComponentName
43 #
44
45 ################################################################################
46 #
47 # Sources Section - list of files that are required for the build to succeed.
48 #
49 ################################################################################
50
51 [Sources.common]
52 ComponentName.c
53 Mbr.c
54 Gpt.c
55 ElTorito.c
56 Partition.c
57 Partition.h
58 CommonHeader.h
59 EntryPoint.c
60
61
62 ################################################################################
63 #
64 # Includes Section - list of Include locations that are required for
65 # this module.
66 #
67 ################################################################################
68
69 [Includes]
70 $(WORKSPACE)/MdePkg\Include/Library
71
72 ################################################################################
73 #
74 # Package Dependency Section - list of Package files that are required for
75 # this module.
76 #
77 ################################################################################
78
79 [Packages]
80 MdePkg/MdePkg.dec
81
82
83 ################################################################################
84 #
85 # Library Class Section - list of Library Classes that are required for
86 # this module.
87 #
88 ################################################################################
89
90 [LibraryClasses]
91 DevicePathLib
92 UefiBootServicesTableLib
93 MemoryAllocationLib
94 BaseMemoryLib
95 UefiLib
96 BaseLib
97 UefiDriverEntryPoint
98 DebugLib
99
100
101 ################################################################################
102 #
103 # Guid C Name Section - list of Guids that this module uses or produces.
104 #
105 ################################################################################
106
107 [Guids]
108 gEfiPartTypeUnusedGuid # SOMETIMES_CONSUMED
109 gEfiPartTypeSystemPartGuid # SOMETIMES_CONSUMED
110
111
112 ################################################################################
113 #
114 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
115 # that this module uses or produces.
116 #
117 ################################################################################
118
119 [Protocols]
120 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
121 gEfiDevicePathProtocolGuid # PROTOCOL BY_START
122 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
123 gEfiDiskIoProtocolGuid # PROTOCOL TO_START
124 gEfiBlockIoProtocolGuid # PROTOCOL TO_START
125