aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/geom_subr.sh
blob: 2d4e1899c4096612bf3b480fc5621dc2545aa4df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# $FreeBSD: src/tools/regression/geom_subr.sh,v 1.1.10.1.6.1 2010/12/21 17:09:25 kensmith Exp $

kldstat -q -m g_${class} || g${class} load || exit 1

devwait()
{
	while :; do
		if [ -c /dev/${class}/${name} ]; then
			return
		fi
		sleep 0.2
	done
}