]>
Commit | Line | Data |
---|---|---|
e81819a5 NC |
1 | /* BFD back-end for Intel IA-32 EFI runtime driver files. |
2 | Copyright 1999, 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. | |
3 | Contributed by Peter Jones <[email protected]> | |
4 | Based on efi-app-ia32.c by David Mosberger <[email protected]> | |
5 | ||
6 | This file is part of BFD, the Binary File Descriptor library. | |
7 | ||
8 | This program is free software; you can redistribute it and/or modify | |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 3 of the License, or | |
11 | (at your option) any later version. | |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
21 | MA 02110-1301, USA. */ | |
22 | ||
23 | #include "sysdep.h" | |
24 | #include "bfd.h" | |
25 | ||
26 | #define TARGET_SYM bfd_efi_rtdrv_ia32_vec | |
27 | #define TARGET_NAME "efi-rtdrv-ia32" | |
28 | #define COFF_IMAGE_WITH_PE | |
29 | #define COFF_WITH_PE | |
30 | #define PCRELOFFSET TRUE | |
31 | #define TARGET_UNDERSCORE '_' | |
32 | #define COFF_LONG_SECTION_NAMES | |
33 | #define PEI_TARGET_SUBSYSTEM IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER | |
34 | #define PEI_FORCE_MINIMUM_ALIGNMENT | |
35 | ||
36 | #include "coff-i386.c" |