linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Initramfs
@ 2003-08-21  4:44 Garrett Kajmowicz
  2003-08-21  6:30 ` Initramfs Bryan O'Sullivan
  0 siblings, 1 reply; 19+ messages in thread
From: Garrett Kajmowicz @ 2003-08-21  4:44 UTC (permalink / raw)
  To: linux-kernel

I would like to start off by thanking everybody for their help with my last 
question,  Much appreciated.

I am currently testing kernel 2.6.0-test3, specifically the initramfs feature, 
under VMWare

Upon booting I get the following:

Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8196 (order: 3, 32768 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
->(three characters, an 'o' with an I superimposed, a carat^, and a white 
smilyface)
Kernel panic: populate_root: bogus mode: 0

In idle task - not syncing

===Creation details - verbose===

I have created a directory tree on my system that I would like to use as a 
root fs.  I then created (from the root of that structure) the cpio archive 
by using
find | cpio -ov > ../filesystem.cpio
cd ..
gzip -9 filesystem.cpio
I then copied the file into the proper location in the source tree, compiled 
and had everything boot nicely.

I used syslinux to boot the kernel from a disk (only way I could get it to 
work on the virtual disk image to boot under VMWare)

===End of Creation details===

How would you suggest I go about fixing this problem, or do you require more 
information?  Also, is there a good detailed FAQ or a HOWTO document available 
online that I might be able to refer to?

Once again, thank you for your assistance.

Garrett Kajmowicz
gkajmowi@tbaytel.net


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21  4:44 Initramfs Garrett Kajmowicz
@ 2003-08-21  6:30 ` Bryan O'Sullivan
  2003-08-21 14:19   ` Initramfs Jeff Garzik
  0 siblings, 1 reply; 19+ messages in thread
From: Bryan O'Sullivan @ 2003-08-21  6:30 UTC (permalink / raw)
  To: gkajmowi; +Cc: linux-kernel

On Wed, 2003-08-20 at 21:44, Garrett Kajmowicz wrote:

> Upon booting I get the following:
> 
> Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
> Inode-cache hash table entries: 8196 (order: 3, 32768 bytes)
> Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
> ->(three characters, an 'o' with an I superimposed, a carat^, and a white 
> smilyface)
> Kernel panic: populate_root: bogus mode: 0
> 
> In idle task - not syncing

The initramfs cpio unpacker is quite cranky, and has some undocumented
limits.  What does "cpio -itv" report on your cpio archive?

If your archive contains any symlinks, for example, the unpacker will
almost certainly blow up.

> How would you suggest I go about fixing this problem, or do you require more 
> information?

If you actually want to fix the problem, you'll want to port
init/initramfs.c to userspace, hammer on it until it unpacks what you
want, then port the patches back to the kernel code and test them
there.  Unless you're unbelievably patient, in which case do all the
hacking on the kernel code and reboot a lot.

> Also, is there a good detailed FAQ or a HOWTO document available 
> online that I might be able to refer to?

No.  initramfs is stuck in limbo at the moment, and early userspace is
unlikely to see any real work until 2.7.  Feel free to ask questions,
but don't expect them to result in anything actually happening.

If you want to do real work in this area, the klibc mailing list is the
place to go: http://www.zytor.com/mailman/listinfo/klibc

	<b


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21  6:30 ` Initramfs Bryan O'Sullivan
@ 2003-08-21 14:19   ` Jeff Garzik
  2003-08-21 18:28     ` Initramfs Bryan O'Sullivan
                       ` (2 more replies)
  0 siblings, 3 replies; 19+ messages in thread
From: Jeff Garzik @ 2003-08-21 14:19 UTC (permalink / raw)
  To: Bryan O'Sullivan; +Cc: gkajmowi, linux-kernel

Bryan O'Sullivan wrote:
> No.  initramfs is stuck in limbo at the moment, and early userspace is
> unlikely to see any real work until 2.7.  Feel free to ask questions,
> but don't expect them to result in anything actually happening.
> 
> If you want to do real work in this area, the klibc mailing list is the
> place to go: http://www.zytor.com/mailman/listinfo/klibc


Correct, though there is one thing I am thinking about adding to 2.6:

Support replacing "initrd=" with "initramfs=", so that bootloaders can 
pass a cpio image into the standard initrd memory space.

	Jeff




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 14:19   ` Initramfs Jeff Garzik
@ 2003-08-21 18:28     ` Bryan O'Sullivan
  2003-08-21 19:03       ` Initramfs viro
  2003-08-21 22:31     ` Initramfs Werner Almesberger
  2003-08-28 20:07     ` Initramfs H. Peter Anvin
  2 siblings, 1 reply; 19+ messages in thread
