[PATCH] quieten initramfs and fix /dev permissions
authorAnton Blanchard <anton@samba.org>
Wed, 10 Sep 2003 02:40:05 +0000 (19:40 -0700)
committerLinus Torvalds <torvalds@home.osdl.org>
Wed, 10 Sep 2003 02:40:05 +0000 (19:40 -0700)
Dont print the contents of the initramfs, for any decent sized cpio it will
overflow the kernel ring buffer.

Also relax permissions on /dev (755 not 700).

init/initramfs.c
usr/gen_init_cpio.c

index 7bbb682..6aed40d 100644 (file)
@@ -248,7 +248,6 @@ static int __init do_name(void)
                next_state = Reset;
                return 0;
        }
-       printk(KERN_INFO "-> %s\n", collected);
        if (S_ISREG(mode)) {
                if (maybe_link() >= 0) {
                        wfd = sys_open(collected, O_WRONLY|O_CREAT, mode);
index 8a0340d..2db360d 100644 (file)
@@ -212,7 +212,7 @@ error:
 
 int main (int argc, char *argv[])
 {
-       cpio_mkdir("/dev", 0700, 0, 0);
+       cpio_mkdir("/dev", 0755, 0, 0);
        cpio_mknod("/dev/console", 0600, 0, 0, 'c', 5, 1);
        cpio_mkdir("/root", 0700, 0, 0);
        cpio_trailer();