mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
256 B
23 lines
256 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
PREREQ=""
|
||
|
|
||
|
prereqs () {
|
||
|
echo "${PREREQ}"
|
||
|
}
|
||
|
|
||
|
case "${1}" in
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. /usr/share/initramfs-tools/hook-functions
|
||
|
|
||
|
copy_exec /sbin/mke2fs /bin
|
||
|
|
||
|
exit 0
|