From 985f818ab3400b60fb7cd51b084542382a3048af Mon Sep 17 00:00:00 2001 From: Jacob Kroon Date: Tue, 29 Apr 2014 22:07:09 +0200 Subject: feature-arm-thumb.inc: Suppress false warning If a recipe does not explicitly set ARM_INSTRUCTION_SET, then there is no need to throw a warning: WARNING: Recipe 'foobar' selects ARM_INSTRUCTION_SET to be 'None', but tune configuration overrides it to 'arm' (From OE-Core rev: e457d71641af8802e47eb4854072e3cfb957b001) Signed-off-by: Jacob Kroon Signed-off-by: Richard Purdie --- meta/conf/machine/include/arm/feature-arm-thumb.inc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/conf/machine') diff --git a/meta/conf/machine/include/arm/feature-arm-thumb.inc b/meta/conf/machine/include/arm/feature-arm-thumb.inc index 8a3866568c..69c628ac9b 100644 --- a/meta/conf/machine/include/arm/feature-arm-thumb.inc +++ b/meta/conf/machine/include/arm/feature-arm-thumb.inc @@ -19,6 +19,8 @@ ARM_THUMB_SUFFIX .= "${@bb.utils.contains('TUNE_FEATURES', 'armv7m', 't2', '', d ARM_M_OPT = "${@bb.utils.contains('TUNE_FEATURES', 'arm', '${ARM_THUMB_OPT}', 'thumb', d)}" python () { selected = d.getVar('ARM_INSTRUCTION_SET', True) + if selected == None: + return used = d.getVar('ARM_M_OPT', True) if selected != used: pn = d.getVar('PN', True) -- cgit v1.2.3-54-g00ecf