]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Disk/Partition/Dxe/Partition.inf
add modules DiskIo, Partition and SecurityStub.
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / Partition / Dxe / Partition.inf
CommitLineData
79840ee1 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# Copyright (c) 2006 - 2007, Intel Corporation\r
9#\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# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
18#**/\r
19\r
20################################################################################\r
21#\r
22# Defines Section - statements that will be processed to create a Makefile.\r
23#\r
24################################################################################\r
25[Defines]\r
26 INF_VERSION = 0x00010005\r
27 BASE_NAME = Partition\r
28 FILE_GUID = 1FA1F39E-FEFF-4aae-BD7B-38A070A3B609\r
29 MODULE_TYPE = UEFI_DRIVER\r
30 VERSION_STRING = 1.0\r
31 EDK_RELEASE_VERSION = 0x00020000\r
32 EFI_SPECIFICATION_VERSION = 0x00020000\r
33\r
34 ENTRY_POINT = InitializePartition\r
35\r
36#\r
37# The following information is for reference only and not required by the build tools.\r
38#\r
39# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
40#\r
41# DRIVER_BINDING = gPartitionDriverBinding \r
42# COMPONENT_NAME = gPartitionComponentName \r
43#\r
44\r
45################################################################################\r
46#\r
47# Sources Section - list of files that are required for the build to succeed.\r
48#\r
49################################################################################\r
50\r
51[Sources.common]\r
52 ComponentName.c\r
53 Mbr.c\r
54 Gpt.c\r
55 ElTorito.c\r
56 Partition.c\r
57 Partition.h\r
58 CommonHeader.h\r
59 EntryPoint.c\r
60\r
61\r
62################################################################################\r
63#\r
64# Includes Section - list of Include locations that are required for\r
65# this module.\r
66#\r
67################################################################################\r
68\r
69[Includes]\r
70 $(WORKSPACE)/MdePkg\Include/Library\r
71\r
72################################################################################\r
73#\r
74# Package Dependency Section - list of Package files that are required for\r
75# this module.\r
76#\r
77################################################################################\r
78\r
79[Packages]\r
80 MdePkg/MdePkg.dec\r
81\r
82\r
83################################################################################\r
84#\r
85# Library Class Section - list of Library Classes that are required for\r
86# this module.\r
87#\r
88################################################################################\r
89\r
90[LibraryClasses]\r
91 DevicePathLib\r
92 UefiBootServicesTableLib\r
93 MemoryAllocationLib\r
94 BaseMemoryLib\r
95 UefiLib\r
96 BaseLib\r
97 UefiDriverEntryPoint\r
98 DebugLib\r
99\r
100\r
101################################################################################\r
102#\r
103# Guid C Name Section - list of Guids that this module uses or produces.\r
104#\r
105################################################################################\r
106\r
107[Guids]\r
108 gEfiPartTypeUnusedGuid # SOMETIMES_CONSUMED\r
109 gEfiPartTypeSystemPartGuid # SOMETIMES_CONSUMED\r
110\r
111\r
112################################################################################\r
113#\r
114# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
115# that this module uses or produces.\r
116#\r
117################################################################################\r
118\r
119[Protocols]\r
120 gEfiBlockIoProtocolGuid # PROTOCOL BY_START\r
121 gEfiDevicePathProtocolGuid # PROTOCOL BY_START\r
122 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
123 gEfiDiskIoProtocolGuid # PROTOCOL TO_START\r
124 gEfiBlockIoProtocolGuid # PROTOCOL TO_START\r
125\r