
On 10:17 Wed 30 Jul , Ryan CHEN wrote:
commit d66194654186b0e82d926ce4844b73e3508397f4 Parent: 699f05125509249072a0b865c8d35520d97cd501 Author: Ryan Chen ryan.chen@st.com Date: Tue Jul 29 13:35:15 2008 -0400
Signed-off-by: Ryan Chen <ryan.chen@st.com> new file: board/st/stls/Makefile new file: board/st/stls/config.mk new file: board/st/stls/u-boot.lds.S
Could you do it in the same patch where you add the board support?
with the update of the General Makefile, MAKALL and MAINTAINERS in it
Best Regards, J.
diff --git a/board/st/stls/Makefile b/board/st/stls/Makefile new file mode 100755 index 0000000..8213838 --- /dev/null +++ b/board/st/stls/Makefile @@ -0,0 +1,48 @@ +# +# (C) Copyright 2003-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# 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 = $(obj)lib$(BOARD).a
+COBJS = flash.o pci.o stls_board.o ide.o
+SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) +SOBJS := $(addprefix $(obj),$(SOBJS))
+$(LIB): $(obj).depend $(OBJS) $(SOBJS) u-boot.lds
please use $(obj) for generated file in order to build it out-of-tree
- $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+u-boot.lds: u-boot.lds.S
- $(CPP) $(CPPFLAGS) -P $^ > $@.tmp
- mv -f $@.tmp $@
Best Regards, J.