From: Bryan O'Sullivan @ 2003-08-21 18:28 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: gkajmowi, linux-kernel

On Thu, 2003-08-21 at 07:19, Jeff Garzik wrote:

> Support replacing "initrd=" with "initramfs=", so that bootloaders can 
> pass a cpio image into the standard initrd memory space.

That would be nice to have, but it would also increase the pressure to
fix the cpio unpacker.  At least right now, its deficiencies don't cause
many problems, because initramfs is less than convenient to use.

	<b


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 18:28     ` Initramfs Bryan O'Sullivan
@ 2003-08-21 19:03       ` viro
  2003-08-21 19:57         ` Initramfs Bryan O'Sullivan
  0 siblings, 1 reply; 19+ messages in thread
From: viro @ 2003-08-21 19:03 UTC (permalink / raw)
  To: Bryan O'Sullivan; +Cc: Jeff Garzik, gkajmowi, linux-kernel

On Thu, Aug 21, 2003 at 11:28:10AM -0700, Bryan O'Sullivan wrote:
> On Thu, 2003-08-21 at 07:19, Jeff Garzik wrote:
> 
> > Support replacing "initrd=" with "initramfs=", so that bootloaders can 
> > pass a cpio image into the standard initrd memory space.
> 
> That would be nice to have, but it would also increase the pressure to
> fix the cpio unpacker.  At least right now, its deficiencies don't cause
> many problems, because initramfs is less than convenient to use.

RTFM.  cpio -o -H newc should be used to create an archive; _not_ the
"binary" format that is default.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 19:03       ` Initramfs viro
@ 2003-08-21 19:57         ` Bryan O'Sullivan
  2003-08-21 20:22           ` Initramfs Willy Tarreau
  2003-08-21 20:56           ` Initramfs viro
  0 siblings, 2 replies; 19+ messages in thread
From: Bryan O'Sullivan @ 2003-08-21 19:57 UTC (permalink / raw)
  To: viro; +Cc: Jeff Garzik, gkajmowi, linux-kernel

On Thu, 2003-08-21 at 12:03, viro@parcelfarce.linux.theplanet.co.uk
wrote:

> RTFM.  cpio -o -H newc should be used to create an archive; _not_ the
> "binary" format that is default.

There is no FM to R in this regard.

	<b


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 19:57         ` Initramfs Bryan O'Sullivan
@ 2003-08-21 20:22           ` Willy Tarreau
  2003-08-21 20:56           ` Initramfs viro
  1 sibling, 0 replies; 19+ messages in thread
From: Willy Tarreau @ 2003-08-21 20:22 UTC (permalink / raw)
  To: Bryan O'Sullivan; +Cc: viro, Jeff Garzik, gkajmowi, linux-kernel

On Thu, Aug 21, 2003 at 12:57:34PM -0700, Bryan O'Sullivan wrote:
> On Thu, 2003-08-21 at 12:03, viro@parcelfarce.linux.theplanet.co.uk
> wrote:
> 
> > RTFM.  cpio -o -H newc should be used to create an archive; _not_ the
> > "binary" format that is default.
> 
> There is no FM to R in this regard.

Except if he meant "Reclaim The Future Manual"
:-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 19:57         ` Initramfs Bryan O'Sullivan
  2003-08-21 20:22           ` Initramfs Willy Tarreau
@ 2003-08-21 20:56           ` viro
  2003-08-21 22:34             ` Initramfs H. Peter Anvin
  1 sibling, 1 reply; 19+ messages in thread
From: viro @ 2003-08-21 20:56 UTC (permalink / raw)
  To: Bryan O'Sullivan; +Cc: Jeff Garzik, gkajmowi, linux-kernel, hpa

On Thu, Aug 21, 2003 at 12:57:34PM -0700, Bryan O'Sullivan wrote:
> On Thu, 2003-08-21 at 12:03, viro@parcelfarce.linux.theplanet.co.uk
> wrote:
> 
> > RTFM.  cpio -o -H newc should be used to create an archive; _not_ the
> > "binary" format that is default.
> 
> There is no FM to R in this regard.

