Blame SOURCES/binutils-special-sections-in-groups.patch

c24042
--- binutils.orig/bfd/elf.c	2018-10-19 11:42:10.107277490 +0100
c24042
+++ binutils-2.31.1/bfd/elf.c	2018-10-19 11:44:33.607105801 +0100
c24042
@@ -828,7 +828,13 @@ setup_group (bfd *abfd, Elf_Internal_Shd
c24042
 	}
c24042
     }
c24042
 
c24042
-  if (elf_group_name (newsect) == NULL)
c24042
+  if (elf_group_name (newsect) == NULL
c24042
+      /* OS specific sections might be in a group (eg ARM's ARM_EXIDX section)
c24042
+	 but they will not have been added to the group because they do not
c24042
+	 have contents that the ELF code in the BFD library knows how to
c24042
+	 process.  This is OK though - we rely upon the target backends to
c24042
+	 handle these sections for us.  */
c24042
+      && hdr->sh_type < SHT_LOOS)
c24042
     {
c24042
       /* xgettext:c-format */
c24042
       _bfd_error_handler (_("%B: no group info for section '%A'"),
c24042
@@ -934,7 +940,8 @@ _bfd_elf_setup_sections (bfd *abfd)
c24042
 	  else if (idx->shdr->bfd_section)
c24042
 	    elf_sec_group (idx->shdr->bfd_section) = shdr->bfd_section;
c24042
 	  else if (idx->shdr->sh_type != SHT_RELA
c24042
-		   && idx->shdr->sh_type != SHT_REL)
c24042
+		   && idx->shdr->sh_type != SHT_REL
c24042
+		   && idx->shdr->sh_type < SHT_LOOS)
c24042
 	    {
c24042
 	      /* There are some unknown sections in the group.  */
c24042
 	      _bfd_error_handler