1 | # $Id: VBoxPeCoffLib.inf 69429 2017-10-27 13:27:03Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VBoxPeCoffLib.inf
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010-2016 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 | # The contents of this file may alternatively be used under the terms
|
---|
18 | # of the Common Development and Distribution License Version 1.0
|
---|
19 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | # CDDL are applicable instead of those of the GPL.
|
---|
22 | #
|
---|
23 | # You may elect to license modified versions of this file under the
|
---|
24 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | #
|
---|
26 |
|
---|
27 | # This code is based on:
|
---|
28 | #
|
---|
29 | #/** @file
|
---|
30 | # PE/COFF Loader Library implementation.
|
---|
31 | # The IPF version library supports loading IPF and EBC PE/COFF image.
|
---|
32 | # The IA32 version library support loading IA32, X64 and EBC PE/COFF images.
|
---|
33 | # The X64 version library support loading IA32, X64 and EBC PE/COFF images.
|
---|
34 | #
|
---|
35 | # Copyright (c) 2006 - 2009, Intel Corporation.<BR>
|
---|
36 | # Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>
|
---|
37 | #
|
---|
38 | # All rights reserved. This program and the accompanying materials
|
---|
39 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
40 | # which accompanies this distribution. The full text of the license may be found at
|
---|
41 | # http://opensource.org/licenses/bsd-license.php
|
---|
42 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
43 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
44 | #
|
---|
45 | #
|
---|
46 | #**/
|
---|
47 |
|
---|
48 | [Defines]
|
---|
49 | INF_VERSION = 0x00010005
|
---|
50 | BASE_NAME = VBoxPeCoffLib
|
---|
51 | FILE_GUID = 92e02078-d0ca-11de-a547-fb90b709a001
|
---|
52 | MODULE_TYPE = BASE
|
---|
53 | VERSION_STRING = 1.0
|
---|
54 | LIBRARY_CLASS = PeCoffLib
|
---|
55 |
|
---|
56 |
|
---|
57 | #
|
---|
58 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM
|
---|
59 | #
|
---|
60 |
|
---|
61 | [Sources.common]
|
---|
62 | BasePeCoffLibInternals.h
|
---|
63 | BasePeCoff.c
|
---|
64 | PeCoffLoaderEx.c
|
---|
65 |
|
---|
66 | [Packages]
|
---|
67 | VBoxPkg/VBoxPkg.dec
|
---|
68 | MdePkg/MdePkg.dec
|
---|
69 |
|
---|
70 | [LibraryClasses]
|
---|
71 | DebugLib
|
---|
72 | PeCoffExtraActionLib
|
---|
73 | BaseMemoryLib
|
---|
74 |
|
---|