Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
usr
/
share
/
initramfs-tools
/
hooks
/
//usr/share/initramfs-tools/hooks/kmod
#!/bin/sh -e # Copy the compatibility symlinks until initramfs-tools will be converted # to use the kmod program. if [ "$1" = "prereqs" ]; then exit 0; fi . /usr/share/initramfs-tools/hook-functions copy_exec /bin/kmod cp -a /sbin/modprobe /sbin/rmmod $DESTDIR/sbin/ mkdir -p $DESTDIR/lib/modprobe.d/ if [ "$(echo /lib/modprobe.d/*)" != "/lib/modprobe.d/*" ]; then cp -a /lib/modprobe.d/* $DESTDIR/lib/modprobe.d/ fi