aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-08-30 16:51:52 +0000
committerKoen Kooi <koen@openembedded.org>2006-08-30 16:51:52 +0000
commitf9697f0df1fde19b11a0c358ceca01129526cfc6 (patch)
tree6fb0cfcacefdd394b2048858f4bf8c8e29048ed8 /conf/distro
parent36b05076d6f41c4301454048929aa2c8b42718f7 (diff)
downloadopenembedded-f9697f0df1fde19b11a0c358ceca01129526cfc6.tar.gz
angsgrom: make TARET_FPU overridable
* put TARGET_FPU="" in conf/machine/include/tune-<foo>.conf to build a hardfloat toolchain * mixing soft and hardfloat code is safe, BUT hardfloat binaries still don't run onf FPU-less systems
Diffstat (limited to 'conf/distro')
-rw-r--r--conf/distro/include/angstrom.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/distro/include/angstrom.inc b/conf/distro/include/angstrom.inc
index d9209ad23c..96bc33ede3 100644
--- a/conf/distro/include/angstrom.inc
+++ b/conf/distro/include/angstrom.inc
@@ -35,7 +35,8 @@ BUILD_OPTIMIZATION = "-Os"
CXXFLAGS += "-fvisibility-inlines-hidden"
#ARM EABI is softfloat by default, but let's make sure :)
-TARGET_FPU_arm = "soft"
+#make it overridable for platforms with FPU, like ep93xx or i.mx31
+TARGET_FPU_arm ?= "soft"
#Name the generated images in a sane way
IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"