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