aboutsummaryrefslogtreecommitdiff
path: root/sh.Linux/init-early.sh
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-02-27 20:29:32 +0000
committerRoy Marples <roy@marples.name>2008-02-27 20:29:32 +0000
commitc2648ca5f539c450b27d35c7c0a3d41c6e193d8f (patch)
tree1de8b046bd8c1029165670c697eace4c89ece8f5 /sh.Linux/init-early.sh
parent143570689bc93c68fa83c3eb56d622b707ec0e18 (diff)
Makefile SH variable now tweaks the default shell used by our scripts.
Diffstat (limited to 'sh.Linux/init-early.sh')
-rwxr-xr-xsh.Linux/init-early.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/sh.Linux/init-early.sh b/sh.Linux/init-early.sh
deleted file mode 100755
index 784ddfda..00000000
--- a/sh.Linux/init-early.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Copyright 2007-2008 Roy Marples <roy@marples.name>
-# All rights reserved. Released under the 2-clause BSD license.
-
-# Try and set a font and as early as we can
-if [ -e /etc/runlevels/"${RC_DEFAULTLEVEL}"/consolefont \
- -o -e /etc/runlevels/"${RC_BOOTLEVEL}"/consolefont ]; then
- termencoding="(K"
- [ -e "${RC_LIBDIR}"/console/unicode ] && termencoding="%G"
- CONSOLE="${CONSOLE:-/dev/console}"
- printf "\033%s" "${termencoding}" >"${CONSOLE}" 2>/dev/null
- if [ -r "${RC_LIBDIR}"/console/font -a -x /bin/setfont ]; then
- font="$(cat "${RC_LIBDIR}"/console/font)"
- [ -c "${CONSOLE}" ] && cons="-C ${CONSOLE}"
- setfont ${cons} "${RC_LIBDIR}"/console/"${font}" 2>/dev/null
- fi
-fi
-
-# Ensure we exit 0 so the boot continues
-exit 0