Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1968
-gerrit
commit b1d3a413b408ccc0a52b16fdd61dd61d036e0244 Author: Stefan Reinauer reinauer@google.com Date: Wed Dec 5 17:09:01 2012 -0800
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 --- Makefile | 4 ++-- src/Kconfig | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/Makefile b/Makefile index 4faf12b..6e8bd0d 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)) diff --git a/src/Kconfig b/src/Kconfig index ef7fcf6..d005d83 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -205,10 +205,6 @@ config ARCH_X86 default n select PCI
-config ARCH_ARM - bool - default n - config ARCH_ARMV7 bool default n