23 lines
238 B
Bash
Executable file
23 lines
238 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
|
|
|
|
# from libblkid
|
|
copy_exec ${ROOTDIR}/sbin/blkid /sbin
|
|
|
|
exit 0
|