Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jun 2025 07:28:37 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 1254c42c68b6 - main - fwget: fix pci id 15d8 firmware
Message-ID:  <202506110728.55B7SbSc056870@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=1254c42c68b6f0c29654583220b0f4b29b75db49

commit 1254c42c68b6f0c29654583220b0f4b29b75db49
Author:     Ali Abdallah <ali.abdallah@suse.com>
AuthorDate: 2025-06-11 06:56:47 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2025-06-11 07:27:54 +0000

    fwget: fix pci id 15d8 firmware
    
    Pci video graphic card is 15d8 needs gpu-firmware-amd-kmod-picasso and
    it won't work with gpu-firmware-amd-kmod-raven.
    
    Tested on Thinkpad T495.
    
    PR:             287441
    MFC After:      3 days
---
 usr.sbin/fwget/pci/pci_video_amd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/usr.sbin/fwget/pci/pci_video_amd b/usr.sbin/fwget/pci/pci_video_amd
index 98ecd5aaf236..5017789b9f28 100644
--- a/usr.sbin/fwget/pci/pci_video_amd
+++ b/usr.sbin/fwget/pci/pci_video_amd
@@ -96,6 +96,9 @@ pci_video_amd()
 		0x66a*)
 			addpkg "gpu-firmware-amd-kmod-vega20"
 			;;
+		0x15d8)
+			addpkg "gpu-firmware-amd-kmod-picasso"
+			;;
 		0x15d*)
 			addpkg "gpu-firmware-amd-kmod-raven"
 			;;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506110728.55B7SbSc056870>