[RFT] Console autoconfiguration for the Live CD

2005-05-18 Thread Alexander E. Patrakov
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

Bashism in LFS-bootscripts

2005-05-18 Thread Alexander E. Patrakov
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