head	1.2;
access;
symbols
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2005.02.14.18.31.31;	author skv;	state dead;
branches;
next	1.1;

1.1
date	2003.12.16.14.07.22;	author skv;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Obsolete
@
text
@#!/bin/sh

PATH=/bin:/sbin:/usr/bin

case $2 in
POST-INSTALL)
	if [ `id -u` -ne 0 ]; then
		echo "You must be root to install this port!";
		exit 1
	fi
	[ -c /dev/rng ] || mknod /dev/rng c 229 0
	;;
POST-DEINSTALL)
	if kldstat -n rng >/dev/null 2>&1; then
		echo "Please, manually unload rng kernel module"
		exit 1
#		kldunload rng
	fi
	echo; echo "Please, manually remove /dev/rng"
	;;
esac
@


1.1
log
@Add rng_82802 0.0.0, RNG driver for the Intel 82802.
@
text
@@

