a468c11a30
Documentation will be rewritten and added later.
15 lines
301 B
Bash
15 lines
301 B
Bash
# vim: set ft=sh:
|
|
# shellcheck shell=sh
|
|
#
|
|
# https://shellcheck.net/wiki/SC2154
|
|
# shellcheck disable=2154
|
|
|
|
for _bin in mdevd mdevd-coldplug kill; do
|
|
copy_exec "$_bin"
|
|
done
|
|
|
|
cat > "${tmpdir}/etc/mdev.conf" << EOF
|
|
SUBSYSTEM=block;.* 0:0 660 @/sbin/helper
|
|
\$MODALIAS=.* 0:0 660 @/sbin/helper
|
|
EOF
|