bfd/ChangeLog
[deliverable/binutils-gdb.git] / bfd / efi-bsdrv-x86_64.c
CommitLineData
e81819a5 1/* BFD back-end for Intel64 UEFI Boot Service driver files.
88183869 2 Copyright 1999, 2000, 2001, 2002, 2007, 2008, 2009 Free Software Foundation, Inc.
e81819a5
NC
3 Contributed by Peter Jones <pjones@redhat.com>
4 Based on efi-app-x86_64.c by David Mosberger <davidm@hpl.hp.com>
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_bsdrv_x86_64_vec
27#define TARGET_NAME "efi-bsdrv-x86_64"
28#define COFF_IMAGE_WITH_PE
29#define COFF_WITH_PE
30#define COFF_WITH_pep
31#define PCRELOFFSET TRUE
32#define TARGET_UNDERSCORE '_'
88183869
DK
33/* Long section names not allowed in executable images, only object files. */
34#define COFF_LONG_SECTION_NAMES 0
e81819a5
NC
35#define PEI_TARGET_SUBSYSTEM IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
36#define PEI_FORCE_MINIMUM_ALIGNMENT
37
38#include "coff-x86_64.c"
This page took 0.062346 seconds and 4 git commands to generate.