void-packages/srcpkgs/initramfs-tools/files/hooks/blkid
Juan RP 24988196aa initramfs-tools: update to 0.95.
- busybox is mandatory, so you cannot disable it.
- create /bin/sh as symlink to busybox.
- use shared bins by default, this saves a few KBs.

--HG--
extra : convert_revision : 3c2adcee730822e2b88f08089a96e44769369b9b
2009-12-20 21:18:10 +01:00

23 lines
218 B
Bash
Executable file

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