From bb0320d3f5b3d3b939aebb1bd13e5f6f53925ee4 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 2 May 2019 20:20:35 +0200 Subject: [PATCH] nvidia-mxlinks: Set GF108GL card to legacy. Add 10de:0df8 ("GF108GL [Quadro 600]") to legacyX class. New legacyX class is for cards, which became legacy sometime after 390.xx, but we didn't try to find out, at which branch that happened exactly, because we no longer support these cards anyway. --- nvidia-mxlinks.be0 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nvidia-mxlinks.be0 b/nvidia-mxlinks.be0 index 6c59beb28..b562a5b8a 100755 --- a/nvidia-mxlinks.be0 +++ b/nvidia-mxlinks.be0 @@ -70,4 +70,12 @@ mee_install() { for id in 06fd 0659 06fa 0a34 0a38 10c3; do ln -vs legacy5 ${D}/usr/share/nvidia/pciidhints/10de:${id} done + + # legacyX for cards, which became legacy sometime after + # 390.xx, but we didn't try to find out, at which branch that happened + # exactly, because we no longer support these cards anyway. + + for id in 0df8;do + ln -vs legacyX ${D}/usr/share/nvidia/pciidhints/10de:${id} + done }