mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-26 10:36:42 +07:00
13 lines
179 B
Bash
13 lines
179 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
install)
|
|
which udevadm > /dev/null && udevadm trigger --action=add --sysname-match=ump || true
|
|
modprobe -q ump || true
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|