From 42a3300ae5641bf45c4c8f6a1306f4e06dc93034 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 19 Apr 2022 23:34:46 +0200 Subject: [PATCH] arch/Config.in: remove BR2_ARCH_HAS_MMU_MANDATORY from BR2_aarch64* Selecting BR2_ARCH_HAS_MMU_MANDATORY from BR2_aarch64 and BR2_aarch64_be doesn't make much sense, because the actual ARM cores described in arch/Config.in.arm then all select BR2_ARCH_HAS_MMU_OPTIONAL. So we end up with both BR2_ARCH_HAS_MMU_OPTIONAL and BR2_ARCH_HAS_MMU_MANDATORY, which doesn't make any sense. To prevent this, we remove the selection of BR2_ARCH_HAS_MMU_MANDATORY from BR2_aarch64 and BR2_aarch64_be, and let arch/Config.in.arm do its job. What arch/Config.in.arm does is currently incorrect, but it will be fixed in a separate commit. Signed-off-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- arch/Config.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/Config.in b/arch/Config.in index 1ea4e21413..49e16fce38 100644 --- a/arch/Config.in +++ b/arch/Config.in @@ -60,7 +60,6 @@ config BR2_armeb config BR2_aarch64 bool "AArch64 (little endian)" select BR2_ARCH_IS_64 - select BR2_ARCH_HAS_MMU_MANDATORY help Aarch64 is a 64-bit architecture developed by ARM Holdings. http://www.arm.com/products/processors/instruction-set-architectures/armv8-architecture.php @@ -69,7 +68,6 @@ config BR2_aarch64 config BR2_aarch64_be bool "AArch64 (big endian)" select BR2_ARCH_IS_64 - select BR2_ARCH_HAS_MMU_MANDATORY help Aarch64 is a 64-bit architecture developed by ARM Holdings. http://www.arm.com/products/processors/instruction-set-architectures/armv8-architecture.php