From 1efd985f631dcd7cfdb99f1042129cd52f554801 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Tue, 22 Jan 2019 14:03:11 +0300 Subject: [PATCH] Specify the architecture in KSPP recommendations --- config_files/kspp-recommendations-arm.config | 2 ++ config_files/kspp-recommendations-arm64.config | 2 ++ config_files/kspp-recommendations-x86-32.config | 2 ++ 3 files changed, 6 insertions(+) diff --git a/config_files/kspp-recommendations-arm.config b/config_files/kspp-recommendations-arm.config index 4e468ab..e8223fc 100644 --- a/config_files/kspp-recommendations-arm.config +++ b/config_files/kspp-recommendations-arm.config @@ -133,6 +133,8 @@ CONFIG_GCC_PLUGIN_RANDSTRUCT=y #arm +CONFIG_ARM=y + # Disallow allocating the first 32k of memory (cannot be 64k due to ARM loader). CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 diff --git a/config_files/kspp-recommendations-arm64.config b/config_files/kspp-recommendations-arm64.config index 4a06e77..4505f3f 100644 --- a/config_files/kspp-recommendations-arm64.config +++ b/config_files/kspp-recommendations-arm64.config @@ -133,6 +133,8 @@ CONFIG_GCC_PLUGIN_RANDSTRUCT=y #arm64 +CONFIG_ARM64=y + # Disallow allocating the first 32k of memory (cannot be 64k due to ARM loader). CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 diff --git a/config_files/kspp-recommendations-x86-32.config b/config_files/kspp-recommendations-x86-32.config index 12c62c2..665c00a 100644 --- a/config_files/kspp-recommendations-x86-32.config +++ b/config_files/kspp-recommendations-x86-32.config @@ -133,6 +133,8 @@ CONFIG_GCC_PLUGIN_RANDSTRUCT=y #x86_32 +CONFIG_X86_32=y + # On 32-bit kernels, require PAE for NX bit support. # CONFIG_M486 is not set # CONFIG_HIGHMEM4G is not set -- 2.31.1