From 8aff6add70fd50b3febe363a0002098f21e2679b Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Fri, 11 Mar 2005 20:02:08 +0000 Subject: added support for backgrounding daemons at startup with a '@' prefix, commented out the ldconfig call at startup, added support for unicode console maps, added a hotplug_ifup() function rc.d/network for hotplug's net.agent to use --- rc.sysinit | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'rc.sysinit') diff --git a/rc.sysinit b/rc.sysinit index cb8c4fc..fdb6a44 100755 --- a/rc.sysinit +++ b/rc.sysinit @@ -121,7 +121,7 @@ mkdir /tmp/.ICE-unix && chmod 1777 /tmp/.ICE-unix mkdir /tmp/.X11-unix && chmod 1777 /tmp/.X11-unix stat_done -status "Updating Shared Library Links" /sbin/ldconfig +#status "Updating Shared Library Links" /sbin/ldconfig if [ "$HOSTNAME" != "" ]; then status "Setting Hostname: $HOSTNAME" /bin/hostname $HOSTNAME @@ -140,9 +140,13 @@ if [ "$KEYMAP" != "" ]; then fi if [ "$CONSOLEFONT" != "" ]; then - stat_busy "Loading Console Font: $CONSOLEFONT" + stat_busy "Loading Console Font: $CONSOLEFONT" for i in `seq 1 12`; do - /usr/bin/setfont $CONSOLEFONT -C /dev/vc/${i}; + if [ "$CONSOLEMAP" != "" ]; then + /usr/bin/setfont -m $CONSOLEMAP $CONSOLEFONT -C /dev/vc/${i}; + else + /usr/bin/setfont $CONSOLEFONT -C /dev/vc/${i}; + fi done stat_done fi -- cgit v1.2.3