Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#6225 - initscripts: boots in debug mode with fbsplash
Attached to Project:
Arch Linux
Opened by Denis Martinez (denis) - Tuesday, 16 January 2007, 20:10 GMT
Last edited by Tobias Powalowski (tpowa) - Saturday, 20 January 2007, 17:48 GMT
Opened by Denis Martinez (denis) - Tuesday, 16 January 2007, 20:10 GMT
Last edited by Tobias Powalowski (tpowa) - Saturday, 20 January 2007, 17:48 GMT
|
DetailsI have fbsplash enabled in verbose mode with a custom kernel (2.6.19).
The problem with it is that the kernel is a lot more verbose that it should be. My /proc/cmdline is: kernel /boot/vmlinuz26dx root=/dev/sda8 ro vga=792 splash=verbose,theme:darch console=tty1 resume2=file:/dev/sda8:0x11c728 The beginning of /etc/rc.sysinit # anything more serious than KERN_WARNING goes to the console # 'verbose' cmdline parameter enables more messages if grep -qw verbose /proc/cmdline; then /bin/dmesg -n 8 else /bin/dmesg -n 3 fi The code reads 'verbose' as a whole word in 'splash=verbose' and causes the debug level to be set to level 8. Maybe that 'grep' command should be "grep -qE ' verbose( |$)'" |
This task depends upon
Assigning to tpowa.
if grep -qw " verbose " /proc/cmdline; then
/bin/dmesg -n 8
else
/bin/dmesg -n 3
fi
It works on my system.