git: 8ac82ba19efb - main - iwlwifi: add message how to install firmware on FreeBSD
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 11 Jun 2025 16:32:52 UTC
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=8ac82ba19efbaeec065621215c3843f054fa419e
commit 8ac82ba19efbaeec065621215c3843f054fa419e
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2025-06-10 14:04:05 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2025-06-11 16:32:27 +0000
iwlwifi: add message how to install firmware on FreeBSD
While it is too late for 14.3-R point people at fwget(8) to install
firmware if the driver cannot find any.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
Reviewed by: emaste, ziaee
Differential Revision: https://reviews.freebsd.org/D50777
---
sys/contrib/dev/iwlwifi/iwl-drv.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/contrib/dev/iwlwifi/iwl-drv.c b/sys/contrib/dev/iwlwifi/iwl-drv.c
index b99204d87283..b5c5268f8ddd 100644
--- a/sys/contrib/dev/iwlwifi/iwl-drv.c
+++ b/sys/contrib/dev/iwlwifi/iwl-drv.c
@@ -277,6 +277,9 @@ static int iwl_request_firmware(struct iwl_drv *drv, bool first)
IWL_ERR(drv,
"check git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git\n");
+#if defined(__FreeBSD__)
+ IWL_ERR(drv, "On FreeBSD the firmware package can be installed running fwget(8).\n");
+#endif
return -ENOENT;
}