Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 1 | #/** @file
|
| 2 | #
|
| 3 | # Component description file for DxeIpl module
|
| 4 | #
|
| 5 | # The responsibility of this module is to load the DXE Core from a Firmware Volume. This implementation i used to load a 32-bit DXE Core.
|
| 6 | #
|
| 7 | # Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
| 8 | # 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 | #
|
| 13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 15 | #
|
| 16 | #**/
|
| 17 |
|
| 18 | [Defines]
|
| 19 | INF_VERSION = 0x00010005
|
| 20 | BASE_NAME = TemplateSec
|
| 21 | FILE_GUID = 1D6F730F-5A55-4078-869B-E0A18324BDC8
|
| 22 | MODULE_TYPE = SEC
|
| 23 | VERSION_STRING = 1.0
|
| 24 |
|
| 25 |
|
| 26 | #
|
| 27 | # The following information is for reference only and not required by the build tools.
|
| 28 | #
|
| 29 | # VALID_ARCHITECTURES = IA32 X64 ARM
|
| 30 | #
|
| 31 |
|
| 32 | [Sources.common]
|
| 33 | TemplateSec.c
|
| 34 |
|
| 35 | [Sources.Ia32]
|
| 36 | # Ia32/ResetVector.asm | MSFT
|
| 37 | # Ia32/ResetVector.S | GCC
|
| 38 |
|
| 39 | [Sources.X64]
|
| 40 | # X64/ResetVector.asm | MSFT
|
| 41 | # X64/ResetVector.S | GCC
|
| 42 |
|
| 43 | [Sources.ARM]
|
| 44 | # Arm/ResetVector.asm | RVCT
|
| 45 | # Arm/ResetVector.S | GCC
|
| 46 |
|
| 47 | [Packages]
|
| 48 | MdePkg/MdePkg.dec
|
| 49 | MdeModulePkg/MdeModulePkg.dec
|
| 50 | EmbeddedPkg/EmbeddedPkg.dec
|
| 51 |
|
| 52 |
|
| 53 | [LibraryClasses]
|
| 54 | BaseLib
|
| 55 | DebugLib
|
| 56 | BaseMemoryLib
|
| 57 | UefiDecompressLib
|
| 58 | PeCoffLib
|
| 59 | CacheMaintenanceLib
|
| 60 | PrePiLib
|
| 61 |
|
| 62 | [Pcd]
|
| 63 | gEmbeddedTokenSpaceGuid.PcdEmbeddedFdBaseAddress
|
| 64 | gEmbeddedTokenSpaceGuid.PcdEmbeddedFdSize
|
| 65 |
|