> --- /dev/null
> +++ b/board/sh7785lcr/Makefile
> @@ -0,0 +1,45 @@
> +#
> +# Copyright (C) 2008  Yoshihiro Shimoda <[EMAIL PROTECTED]>
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation; either version 2 of
> +# the License, or (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write to the Free Software
> +# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> +# MA 02111-1307 USA
> +
> +include $(TOPDIR)/config.mk
> +
> +LIB  = lib$(BOARD).a
> +
> +COBJS        := sh7785lcr.o selfcheck.o rtl8169_mac.o
> +SOBJS        := lowlevel_init.o
> +
> +$(LIB):      $(obj).depend $(COBJS) $(SOBJS)
> +     $(AR) $(ARFLAGS) $@ $(COBJS) $(SOBJS)
> +
> +clean:
> +     rm -f $(SOBJS) $(OBJS)
> +
> +distclean:   clean
> +     rm -f $(LIB) core *.bak $(obj).depend
> +
> +#########################################################################
> +


> +.depend:     Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
> +             $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
please remove

> +
> +# defines $(obj).depend target
> +include $(SRCTREE)/rules.mk
> +
> +sinclude $(obj).depend
> +
> +#########################################################################
> +     .u_boot_cmd :
> +     {
> +             *(.u_boot_cmd)
> +             . = ALIGN(4);
> +     }
> +     PROVIDE (__u_boot_cmd_end = .);
> +
> +     PROVIDE (reloc_dst_end = .);
> +     /* _reloc_dst_end = .; */
if no need please remove
> +#define CFG_SDRAM_BASE       (SH7785LCR_SDRAM_BASE)
> +#define CFG_SDRAM_SIZE       (SH7785LCR_SDRAM_SIZE)
> +#define CFG_LOAD_ADDR        (CFG_SDRAM_BASE + 16 * 1024 * 1024)
> +
> +#define CFG_MONITOR_BASE     (SH7785LCR_FLASH_BASE_1)
> +#define CFG_MONITOR_LEN              (512 * 1024)
> +#define CFG_MALLOC_LEN               (512 * 1024)
> +#define CFG_GBL_DATA_SIZE    (256)
> +#define CFG_BOOTMAPSZ                (8 * 1024 * 1024)
> +
> +/* FLASH */
> +#define CFG_FLASH_CFI
> +#define CFG_FLASH_CFI_DRIVER
please use CONFIG_FLASH_CFI_DRIVER

btw take a look on the other patch

Best Regards,
J.
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to