The branch main has been updated by bz:

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

commit f1f71cc717aa672caf046ffe1f3dd77e622b8b35
Author:     Bjoern A. Zeeb <b...@freebsd.org>
AuthorDate: 2025-06-18 16:50:18 +0000
Commit:     Bjoern A. Zeeb <b...@freebsd.org>
CommitDate: 2025-06-18 23:31:13 +0000

    fwget: pci_intel_video: do no log on no match
    
    We should never "log" a statement on no match for a given device we
    do not know about.  We do not control the PCI ID assignments and thus
    cannot predict if we would even support such a device.
    
    This also triggers an invalid output in the installer.
    
    Leave it as log_verbose for now.
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      3 days
    PR:             287639
    Reviewed by:    manu, emaste
    Differential Revision: https://reviews.freebsd.org/D50916
---
 usr.sbin/fwget/pci/pci_video_intel | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/fwget/pci/pci_video_intel 
b/usr.sbin/fwget/pci/pci_video_intel
index 3824c4a49ffb..2f9012ed1f52 100644
--- a/usr.sbin/fwget/pci/pci_video_intel
+++ b/usr.sbin/fwget/pci/pci_video_intel
@@ -72,7 +72,7 @@ pci_video_intel()
                        addpkg "gpu-firmware-intel-kmod-alderlake 
gpu-firmware-intel-kmod-tigerlake"
                        ;;
                *)
-                       log "No package found for device $1"
+                       log_verbose "No package found for device $1"
                        ;;
        esac
 }

Reply via email to