Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread Simon Glass
On Tue, Oct 18, 2011 at 8:29 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 04:43:09 馬克泡 wrote: >> 2011/10/11 Simon Glass : >> > +include $(TOPDIR)/config.mk >> > + >> > +LIB    = $(obj)lib$(BOARD).o >> > + >> > +COBJS  := $(BOARD).o >> > + >> > +SRCS   := $(COBJS:.o=.c) >> > +OBJS   := $(

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 04:43:09 馬克泡 wrote: > 2011/10/11 Simon Glass : > > +include $(TOPDIR)/config.mk > > + > > +LIB= $(obj)lib$(BOARD).o > > + > > +COBJS := $(BOARD).o > > + > > +SRCS := $(COBJS:.o=.c) > > +OBJS := $(addprefix $(obj),$(COBJS)) > > + > > +$(LIB):$(obj).depend

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread 馬克泡
HI Simon 2011/10/11 Simon Glass : > This adds basic files for the sandbox board. The lds file is very simple > since we can rely mostly on the linker defaults. > > Signed-off-by: Simon Glass > --- > Changes in v5: > - Simplify the declaration of gd_t in sandbox's board.c > >  board/sandbox/sandbo

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-17 Thread Wolfgang Denk
Dear Simon Glass, In message <1318270953-32482-8-git-send-email-...@chromium.org> you wrote: > This adds basic files for the sandbox board. The lds file is very simple > since we can rely mostly on the linker defaults. > > Signed-off-by: Simon Glass > --- > Changes in v2: > - Remove clean and di

[U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-10 Thread Simon Glass
This adds basic files for the sandbox board. The lds file is very simple since we can rely mostly on the linker defaults. Signed-off-by: Simon Glass --- Changes in v2: - Remove clean and dist-clean targets from Makefile - Move lds script out of the board directory Changes in v4: - Remove board/s