#!/usr/bin/sh # "ihcp_remove" # 8 June,1999 # # # This script un-installs the ihcp driver # and removes any device nodes # echo # unload the driver from the kernel, and # remove its components from the dlkm directories echo unloading the driver... kminstall -d ihcp # remove any device nodes echo removing device nodes... if [ -a /dev/ihcp* ] then rm /dev/ihcp* fi # done echo echo done echo