summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2023-03-02 14:38:16 -0500
committerRay Strode <rstrode@redhat.com>2023-03-02 14:38:16 -0500
commitc8032c7835381278ad0a3a5de695237d6885d649 (patch)
tree7d7815f518bbd0b0c2275e800150e609d6b03e0a /data
parent1fb8b7f4cd7a52d08cf4a4877fce91c0ffbffb8b (diff)
downloadgdm-c8032c7835381278ad0a3a5de695237d6885d649.tar.gz
udev: Drop duplicated line
commit 72bde3b3f474135e792c6c4e40932d7c82f87985 accidentally added two checks for virtio pci devices. The latter check is too broad and could potentially match non-graphics cards. This commit drops it.
Diffstat (limited to 'data')
-rw-r--r--data/61-gdm.rules.in1
1 files changed, 0 insertions, 1 deletions
diff --git a/data/61-gdm.rules.in b/data/61-gdm.rules.in
index b829a46f..b5a0144d 100644
--- a/data/61-gdm.rules.in
+++ b/data/61-gdm.rules.in
@@ -9,7 +9,6 @@ ATTR{vendor}=="0x1af4", ATTR{device}=="0x1050", ATTR{subsystem_vendor}=="0x1af4"
ATTR{vendor}=="0x1b36", ATTR{device}=="0x0100", RUN+="/usr/bin/touch /run/udev/gdm-machine-has-virtual-gpu", ENV{GDM_MACHINE_HAS_VIRTUAL_GPU}="1", GOTO="gdm_pci_device_end"
# qxl
ATTR{vendor}=="0x1234", ATTR{device}=="0x1111", RUN+="/usr/bin/touch /run/udev/gdm-machine-has-virtual-gpu", ENV{GDM_MACHINE_HAS_VIRTUAL_GPU}="1", GOTO="gdm_pci_device_end"
-ATTR{vendor}=="0x1af4", ATTR{device}=="0x1050", RUN+="/usr/bin/touch /run/udev/gdm-machine-has-virtual-gpu", ENV{GDM_MACHINE_HAS_VIRTUAL_GPU}="1", GOTO="gdm_pci_device_end"
# disable Wayland on Hi1710 chipsets
ATTR{vendor}=="0x19e5", ATTR{device}=="0x1711", GOTO="gdm_disable_wayland"