summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog11
-rw-r--r--binutils/ChangeLog6
-rw-r--r--elfcpp/ChangeLog4
-rw-r--r--include/ChangeLog4
-rw-r--r--ld/ChangeLog8
5 files changed, 33 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f9d1a7006af..b8624c8be69 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -190,6 +190,17 @@
allocation so that loops can be caught. Check for NULL pointers
when processing a group list.
+2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * elf-s390.h: New file.
+ * elf64-s390.c (struct elf_s390_link_hash_table): Add params
+ field.
+ (elf_s390_additional_program_headers): New function.
+ (elf_s390_modify_segment_map): New function.
+ (bfd_elf_s390_set_options): New function.
+ (elf_backend_additional_program_headers)
+ (elf_backend_modify_segment_map): Add macro definitions.
+
2017-06-19 H.J. Lu <hongjiu.lu@intel.com>
PR ld/21626
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 4acd26b2f74..cc4003cb4f5 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -49,6 +49,12 @@
(display_debug_frames): Use an unsigned int for the 'reg'
variable. Use a signed long for the 'l' variable.
+2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * readelf.c (get_s390_segment_type): Add support for the new
+ segment type PT_S390_PGSTE.
+ (get_segment_type): Call get_s390_segment_type.
+
2017-06-19 Nick Clifton <nickc@redhat.com>
PR binutils/21619
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog
index 0be1bcb9cdd..3ce59f3a74a 100644
--- a/elfcpp/ChangeLog
+++ b/elfcpp/ChangeLog
@@ -4,6 +4,10 @@
* powerpc.h (PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC,
PPC64_OPT_LOCALENTRY): Define.
+2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * elfcpp.h (enum PT): Add PT_S390_PGSTE to enum.
+
2017-01-02 Alan Modra <amodra@gmail.com>
Update year range in copyright notice of all files.
diff --git a/include/ChangeLog b/include/ChangeLog
index 7df0bfafc84..91cb91fb861 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -32,6 +32,10 @@
* opcode/arm.h (FPU_ANY): New macro.
+2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * elf/s390.h (PT_S390_PGSTE): Define macro.
+
2017-06-16 Alan Modra <amodra@gmail.com>
PR ld/20022
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 1db5afacf34..f85daf4e2d4 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -195,6 +195,14 @@
* testsuite/ld-powerpc/tocsave2s.d,
* testsuite/ld-powerpc/tocsavelib.s: New files.
+2017-06-20 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * Makefile.in: Add s390.em as build dependency.
+ * emulparams/elf64_s390.sh (EXTRA_EM_FILE): Add s390.em.
+ * emultempl/s390.em: New file.
+ * gen-doc.texi: Add documentation for --s390-pgste option.
+ * ld.texinfo: Likewise.
+
2017-06-19 H.J. Lu <hongjiu.lu@intel.com>
PR ld/21626