24988196aa
- 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
23 lines
218 B
Bash
Executable file
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
|