From 0f9a2f0b08ddbf30f2cbfacb70f856ca47fc0564 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 22 Mar 2013 10:34:17 -0700 Subject: [PATCH] angstrom-next: Switch beaglebone and beagleboard to use hardfp ABI whichever machine wants and can support hardfp should be adding there tune flags here too. Signed-off-by: Khem Raj --- conf/distro/angstrom-next.conf | 4 ++-- conf/distro/include/arm-defaults.inc | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 conf/distro/include/arm-defaults.inc diff --git a/conf/distro/angstrom-next.conf b/conf/distro/angstrom-next.conf index 400f16d..8b680b1 100644 --- a/conf/distro/angstrom-next.conf +++ b/conf/distro/angstrom-next.conf @@ -57,7 +57,6 @@ PREFERRED_VERSION_linux-libc-headers = "${LINUX_LIBC_HEADERS_VERSION}" PREFERRED_VERSION_linux-libc-headers-native = "${LINUX_LIBC_HEADERS_VERSION}" PREFERRED_VERSION_nativesdk-linux-libc-headers = "${LINUX_LIBC_HEADERS_VERSION}" - # Blackfin has its on gcc ANGSTROM_GCC_VERSION_bfin = "4.1.2" @@ -110,7 +109,8 @@ require conf/distro/include/angstrom.inc # Toolchain virtuals: require conf/distro/include/toolchain-${TOOLCHAIN_TYPE}.inc - +# Processor specific tunes like hard float ABI +include conf/distro/include/${TARGET_ARCH}-defaults.inc # Set DISTRO_FEED_CONFIGS to our config var, assigned in the above .inc DISTRO_FEED_CONFIGS = "${ANGSTROM_FEED_CONFIGS}" diff --git a/conf/distro/include/arm-defaults.inc b/conf/distro/include/arm-defaults.inc new file mode 100644 index 0000000..6e29332 --- /dev/null +++ b/conf/distro/include/arm-defaults.inc @@ -0,0 +1,2 @@ +DEFAULTTUNE_beagleboard = "cortexa8hf-neon" +DEFAULTTUNE_beaglebone = "cortexa8hf-neon"