Ver código fonte

[S390] incorrect note program header

'readelf -n' on the s390 vmlinux file generates lots of warnings about
corrupt notes. The reason is that the 'NOTE' program header has incorrect
file and memory sizes. The problem is that the section following the
NOTES section do not switch to a different phdr and they get added to
the NOTE program section. Add a dummy entry to the linker script that
switches to the data phdr before the start of the RODATA section.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Martin Schwidefsky 13 anos atrás
pai
commit
7a2512b744
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      arch/s390/kernel/vmlinux.lds.S

+ 2 - 0
arch/s390/kernel/vmlinux.lds.S

@@ -43,6 +43,8 @@ SECTIONS
 
 
 	NOTES :text :note
 	NOTES :text :note
 
 
+	.dummy : { *(.dummy) } :data
+
 	RODATA
 	RODATA
 
 
 #ifdef CONFIG_SHARED_KERNEL
 #ifdef CONFIG_SHARED_KERNEL