* [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles [not found] <20080101071311.GA2496@hacking> @ 2008-01-01 7:22 ` WANG Cong 2008-01-01 10:15 ` Sam Ravnborg 0 siblings, 1 reply; 10+ messages in thread From: WANG Cong @ 2008-01-01 7:22 UTC (permalink / raw) To: Ralf Baechle; +Cc: LKML, Sam Ravnborg, linux-kbuild, Andrew Morton, linux-mips TOPDIR is obsolete, use objtree instead. This patch removes TOPDIR from all Mips Makefiles. Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> --- diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile index 5332449..5196962 100644 --- a/arch/mips/lasat/image/Makefile +++ b/arch/mips/lasat/image/Makefile @@ -12,7 +12,7 @@ endif MKLASATIMG = mklasatimg MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 -KERNEL_IMAGE = $(TOPDIR)/vmlinux +KERNEL_IMAGE = $(objtree)/vmlinux KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ -D TIMESTAMP=$(shell date +%s) $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< + $(CC) -fno-pic $(HEAD_DEFINES) -I$(objtree)/include -c -o $@ $< OBJECTS = head.o kImage.o ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-01 7:22 ` [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles WANG Cong @ 2008-01-01 10:15 ` Sam Ravnborg 2008-01-01 13:11 ` (Try #2) " WANG Cong 2008-01-01 13:44 ` Andreas Schwab 0 siblings, 2 replies; 10+ messages in thread From: Sam Ravnborg @ 2008-01-01 10:15 UTC (permalink / raw) To: WANG Cong; +Cc: Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips On Tue, Jan 01, 2008 at 03:22:38PM +0800, WANG Cong wrote: > > TOPDIR is obsolete, use objtree instead. > This patch removes TOPDIR from all Mips Makefiles. > > Cc: Ralf Baechle <ralf@linux-mips.org> > Cc: Sam Ravnborg <sam@ravnborg.org> > Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> > > --- > > diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile > index 5332449..5196962 100644 > --- a/arch/mips/lasat/image/Makefile > +++ b/arch/mips/lasat/image/Makefile > @@ -12,7 +12,7 @@ endif > > MKLASATIMG = mklasatimg > MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 > -KERNEL_IMAGE = $(TOPDIR)/vmlinux > +KERNEL_IMAGE = $(objtree)/vmlinux Current directory when building is $(objtree) so here we should just skip the use of TOPDIR like this: > +KERNEL_IMAGE = vmlinux > KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) > KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) > > @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ > -D TIMESTAMP=$(shell date +%s) > > $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) > - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< > + $(CC) -fno-pic $(HEAD_DEFINES) -I$(objtree)/include -c -o $@ $< This has never worked with O=.. builds. The correct fix here is to use: > + $(CC) -fno-pic $(HEAD_DEFINES) -Iinclude -Iinclude2 -c -o $@ $< The -Iinclude2 is only for O=... builds so to keep current behaviour removing $(TOPDIR)/ would do it. Sam ^ permalink raw reply [flat|nested] 10+ messages in thread
* (Try #2) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-01 10:15 ` Sam Ravnborg @ 2008-01-01 13:11 ` WANG Cong 2008-01-01 13:44 ` Andreas Schwab 1 sibling, 0 replies; 10+ messages in thread From: WANG Cong @ 2008-01-01 13:11 UTC (permalink / raw) To: Sam Ravnborg Cc: WANG Cong, Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips >> -KERNEL_IMAGE = $(TOPDIR)/vmlinux >> +KERNEL_IMAGE = $(objtree)/vmlinux > >Current directory when building is $(objtree) so here we should >just skip the use of TOPDIR like this: >> +KERNEL_IMAGE = vmlinux > > >> KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) >> KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) >> >> @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ >> -D TIMESTAMP=$(shell date +%s) >> >> $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) >> - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< >> + $(CC) -fno-pic $(HEAD_DEFINES) -I$(objtree)/include -c -o $@ $< >This has never worked with O=.. builds. >The correct fix here is to use: >> + $(CC) -fno-pic $(HEAD_DEFINES) -Iinclude -Iinclude2 -c -o $@ $< > >The -Iinclude2 is only for O=... builds so to keep current >behaviour removing $(TOPDIR)/ would do it. Thank you for your explanations! The following one corrects all the mistakes as you told. -------> Since TOPDIR is obsolete, this patch removes TOPDIR from the Mips Makefiles. Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> --- diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile index 5332449..1ae73ce 100644 --- a/arch/mips/lasat/image/Makefile +++ b/arch/mips/lasat/image/Makefile @@ -12,7 +12,7 @@ endif MKLASATIMG = mklasatimg MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 -KERNEL_IMAGE = $(TOPDIR)/vmlinux +KERNEL_IMAGE = vmlinux KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ -D TIMESTAMP=$(shell date +%s) $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< + $(CC) -fno-pic $(HEAD_DEFINES) -Iinclude -Iinclude2 -c -o $@ $< OBJECTS = head.o kImage.o ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-01 10:15 ` Sam Ravnborg 2008-01-01 13:11 ` (Try #2) " WANG Cong @ 2008-01-01 13:44 ` Andreas Schwab 2008-01-01 17:57 ` Sam Ravnborg 1 sibling, 1 reply; 10+ messages in thread From: Andreas Schwab @ 2008-01-01 13:44 UTC (permalink / raw) To: Sam Ravnborg Cc: WANG Cong, Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips Sam Ravnborg <sam@ravnborg.org> writes: >> @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ >> -D TIMESTAMP=$(shell date +%s) >> >> $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) >> - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< >> + $(CC) -fno-pic $(HEAD_DEFINES) -I$(objtree)/include -c -o $@ $< > This has never worked with O=.. builds. > The correct fix here is to use: >> + $(CC) -fno-pic $(HEAD_DEFINES) -Iinclude -Iinclude2 -c -o $@ $< > > The -Iinclude2 is only for O=... builds so to keep current > behaviour removing $(TOPDIR)/ would do it. Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? Andreas. -- Andreas Schwab, SuSE Labs, schwab@suse.de SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-01 13:44 ` Andreas Schwab @ 2008-01-01 17:57 ` Sam Ravnborg 2008-01-02 6:21 ` (Try #3) " WANG Cong 0 siblings, 1 reply; 10+ messages in thread From: Sam Ravnborg @ 2008-01-01 17:57 UTC (permalink / raw) To: Andreas Schwab Cc: WANG Cong, Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips On Tue, Jan 01, 2008 at 02:44:48PM +0100, Andreas Schwab wrote: > Sam Ravnborg <sam@ravnborg.org> writes: > > >> @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ > >> -D TIMESTAMP=$(shell date +%s) > >> > >> $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) > >> - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< > >> + $(CC) -fno-pic $(HEAD_DEFINES) -I$(objtree)/include -c -o $@ $< > > This has never worked with O=.. builds. > > The correct fix here is to use: > >> + $(CC) -fno-pic $(HEAD_DEFINES) -Iinclude -Iinclude2 -c -o $@ $< > > > > The -Iinclude2 is only for O=... builds so to keep current > > behaviour removing $(TOPDIR)/ would do it. > > Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? It would be better to use $(LINUXINCLUDE) as we then pull in all config symbols too and do not have to hardcode kbuild internal names (include2). As for the use of KBUILD_CPPFLAGS at present the usage is not consistent across the architectures. Why does arm for example say: KBUILD_CPPFLAGS += -mbig-endian This looks like a KBUILD_CFLAGS thing to me. So we should preferably stick with LINUXINCLUDE for now. Sam ^ permalink raw reply [flat|nested] 10+ messages in thread
* (Try #3) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-01 17:57 ` Sam Ravnborg @ 2008-01-02 6:21 ` WANG Cong 2008-01-02 19:24 ` Sam Ravnborg 2008-01-11 14:17 ` Ralf Baechle 0 siblings, 2 replies; 10+ messages in thread From: WANG Cong @ 2008-01-02 6:21 UTC (permalink / raw) To: Sam Ravnborg Cc: Andreas Schwab, WANG Cong, Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips >> >> Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? >It would be better to use $(LINUXINCLUDE) as we then pull in all config >symbols too and do not have to hardcode kbuild internal names (include2). OK. Refine this patch. -----------> Since TOPDIR is obsolete, this patch removes TOPDIR from the Mips Makefiles. Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> --- diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile index 5332449..17f5266 100644 --- a/arch/mips/lasat/image/Makefile +++ b/arch/mips/lasat/image/Makefile @@ -12,7 +12,7 @@ endif MKLASATIMG = mklasatimg MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 -KERNEL_IMAGE = $(TOPDIR)/vmlinux +KERNEL_IMAGE = vmlinux KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ -D TIMESTAMP=$(shell date +%s) $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< + $(CC) -fno-pic $(HEAD_DEFINES) $(LINUXINCLUDE) -c -o $@ $< OBJECTS = head.o kImage.o ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: (Try #3) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-02 6:21 ` (Try #3) " WANG Cong @ 2008-01-02 19:24 ` Sam Ravnborg 2008-01-11 14:17 ` Ralf Baechle 1 sibling, 0 replies; 10+ messages in thread From: Sam Ravnborg @ 2008-01-02 19:24 UTC (permalink / raw) To: WANG Cong Cc: Andreas Schwab, Ralf Baechle, LKML, linux-kbuild, Andrew Morton, linux-mips On Wed, Jan 02, 2008 at 02:21:36PM +0800, WANG Cong wrote: > > >> > >> Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? > >It would be better to use $(LINUXINCLUDE) as we then pull in all config > >symbols too and do not have to hardcode kbuild internal names (include2). > > OK. Refine this patch. > > -----------> > > Since TOPDIR is obsolete, this patch removes TOPDIR > from the Mips Makefiles. > > Cc: Ralf Baechle <ralf@linux-mips.org> > Cc: Sam Ravnborg <sam@ravnborg.org> > Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> > Applied. Sam ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: (Try #3) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-02 6:21 ` (Try #3) " WANG Cong 2008-01-02 19:24 ` Sam Ravnborg @ 2008-01-11 14:17 ` Ralf Baechle 2008-01-11 17:02 ` Sam Ravnborg 1 sibling, 1 reply; 10+ messages in thread From: Ralf Baechle @ 2008-01-11 14:17 UTC (permalink / raw) To: WANG Cong Cc: Sam Ravnborg, Andreas Schwab, LKML, linux-kbuild, Andrew Morton, linux-mips On Wed, Jan 02, 2008 at 02:21:36PM +0800, WANG Cong wrote: > >> Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? > >It would be better to use $(LINUXINCLUDE) as we then pull in all config > >symbols too and do not have to hardcode kbuild internal names (include2). > > OK. Refine this patch. LDSCRIPT also needed fixing to get builds in a separate object directory working again. I've applied below fix. Ralf ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: (Try #3) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-11 14:17 ` Ralf Baechle @ 2008-01-11 17:02 ` Sam Ravnborg 2008-01-14 6:26 ` WANG Cong 0 siblings, 1 reply; 10+ messages in thread From: Sam Ravnborg @ 2008-01-11 17:02 UTC (permalink / raw) To: Ralf Baechle Cc: WANG Cong, Andreas Schwab, LKML, linux-kbuild, Andrew Morton, linux-mips On Fri, Jan 11, 2008 at 02:17:54PM +0000, Ralf Baechle wrote: > On Wed, Jan 02, 2008 at 02:21:36PM +0800, WANG Cong wrote: > > > >> Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? > > >It would be better to use $(LINUXINCLUDE) as we then pull in all config > > >symbols too and do not have to hardcode kbuild internal names (include2). > > > > OK. Refine this patch. > > LDSCRIPT also needed fixing to get builds in a separate object directory > working again. > > I've applied below fix. Great - I will drop it from my tree. See small comment below. Sam > Ralf > > From 8babf06e1265214116fb8ffc634c04df85597c52 Mon Sep 17 00:00:00 2001 > From: WANG Cong <xiyou.wangcong@gmail.com> > Date: Wed, 2 Jan 2008 14:21:36 +0800 > Subject: [PATCH] [MIPS] Lasat: Fix built in separate object directory. > > Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> > > [Ralf: The LDSCRIPT script needed fixing, too] > > Signed-off-by: Ralf Baechle <ralf@linux-mips.org> > > diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile > index 5332449..7ccd40d 100644 > --- a/arch/mips/lasat/image/Makefile > +++ b/arch/mips/lasat/image/Makefile > @@ -12,11 +12,11 @@ endif > > MKLASATIMG = mklasatimg > MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 > -KERNEL_IMAGE = $(TOPDIR)/vmlinux > +KERNEL_IMAGE = vmlinux > KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) > KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) > > -LDSCRIPT= -L$(obj) -Tromscript.normal > +LDSCRIPT= -L$(srctree)/$(obj) -Tromscript.normal This needs to read: > +LDSCRIPT= -L$(srctree)/$(src) -Tromscript.normal (There is no difference between src and obj in normal cases but to be consistent it shuld be like above). > > HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ > -D_kernel_entry=0x$(KERNEL_ENTRY) \ > @@ -24,7 +24,7 @@ HEAD_DEFINES := -D_kernel_start=0x$(KERNEL_START) \ > -D TIMESTAMP=$(shell date +%s) > > $(obj)/head.o: $(obj)/head.S $(KERNEL_IMAGE) > - $(CC) -fno-pic $(HEAD_DEFINES) -I$(TOPDIR)/include -c -o $@ $< > + $(CC) -fno-pic $(HEAD_DEFINES) $(LINUXINCLUDE) -c -o $@ $< > > OBJECTS = head.o kImage.o > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: (Try #3) [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles 2008-01-11 17:02 ` Sam Ravnborg @ 2008-01-14 6:26 ` WANG Cong 0 siblings, 0 replies; 10+ messages in thread From: WANG Cong @ 2008-01-14 6:26 UTC (permalink / raw) To: Sam Ravnborg Cc: Ralf Baechle, WANG Cong, Andreas Schwab, LKML, linux-kbuild, Andrew Morton, linux-mips On Fri, Jan 11, 2008 at 06:02:04PM +0100, Sam Ravnborg wrote: >On Fri, Jan 11, 2008 at 02:17:54PM +0000, Ralf Baechle wrote: >> On Wed, Jan 02, 2008 at 02:21:36PM +0800, WANG Cong wrote: >> >> > >> Shouldn't that use $(LINUXINCLUDE), or $(KBUILD_CPPFLAGS)? >> > >It would be better to use $(LINUXINCLUDE) as we then pull in all config >> > >symbols too and do not have to hardcode kbuild internal names (include2). >> > >> > OK. Refine this patch. >> >> LDSCRIPT also needed fixing to get builds in a separate object directory >> working again. >> >> I've applied below fix. > >Great - I will drop it from my tree. > >See small comment below. > > Sam > > >> Ralf >> >> From 8babf06e1265214116fb8ffc634c04df85597c52 Mon Sep 17 00:00:00 2001 >> From: WANG Cong <xiyou.wangcong@gmail.com> >> Date: Wed, 2 Jan 2008 14:21:36 +0800 >> Subject: [PATCH] [MIPS] Lasat: Fix built in separate object directory. >> >> Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> >> >> [Ralf: The LDSCRIPT script needed fixing, too] >> >> Signed-off-by: Ralf Baechle <ralf@linux-mips.org> >> >> diff --git a/arch/mips/lasat/image/Makefile b/arch/mips/lasat/image/Makefile >> index 5332449..7ccd40d 100644 >> --- a/arch/mips/lasat/image/Makefile >> +++ b/arch/mips/lasat/image/Makefile >> @@ -12,11 +12,11 @@ endif >> >> MKLASATIMG = mklasatimg >> MKLASATIMG_ARCH = mq2,mqpro,sp100,sp200 >> -KERNEL_IMAGE = $(TOPDIR)/vmlinux >> +KERNEL_IMAGE = vmlinux >> KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ ) >> KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ ) >> >> -LDSCRIPT= -L$(obj) -Tromscript.normal >> +LDSCRIPT= -L$(srctree)/$(obj) -Tromscript.normal > >This needs to read: >> +LDSCRIPT= -L$(srctree)/$(src) -Tromscript.normal > > >(There is no difference between src and obj in normal cases but to be consistent >it shuld be like above). Agreed. Thank you! ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-01-14 6:27 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20080101071311.GA2496@hacking>
2008-01-01 7:22 ` [Patch 2/8] MIPS: Remove 'TOPDIR' from Makefiles WANG Cong
2008-01-01 10:15 ` Sam Ravnborg
2008-01-01 13:11 ` (Try #2) " WANG Cong
2008-01-01 13:44 ` Andreas Schwab
2008-01-01 17:57 ` Sam Ravnborg
2008-01-02 6:21 ` (Try #3) " WANG Cong
2008-01-02 19:24 ` Sam Ravnborg
2008-01-11 14:17 ` Ralf Baechle
2008-01-11 17:02 ` Sam Ravnborg
2008-01-14 6:26 ` WANG Cong
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox