From 0efacac5b8537904a9b0ee945dad173accf422d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 2 May 2019 15:46:39 +0200 Subject: [PATCH] zipl: update stage3 objcopy command for gcc9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The objcopy command for stage3.bin needs to take the new rodata section into account. See also PR https://github.com/ibm-s390-tools/s390-tools/pull/60. Closes: https://github.com/ibm-s390-tools/s390-tools/pull/61 Signed-off-by: Dan Horák Acked-by: Stefan Haberland Signed-off-by: Jan Höppner --- zipl/boot/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/zipl/boot/Makefile b/zipl/boot/Makefile index 35cd7350..3829cb9e 100644 --- a/zipl/boot/Makefile +++ b/zipl/boot/Makefile @@ -86,6 +86,7 @@ stage3.bin: stage3.exec --only-section=.ex_table \ --only-section=.data \ --only-section=.rodata.str1.2 \ + --only-section=.rodata.cst8 \ --only-section=.rodata \ --only-section=.stage2dump.tail \ --only-section=.eckd2dump_mv.tail \