#!/bin/sh

PREREQ=""

prereqs()
{
       echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
       prereqs
       exit 0
       ;;
esac


. /scripts/casper-functions
. /scripts/casper-helpers


# unionfs-fuse needs /dev to be bind-mounted for the duration of
# casper-bottom; udev's init script will take care of things after that
# umount here
if [ "${UNIONFS}" = unionfs-fuse ]; then
    umount "${rootmnt}/dev"
fi

