
Dear Jean-Christophe PLAGNIOL-VILLARD,
In message 1241185086-11754-1-git-send-email-plagnioj@jcrosoft.com you wrote:
actually no boards use the default lowlevel_init.S so remove it
btw the u-boot.lds is not anymore need to be generated
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com
Makefile | 1 - cpu/arm926ejs/at91/.gitignore | 5 --- cpu/arm926ejs/at91/Makefile | 6 +--- cpu/arm926ejs/at91/config.mk | 2 +- cpu/arm926ejs/at91/lowlevel_init.S | 45 ----------------------- cpu/arm926ejs/at91/{u-boot.lds.S => u-boot.lds} | 5 --- 6 files changed, 2 insertions(+), 62 deletions(-) delete mode 100644 cpu/arm926ejs/at91/.gitignore delete mode 100644 cpu/arm926ejs/at91/lowlevel_init.S rename cpu/arm926ejs/at91/{u-boot.lds.S => u-boot.lds} (93%)
This patch may be fixing the out-of-tree build problem introduced with commit f0a2c7b4 "at91: add support for the PM9263 board", but it causes a LOT of new issues:
Configuring for integratorap board... Variant:: Core module CM720T with core arm720t In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from start.S:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from interrupts.c:32: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from cpu.c:36: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from start.S:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" make[1]: *** [/work/wd/tmp-arm/cpu/arm720t/start.o] Error 1 make: *** [/work/wd/tmp-arm/cpu/arm720t/start.o] Error 2 make: *** Waiting for unfinished jobs.... arm-linux-size: '/work/wd/tmp-arm/u-boot': No such file Configuring for armadillo board... In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from start.S:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from interrupts.c:32: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from cpu.c:36: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from start.S:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" make[1]: *** [/work/wd/tmp-arm/cpu/arm720t/start.o] Error 1 make: *** [/work/wd/tmp-arm/cpu/arm720t/start.o] Error 2 make: *** Waiting for unfinished jobs.... arm-linux-size: '/work/wd/tmp-arm/u-boot': No such file Configuring for B2 board... In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from cache.c:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from B2.c:28: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from cpu.c:33: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from flash.c:25: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from interrupts.c:28: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor" In file included from /work/wd/tmp-arm/include2/asm/hardware.h:16, from cache.c:29: /work/wd/tmp-arm/include2/asm/arch/hardware.h:48:2: error: #error "Unsupported AT91 processor"
and so on and on and on...
Best regards,
Wolfgang Denk