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

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