aboutsummaryrefslogtreecommitdiff
path: root/rc.sysinit
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2005-03-11 20:02:08 +0000
committerJudd Vinet <judd@archlinux.org>2005-03-11 20:02:08 +0000
commit8aff6add70fd50b3febe363a0002098f21e2679b (patch)
tree23e82142270176251fbb0e4ce05171e763fddda6 /rc.sysinit
parent22805e822d4e9fee9c1f4331dee31bccd1db45d2 (diff)
downloadinitscripts-8aff6add70fd50b3febe363a0002098f21e2679b.tar.xz
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-xrc.sysinit10
1 files changed, 7 insertions, 3 deletions
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