#!/bin/sh
# modules dependencies aren't done by insmod they should be listed in the order
# the dependencies call for in the modules.dep file
for mod in `/bin/cat /modules.lst`
do
	/sbin/insmod $mod
done
/bin/mount -t proc none /proc
/sbin/dmsetup mknodes
/sbin/vgscan --ignorelockingfailure
/sbin/vgchange -ay --ignorelockingfailure
exec /sbin/kinit "$@"
