From: Krzysztof Halasa <khc@pm.waw.pl>
To: <linux-kernel@vger.kernel.org>
Subject: RFC: initramfs unpack point and rules
Date: Thu, 05 Apr 2007 14:34:39 +0200 [thread overview]
Message-ID: <m3ejmzdmow.fsf@maximus.localdomain> (raw)
Hi,
I recently got a BSOD bootup problem with external initramfs (it's
ARM but it seems it doesn't matter).
--------------------------------------------------------------------------
First problem: initramfs is unpacked way before console drivers
are initialized, so you aren't going to see the panic():
init/initramfs.c:static int __init populate_rootfs(void)
...
printk(KERN_INFO "Unpacking initramfs...");
err = unpack_to_rootfs((char *)initrd_start,
initrd_end - initrd_start, 0);
if (err)
panic(err);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
printk(" done\n");
free_initrd();
I wonder why is initramfs unpacked that early, before most drivers?
I'd expect it much later in the boot sequence, just before userspace
and initial devices (/dev/console etc) are needed. Should it be moved
there? populate_rootfs() unpacks both builtin and external initramfs.
--------------------------------------------------------------------------
Second problem:
RedBoot> exec -r 0x800000 -s 8000000 -c "console=ttyS0,115200"
Using base address 0x00030000 and length 0x001eea08
Uncompressing Linux...............................done, booting the kernel.
[nothing then]
Obviously I didn't want to specify the exact size and expected inflate
to determine it by itself. I think a valid gzipped cpio image, followed
by some junk, should not be a problem here. Currently, unpack_to_rootfs()
does the job but returns "bad gzip magic numbers" error message - I think
I should change it to return that message only for first initramfs header
and return a success if some junk is spotted after a valid end of
compressed data.
Opinions?
--
Krzysztof Halasa
next reply other threads:[~2007-04-05 12:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-05 12:34 Krzysztof Halasa [this message]
2007-04-05 14:31 ` Krzysztof Halasa
2007-04-12 11:06 ` Al Viro
2007-04-13 12:08 ` Krzysztof Halasa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m3ejmzdmow.fsf@maximus.localdomain \
--to=khc@pm.waw.pl \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome