mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 04:49:40 +01:00
udev has started to fail on new kernels (4.4), due to being deprecated in favor of systemd's udev implementation. To maintain a sysvinit alternative we also need to provide an alternative to udev. Eudev is a fork of systemds udev, this new eudev recipe provides upstream udev 220 funcitonality. - Removes patches that dont apply anymore - ToDo: eudev-ptest? [YOCTO #8998] (From OE-Core rev: a22797f7c37a865420837b5c29b270f73ee4c6ce) Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
# debugging monitor
|
|
RUN+="socket:/org/kernel/udev/monitor"
|
|
|
|
# run a command on remove events
|
|
ACTION=="remove", ENV{REMOVE_CMD}!="", RUN+="$env{REMOVE_CMD}"
|
|
|
|
# ignore the events generated by virtual consoles
|
|
KERNEL=="ptmx", OPTIONS+="last_rule"
|
|
KERNEL=="console", OPTIONS+="last_rule"
|
|
KERNEL=="tty" , OPTIONS+="last_rule"
|
|
KERNEL=="tty[0-9]*", OPTIONS+="last_rule"
|
|
KERNEL=="pty*", OPTIONS+="last_rule"
|
|
SUBSYSTEM=="vc", OPTIONS+="last_rule"
|
|
|