From: Thomas Petazzoni Date: Fri, 18 Mar 2016 21:08:03 +0000 (+0100) Subject: arch/arm: introduce and use BR2_ARM_CPU_ARMV7M X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5152f0cb0fcd496a9dabca4a1e07be98fed5679;p=buildroot.git arch/arm: introduce and use BR2_ARM_CPU_ARMV7M All ARM cores should select a BR2_ARM_CPU_* option. Currently, the cortex-m3 does not, which this commit fixes by introducing a BR2_ARM_CPU_ARMV7M option. Signed-off-by: Thomas Petazzoni Acked-by: Arnout Vandecappelle (Essensium/Mind) Acked-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/arch/Config.in.arm b/arch/Config.in.arm index 04f0369c0b..33f763a306 100644 --- a/arch/Config.in.arm +++ b/arch/Config.in.arm @@ -52,6 +52,9 @@ config BR2_ARM_CPU_ARMV6 config BR2_ARM_CPU_ARMV7A bool +config BR2_ARM_CPU_ARMV7M + bool + choice prompt "Target Architecture Variant" depends on BR2_arm || BR2_armeb @@ -171,6 +174,7 @@ config BR2_cortex_m3 bool "cortex-M3" select BR2_ARM_CPU_HAS_THUMB select BR2_ARM_CPU_HAS_THUMB2 + select BR2_ARM_CPU_ARMV7M config BR2_fa526 bool "fa526/626" select BR2_ARM_CPU_HAS_ARM