mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
522 B
Text
23 lines
522 B
Text
|
#!/usr/bin/ash
|
||
|
|
||
|
run_earlyhook() {
|
||
|
kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
|
||
|
systemd-tmpfiles --prefix=/dev --create
|
||
|
/usr/lib/systemd/systemd-udevd --daemon --resolve-names=never
|
||
|
udevd_running=1
|
||
|
}
|
||
|
|
||
|
run_hook() {
|
||
|
msg ":: Triggering uevents..."
|
||
|
udevadm trigger --action=add --type=subsystems
|
||
|
udevadm trigger --action=add --type=devices
|
||
|
udevadm settle
|
||
|
}
|
||
|
|
||
|
run_cleanuphook() {
|
||
|
udevadm control --exit
|
||
|
udevadm info --cleanup-db
|
||
|
}
|
||
|
|
||
|
# vim: set ft=sh ts=4 sw=4 et:
|