include $(TOPDIR)/config.mk
 
-LIB    = $(obj)lib$(BOARD).a
+LIB    = $(obj)lib$(BOARD).o
 
-COBJS-y        += top9000.o
+COBJS-y        += $(BOARD).o
 COBJS-$(CONFIG_ATMEL_SPI)      += spi.o
 
 SRCS   := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
 SOBJS  := $(addprefix $(obj),$(SOBJS))
 
 $(LIB):        $(obj).depend $(OBJS) $(SOBJS)
-       $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+       $(call cmd_link_o_target, $(OBJS) $(SOBJS))
 
 clean:
        rm -f $(SOBJS) $(OBJS)
 
 
 int board_early_init_f(void)
 {
-       at91_shdwn_t *shdwn = (at91_shdwn_t *)AT91_SHDWN_BASE;
+       struct at91_shdwn *shdwn = (struct at91_shdwn *)AT91_SHDWN_BASE;
 
        /*
         * make sure the board can be powered on by
 
 
 /*
  * Warning: changing CONFIG_SYS_TEXT_BASE requires
- * adapting the initial boot program
+ * adapting the initial boot program.
  */
-#define CONFIG_SYS_TEXT_BASE           0x21f00000      /* 31 MB into RAM */
+#define CONFIG_SYS_TEXT_BASE           0x20000000      /* start of SDRAM */
 
 /* Command line configuration */
 #include <config_cmd_default.h>