9570ea5590
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.
7 lines
187 B
Plaintext
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"
|