mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-22 00:00:03 +03:00
12 lines
182 B
Bash
12 lines
182 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
prereqs)
|
|
echo "udev"
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
cp -p /lib/udev/rules.d/61-bcache.rules $DESTDIR/lib/udev/rules.d/
|
|
cp -p /sbin/probe-bcache $DESTDIR/sbin
|