summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2003-09-09 19:40:05 -0700
committerLinus Torvalds <torvalds@home.osdl.org>2003-09-09 19:40:05 -0700
commitb9f079914aa775bc9e2985f6c4263d46c4f80f1a (patch)
tree2bb9ae562616107220ae92072bcbef7404857d02 /usr
parent6fd5c7bf5c800c3083343d273f45dc5fc1b53da1 (diff)
[PATCH] quieten initramfs and fix /dev permissions
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).
Diffstat (limited to 'usr')
-rw-r--r--usr/gen_init_cpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/gen_init_cpio.c b/usr/gen_init_cpio.c
index 8a0340decbf9..2db360dd901a 100644
--- a/usr/gen_init_cpio.c
+++ b/usr/gen_init_cpio.c
@@ -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();