summaryrefslogtreecommitdiffstats
path: root/debian/extra/initramfs-tools/hooks/udev
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-25 02:55:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-25 02:55:29 +0000
commite8c534373c6e551596ead9d792dafb02eeef0d9d (patch)
tree633dadcbf7635c88c571c2fdcbed079049b821ab /debian/extra/initramfs-tools/hooks/udev
parentMerging upstream version 255.5. (diff)
downloadsystemd-e8c534373c6e551596ead9d792dafb02eeef0d9d.tar.xz
systemd-e8c534373c6e551596ead9d792dafb02eeef0d9d.zip
Merging debian version 255.5-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/extra/initramfs-tools/hooks/udev')
-rwxr-xr-xdebian/extra/initramfs-tools/hooks/udev6
1 files changed, 6 insertions, 0 deletions
diff --git a/debian/extra/initramfs-tools/hooks/udev b/debian/extra/initramfs-tools/hooks/udev
index 4da5b28..d45a287 100755
--- a/debian/extra/initramfs-tools/hooks/udev
+++ b/debian/extra/initramfs-tools/hooks/udev
@@ -16,6 +16,12 @@ esac
mkdir -p "$DESTDIR/usr/lib/systemd"
copy_exec /usr/lib/systemd/systemd-udevd /usr/lib/systemd
copy_exec /usr/bin/udevadm /usr/bin
+# libkmod is loaded via dlopen() since v256 so pull it in manually
+for library in usr/lib/*/libkmod.so.*; do
+ if [ -f "${library}" ]; then
+ copy_exec "${library}"
+ fi
+done
mkdir -p "$DESTDIR/etc/udev"
cp -p /etc/udev/udev.conf "$DESTDIR/etc/udev/"