]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - EmbeddedPkg/GdbStub/GdbStub.inf
Adding support for BeagleBoard.
[mirror_edk2.git] / EmbeddedPkg / GdbStub / GdbStub.inf
... / ...
CommitLineData
1#%HEADER%\r
2#/** @file\r
3# UEFI GDB stub\r
4#\r
5# This is a shell application that will display Hello World.\r
6# Copyright (c) 2008, Apple, Inc.\r
7#\r
8# All rights reserved. This program and the accompanying materials\r
9# are licensed and made available under the terms and conditions of the BSD License\r
10# which accompanies this distribution. The full text of the license may be found at\r
11# http://opensource.org/licenses/bsd-license.php\r
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14#\r
15#\r
16#**/\r
17\r
18################################################################################\r
19#\r
20# Defines Section - statements that will be processed to create a Makefile.\r
21#\r
22################################################################################\r
23[Defines]\r
24 INF_VERSION = 0x00010005\r
25 BASE_NAME = GdbStub\r
26 FILE_GUID = 1F2CCB4F-D817-404E-98E7-80E4851FB33E\r
27 MODULE_TYPE = UEFI_DRIVER\r
28 VERSION_STRING = 1.0\r
29\r
30 ENTRY_POINT = GdbStubEntry\r
31\r
32[Sources.common]\r
33 GdbStub.c\r
34 SerialIo.c\r
35\r
36[Sources.ARM]\r
37 Arm/Processor.c\r
38 \r
39[Sources.IA32]\r
40 Ia32/Processor.c\r
41 \r
42[Sources.X64]\r
43 X64/Processor.c\r
44 \r
45 \r
46[Packages]\r
47 MdePkg/MdePkg.dec\r
48 EmbeddedPkg/EmbeddedPkg.dec\r
49 \r
50[LibraryClasses]\r
51 BaseLib \r
52 DebugLib \r
53 UefiLib \r
54 UefiDriverEntryPoint \r
55 UefiBootServicesTableLib \r
56 UefiRuntimeServicesTableLib \r
57 BaseMemoryLib \r
58 MemoryAllocationLib \r
59 DevicePathLib \r
60 PcdLib \r
61 GdbSerialLib\r
62 PrintLib\r
63 CacheMaintenanceLib\r
64\r
65\r
66[Protocols] \r
67 gEfiDebugSupportProtocolGuid \r
68 gEfiDebugPortProtocolGuid \r
69 gEfiSerialIoProtocolGuid \r
70 \r
71[Guids]\r
72 gEfiDebugImageInfoTableGuid\r
73\r
74[FeaturePcd.common]\r
75 gEmbeddedTokenSpaceGuid.PcdGdbSerial\r
76\r
77[FixedPcd.common]\r
78 gEmbeddedTokenSpaceGuid.PcdGdbMaxPacketRetryCount\r