From 6fd9bc0de90f7ed2887abb9de0ee497f3af51831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 5 Oct 2015 13:36:14 +0200 Subject: [PATCH] arm-defaults.inc: remove MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit don't want no armv7a pinning - it does not work for imx6 anyway Signed-off-by: Andreas Müller --- conf/distro/include/arm-defaults.inc | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 conf/distro/include/arm-defaults.inc diff --git a/conf/distro/include/arm-defaults.inc b/conf/distro/include/arm-defaults.inc deleted file mode 100644 index 906fcb8..0000000 --- a/conf/distro/include/arm-defaults.inc +++ /dev/null @@ -1,22 +0,0 @@ -# This function changes the default tune for machines which -# are based on armv7a to use common tune value, note that we enforce hard-float -# which is default on Ångström for armv7+ -# so if you have one of those machines which are armv7a but can't support -# hard-float, please change tune = 'armv7athf' to tune = 'armv7at' -# below but then this is for your own distro, Ångström will not support -# it -# - Khem - -def arm_tune_handler(d): - features = d.getVar('TUNE_FEATURES', True).split() - if 'armv7a' in features: - tune = 'armv7athf' - if 'bigendian' in features: - tune += 'b' - if 'neon' in features: - tune += '-neon' - else: - tune = d.getVar('DEFAULTTUNE', True) - return tune - -DEFAULTTUNE := "${@arm_tune_handler(d)}"