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