#!/sbin/sh
#
# setconsole	Sets font, keyboard, cursor, ...
#
# Version:	@(#) /sbin/init.d/setconsole  1.01 26-Oct-1993
#
# Author:	Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#

  # Set path
  export PATH=$PATH:/usr/sbin:/usr/bin

  # See how we were called.
  case "$1" in
    bcheckrc)
	echo 'Bcheckrc: Setting console...'
	setterm -blank 15
	echo 'Bcheckrc: Loading keyboard map "gr-lat1.map"...'
	echo -n '  '
	loadkeys /usr/lib/kbd/keytables/gr-lat1.map
	echo -n '  '
	setfont  /usr/lib/kbd/consolefonts/8x8thin
	;;
    *)
	# Oops someone made a typo.
	echo "Usage: /sbin/init.d/setconsole {bcheckrc}"
	exit 1
  esac

exit 0
