#!/bin/sh

###############################################################################
#
# chkconfig: 123 2 79
#
# description: Startup and shutdown script for the Intel Front Panel 
#              Management Driver (FPMD) LCD image loader.
#
# Copyright (c) Intel Corporation 2000
#
###############################################################################

# Source function library.
. /etc/rc.d/init.d/functions

# Branch based on command line options.
case "$1" in
  start)
	echo -n "Starting FPIL: "
	/usr/ins/intel/bin/fpil /usr/ins/intel/bin/fpsplash.pbm && echo_success echo
	;;
  *)
	echo "Usage: $0 {start}"
	exit 1
esac

exit 0
