The branch main has been updated by des: URL: https://cgit.FreeBSD.org/src/commit/?id=ebb0b4822699eb614d5e9418c0a1bf6b30718699
commit ebb0b4822699eb614d5e9418c0a1bf6b30718699 Author: Dag-Erling Smørgrav <[email protected]> AuthorDate: 2025-11-16 19:10:36 +0000 Commit: Dag-Erling Smørgrav <[email protected]> CommitDate: 2025-11-16 19:10:44 +0000 iwx.4: Follow the established style Fixes: b0c1ead2b9be ("iwx.4: Fix SYNOPSIS") Reviewed by: ziaee Differential Revision: https://reviews.freebsd.org/D53760 --- share/man/man4/iwx.4 | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/share/man/man4/iwx.4 b/share/man/man4/iwx.4 index e57ddbc7c980..5f978b210f78 100644 --- a/share/man/man4/iwx.4 +++ b/share/man/man4/iwx.4 @@ -24,16 +24,20 @@ .Nm iwx .Nd Intel WiFi 6 IEEE 802.11ax wireless network driver .Sh SYNOPSIS -.Cd device wlan +To compile this driver into the kernel, +include the following lines in your kernel configuration file: +.Bd -ragged -offset indent +.Cd "device iwx" +.Cd "device pci" +.Cd "device wlan" +.Ed .Pp -In -.Xr rc.conf 5 : -.Cd devmatch_blocklist="if_iwlwifi" -.Cd kld_list="if_iwx" -.Pp -In -.Xr sysctl.conf 5 : -.Cd dev.iwx.?.debug=0xffffffff +Alternatively, to load the driver as a +module at boot time, place the following lines in +.Xr loader.conf 5 : +.Bd -literal -offset indent +if_iwx_load="YES" +.Ed .Sh DESCRIPTION The .Nm
