Deleted Added
full compact
libelftc_bfdtarget.c (280932) libelftc_bfdtarget.c (295577)
1/*-
2 * Copyright (c) 2008,2009 Kai Wang
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 */
26
27#include <sys/param.h>
28#include <libelf.h>
29#include <libelftc.h>
30
31#include "_libelftc.h"
32
1/*-
2 * Copyright (c) 2008,2009 Kai Wang
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 16 unchanged lines hidden (view full) ---

25 */
26
27#include <sys/param.h>
28#include <libelf.h>
29#include <libelftc.h>
30
31#include "_libelftc.h"
32
33ELFTC_VCSID("$Id: libelftc_bfdtarget.c 3174 2015-03-27 17:13:41Z emaste $");
33ELFTC_VCSID("$Id: libelftc_bfdtarget.c 3309 2016-01-10 09:10:51Z kaiwang27 $");
34
35struct _Elftc_Bfd_Target _libelftc_targets[] = {
36
37 {
38 .bt_name = "binary",
39 .bt_type = ETF_BINARY,
40 },
41

--- 328 unchanged lines hidden (view full) ---

370 },
371
372 {
373 .bt_name = "symbolsrec",
374 .bt_type = ETF_SREC,
375 },
376
377 {
34
35struct _Elftc_Bfd_Target _libelftc_targets[] = {
36
37 {
38 .bt_name = "binary",
39 .bt_type = ETF_BINARY,
40 },
41

--- 328 unchanged lines hidden (view full) ---

370 },
371
372 {
373 .bt_name = "symbolsrec",
374 .bt_type = ETF_SREC,
375 },
376
377 {
378 .bt_name = "efi-app-ia32",
379 .bt_type = ETF_EFI,
380 .bt_machine = EM_386,
381 },
382
383 {
384 .bt_name = "efi-app-x86_64",
385 .bt_type = ETF_EFI,
386 .bt_machine = EM_X86_64,
387 },
388
389 {
390 .bt_name = "pei-i386",
391 .bt_type = ETF_PE,
392 .bt_machine = EM_386,
393 },
394
395 {
396 .bt_name = "pei-x86-64",
397 .bt_type = ETF_PE,
398 .bt_machine = EM_X86_64,
399 },
400
401 {
378 .bt_name = NULL,
379 .bt_type = ETF_NONE,
380 },
381};
402 .bt_name = NULL,
403 .bt_type = ETF_NONE,
404 },
405};