mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-05 11:04:22 +02:00
- rename as raspberrypi-userland to relate to package origin, and be clearer and consistent with other rpi related Alpine packages (keeping backwards compatibility) - move main binary utilities into /usr/bin - add udev rule to set relevant devices in video group (a related MR is sent to mdev.conf too) fixes: https://gitlab.alpinelinux.org/alpine/aports/-/issues/14700
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/sh
|
|
|
|
if [ -S /run/udev/control ]; then
|
|
udevadm control --reload-rules
|
|
udevadm trigger --sysname-match=vcio --sysname-match=vchiq --sysname-match=vc-mem --sysname-match=vcsm-cma
|
|
fi
|
|
|
|
exit 0
|
|
|