
9 Nov
2008
9 Nov
'08
3:07 p.m.
--- u-boot-main.orig/examples/Makefile +++ u-boot-main/examples/Makefile @@ -30,10 +30,12 @@ LOAD_ADDR = 0x40000 endif
ifeq ($(ARCH),arm) +LOAD_ADDR = 0xc100000 ifeq ($(BOARD),omap2420h4) LOAD_ADDR = 0x80300000 -else -LOAD_ADDR = 0xc100000 +endif +ifeq ($(CPU),omap3) +LOAD_ADDR = 0x80300000 endif endif
Maybe we need to change it to allow arch/cpu to define itself and avoid ifeq/endif
Best Regards, J.