* [RFC] removing DISTRO_* vars from task-boot
@ 2009-02-17 12:26 Koen Kooi
2009-02-17 16:35 ` Tom Rini
2009-02-19 11:08 ` Marcin Juszkiewicz
0 siblings, 2 replies; 12+ messages in thread
From: Koen Kooi @ 2009-02-17 12:26 UTC (permalink / raw)
To: openembedded-devel
Hi,
Lately I have been wondering how to change the /dev manager on a per
image base, since I want udev for most images and busybox-mdev for
special-purpose stuff. The catch is that I want to keep using task-boot
for both.
Currently we have:
DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
"udev","",d)} "
DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
DISTRO_INITSCRIPTS ?= "initscripts"
DISTRO_LOGIN_MANAGER ?= "tinylogin"
in task-boot.bb
There are various ways we could attack this:
1) The image.bbclass way:
Put the following in image.bbclass:
IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES",
"kernel26", "udev","",d)} "
IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
IMAGE_INITSCRIPTS ?= "initscripts"
IMAGE_LOGIN_MANAGER ?= "tinylogin"
Pros:
* Takes immediate effect
* Can have distro defaults, overridable per image
Cons:
* marks them as 'user installed'
* you can't 'debootstrap' from tasks anymore, you need to encode
knowledge about the above vars into the debootstrap script
2) Make task-boot nostamp
Pros:
* takes effect on image build time
* Can have distro defaults, overridable per image
Cons:
* QA hell, there's no way to tell what's inside task-boot_1.0-r87.ipk
from the outside
3) Have task-boot.bb create task-boot-mdev and task-boot-udev
Pros:
* clean
* solves my immediate need
Cons:
* doesn't scale for other vars
4) Move the vars to RRECOMMENDS and filter them out with BAD_RECOMMENDATIONS
Pros:
* takes effect on image time
* performs as expected
Cons:
* image build succeeds when no /dev manager is present
What are your opinions on all this?
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-17 12:26 [RFC] removing DISTRO_* vars from task-boot Koen Kooi
@ 2009-02-17 16:35 ` Tom Rini
2009-02-18 18:43 ` Koen Kooi
2009-02-19 11:08 ` Marcin Juszkiewicz
1 sibling, 1 reply; 12+ messages in thread
From: Tom Rini @ 2009-02-17 16:35 UTC (permalink / raw)
To: openembedded-devel
On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
> Hi,
>
> Lately I have been wondering how to change the /dev manager on a per
> image base, since I want udev for most images and busybox-mdev for
> special-purpose stuff. The catch is that I want to keep using task-boot
> for both.
>
> Currently we have:
>
> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
> "udev","",d)} "
> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
> DISTRO_INITSCRIPTS ?= "initscripts"
> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>
> in task-boot.bb
>
> There are various ways we could attack this:
>
> 1) The image.bbclass way:
>
> Put the following in image.bbclass:
>
> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
> "udev","",d)} "
> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
> IMAGE_INITSCRIPTS ?= "initscripts"
> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>
> Pros:
> * Takes immediate effect
> * Can have distro defaults, overridable per image
>
> Cons:
> * marks them as 'user installed'
> * you can't 'debootstrap' from tasks anymore, you need to encode
> knowledge about the above vars into the debootstrap script
I really like this one as for our uses there's times where I'd rather
let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
--
Tom Rini
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-17 16:35 ` Tom Rini
@ 2009-02-18 18:43 ` Koen Kooi
2009-02-18 19:22 ` Tom Rini
2009-02-18 20:07 ` Philip Balister
0 siblings, 2 replies; 12+ messages in thread
From: Koen Kooi @ 2009-02-18 18:43 UTC (permalink / raw)
To: openembedded-devel
On 17-02-09 17:35, Tom Rini wrote:
> On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
>
>> Hi,
>>
>> Lately I have been wondering how to change the /dev manager on a per
>> image base, since I want udev for most images and busybox-mdev for
>> special-purpose stuff. The catch is that I want to keep using task-boot
>> for both.
>>
>> Currently we have:
>>
>> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>> "udev","",d)}"
>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>> DISTRO_INITSCRIPTS ?= "initscripts"
>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>>
>> in task-boot.bb
>>
>> There are various ways we could attack this:
>>
>> 1) The image.bbclass way:
>>
>> Put the following in image.bbclass:
>>
>> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>> "udev","",d)}"
>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>> IMAGE_INITSCRIPTS ?= "initscripts"
>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>>
>> Pros:
>> * Takes immediate effect
>> * Can have distro defaults, overridable per image
>>
>> Cons:
>> * marks them as 'user installed'
>> * you can't 'debootstrap' from tasks anymore, you need to encode
>> knowledge about the above vars into the debootstrap script
>
> I really like this one as for our uses there's times where I'd rather
> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
Philip C. agrees with you. Should be move everything over or start with
IMAGE_DEV_MANAGER?
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-18 18:43 ` Koen Kooi
@ 2009-02-18 19:22 ` Tom Rini
2009-02-19 10:40 ` Koen Kooi
2009-02-18 20:07 ` Philip Balister
1 sibling, 1 reply; 12+ messages in thread
From: Tom Rini @ 2009-02-18 19:22 UTC (permalink / raw)
To: openembedded-devel
On Wed, Feb 18, 2009 at 07:43:42PM +0100, Koen Kooi wrote:
> On 17-02-09 17:35, Tom Rini wrote:
>> On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
>>
>>> Hi,
>>>
>>> Lately I have been wondering how to change the /dev manager on a per
>>> image base, since I want udev for most images and busybox-mdev for
>>> special-purpose stuff. The catch is that I want to keep using task-boot
>>> for both.
>>>
>>> Currently we have:
>>>
>>> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>> "udev","",d)}"
>>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>> DISTRO_INITSCRIPTS ?= "initscripts"
>>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>>>
>>> in task-boot.bb
>>>
>>> There are various ways we could attack this:
>>>
>>> 1) The image.bbclass way:
>>>
>>> Put the following in image.bbclass:
>>>
>>> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>> "udev","",d)}"
>>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>> IMAGE_INITSCRIPTS ?= "initscripts"
>>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>>>
>>> Pros:
>>> * Takes immediate effect
>>> * Can have distro defaults, overridable per image
>>>
>>> Cons:
>>> * marks them as 'user installed'
>>> * you can't 'debootstrap' from tasks anymore, you need to encode
>>> knowledge about the above vars into the debootstrap script
>>
>> I really like this one as for our uses there's times where I'd rather
>> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
>
> Philip C. agrees with you. Should be move everything over or start with
> IMAGE_DEV_MANAGER?
I say do it all now. Flexibility is good, lets get it done.
--
Tom Rini
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-18 19:22 ` Tom Rini
@ 2009-02-19 10:40 ` Koen Kooi
2009-02-19 11:00 ` Sledz, Steffen
2009-02-19 11:14 ` Koen Kooi
0 siblings, 2 replies; 12+ messages in thread
From: Koen Kooi @ 2009-02-19 10:40 UTC (permalink / raw)
To: openembedded-devel
On 18-02-09 20:22, Tom Rini wrote:
> On Wed, Feb 18, 2009 at 07:43:42PM +0100, Koen Kooi wrote:
>> On 17-02-09 17:35, Tom Rini wrote:
>>> On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
>>>
>>>> Hi,
>>>>
>>>> Lately I have been wondering how to change the /dev manager on a per
>>>> image base, since I want udev for most images and busybox-mdev for
>>>> special-purpose stuff. The catch is that I want to keep using task-boot
>>>> for both.
>>>>
>>>> Currently we have:
>>>>
>>>> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>>> "udev","",d)}"
>>>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>>> DISTRO_INITSCRIPTS ?= "initscripts"
>>>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>>>>
>>>> in task-boot.bb
>>>>
>>>> There are various ways we could attack this:
>>>>
>>>> 1) The image.bbclass way:
>>>>
>>>> Put the following in image.bbclass:
>>>>
>>>> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>>> "udev","",d)}"
>>>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>>> IMAGE_INITSCRIPTS ?= "initscripts"
>>>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>>>>
>>>> Pros:
>>>> * Takes immediate effect
>>>> * Can have distro defaults, overridable per image
>>>>
>>>> Cons:
>>>> * marks them as 'user installed'
>>>> * you can't 'debootstrap' from tasks anymore, you need to encode
>>>> knowledge about the above vars into the debootstrap script
>>> I really like this one as for our uses there's times where I'd rather
>>> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
>> Philip C. agrees with you. Should be move everything over or start with
>> IMAGE_DEV_MANAGER?
>
> I say do it all now. Flexibility is good, lets get it done.
The patch should appear on this ml right about now.
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-19 10:40 ` Koen Kooi
@ 2009-02-19 11:00 ` Sledz, Steffen
2009-02-19 11:26 ` Koen Kooi
2009-02-19 11:14 ` Koen Kooi
1 sibling, 1 reply; 12+ messages in thread
From: Sledz, Steffen @ 2009-02-19 11:00 UTC (permalink / raw)
To: openembedded-devel
> >>>> Lately I have been wondering how to change the /dev
> manager on a per
> >>>> image base, since I want udev for most images and
> busybox-mdev for
> >>>> special-purpose stuff. The catch is that I want to keep
> using task-boot
> >>>> for both.
> >>>>
> >>>> Currently we have:
> >>>>
> >>>> DISTRO_DEV_MANAGER ?=
> "${@base_contains("MACHINE_FEATURES", "kernel26",
> >>>> "udev","",d)}"
> >>>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
> >>>> DISTRO_INITSCRIPTS ?= "initscripts"
> >>>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
> >>>>
> >>>> in task-boot.bb
> >>>>
> >>>> There are various ways we could attack this:
> >>>>
> >>>> 1) The image.bbclass way:
> >>>>
> >>>> Put the following in image.bbclass:
> >>>>
> >>>> IMAGE_DEV_MANAGER ?=
> "${@base_contains("MACHINE_FEATURES", "kernel26",
> >>>> "udev","",d)}"
> >>>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
> >>>> IMAGE_INITSCRIPTS ?= "initscripts"
> >>>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
> >>>>
> >>>> Pros:
> >>>> * Takes immediate effect
> >>>> * Can have distro defaults, overridable per image
> >>>>
> >>>> Cons:
> >>>> * marks them as 'user installed'
> >>>> * you can't 'debootstrap' from tasks anymore, you
> need to encode
> >>>> knowledge about the above vars into the debootstrap script
> >>> I really like this one as for our uses there's times
> where I'd rather
> >>> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
> >> Philip C. agrees with you. Should be move everything over
> or start with
> >> IMAGE_DEV_MANAGER?
> >
> > I say do it all now. Flexibility is good, lets get it done.
>
> The patch should appear on this ml right about now.
This is a good (or bad?) example for the wish a uttered some days before. In the official OE manual there is nothing to read about DISTRO_* and/or IMAGE_* vars.
It would be really helpful for other developers which are not that familiar with all the variable stuff and do not memorize the complete mailing list if you could start to document such things in the wiki.
Thx,
Steffen
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-19 11:00 ` Sledz, Steffen
@ 2009-02-19 11:26 ` Koen Kooi
2009-02-19 12:17 ` Sledz, Steffen
0 siblings, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2009-02-19 11:26 UTC (permalink / raw)
To: openembedded-devel
On 19-02-09 12:00, Sledz, Steffen wrote:
> This is a good (or bad?) example for the wish a uttered some days before. In the official OE manual there is nothing to read about DISTRO_* and/or IMAGE_* vars.
The manual is in git, anyone can edit it. If you think someone is
missing, add it.
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-19 11:26 ` Koen Kooi
@ 2009-02-19 12:17 ` Sledz, Steffen
0 siblings, 0 replies; 12+ messages in thread
From: Sledz, Steffen @ 2009-02-19 12:17 UTC (permalink / raw)
To: openembedded-devel
> > This is a good (or bad?) example for the wish a uttered
> > some days before. In the official OE manual there is nothing
> > to read about DISTRO_* and/or IMAGE_* vars.
>
> The manual is in git, anyone can edit it. If you think someone is
> missing, add it.
Sorry, but this is not very constructive.
I do not have the knowledge about these things, but you(*) have (i believe). So i can't document this, but you can.
I know that documentation is a very boring and time consuming task (i'm a software developer myself), but it is an essential part of development. And if you want to avoid later problems (beginning from annoying, repetitive questions in the mailing list up to dirty patches based on misunderstanding), you should not ignore this task.
(*) Here 'you' is not just Koen but everyone who is responsible for a bigger a smaller part of OE.
Regards,
Steffen
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-19 10:40 ` Koen Kooi
2009-02-19 11:00 ` Sledz, Steffen
@ 2009-02-19 11:14 ` Koen Kooi
2009-02-19 12:51 ` Marcin Juszkiewicz
1 sibling, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2009-02-19 11:14 UTC (permalink / raw)
To: openembedded-devel
On 19-02-09 11:40, Koen Kooi wrote:
> On 18-02-09 20:22, Tom Rini wrote:
>> On Wed, Feb 18, 2009 at 07:43:42PM +0100, Koen Kooi wrote:
>>> On 17-02-09 17:35, Tom Rini wrote:
>>>> On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> Lately I have been wondering how to change the /dev manager on a per
>>>>> image base, since I want udev for most images and busybox-mdev for
>>>>> special-purpose stuff. The catch is that I want to keep using
>>>>> task-boot
>>>>> for both.
>>>>>
>>>>> Currently we have:
>>>>>
>>>>> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES",
>>>>> "kernel26",
>>>>> "udev","",d)}"
>>>>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>>>> DISTRO_INITSCRIPTS ?= "initscripts"
>>>>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>>>>>
>>>>> in task-boot.bb
>>>>>
>>>>> There are various ways we could attack this:
>>>>>
>>>>> 1) The image.bbclass way:
>>>>>
>>>>> Put the following in image.bbclass:
>>>>>
>>>>> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>>>> "udev","",d)}"
>>>>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>>>> IMAGE_INITSCRIPTS ?= "initscripts"
>>>>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>>>>>
>>>>> Pros:
>>>>> * Takes immediate effect
>>>>> * Can have distro defaults, overridable per image
>>>>>
>>>>> Cons:
>>>>> * marks them as 'user installed'
>>>>> * you can't 'debootstrap' from tasks anymore, you need to encode
>>>>> knowledge about the above vars into the debootstrap script
>>>> I really like this one as for our uses there's times where I'd rather
>>>> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
>>> Philip C. agrees with you. Should be move everything over or start with
>>> IMAGE_DEV_MANAGER?
>>
>> I say do it all now. Flexibility is good, lets get it done.
>
> The patch should appear on this ml right about now.
Mailman seems to hate me:
http://amethyst.openembedded.net/~koen/0001-task-boot-rename-DISTRO_-vars-to-IMAGE_-vars-and-mo.patch
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-18 18:43 ` Koen Kooi
2009-02-18 19:22 ` Tom Rini
@ 2009-02-18 20:07 ` Philip Balister
1 sibling, 0 replies; 12+ messages in thread
From: Philip Balister @ 2009-02-18 20:07 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1888 bytes --]
Koen Kooi wrote:
> On 17-02-09 17:35, Tom Rini wrote:
>> On Tue, Feb 17, 2009 at 01:26:34PM +0100, Koen Kooi wrote:
>>
>>> Hi,
>>>
>>> Lately I have been wondering how to change the /dev manager on a per
>>> image base, since I want udev for most images and busybox-mdev for
>>> special-purpose stuff. The catch is that I want to keep using task-boot
>>> for both.
>>>
>>> Currently we have:
>>>
>>> DISTRO_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES", "kernel26",
>>> "udev","",d)}"
>>> DISTRO_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>> DISTRO_INITSCRIPTS ?= "initscripts"
>>> DISTRO_LOGIN_MANAGER ?= "tinylogin"
>>>
>>> in task-boot.bb
>>>
>>> There are various ways we could attack this:
>>>
>>> 1) The image.bbclass way:
>>>
>>> Put the following in image.bbclass:
>>>
>>> IMAGE_DEV_MANAGER ?= "${@base_contains("MACHINE_FEATURES",
>>> "kernel26",
>>> "udev","",d)}"
>>> IMAGE_INIT_MANAGER ?= "sysvinit sysvinit-pidof"
>>> IMAGE_INITSCRIPTS ?= "initscripts"
>>> IMAGE_LOGIN_MANAGER ?= "tinylogin"
>>>
>>> Pros:
>>> * Takes immediate effect
>>> * Can have distro defaults, overridable per image
>>>
>>> Cons:
>>> * marks them as 'user installed'
>>> * you can't 'debootstrap' from tasks anymore, you need to encode
>>> knowledge about the above vars into the debootstrap script
>>
>> I really like this one as for our uses there's times where I'd rather
>> let busybox handle INIT_MANAGER and LOGIN_MANAGER too.
>
> Philip C. agrees with you. Should be move everything over or start with
> IMAGE_DEV_MANAGER?
I should mention my specific issues with solutions and my disclaimer:
2) I do not like QA hell.
3) not scaling is bad.
4) building images that do not boot is bad.
I do not know much about all this, so do not listen to me.
And I am interested in trying mdev.
Philip
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC] removing DISTRO_* vars from task-boot
2009-02-17 12:26 [RFC] removing DISTRO_* vars from task-boot Koen Kooi
2009-02-17 16:35 ` Tom Rini
@ 2009-02-19 11:08 ` Marcin Juszkiewicz
1 sibling, 0 replies; 12+ messages in thread
From: Marcin Juszkiewicz @ 2009-02-19 11:08 UTC (permalink / raw)
To: openembedded-devel
On Tuesday 17 of February 2009 13:26:34 Koen Kooi wrote:
> Lately I have been wondering how to change the /dev manager on a per
> image base, since I want udev for most images and busybox-mdev for
> special-purpose stuff. The catch is that I want to keep using
> task-boot for both.
> There are various ways we could attack this:
>
> 1) The image.bbclass way:
+1 for it
> 2) Make task-boot nostamp
No!
> 3) Have task-boot.bb create task-boot-mdev and task-boot-udev
sounds better then 2) but has same problems as 1) so I will not go that
way.
> 4) Move the vars to RRECOMMENDS and filter them out with
> BAD_RECOMMENDATIONS
No!
Regards,
--
JID: hrw@jabber.org
Website: http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2009-02-19 12:53 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17 12:26 [RFC] removing DISTRO_* vars from task-boot Koen Kooi
2009-02-17 16:35 ` Tom Rini
2009-02-18 18:43 ` Koen Kooi
2009-02-18 19:22 ` Tom Rini
2009-02-19 10:40 ` Koen Kooi
2009-02-19 11:00 ` Sledz, Steffen
2009-02-19 11:26 ` Koen Kooi
2009-02-19 12:17 ` Sledz, Steffen
2009-02-19 11:14 ` Koen Kooi
2009-02-19 12:51 ` Marcin Juszkiewicz
2009-02-18 20:07 ` Philip Balister
2009-02-19 11:08 ` Marcin Juszkiewicz
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.