From: Heiko Z. <smi...@us...> - 2004-05-26 13:15:38
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22106/config/etc/init.d Modified Files: boot Log Message: kernel log levels are now set during boot to not flood the console Index: boot =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/boot,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- boot 22 Mar 2004 00:25:24 -0000 1.21 +++ boot 26 May 2004 13:15:12 -0000 1.22 @@ -29,15 +29,15 @@ source /etc/init.d/functions source /etc/sysconfig/config +echo -n "Mounting base Filesystems" +mount -n -t proc proc /proc + if [ -f /proc/sys/kernel/sysrq ]; then echo -n "Enabling magic SysRq" echo "1" > /proc/sys/kernel/sysrq print_status success fi -echo -n "Mounting base Filesystems" -mount -n -t proc proc /proc - # # mount sys for 2.6 # @@ -62,4 +62,7 @@ modprobe apm power_off=1 fi +echo "Setting Kernel log levels" +echo "1 4 1 7" > /proc/sys/kernel/printk + exit 0 |