summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@google.com>2012-12-05 17:09:01 -0800
committerRonald G. Minnich <rminnich@gmail.com>2012-12-06 02:26:42 +0100
commit6edb729cee4ebeb06aa4db54e682cc0a39ac9fa1 (patch)
tree90522c4396816ea12e8b4ed033b008602370c3b3 /Makefile
parent4266b92db06eae5c6aa3c8cc8eb2b873f40ecbba (diff)
downloadcoreboot-6edb729cee4ebeb06aa4db54e682cc0a39ac9fa1.tar.gz
coreboot-6edb729cee4ebeb06aa4db54e682cc0a39ac9fa1.tar.bz2
coreboot-6edb729cee4ebeb06aa4db54e682cc0a39ac9fa1.zip
Drop ARCH_ARM in favor of ARCH_ARMV7
The ARM architecture is really many architectures, and most of them need their own toolchain. After discussing with Ron and David, we decided that we're going to call the architecture of our ARM board armv7.. This patch cleans out the remainders of ARCH_ARM in the tree and moves on to consistent ARMv7 naming. As of now, we only support little endian ARMv7 CPUs. We can fix that for big endian if/when it comes our way. Change-Id: Id70c7ef615f600e4d09961d811e7ac974fce4811 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1968 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4faf12baf90a..6e8bd0d8d475 100644
--- a/Makefile
+++ b/Makefile
@@ -113,14 +113,14 @@ else
include $(HAVE_DOTCONFIG)
-ARCHDIR-$(CONFIG_ARCH_ARM) := armv7
+ARCHDIR-$(CONFIG_ARCH_ARMV7) := armv7
ARCHDIR-$(CONFIG_ARCH_X86) := x86
ARCH-y := $(ARCHDIR-y)
# If architecture folder name is different from GCC binutils architecture name,
# override here.
-ARCH-$(CONFIG_ARCH_ARM) := littlearm
+ARCH-$(CONFIG_ARCH_ARMV7) := armv7
ARCH-$(CONFIG_ARCH_X86) := i386
CC := $(CC_$(ARCH-y))