freebsd-ports/comms/cdce/pkg-deinstall
Pav Lucistnik 5882969f93 CDC Ethernet driver (driver for USB Linux-based PDAs: Sharp Zaurus, YOPY, etc).
Currently the driver is maintained out-of-tree as a set of files to be
downloaded and built manually.

PR:		ports/76802
Submitted by:	Craig Boston <craig@yekse.gank.org>
2005-01-29 23:47:47 +00:00

23 lines
426 B
Bash

#!/bin/sh
#
# Unload cdce kernel module if necessary
#
# $FreeBSD$
#
if [ "x$2" != "xDEINSTALL" ]; then
exit 0
fi
echo "Disabling if_cdce."
# Unload if_cdce kernel module
kldstat -n if_cdce 2>/dev/null >/dev/null && kldunload if_cdce
# Remove kernel module
if [ `sysctl -n kern.osreldate` -ge 500000 ]; then
KMODDIR="/boot/modules"
else
KMODDIR="/modules"
fi
[ -f ${KMODDIR}/if_cdce.ko ] && rm -f ${KMODDIR}/if_cdce.ko