Attached is a new version of the "console" script for LFS 6.x. The
difference from the stock version is that the new script tries to guess
the screen font based on the user's locale settings.
To test the script, put it into /etc/rc.d/init.d/ directory instead of
the old version, remove (or comment
In /etc/rc.d/init.d/functions, we have:
# if CUR_LENGTH was set to zero, then end the line
if [ "${CUR_LENGTH}" == "0" ]; then
echo ""
fi
"==" is a bash-specific "pattern matching" operator. In this context, it
should be replaced with a plain "=".
--
Alexan