mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] quieten initramfs and fix /dev permissions
@ 2003-09-10  8:31 Anton Blanchard
  0 siblings, 0 replies; only message in thread
From: Anton Blanchard @ 2003-09-10  8:31 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel


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).


 work-anton/init/initramfs.c     |    1 -
 work-anton/usr/gen_init_cpio.c  |    2 +-

diff -puN init/initramfs.c~initramfs_stuff init/initramfs.c
--- work/init/initramfs.c~initramfs_stuff	2003-09-06 22:58:23.000000000 -0500
+++ work-anton/init/initramfs.c	2003-09-10 03:04:31.000000000 -0500
@@ -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);
diff -puN usr/gen_init_cpio.c~initramfs_stuff usr/gen_init_cpio.c
--- work/usr/gen_init_cpio.c~initramfs_stuff	2003-09-06 22:58:23.000000000 -0500
+++ work-anton/usr/gen_init_cpio.c	2003-09-06 22:58:23.000000000 -0500
@@ -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();

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-09-10  8:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-10  8:31 [PATCH] quieten initramfs and fix /dev permissions Anton Blanchard

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