#!/bin/sh
# -*- sh -*-
echo Welcom to the world of Chdrv.Install beginning
echo Install 16x16 font......

if [ ! -f chdrvfont.tar.gz ]
then
	echo I can\'t find compress font file chdrvfont.tar.gz
	echo So you should do it by yourself.
else
	PP=$PWD
	(cd /;tar xzvf ${PP}/chdrvfont.tar.gz)
fi	

if [ ! -f chdrv24font.tar.gz ]
then
	echo Install 24x24 font
else
	xzvf chdrv24font.tar.gz
fi

echo Font Install complete
if [ ! -f /etc/chinese.conf ]
then
	install -m 644 chinese.conf /etc
fi
