30 lines
390 B
Plaintext
30 lines
390 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
PREREQ=""
|
||
|
|
||
|
prereqs()
|
||
|
{
|
||
|
echo "$PREREQ"
|
||
|
}
|
||
|
|
||
|
case $1 in
|
||
|
# get pre-requisites
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. /usr/share/initramfs-tools/hook-functions
|
||
|
|
||
|
copy_exec /sbin/modprobe /sbin
|
||
|
copy_exec /sbin/depmod /sbin
|
||
|
copy_exec /sbin/rmmod /sbin
|
||
|
|
||
|
if [ -d /etc/modprobe.d ]; then
|
||
|
mkdir -p "${DESTDIR}/etc/modprobe.d"
|
||
|
cp -a /etc/modprobe.d/* "${DESTDIR}/etc/modprobe.d/"
|
||
|
fi
|
||
|
|
||
|
exit 0
|