#!/bin/sh

###############################################################################
#
# Startup script for the Intel NVRAM device driver.
#
# chkconfig: 123 1 80
#
# description: The Intel NVRAM device driver is used to access 
#              non-volatile FLASH memory.
#
# Copyright (c) Intel Corporation 2000
#
###############################################################################

. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
  start)
	echo -n "Starting NVRAM driver: "
	/sbin/insmod nvram_chardonnay && echo_success 
	echo
	;;
  stop)
	echo -n "Stopping NVRAM driver: "
	/sbin/rmmod nvram_chardonnay && echo_success 
	echo
	;;
  *)
	echo "Usage: $0 {start|stop}"
	exit 1
esac

exit 0
