summaryrefslogtreecommitdiff
path: root/nonsystemd/eudev/initcpio_install
diff options
context:
space:
mode:
authorTyler Swagar <distorto@member.fsf.org>2021-11-02 23:31:33 -0700
committerbill-auger <mr.j.spam.me@gmail.com>2021-11-05 16:21:06 -0400
commit4433d8a4ceba42f645be784f43dfc99b198e19ac (patch)
tree698823fb5b3c542249a5db09f00d44b6790e5498 /nonsystemd/eudev/initcpio_install
parenta362bc628758f5dd846e898f7d5981f6ceb2449b (diff)
downloadabslibre-4433d8a4ceba42f645be784f43dfc99b198e19ac.tar.gz
abslibre-4433d8a4ceba42f645be784f43dfc99b198e19ac.tar.bz2
abslibre-4433d8a4ceba42f645be784f43dfc99b198e19ac.zip
updpkg: nonsystemd/eudev 3.2.9-2: add udev rule hook (fixes mkinitcpio)
Diffstat (limited to 'nonsystemd/eudev/initcpio_install')
-rw-r--r--nonsystemd/eudev/initcpio_install43
1 files changed, 43 insertions, 0 deletions
diff --git a/nonsystemd/eudev/initcpio_install b/nonsystemd/eudev/initcpio_install
index 610b71c3d..f2c214b96 100644
--- a/nonsystemd/eudev/initcpio_install
+++ b/nonsystemd/eudev/initcpio_install
@@ -1,5 +1,48 @@
#!/bin/bash
+# This is in 'udev' and 'systemd' hook... Let's hope we have
+# it in mkinitcpio soon.
+# https://github.com/archlinux/mkinitcpio/pull/54
+add_udev_rule() {
+ # Add an udev rules file to the initcpio image. Dependencies on binaries
+ # will be discovered and added.
+ # $1: path to rules file (or name of rules file)
+
+ local rules="$1" rule= key= value= binary=
+
+ if [[ ${rules:0:1} != '/' ]]; then
+ rules=$(PATH=/usr/lib/udev/rules.d:/lib/udev/rules.d type -P "$1")
+ fi
+ if [[ -z $rules ]]; then
+ # complain about not found rules
+ return 1
+ fi
+
+ add_file "$rules" /usr/lib/udev/rules.d/"${rules##*/}"
+
+ while IFS=, read -ra rule; do
+ # skip empty lines, comments
+ [[ -z $rule || $rule = @(+([[:space:]])|#*) ]] && continue
+
+ for pair in "${rule[@]}"; do
+ IFS=' =' read -r key value <<< "$pair"
+ case $key in
+ RUN@({program}|+)|IMPORT{program}|ENV{REMOVE_CMD})
+ # strip quotes
+ binary=${value//[\"\']/}
+ # just take the first word as the binary name
+ binary=${binary%% *}
+ [[ ${binary:0:1} == '$' ]] && continue
+ if [[ ${binary:0:1} != '/' ]]; then
+ binary=$(PATH=/usr/lib/udev:/lib/udev type -P "$binary")
+ fi
+ add_binary "$binary"
+ ;;
+ esac
+ done
+ done <"$rules"
+}
+
build() {
add_file "/etc/udev/udev.conf"
add_binary /usr/bin/udevd