26 lines
343 B
Bash
Executable file
26 lines
343 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
|
|
|
|
# module-init-tools
|
|
copy_exec /sbin/modprobe /sbin
|
|
copy_exec /sbin/rmmod /sbin
|
|
mkdir -p "${DESTDIR}/etc/modprobe.d"
|
|
cp -a /etc/modprobe.d/* "${DESTDIR}/etc/modprobe.d/"
|
|
|
|
exit 0
|