PDA

View Full Version : Newbie rc.sysinit question


HaroldQ
09-25-2002, 07:12 PM
In a post in the "Tips of the Trade" sticky thread, AlphaWolf suggests adding the line...

setpri fifo 1 $$

...before the line to call bash. (After setting up setpri correctly, of course.) I'm pretty sure the bash line he's talking about is this one...

exec < /dev/ttyS3 >& /dev/ttyS3; bash --login

...which is the last line of my rc.sysinit. I was just wondering if someone could confirm that this is the line AlphaWolf is talking about before I go messing up my rc.sysinit.

If I understand correctly, the very end of my rc.sysinit shoud go like this...

---------------------------------------------------------
echo "rc.sysinit is complete"

setpri fifo 1 $$

exec < /dev/ttyS3 >& /dev/ttyS3; bash --login
----------------------------------------------------------

Thanks for the help.

BubbleLamp
09-26-2002, 01:27 PM
Yes, you've got the right spot Harold.

HaroldQ
09-28-2002, 05:07 PM
Thanks a lot for the help. It worked just right.