mipsel-{bfk3,mitx}: Mark sm705 as master-of-seat on tavolga and bfk3

sm750 is seen as framebuffer-only device, so it's not marked with
master-of-seat tag with current udev (which does this mostly to
dri cards). But without master-of-seat device logind does not
report that the seat "CanGraphical", and thus sddm does not
work for it; there might be other problems, too.

This change adds udev rule that marks sm705's fb device as
master-of-seat.
This commit is contained in:
Ivan A. Melnikov 2019-03-12 18:27:10 +04:00 committed by Michael Shigorin
parent bf37144d05
commit 9570ea5590
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# make sm750 a seat master
ACTION=="add" KERNEL=="fb*" SUBSYSTEM=="graphics" \
SUBSYSTEMS=="pci" ATTRS{vendor}=="0x126f" ATTRS{device}=="0x0750" \
TAG+="seat" TAG+="master-of-seat"

View File

@ -0,0 +1,6 @@
# make sm750 a seat master
ACTION=="add" KERNEL=="fb*" SUBSYSTEM=="graphics" \
SUBSYSTEMS=="pci" ATTRS{vendor}=="0x126f" ATTRS{device}=="0x0750" \
TAG+="seat" TAG+="master-of-seat"