Ouch.  My apologies - I'd assumed that it got into the tree and hadn't
checked that.  Google for "initramfs buffer spec" will give the text
I had in mind.  Probably ought to go in Documentation/*, unless hpa
has any problems with it.  Peter?

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 14:19   ` Initramfs Jeff Garzik
  2003-08-21 18:28     ` Initramfs Bryan O'Sullivan
@ 2003-08-21 22:31     ` Werner Almesberger
  2003-08-21 22:41       ` Initramfs Jeff Garzik
  2003-08-28 20:07     ` Initramfs H. Peter Anvin
  2 siblings, 1 reply; 19+ messages in thread
From: Werner Almesberger @ 2003-08-21 22:31 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Bryan O'Sullivan, gkajmowi, linux-kernel

Jeff Garzik wrote:
> Support replacing "initrd=" with "initramfs=", so that bootloaders can 
> pass a cpio image into the standard initrd memory space.

This sounds like a very good idea, yes.

Or, maybe even make it such that initramfs acts like a file system,
that will just de-cpio the content of a block device to a ramfs.

Pro:
 - requires less or no changes to existing initrd
 - one can experiment with initramfs loaded from other sources than
   an initrd

Contra: 
 - needs more infrastructure than plain initramfs

- Werner

-- 
  _________________________________________________________________________
 / Werner Almesberger, Buenos Aires, Argentina         wa@almesberger.net /
/_http://www.almesberger.net/____________________________________________/

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 20:56           ` Initramfs viro
@ 2003-08-21 22:34             ` H. Peter Anvin
  0 siblings, 0 replies; 19+ messages in thread
From: H. Peter Anvin @ 2003-08-21 22:34 UTC (permalink / raw)
  To: viro; +Cc: Bryan O'Sullivan, Jeff Garzik, gkajmowi, linux-kernel

viro@parcelfarce.linux.theplanet.co.uk wrote:
> On Thu, Aug 21, 2003 at 12:57:34PM -0700, Bryan O'Sullivan wrote:
> 
>>On Thu, 2003-08-21 at 12:03, viro@parcelfarce.linux.theplanet.co.uk
>>wrote:
>>
>>>RTFM.  cpio -o -H newc should be used to create an archive; _not_ the
>>>"binary" format that is default.
>>
>>There is no FM to R in this regard.
> 
> Ouch.  My apologies - I'd assumed that it got into the tree and hadn't
> checked that.  Google for "initramfs buffer spec" will give the text
> I had in mind.  Probably ought to go in Documentation/*, unless hpa
> has any problems with it.  Peter?

I concur wholeheartedly.

	-hpa


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 22:31     ` Initramfs Werner Almesberger
@ 2003-08-21 22:41       ` Jeff Garzik
  2003-08-21 23:15         ` Initramfs Werner Almesberger
  0 siblings, 1 reply; 19+ messages in thread
From: Jeff Garzik @ 2003-08-21 22:41 UTC (permalink / raw)
  To: Werner Almesberger; +Cc: Bryan O'Sullivan, gkajmowi, linux-kernel

Werner Almesberger wrote:
> Jeff Garzik wrote:
> 
>>Support replacing "initrd=" with "initramfs=", so that bootloaders can 
>>pass a cpio image into the standard initrd memory space.
> 
> 
> This sounds like a very good idea, yes.
> 
> Or, maybe even make it such that initramfs acts like a file system,
> that will just de-cpio the content of a block device to a ramfs.


initramfs _must_ act like a file system ;-)

Basically, instead of rd+ext2, you have rootfs.

	Jeff




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 22:41       ` Initramfs Jeff Garzik
@ 2003-08-21 23:15         ` Werner Almesberger
  0 siblings, 0 replies; 19+ messages in thread
From: Werner Almesberger @ 2003-08-21 23:15 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Bryan O'Sullivan, gkajmowi, linux-kernel

Jeff Garzik wrote:
> initramfs _must_ act like a file system ;-)

Yes, yes :-) I mean, not only during operation, but also when
initializing (i.e. that it loads its data from a block device).

- Werner

-- 
  _________________________________________________________________________
 / Werner Almesberger, Buenos Aires, Argentina         wa@almesberger.net /
/_http://www.almesberger.net/____________________________________________/

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Initramfs
  2003-08-21 14:19   ` Initramfs Jeff Garzik
  2003-08-21 18:28     ` Initramfs Bryan O'Sullivan
  2003-08-21 22:31     ` Initramfs Werner Almesberger
@ 2003-08-28 20:07     ` H. Peter Anvin
  2 siblings, 0 replies; 19+ messages in thread
From: H. Peter Anvin @ 2003-08-28 20:07 UTC (permalink / raw)
  To: linux-kernel

Followup to:  <3F44D504.7060909@pobox.com>
By author:    Jeff Garzik <jgarzik@pobox.com>
In newsgroup: linux.dev.kernel
>
> Bryan O'Sullivan wrote:
> > No.  initramfs is stuck in limbo at the moment, and early userspace is
> > unlikely to see any real work until 2.7.  Feel free to ask questions,
> > but don't expect them to result in anything actually happening.
> > 
> > If you want to do real work in this area, the klibc mailing list is the
> > place to go: http://www.zytor.com/mailman/listinfo/klibc
> 
> Correct, though there is one thing I am thinking about adding to 2.6:
> 
> Support replacing "initrd=" with "initramfs=", so that bootloaders can 
> pass a cpio image into the standard initrd memory space.
> 

Note that the initrd= option is actually a boot loader option, not a
kernel option, so the name of the option shouldn't change.

But yes, an initramfs image loaded into initrd space should be
unpacked *on top of* what's already compiled into the kernel.

	-hpa
-- 
<hpa@transmeta.com> at work, <hpa@zytor.com> in private!
If you send me mail in HTML format I will assume it's spam.
"Unix gives you enough rope to shoot yourself in the foot."
Architectures needed: ia64 m68k mips64 ppc ppc64 s390 s390x sh v850 x86-64

^ permalink raw reply	[flat|nested] 19+ messages in thread

* initramfs
@ 2005-07-13 10:06 Jacek Jabłoński
  0 siblings, 0 replies; 19+ messages in thread
From: Jacek Jabłoński @ 2005-07-13 10:06 UTC (permalink / raw)
  To: linux-kernel

Hello,
Do You know any tool to create initramfs (not initrd)?
If not, please tell me how to do that?
Jacek Jabłoński

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: initramfs
  2005-05-25 18:45   ` initramfs Wakko Warner
@ 2005-05-25 19:54     ` Wakko Warner
  0 siblings, 0 replies; 19+ messages in thread
From: Wakko Warner @ 2005-05-25 19:54 UTC (permalink / raw)
  To: Lennart Sorensen; +Cc: linux-kernel

Wakko Warner wrote:
> Lennart Sorensen wrote:
> > I didn't know you could use CPIO archives as initrd images.  I have used
> > gzip'd ext2 and cramfs (on Debian kernels only so far).  Actually I
> > didn't know cpio was even considered a filesystem (and hence would be
> > difficult to mount at all).
> 
> Apparently, initrd is just a name and a buffer.  Whatever it does with it is
> a different story.  If the buffer looks like a cpio archive, it mounts tmpfs
> as / and populates it from the archive.  No ramdisk driver, no filesystem
> driver required.

Unfortunately, I noticed that the ramdisk driver has to be compiled in (I
didn't try w/o initrd support).  Atleast I dropped ext2 from my compiled in
list (NO filesystems in my kernel!)

Now it would be nice if I could remove rd from the compiled in list as well
(even thought it would only save a few K)

> Unfortunately for me, it doesn't work.  I'm still trying to figure out how
> it works.

As I stated earlier it now works.  error with my archive.

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: initramfs
  2005-05-25 17:41 initramfs Wakko Warner
  2005-05-25 18:26 ` initramfs Lennart Sorensen
@ 2005-05-25 18:54 ` Wakko Warner
  1 sibling, 0 replies; 19+ messages in thread
From: Wakko Warner @ 2005-05-25 18:54 UTC (permalink / raw)
  To: linux-kernel

Wakko Warner wrote:
> running cpio -tv, I see:
> ...
> -rwxr-xr-x   1 root     root       452508 May  5 14:33 bin/busybox
> ...
> -rwxr-xr-x   1 root     root         1328 May  9 15:46 init
> ...
> 
> Now I see a message saying:
> Kernel panic - not syncing: No init found.  Try passing init= option to kernel.

My fault. I haven't used cpio much.  The cpio archive contained only files,
no directories, thus there was no /bin to put /bin/busybox in.  I now have
it working.

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: initramfs
  2005-05-25 18:26 ` initramfs Lennart Sorensen
@ 2005-05-25 18:45   ` Wakko Warner
  2005-05-25 19:54     ` initramfs Wakko Warner
  0 siblings, 1 reply; 19+ messages in thread
From: Wakko Warner @ 2005-05-25 18:45 UTC (permalink / raw)
  To: Lennart Sorensen; +Cc: linux-kernel

Lennart Sorensen wrote:
> I didn't know you could use CPIO archives as initrd images.  I have used
> gzip'd ext2 and cramfs (on Debian kernels only so far).  Actually I
> didn't know cpio was even considered a filesystem (and hence would be
> difficult to mount at all).

Apparently, initrd is just a name and a buffer.  Whatever it does with it is
a different story.  If the buffer looks like a cpio archive, it mounts tmpfs
as / and populates it from the archive.  No ramdisk driver, no filesystem
driver required.

Unfortunately for me, it doesn't work.  I'm still trying to figure out how
it works.

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: initramfs
  2005-05-25 17:41 initramfs Wakko Warner
@ 2005-05-25 18:26 ` Lennart Sorensen
  2005-05-25 18:45   ` initramfs Wakko Warner
  2005-05-25 18:54 ` initramfs Wakko Warner
  1 sibling, 1 reply; 19+ messages in thread
From: Lennart Sorensen @ 2005-05-25 18:26 UTC (permalink / raw)
  To: linux-kernel

On Wed, May 25, 2005 at 01:41:35PM -0400, Wakko Warner wrote:
> I'm having problems with this.  I apparently have a cpio archive that the
> kernel likes.  I am starting via grub with basically:
> kernel /mykernel
> initrd /mycpiofile
> 
> At first, I got "can't mount root".  A little reading in main.c has it
> looking for /init  (shouldn't this be /bin/init instead?)
> 
> I moved my ./bin/init to . in my init filesystem tree and recreated the
> cpio.  my ./init script is a "#!/bin/busybox ash" script.
> 
> running cpio -tv, I see:
> ...
> -rwxr-xr-x   1 root     root       452508 May  5 14:33 bin/busybox
> ...
> -rwxr-xr-x   1 root     root         1328 May  9 15:46 init
> ...
> 
> Now I see a message saying:
> Kernel panic - not syncing: No init found.  Try passing init= option to kernel.
> 
> I did that.  According to the source, init= is overridden when /init exists.
> 
> I'd like to get off the initrd ramdisk style to save some more on space.
> 
> I assume it is populating properly since also I don't see the initial console
> warning message.
> 
> Kernel: vanilla 2.6.12-rc4 compiled with -Os with debian gcc 3.3.5-1

I didn't know you could use CPIO archives as initrd images.  I have used
gzip'd ext2 and cramfs (on Debian kernels only so far).  Actually I
didn't know cpio was even considered a filesystem (and hence would be
difficult to mount at all).

Len Sorensen

^ permalink raw reply	[flat|nested] 19+ messages in thread

* initramfs
@ 2005-05-25 17:41 Wakko Warner
  2005-05-25 18:26 ` initramfs Lennart Sorensen
  2005-05-25 18:54 ` initramfs Wakko Warner
  0 siblings, 2 replies; 19+ messages in thread
From: Wakko Warner @ 2005-05-25 17:41 UTC (permalink / raw)
  To: linux-kernel

I'm having problems with this.  I apparently have a cpio archive that the
kernel likes.  I am starting via grub with basically:
kernel /mykernel
initrd /mycpiofile

At first, I got "can't mount root".  A little reading in main.c has it
looking for /init  (shouldn't this be /bin/init instead?)

I moved my ./bin/init to . in my init filesystem tree and recreated the
cpio.  my ./init script is a "#!/bin/busybox ash" script.

running cpio -tv, I see:
...
-rwxr-xr-x   1 root     root       452508 May  5 14:33 bin/busybox
...
-rwxr-xr-x   1 root     root         1328 May  9 15:46 init
...

Now I see a message saying:
Kernel panic - not syncing: No init found.  Try passing init= option to kernel.

I did that.  According to the source, init= is overridden when /init exists.

I'd like to get off the initrd ramdisk style to save some more on space.

I assume it is populating properly since also I don't see the initial console
warning message.

Kernel: vanilla 2.6.12-rc4 compiled with -Os with debian gcc 3.3.5-1

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2005-07-13 10:06 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-21  4:44 Initramfs Garrett Kajmowicz
2003-08-21  6:30 ` Initramfs Bryan O'Sullivan
2003-08-21 14:19   ` Initramfs Jeff Garzik
2003-08-21 18:28     ` Initramfs Bryan O'Sullivan
2003-08-21 19:03       ` Initramfs viro
2003-08-21 19:57         ` Initramfs Bryan O'Sullivan
2003-08-21 20:22           ` Initramfs Willy Tarreau
2003-08-21 20:56           ` Initramfs viro
2003-08-21 22:34             ` Initramfs H. Peter Anvin
2003-08-21 22:31     ` Initramfs Werner Almesberger
2003-08-21 22:41       ` Initramfs Jeff Garzik
2003-08-21 23:15         ` Initramfs Werner Almesberger
2003-08-28 20:07     ` Initramfs H. Peter Anvin
2005-05-25 17:41 initramfs Wakko Warner
2005-05-25 18:26 ` initramfs Lennart Sorensen
2005-05-25 18:45   ` initramfs Wakko Warner
2005-05-25 19:54     ` initramfs Wakko Warner
2005-05-25 18:54 ` initramfs Wakko Warner
2005-07-13 10:06 initramfs Jacek Jabłoński

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).