Skip to content

Commit

Permalink
initramfs: clean up messages related to initramfs unpacking
Browse files Browse the repository at this point in the history
With the removal of duplicate unpack_to_rootfs() (commit
df52092) the messages displayed do not
actually correspond to what the kernel is doing.  In addition, depending
if ramdisks are supported or not, the messages are not at all the same.

So keep the messages more in sync with what is really doing the kernel,
and only display a second message in case of failure.  This also ensure
that the printk message cannot be split by other printk's.

Signed-off-by: Eric Piel <[email protected]>
Acked-by: H. Peter Anvin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
pieleric authored and torvalds committed May 6, 2009
1 parent fc4d5c2 commit a1e6b6c
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions init/initramfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,11 +574,10 @@ static int __init populate_rootfs(void)
if (initrd_start) {
#ifdef CONFIG_BLK_DEV_RAM
int fd;
printk(KERN_INFO "checking if image is initramfs...\n");
printk(KERN_INFO "Trying to unpack rootfs image as initramfs...\n");
err = unpack_to_rootfs((char *)initrd_start,
initrd_end - initrd_start);
if (!err) {
printk(KERN_INFO "rootfs image is initramfs; unpacking...\n");
free_initrd();
return 0;
} else {
Expand All @@ -596,15 +595,11 @@ static int __init populate_rootfs(void)
free_initrd();
}
#else
printk(KERN_INFO "Unpacking initramfs...");
printk(KERN_INFO "Unpacking initramfs...\n");
err = unpack_to_rootfs((char *)initrd_start,
initrd_end - initrd_start);
if (err) {
printk(" failed!\n");
printk(KERN_EMERG "%s\n", err);
} else {
printk(" done\n");
}
if (err)
printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err);
free_initrd();
#endif
}
Expand Down

0 comments on commit a1e6b6c

Please sign in to comment.