diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/Kconfig | 4 |
2 files changed, 2 insertions, 6 deletions
@@ -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 ef7fcf63b6..d005d839bf 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 |