Displaying 2 results from an estimated 2 matches for "populate_root".
Did you mean:
populate_rootfs
2003 May 22
0
[PATCH 2.5.69 3/3] Bandaids for gen_init_cpio and initramfs
...goto nada;
}
diff -Nru a/init/initramfs.c b/init/initramfs.c
--- a/init/initramfs.c Thu May 22 15:40:19 2003
+++ b/init/initramfs.c Thu May 22 15:40:19 2003
@@ -8,10 +8,7 @@
#include <linux/delay.h>
#include <linux/string.h>
-static void __init error(char *x)
-{
- panic("populate_root: %s\n", x);
-}
+#define error(x...) panic("populate_root: " x)
static void __init *malloc(int size)
{
@@ -63,7 +60,7 @@
}
q = (struct hash *)malloc(sizeof(struct hash));
if (!q)
- error("can't allocate link hash entry");
+ error("can't allocate link...
2003 Oct 13
5
initramfs as an initrd replacement
Hi ,
One of the things I am working on requires me to have a kernel and an
initrd (as root filesystem , based on busybox) in one single image. I am
trying to use initramfs for this, but there are a few things that I just
can't figure out.
As a test, I made a cpio archive of my own for the kernel source (plain
2.6.0-test5). Everything gets unpacked just fine during boot. Somehow I
was