Currently the arm926ejs tree has the armv4 option set during compilation. This flag does not belong here because a arm926 CPU is always a armv5 CPU. Signed-off-by: Remy Bohmer --- cpu/arm926ejs/at91/config.mk | 1 - cpu/arm926ejs/config.mk | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) Index: u-boot-usb.new/cpu/arm926ejs/at91/config.mk =================================================================== --- u-boot-usb.new.orig/cpu/arm926ejs/at91/config.mk 2008-12-04 21:59:20.000000000 +0100 +++ u-boot-usb.new/cpu/arm926ejs/at91/config.mk 2008-12-04 22:01:24.000000000 +0100 @@ -1,3 +1,2 @@ -PLATFORM_CPPFLAGS += -march=armv5te PLATFORM_CPPFLAGS += $(call cc-option,-mtune=arm926ejs,) LDSCRIPT := $(SRCTREE)/cpu/arm926ejs/at91/u-boot.lds Index: u-boot-usb.new/cpu/arm926ejs/config.mk =================================================================== --- u-boot-usb.new.orig/cpu/arm926ejs/config.mk 2008-12-04 21:59:20.000000000 +0100 +++ u-boot-usb.new/cpu/arm926ejs/config.mk 2008-12-04 22:01:24.000000000 +0100 @@ -24,7 +24,7 @@ PLATFORM_RELFLAGS += -fno-strict-aliasing -fno-common -ffixed-r8 \ -msoft-float -PLATFORM_CPPFLAGS += -march=armv4 +PLATFORM_CPPFLAGS += -march=armv5te # ========================================================================= # # Supply options according to compiler version --