]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DebugPortDxe/DebugPortDxe.inf
Adjust directory structures.
[mirror_edk2.git] / MdeModulePkg / Universal / DebugPortDxe / DebugPortDxe.inf
1 #/** @file
2 # Component description file for DebugPort module.
3 #
4 # This driver binds exclusively to serial io on the controller handle,
5 # and initializes serial Io interface, publishs DebugPort and device path Protocol.
6 # Copyright (c) 2006 - 2007, Intel Corporation
7 #
8 # All rights reserved. This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 #
16 #**/
17
18 ################################################################################
19 #
20 # Defines Section - statements that will be processed to create a Makefile.
21 #
22 ################################################################################
23 [Defines]
24 INF_VERSION = 0x00010005
25 BASE_NAME = DebugPortDxe
26 FILE_GUID = 73E9457A-CEA1-4917-9A9C-9F1F0F0FD322
27 MODULE_TYPE = UEFI_DRIVER
28 VERSION_STRING = 1.0
29 EDK_RELEASE_VERSION = 0x00020000
30 EFI_SPECIFICATION_VERSION = 0x00020000
31
32 ENTRY_POINT = InitializeDebugPortDriver
33 UNLOAD_IMAGE = ImageUnloadHandler
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
39 #
40 # DRIVER_BINDING = gDebugPortDriverBinding
41 # COMPONENT_NAME = gDebugPortComponentName
42 # Variable Guid C Name: gEfiDebugPortProtocolGuid Variable Name: L"DEBUGPORT"
43 #
44 #
45
46 ################################################################################
47 #
48 # Sources Section - list of files that are required for the build to succeed.
49 #
50 ################################################################################
51
52 [Sources.common]
53 ComponentName.c
54 DebugPort.c
55 DebugPort.h
56
57
58 ################################################################################
59 #
60 # Package Dependency Section - list of Package files that are required for
61 # this module.
62 #
63 ################################################################################
64
65 [Packages]
66 MdePkg/MdePkg.dec
67
68
69 ################################################################################
70 #
71 # Library Class Section - list of Library Classes that are required for
72 # this module.
73 #
74 ################################################################################
75
76 [LibraryClasses]
77 DevicePathLib
78 UefiRuntimeServicesTableLib
79 UefiBootServicesTableLib
80 MemoryAllocationLib
81 BaseMemoryLib
82 UefiLib
83 UefiDriverEntryPoint
84 DebugLib
85
86
87 ################################################################################
88 #
89 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
90 # that this module uses or produces.
91 #
92 ################################################################################
93
94 [Protocols]
95 gEfiDriverBindingProtocolGuid # PROTOCOL ALWAYS_CONSUMED
96 gEfiComponentNameProtocolGuid # PROTOCOL ALWAYS_CONSUMED
97 gEfiSerialIoProtocolGuid # PROTOCOL TO_START
98 gEfiDevicePathProtocolGuid # PROTOCOL BY_START
99 gEfiDebugPortProtocolGuid # PROTOCOL BY_START
100
101
102 ################################################################################
103 #
104 # Dependency Expression Section - list of Dependency expressions that are required for
105 # this module.
106 #
107 ################################################################################
108
109 [Depex]
110 TRUE
111