]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Ebl/Ebl.inf
Adding support for BeagleBoard.
[mirror_edk2.git] / EmbeddedPkg / Ebl / Ebl.inf
1 #%HEADER%
2 #/** @file
3 # EBL Applicaiton
4 #
5 # This is a shell application that will display Hello World.
6 # Copyright (c) 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 = Ebl
26 FILE_GUID = 3CEF354A-3B7A-4519-AD70-72A134698311
27 MODULE_TYPE = UEFI_APPLICATION
28 VERSION_STRING = 1.0
29 ENTRY_POINT = EdkBootLoaderEntry
30
31 #
32 # The following information is for reference only and not required by the build tools.
33 #
34 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
35 #
36 [Sources.common]
37 Main.c
38 Command.c
39 EfiDevice.c
40 HwDebug.c
41 HwIoDebug.c
42 Dir.c
43 Hob.c
44 Script.c
45 Ebl.h
46 Network.c
47
48 [Packages]
49 MdePkg/MdePkg.dec
50 MdeModulePkg/MdeModulePkg.dec
51 IntelFrameworkPkg/IntelFrameworkPkg.dec
52 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
53 EmbeddedPkg/EmbeddedPkg.dec
54
55 [LibraryClasses]
56 DebugLib
57 UefiLib
58 UefiApplicationEntryPoint
59 UefiBootServicesTableLib
60 UefiRuntimeServicesTableLib
61 BaseMemoryLib
62 MemoryAllocationLib
63 DevicePathLib
64 IoLib
65 PrintLib
66 PcdLib
67 EfiFileLib
68 HobLib
69 BaseLib
70 EblCmdLib
71 EblNetworkLib
72
73 [LibraryClasses.ARM]
74 SemihostLib
75
76 [Protocols.common]
77 gEfiFirmwareVolume2ProtocolGuid
78 gEfiFirmwareVolumeBlockProtocolGuid
79 gEfiBlockIoProtocolGuid
80 gEfiSimpleFileSystemProtocolGuid
81 gEfiLoadFileProtocolGuid
82 gEfiLoadedImageProtocolGuid
83 gEfiPxeBaseCodeProtocolGuid
84 gEfiEblAddCommandProtocolGuid
85 gEfiDiskIoProtocolGuid
86 gEfiPciIoProtocolGuid
87 gEfiSimpleNetworkProtocolGuid
88
89 [Guids.common]
90 gEfiDxeServicesTableGuid
91 gEfiFileInfoGuid
92 gEfiHobMemoryAllocModuleGuid
93 gEfiMemoryTypeInformationGuid
94
95 [FeaturePcd.common]
96 gEmbeddedTokenSpaceGuid.PcdEmbeddedMacBoot
97 gEmbeddedTokenSpaceGuid.PcdEmbeddedDirCmd
98 gEmbeddedTokenSpaceGuid.PcdEmbeddedHobCmd
99 gEmbeddedTokenSpaceGuid.PcdEmbeddedHwDebugCmd
100 gEmbeddedTokenSpaceGuid.PcdEmbeddedIoEnable
101 gEmbeddedTokenSpaceGuid.PcdEmbeddedScriptCmd
102 gEmbeddedTokenSpaceGuid.PcdEmbeddedPciDebugCmd
103
104 [FixedPcd.common]
105 gEmbeddedTokenSpaceGuid.PcdEmbeddedAutomaticBootCommand
106 gEmbeddedTokenSpaceGuid.PcdEmbeddedDefaultTextColor
107 gEmbeddedTokenSpaceGuid.PcdEmbeddedMemVariableStoreSize
108 gEmbeddedTokenSpaceGuid.PcdEmbeddedShellCharacterEcho
109 gEmbeddedTokenSpaceGuid.PcdEmbeddedPrompt
110