Browse Source

init: changed rc.sysinit to log in /var/log/boot.log the kernel output previous to coldplug

0.2-maint
Alejandro Mery 16 years ago
parent
commit
3d98657417
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      initramfs/etc_rc.d_rc.sysinit.sh

+ 4
- 1
initramfs/etc_rc.d_rc.sysinit.sh

@ -18,7 +18,10 @@
banner "I am Idunn, take an apple and live forever."
# keep the console clean
[ -x /bin/dmesg ] && /bin/dmesg -n 3
if [ -x /bin/dmesg ]; then
dmesg -n 3
dmesg > /var/log/boot.log
fi
title "Mounting special filesystems"
check mount -n -t proc proc /proc

Loading…
Cancel
Save