diff options
author | Judd Vinet <judd@archlinux.org> | 2005-03-11 20:02:08 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-03-11 20:02:08 +0000 |
commit | 8aff6add70fd50b3febe363a0002098f21e2679b (patch) | |
tree | 23e82142270176251fbb0e4ce05171e763fddda6 /rc.sysinit | |
parent | 22805e822d4e9fee9c1f4331dee31bccd1db45d2 (diff) |
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
Diffstat (limited to 'rc.sysinit')
-rwxr-xr-x | rc.sysinit | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |