--- trunk/mkinitrd-magellan/livecd/linuxrc.sh 2008/04/10 20:16:43 706 +++ trunk/mkinitrd-magellan/livecd/linuxrc.sh 2008/06/26 23:04:52 757 @@ -1,5 +1,5 @@ #!/bin/sh -# $Header: /home/cvsd/magellan-cvs/magellan-src/mkinitrd-magellan/livecd/linuxrc.sh,v 1.6 2008-04-10 20:16:43 niro Exp $ +# $Header: /home/cvsd/magellan-cvs/magellan-src/mkinitrd-magellan/livecd/linuxrc.sh,v 1.9 2008-06-26 23:04:52 niro Exp $ # loads given kernel modules load_kernel_modules() @@ -179,6 +179,10 @@ # make /sysroot/dev/console & /mnt/dev/null [ ! -e /sysroot/dev/console ] && mknod -m 600 /sysroot/dev/console c 5 1 [ ! -e /sysroot/dev/null ] && mknod -m 666 /sysroot/dev/null c 1 3 + # only to be safe and to have a log channel + [ ! -e /sysroot/dev/tty ] && mknod /sysroot/dev/tty c 5 0 + # busybox needs this one + [ ! -e /sysroot/dev/tty5 ] && mknod /sysroot/dev/tty5 c 4 5 (cd /sysroot/mnt/cloop; cp -a etc root home var /sysroot)