* [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
@ 2002-05-12 2:11 Keith Owens
2002-05-12 9:04 ` Axel H. Siebenwirth
2002-05-13 2:10 ` khromy
0 siblings, 2 replies; 10+ messages in thread
From: Keith Owens @ 2002-05-12 2:11 UTC (permalink / raw)
To: linux-kernel; +Cc: Alan Cox
make clean dep works, make dep clean deletes the .tmp file created by
make dep and complains 'no rule to make .tmp_include_depends'. Change
the filenames to avoid make clean and add them to mrproper.
diff -urN 2.4.19-pre8-ac2/Makefile 2.4.19-pre8-ac2-test/Makefile
--- 2.4.19-pre8-ac2/Makefile Sun May 12 11:24:45 2002
+++ 2.4.19-pre8-ac2-test/Makefile Sun May 12 12:00:26 2002
@@ -226,6 +226,7 @@
# files removed with 'make mrproper'
MRPROPER_FILES = \
include/linux/autoconf.h include/linux/version.h \
+ tmp* \
drivers/net/hamradio/soundmodem/sm_tbl_{afsk1200,afsk2666,fsk9600}.h \
drivers/net/hamradio/soundmodem/sm_tbl_{hapn4800,psk4800}.h \
drivers/net/hamradio/soundmodem/sm_tbl_{afsk2400_7,afsk2400_8}.h \
@@ -353,13 +354,13 @@
comma := ,
-init/version.o: init/version.c include/linux/compile.h .tmp_include_depends
+init/version.o: init/version.c include/linux/compile.h tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) -DUTS_MACHINE='"$(ARCH)"' -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o init/version.o init/version.c
-init/main.o: init/main.c .tmp_include_depends
+init/main.o: init/main.c tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
-init/do_mounts.o: init/do_mounts.c .tmp_include_depends
+init/do_mounts.o: init/do_mounts.c tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
fs lib mm ipc kernel drivers net: dummy
@@ -386,7 +387,7 @@
modules: $(patsubst %, _mod_%, $(SUBDIRS))
.PHONY: $(patsubst %, _mod_%, $(SUBDIRS))
-$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h .tmp_include_depends
+$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h tmp_include_depends
$(MAKE) -C $(patsubst _mod_%, %, $@) CFLAGS="$(CFLAGS) $(MODFLAGS)" MAKING_MODULES=1 modules
.PHONY: modules_install
@@ -491,13 +492,13 @@
ifdef CONFIG_MODVERSIONS
$(MAKE) update-modverfile
endif
- (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > .tmp_include_depends
- sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' .tmp_include_depends > .tmp_include_depends_1
- (echo ""; echo "all: \\"; cat .tmp_include_depends_1; echo "") >> .tmp_include_depends
- rm .tmp_include_depends_1
+ (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > tmp_include_depends
+ sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' tmp_include_depends > tmp_include_depends_1
+ (echo ""; echo "all: \\"; cat tmp_include_depends_1; echo "") >> tmp_include_depends
+ rm tmp_include_depends_1
-.tmp_include_depends: include/config/MARKER dummy
- $(MAKE) -r -f .tmp_include_depends all
+tmp_include_depends: include/config/MARKER dummy
+ $(MAKE) -r -f tmp_include_depends all
ifdef CONFIG_MODVERSIONS
MODVERFILE := $(TOPDIR)/include/linux/modversions.h
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 2:11 [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends Keith Owens
@ 2002-05-12 9:04 ` Axel H. Siebenwirth
2002-05-12 10:11 ` Keith Owens
2002-05-13 2:10 ` khromy
1 sibling, 1 reply; 10+ messages in thread
From: Axel H. Siebenwirth @ 2002-05-12 9:04 UTC (permalink / raw)
To: Keith Owens; +Cc: linux-kernel, Alan Cox
Hi !
Applied your patch but it still fails.
I did
make mrproper
cp ../.config .
make oldconfig dep clean bzImage
init/do_mounts.c:351: warning: ount_nfs_root' defined but not used
init/do_mounts.c:382: warning: \x03hange_floppy' defined but not used
init/do_mounts.c:972: warning: \x03rd_load' defined but not used
make: *** No rule to make target .tmp_include_depends', needed by
\x1fdir_kernel'. Stop.
Regards,
Axel Siebenwirth
On Sun, 12 May 2002, Keith Owens wrote:
> make clean dep works, make dep clean deletes the .tmp file created by
> make dep and complains 'no rule to make .tmp_include_depends'. Change
> the filenames to avoid make clean and add them to mrproper.
>
> diff -urN 2.4.19-pre8-ac2/Makefile 2.4.19-pre8-ac2-test/Makefile
> --- 2.4.19-pre8-ac2/Makefile Sun May 12 11:24:45 2002
> +++ 2.4.19-pre8-ac2-test/Makefile Sun May 12 12:00:26 2002
> @@ -226,6 +226,7 @@
> # files removed with 'make mrproper'
> MRPROPER_FILES = \
> include/linux/autoconf.h include/linux/version.h \
> + tmp* \
> drivers/net/hamradio/soundmodem/sm_tbl_{afsk1200,afsk2666,fsk9600}.h \
> drivers/net/hamradio/soundmodem/sm_tbl_{hapn4800,psk4800}.h \
> drivers/net/hamradio/soundmodem/sm_tbl_{afsk2400_7,afsk2400_8}.h \
> @@ -353,13 +354,13 @@
>
> comma := ,
>
> -init/version.o: init/version.c include/linux/compile.h .tmp_include_depends
> +init/version.o: init/version.c include/linux/compile.h tmp_include_depends
> $(CC) $(CFLAGS) $(CFLAGS_KERNEL) -DUTS_MACHINE='"$(ARCH)"' -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o init/version.o init/version.c
>
> -init/main.o: init/main.c .tmp_include_depends
> +init/main.o: init/main.c tmp_include_depends
> $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
>
> -init/do_mounts.o: init/do_mounts.c .tmp_include_depends
> +init/do_mounts.o: init/do_mounts.c tmp_include_depends
> $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
>
> fs lib mm ipc kernel drivers net: dummy
> @@ -386,7 +387,7 @@
> modules: $(patsubst %, _mod_%, $(SUBDIRS))
>
> .PHONY: $(patsubst %, _mod_%, $(SUBDIRS))
> -$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h .tmp_include_depends
> +$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h tmp_include_depends
> $(MAKE) -C $(patsubst _mod_%, %, $@) CFLAGS="$(CFLAGS) $(MODFLAGS)" MAKING_MODULES=1 modules
>
> .PHONY: modules_install
> @@ -491,13 +492,13 @@
> ifdef CONFIG_MODVERSIONS
> $(MAKE) update-modverfile
> endif
> - (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > .tmp_include_depends
> - sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' .tmp_include_depends > .tmp_include_depends_1
> - (echo ""; echo "all: \\"; cat .tmp_include_depends_1; echo "") >> .tmp_include_depends
> - rm .tmp_include_depends_1
> + (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > tmp_include_depends
> + sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' tmp_include_depends > tmp_include_depends_1
> + (echo ""; echo "all: \\"; cat tmp_include_depends_1; echo "") >> tmp_include_depends
> + rm tmp_include_depends_1
>
> -.tmp_include_depends: include/config/MARKER dummy
> - $(MAKE) -r -f .tmp_include_depends all
> +tmp_include_depends: include/config/MARKER dummy
> + $(MAKE) -r -f tmp_include_depends all
>
> ifdef CONFIG_MODVERSIONS
> MODVERFILE := $(TOPDIR)/include/linux/modversions.h
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 9:04 ` Axel H. Siebenwirth
@ 2002-05-12 10:11 ` Keith Owens
2002-05-12 10:39 ` Tomas Szepe
0 siblings, 1 reply; 10+ messages in thread
From: Keith Owens @ 2002-05-12 10:11 UTC (permalink / raw)
To: Axel H. Siebenwirth; +Cc: linux-kernel, Alan Cox
On Sun, 12 May 2002 11:04:50 +0200,
"Axel H. Siebenwirth" <axel@hh59.org> wrote:
>make: *** No rule to make target .tmp_include_depends', needed by
>=1Fdir_kernel'. Stop.
Missed one occurrence of .tmp_include_depends. Edit Makefile, find
$(patsubst %, _dir_%, $(SUBDIRS)) and change .tmp_include_depends to
tmp_include_depends (no '.' at start).
Corrected patch against 2.4.19-pre8-ac2.
diff -ur 2.4.19-pre8-ac2/Makefile 2.4.19-pre8-ac2-test/Makefile
--- 2.4.19-pre8-ac2/Makefile Sun May 12 20:02:13 2002
+++ 2.4.19-pre8-ac2-test/Makefile Sun May 12 20:04:44 2002
@@ -226,6 +226,7 @@
# files removed with 'make mrproper'
MRPROPER_FILES = \
include/linux/autoconf.h include/linux/version.h \
+ tmp* \
drivers/net/hamradio/soundmodem/sm_tbl_{afsk1200,afsk2666,fsk9600}.h \
drivers/net/hamradio/soundmodem/sm_tbl_{hapn4800,psk4800}.h \
drivers/net/hamradio/soundmodem/sm_tbl_{afsk2400_7,afsk2400_8}.h \
@@ -317,7 +318,7 @@
linuxsubdirs: $(patsubst %, _dir_%, $(SUBDIRS))
-$(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/linux/version.h .tmp_include_depends
+$(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/linux/version.h tmp_include_depends
$(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" -C $(patsubst _dir_%, %, $@)
$(TOPDIR)/include/linux/version.h: include/linux/version.h
@@ -353,13 +354,13 @@
comma := ,
-init/version.o: init/version.c include/linux/compile.h .tmp_include_depends
+init/version.o: init/version.c include/linux/compile.h tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) -DUTS_MACHINE='"$(ARCH)"' -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o init/version.o init/version.c
-init/main.o: init/main.c .tmp_include_depends
+init/main.o: init/main.c tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
-init/do_mounts.o: init/do_mounts.c .tmp_include_depends
+init/do_mounts.o: init/do_mounts.c tmp_include_depends
$(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $*.o $<
fs lib mm ipc kernel drivers net: dummy
@@ -386,7 +387,7 @@
modules: $(patsubst %, _mod_%, $(SUBDIRS))
.PHONY: $(patsubst %, _mod_%, $(SUBDIRS))
-$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h .tmp_include_depends
+$(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h tmp_include_depends
$(MAKE) -C $(patsubst _mod_%, %, $@) CFLAGS="$(CFLAGS) $(MODFLAGS)" MAKING_MODULES=1 modules
.PHONY: modules_install
@@ -491,13 +492,13 @@
ifdef CONFIG_MODVERSIONS
$(MAKE) update-modverfile
endif
- (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > .tmp_include_depends
- sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' .tmp_include_depends > .tmp_include_depends_1
- (echo ""; echo "all: \\"; cat .tmp_include_depends_1; echo "") >> .tmp_include_depends
- rm .tmp_include_depends_1
+ (find $(TOPDIR) \( -name .depend -o -name .hdepend \) -print | xargs $(AWK) -f scripts/include_deps) > tmp_include_depends
+ sed -ne 's/^\([^ ].*\):.*/ \1 \\/p' tmp_include_depends > tmp_include_depends_1
+ (echo ""; echo "all: \\"; cat tmp_include_depends_1; echo "") >> tmp_include_depends
+ rm tmp_include_depends_1
-.tmp_include_depends: include/config/MARKER dummy
- $(MAKE) -r -f .tmp_include_depends all
+tmp_include_depends: include/config/MARKER dummy
+ $(MAKE) -r -f tmp_include_depends all
ifdef CONFIG_MODVERSIONS
MODVERFILE := $(TOPDIR)/include/linux/modversions.h
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 10:11 ` Keith Owens
@ 2002-05-12 10:39 ` Tomas Szepe
2002-05-12 12:22 ` Keith Owens
0 siblings, 1 reply; 10+ messages in thread
From: Tomas Szepe @ 2002-05-12 10:39 UTC (permalink / raw)
To: Keith Owens; +Cc: linux-kernel
> [Keith Owens <kaos@ocs.com.au>, May-12 2002, Sun, 20:11 +1000]
> On Sun, 12 May 2002 11:04:50 +0200,
> "Axel H. Siebenwirth" <axel@hh59.org> wrote:
> >make: *** No rule to make target .tmp_include_depends', needed by
> >=1Fdir_kernel'. Stop.
>
> Missed one occurrence of .tmp_include_depends. Edit Makefile, find
> $(patsubst %, _dir_%, $(SUBDIRS)) and change .tmp_include_depends to
> tmp_include_depends (no '.' at start).
>
> Corrected patch against 2.4.19-pre8-ac2.
Great work, Keith!
"make modules_install" takes like 2 seconds w/ -ac now!
T.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 10:39 ` Tomas Szepe
@ 2002-05-12 12:22 ` Keith Owens
2002-05-12 12:54 ` Tomas Szepe
0 siblings, 1 reply; 10+ messages in thread
From: Keith Owens @ 2002-05-12 12:22 UTC (permalink / raw)
To: Tomas Szepe; +Cc: linux-kernel
On Sun, 12 May 2002 12:39:46 +0200,
Tomas Szepe <szepe@pinerecords.com> wrote:
>> [Keith Owens <kaos@ocs.com.au>, May-12 2002, Sun, 20:11 +1000]
>> Missed one occurrence of .tmp_include_depends. Edit Makefile, find
>> $(patsubst %, _dir_%, $(SUBDIRS)) and change .tmp_include_depends to
>> tmp_include_depends (no '.' at start).
>>
>> Corrected patch against 2.4.19-pre8-ac2.
>
>Great work, Keith!
>"make modules_install" takes like 2 seconds w/ -ac now!
That was not the aim (although I will accept the praise :). The patch
ensures that cross directory header dependencies are done correctly on
kbuild 2.4. Any speed up as a side effect of removing .hdepend from
Rules.make is a bonus.
kbuild mantra - correctness first, speed second.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 12:22 ` Keith Owens
@ 2002-05-12 12:54 ` Tomas Szepe
0 siblings, 0 replies; 10+ messages in thread
From: Tomas Szepe @ 2002-05-12 12:54 UTC (permalink / raw)
To: Keith Owens; +Cc: linux-kernel
> [Keith Owens <kaos@ocs.com.au>, May-12 2002, Sun, 22:22 +1000]
> On Sun, 12 May 2002 12:39:46 +0200,
> Tomas Szepe <szepe@pinerecords.com> wrote:
> >> [Keith Owens <kaos@ocs.com.au>, May-12 2002, Sun, 20:11 +1000]
> >> Missed one occurrence of .tmp_include_depends. Edit Makefile, find
> >> $(patsubst %, _dir_%, $(SUBDIRS)) and change .tmp_include_depends to
> >> tmp_include_depends (no '.' at start).
> >>
> >> Corrected patch against 2.4.19-pre8-ac2.
> >
> >Great work, Keith!
> >"make modules_install" takes like 2 seconds w/ -ac now!
>
> That was not the aim (although I will accept the praise :). The patch
> ensures that cross directory header dependencies are done correctly on
> kbuild 2.4. Any speed up as a side effect of removing .hdepend from
> Rules.make is a bonus.
Now these are some side effects I like!
<cut>
2.4.19-pre8-ac1:
$ time make dep clean bzImage modules
...
real 6m22.176s
$ time su -c 'make modules_install'
...
real 0m6.963s
----
2.4.19-pre8-ac2 + patch-2.4.19-pre8-ac2-kbuildfix2:
$ time make dep clean bzImage modules
...
real 5m57.509s
$ time su -c 'make modules_install'
...
real 0m2.255s
<cut>
> kbuild mantra - correctness first, speed second.
Thumbs up!
T.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 2:11 [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends Keith Owens
2002-05-12 9:04 ` Axel H. Siebenwirth
@ 2002-05-13 2:10 ` khromy
2002-05-13 2:13 ` Keith Owens
1 sibling, 1 reply; 10+ messages in thread
From: khromy @ 2002-05-13 2:10 UTC (permalink / raw)
To: linux-kernel
After applying the patch pre8-ac2 still doesn't compile.
make dep
[no errors]
make bzImage
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o
scripts/split-include scripts/split-include.c
make: *** No rule to make target `include/linux/autoconf.h', needed by
`include/config/MARKER'. Stop.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-13 2:10 ` khromy
@ 2002-05-13 2:13 ` Keith Owens
0 siblings, 0 replies; 10+ messages in thread
From: Keith Owens @ 2002-05-13 2:13 UTC (permalink / raw)
To: khromy; +Cc: linux-kernel
On Sun, 12 May 2002 22:10:34 -0400,
khromy@lnuxlab.ath.cx (khromy) wrote:
>After applying the patch pre8-ac2 still doesn't compile.
>
>make dep
>[no errors]
>make bzImage
>gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o
>scripts/split-include scripts/split-include.c
>make: *** No rule to make target `include/linux/autoconf.h', needed by
>`include/config/MARKER'. Stop.
You forgot make *config.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
@ 2002-05-12 11:31 Hugh
2002-05-12 11:50 ` Keith Owens
0 siblings, 1 reply; 10+ messages in thread
From: Hugh @ 2002-05-12 11:31 UTC (permalink / raw)
To: linux-kernel
I am definitely a newbie as far as patch file handling is concerned.
I took the patch portion starting from
diff -ur 2.4.19-pre8-ac2/Makefile 2.4.19-pre8-ac2-test/Makefile
and ending with
MODVERFILE := $(TOPDIR)/include/linux/modversions.h
which is the last line,
and made it a file named Keith.patch. Then, I went to /usr/src/linux
and issued
patch -p1 < Keith.patch
Well.... That did not work. WHat did I do wrong?
Thanks a lot.
G. Hugh SOng
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends
2002-05-12 11:31 Hugh
@ 2002-05-12 11:50 ` Keith Owens
0 siblings, 0 replies; 10+ messages in thread
From: Keith Owens @ 2002-05-12 11:50 UTC (permalink / raw)
To: Hugh; +Cc: linux-kernel
On Sun, 12 May 2002 20:31:17 +0900,
Hugh <hugh@nospam.com> wrote:
>I am definitely a newbie as far as patch file handling is concerned.
>
>I took the patch portion starting from
>
>diff -ur 2.4.19-pre8-ac2/Makefile 2.4.19-pre8-ac2-test/Makefile
>
>and ending with
>
>MODVERFILE := $(TOPDIR)/include/linux/modversions.h
>
>which is the last line,
>and made it a file named Keith.patch. Then, I went to /usr/src/linux
>and issued
>
>patch -p1 < Keith.patch
>
>Well.... That did not work. WHat did I do wrong?
Download message in raw format, save as text not source and patch
direct from the downloaded file, no need to edit it. If patches are
too difficult, just use unpatched 2.4.19-pre8-ac2 with 'make clean dep'
instead of 'make dep clean'.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2002-05-13 2:13 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-12 2:11 [patch] 2.4.19-pre8-ac2 kbuild 2.4 tmp_include_depends Keith Owens
2002-05-12 9:04 ` Axel H. Siebenwirth
2002-05-12 10:11 ` Keith Owens
2002-05-12 10:39 ` Tomas Szepe
2002-05-12 12:22 ` Keith Owens
2002-05-12 12:54 ` Tomas Szepe
2002-05-13 2:10 ` khromy
2002-05-13 2:13 ` Keith Owens
-- strict thread matches above, loose matches on Subject: below --
2002-05-12 11:31 Hugh
2002-05-12 11:50 ` Keith Owens
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.