#!/bin/sh
#
# remove
#
# This scripts uninstalls the S3 Trio64(V+ and V2[GX/DX]) graphics driver
# for BeOS Intel R4.
#
# Tom Sabourin, sabourins@email.msn.com 5/26/1999
#

answer=$(alert "Remove the S3 Trio64(V+ and V2[GX/DX]) graphics driver now?" "No" "Yes")
if [ $answer == "No" ]; then
	exit
fi

rm -f /boot/home/config/add-ons/kernel/drivers/dev/graphics/trio64v2p 
rm -f /boot/home/config/add-ons/accelerants/trio64v2p.accelerant 
rm -f /boot/home/config/add-ons/kernel/drivers/bin/trio64v2p 

echo S3Trio64\(V+ and V2[GX/DX]\) Driver removed.

