We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8add0ff commit 427d2fdCopy full SHA for 427d2fd
init/initramfs.c
@@ -468,6 +468,8 @@ static char * __init unpack_to_rootfs(char *buf, unsigned long len)
468
const char *compress_name;
469
static __initdata char msg_buf[64];
470
471
+ printk(KERN_INFO "unpack rootfs image as initramfs...\n");
472
+
473
header_buf = kmalloc(110, GFP_KERNEL);
474
symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
475
name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
@@ -520,6 +522,7 @@ static char * __init unpack_to_rootfs(char *buf, unsigned long len)
520
522
kfree(name_buf);
521
523
kfree(symlink_buf);
524
kfree(header_buf);
525
+ printk(KERN_INFO "unpack initramfs done !\n");
526
return message;
527
}
528
0 commit comments