From a0fc6f76832f7d61b81bf1784a9959ee4a4de8c1 Mon Sep 17 00:00:00 2001 From: Anders Roxell Date: Tue, 23 Jun 2020 09:40:25 +0200 Subject: [PATCH] configs: qemu-gdb: disable CONFIG_RELOCATABLE Since RELOCATABLE is set to default 'y' now. It has to be disabled only due to that we run out of memory since CONFIG_RELOCATABLE adds some bloat to the kernel Image, so if we build are really big kernel (like building an allmodconfig kernel) it might look like CONFIG_RELOCATABLE is broken, but all it does is pushing it over the edge. Fixes: dd4bc6076587 ("arm64: warn on incorrect placement of the kernel by the bootloader") Signed-off-by: Anders Roxell --- kernel/configs/qemu-gdb.config | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/configs/qemu-gdb.config b/kernel/configs/qemu-gdb.config index 30465905ff9336..a2d446fc441d56 100644 --- a/kernel/configs/qemu-gdb.config +++ b/kernel/configs/qemu-gdb.config @@ -5,3 +5,4 @@ CONFIG_GDB_SCRIPTS=y # Easier to debug # CONFIG_RANDOMIZE_BASE is not set +# CONFIG_RELOCATABLE is not set