#!/bin/sh

PREREQ=""

prereqs()
{
	echo "$PREREQ"
}

case $1 in
prereqs)
	prereqs
	exit 0
	;;
esac

. /usr/share/initramfs-tools/hook-functions

# Copy the date binary from the coreutils package which supports
# printing the date with nanosecond precision.
copy_exec /bin/date /bin
