#! /bin/sh
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#pragma ident	"@(#)preremove	1.1	07/03/06 SMI"
#
 
PATH="/usr/bin:/usr/sbin:${PATH}"
export PATH

EXIT=0

if grep -w usbsacm ${BASEDIR}/etc/name_to_major > /dev/null 2>&1
then
	rem_drv -b ${BASEDIR} usbsacm || EXIT=1
fi

exit $EXIT
