PDA

View Full Version : Why apmd & cardmgr are verbose ?



mammique
10-27-2003, 09:24 PM
Hi,

i made my knoppix remaster with linux progress patch to have a nice progress bar while booting. I must forward all kernel and init message to /dev/tty2 not to see them onto my splash image, so i added "console=/dev/tty2 CONSOLE=/dev/tty2" to kernel args it's not handeled by linuxrc but i hacked it now it works, but when entering init scripts stage it's automaticaly forwarded to /dev/tty2, all messages are forwarded except cardmrg and apmd starting messages !? That's very strange because cardmgr messages souldn't be displayed because it's forwarded to /dev/null as written in /etc/init.d/knoppix-autoconfig :

"cardmgr >/dev/null 2>&1 && sleep 4"

If i add ">/dev/null 2>&1" to apmd line, apmd is still verbose, i also tried to invert to "2>&1 >/dev/null" wich is stronger on somes cases but no effect. Does anybody knows where the problem could be from ?

Thank you.