#!/bin/sh

PREREQ=""

prereqs()
{
	echo "$PREREQ"
}

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

[ -x /bin/makedumpfile-static ] || exit 0

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

copy_exec /bin/makedumpfile-static /bin/makedumpfile
