mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-28 03:42:04 +01:00
15 lines
177 B
Bash
15 lines
177 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
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
|
|
}
|