void-packages/srcpkgs/initramfs-tools/files/hooks/busybox
2011-10-17 18:09:15 +02:00

21 lines
216 B
Bash
Executable file

#!/bin/sh
PREREQ=""
prereqs()
{
echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac
. ${ROOTDIR}/usr/share/initramfs-tools/hook-functions
copy_exec ${ROOTDIR}/bin/busybox
exit 0