mkimage-profiles/features.in/mipsel-mitx/rootfs/files/etc/udev/rules.d/95-sm750-seat-master.rules
Ivan A. Melnikov 9570ea5590 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.
2019-09-30 19:44:54 +03:00

7 lines
187 B
Plaintext

# 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"