From 4dbdc8dfab8d00ecd9f0b50a81e09c541e225d9e Mon Sep 17 00:00:00 2001 From: Alexander Egorenkov Date: Tue, 20 Oct 2020 12:50:58 +0200 Subject: [PATCH] zipl/boot: disable SSP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SSP cannot work with boot loaders because it requires libc. Signed-off-by: Alexander Egorenkov Reviewed-by: Marc Hartmayer Signed-off-by: Jan Höppner --- zipl/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipl/boot/Makefile b/zipl/boot/Makefile index 359189e5..a2e5f190 100644 --- a/zipl/boot/Makefile +++ b/zipl/boot/Makefile @@ -7,7 +7,7 @@ INCLUDE_PARMS := $(addprefix -I,$(INCLUDE_PATHS)) ALL_CFLAGS = $(NO_PIE_CFLAGS) -Os -g $(INCLUDE_PARMS) \ -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE) \ -fno-builtin -ffreestanding -fno-asynchronous-unwind-tables \ - -fno-delete-null-pointer-checks \ + -fno-delete-null-pointer-checks -fno-stack-protector \ -fexec-charset=IBM1047 -m64 -mpacked-stack \ -mstack-size=4096 -mstack-guard=128 -msoft-float \ -W -Wall -Wformat-security