summaryrefslogtreecommitdiff
path: root/libebl
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2013-11-26 03:10:31 +0100
committerPetr Machata <pmachata@redhat.com>2013-11-26 03:10:31 +0100
commit98c8a7395b4e5e7bed233397148b15c1f8c66490 (patch)
treee9fe459b4320c3045cc6bf7fc3e97baa85f5f5c9 /libebl
parenta47a096e2b8105326c5c58d1f50afcaefff968a0 (diff)
downloadelfutils-98c8a7395b4e5e7bed233397148b15c1f8c66490.tar.gz
Support AArch64 architecture
Signed-off-by: Petr Machata <pmachata@redhat.com>
Diffstat (limited to 'libebl')
-rw-r--r--libebl/ChangeLog4
-rw-r--r--libebl/eblopenbackend.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/libebl/ChangeLog b/libebl/ChangeLog
index eed4481e..a5c9dae1 100644
--- a/libebl/ChangeLog
+++ b/libebl/ChangeLog
@@ -1,3 +1,7 @@
+2013-11-25 Petr Machata <pmachata@redhat.com>
+
+ * eblopenbackend.c (machines): Add entry for AArch64.
+
2013-11-14 Jan Kratochvil <jan.kratochvil@redhat.com>
Code cleanup: Remove const in prototype
diff --git a/libebl/eblopenbackend.c b/libebl/eblopenbackend.c
index ed0c0ffe..c19ae1b2 100644
--- a/libebl/eblopenbackend.c
+++ b/libebl/eblopenbackend.c
@@ -1,5 +1,5 @@
/* Generate ELF backend handle.
- Copyright (C) 2000-2011 Red Hat, Inc.
+ Copyright (C) 2000-2013 Red Hat, Inc.
This file is part of elfutils.
This file is free software; you can redistribute it and/or modify
@@ -131,6 +131,7 @@ static const struct
{ "openrisc", "elf_openrisc", "openrisc", 8, EM_OPENRISC, 0, 0 },
{ "arc", "elf_arc_a5", "arc_a5", 6, EM_ARC_A5, 0, 0 },
{ "xtensa", "elf_xtensa", "xtensa", 6, EM_XTENSA, 0, 0 },
+ { "aarch64", "elf_aarch64", "aarch64", 7, EM_AARCH64, ELFCLASS64, 0 },
};
#define nmachines (sizeof (machines) / sizeof (machines[0]))