diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-03-04 01:38:36 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-03-04 01:38:36 +0100 |
commit | 5a3db49e5315cb5903f4d766dd5ddc0e753aa8f1 (patch) | |
tree | e21fcf75cbb35c75bdae96b79249915555756096 | |
parent | e7c58c6efd650a9daf21f1573c6953b5d1cddfdc (diff) |
sane-toolchain.inc: remove typos
-rw-r--r-- | conf/distro/include/sane-toolchain.inc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/conf/distro/include/sane-toolchain.inc b/conf/distro/include/sane-toolchain.inc index 01efe261b8..20ee76d569 100644 --- a/conf/distro/include/sane-toolchain.inc +++ b/conf/distro/include/sane-toolchain.inc @@ -6,7 +6,7 @@ # Base line versions, good for most things PREFERRED_GCC_VERSION ?= "4.2.4" -PREFERRED_BINUTILS ?= "2.18.50.0.7" +PREFERRED_BINUTILS ?= "2.18" # Prefer glibc 2.6 and uclibc 0.9.30, these have had the most testing. PREFERRED_VERSION_glibc ?= "2.6.1" @@ -65,16 +65,14 @@ TARGET_VENDOR = "-oe" # ARM920T and up can use thumb mode to decrease binary size at the expense of speed # (the complete story is a bit more nuanced due to cache starvation) -# Angstrom turns on thumb for armv4t machine according to this RFC: +# Minimal turns on thumb for armv4t machine according to this RFC: # http://lists.linuxtogo.org/pipermail/angstrom-distro-devel/2008-October/002714.html # We can't do ARM_INSTRUCTION_SET_armv4t since that will un-overridable in recipes like gcc -ANGSTROM_ARM_INSTRUCTION_SET ?= "arm" -ANGSTROM_ARM_INSTRUCTION_SET_armv4t = "thumb" -ANGSTROM_ARM_INSTRUCTION_SET_armv5te = "thumb" -ANGSTROM_ARM_INSTRUCTION_SET_armv5teb = "thumb" - -ARM_INSTRUCTION_SET = "${ANGSTROM_ARM_INSTRUCTION_SET}" +ARM_INSTRUCTION_SET ?= "arm" +ARM_INSTRUCTION_SET_armv4t = "thumb" +ARM_INSTRUCTION_SET_armv5te = "thumb" +ARM_INSTRUCTION_SET_armv5teb = "thumb" # "arm" "thumb" # The instruction set the compiler should use when generating application # code. The kernel is always compiled with arm code at present. arm code |