#
93b30f1b |
| 12-Nov-2024 |
Alexander Ziaee <concussious@runbox.com> |
man4:: wifi manuals: revise .Sh HARDWARE + polish some
The Release Hardware Notes are generated from hardware sections in the manual pages. Create or organize these sections in Wi-Fi driver manuals
man4:: wifi manuals: revise .Sh HARDWARE + polish some
The Release Hardware Notes are generated from hardware sections in the manual pages. Create or organize these sections in Wi-Fi driver manuals for information flow, and perform minor maintenance on them while here.
After some testing, we have determined that a compact column list is the best for a single column listing in the hardware release notes. This makes very clean subsections and is for some reason denser than using a tagged list.
This adds the long requested conversion from netmask to cidr examples. These examples probably shouldn't even be here, but that is a discussion for another day.
MFC after: 3 days X-MFC with: 8f1a2d507e25e77d20a5 Reported by: bz (relnotes generation, cidr, test-net-1 ip4addr) Reported by: grahamperrin (HARDWARE order mentioned in fdp-primer) Reported by: Graham Percival <gperciva@tarsnap.com> (don't prompt) Reviewed by: bz (anything wrong likely is my polishing fault; incl. iwm.4) Differential Revision: https://reviews.freebsd.org/D47508
show more ...
|
#
5dbb0b7c |
| 30-Sep-2024 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
man.4: Add .Sh HARDWARE for some wireless drivers for release notes
iwlwifi.4 and rtw88.4 did not show up in the hardware list in the release notes for 13.4. The doc/website/tools/hardware-notes-pro
man.4: Add .Sh HARDWARE for some wireless drivers for release notes
iwlwifi.4 and rtw88.4 did not show up in the hardware list in the release notes for 13.4. The doc/website/tools/hardware-notes-processor.rb script parses the .Sh HARDWARE section to automagically create a note once the manual page is listed in the website/archetypes/release/hardware.adoc file.
While here update the other committed man pages not yet connected to the build.
Reported by: re (cperciva), grahamperrin Sponsored by: The FreeBSD Foundation MFC after: 3 days Reviewed by: concussious.bugzilla_runbox.com (Alexander Ziaee) Differential Revision: https://reviews.freebsd.org/D46851
show more ...
|
Revision tags: release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
#
299e2d57 |
| 06-Oct-2023 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88: re-connect to the build
This adds the (updated) rtw88 driver back to the build. Functionality has not been tested (much) so might not currently work but people offered to test.
Firmware is p
rtw88: re-connect to the build
This adds the (updated) rtw88 driver back to the build. Functionality has not been tested (much) so might not currently work but people offered to test.
Firmware is provided by the wifi-firmware-rtw88-kmod port/package.
This reverts commit 712468443df1130db8f893a5e2ce5c6a8dbf5cde.
show more ...
|
#
71246844 |
| 05-Sep-2023 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88: temporary disconnect from build
As announced on freebsd-wireless [1] disconnect rtw88 from the build. Add a note to the man page about the current state but leave the man page in place for no
rtw88: temporary disconnect from build
As announced on freebsd-wireless [1] disconnect rtw88 from the build. Add a note to the man page about the current state but leave the man page in place for now as this is supposed to be temporary.
[1] https://lists.freebsd.org/archives/freebsd-wireless/2023-September/001377.html
MFC after: 20 days X-MFC: will see about 14/13
show more ...
|
#
cf946723 |
| 08-Jun-2023 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88/rtw89: remove local firmware.
Remove firmware from src/ in favor of the ports/packages and fwget(8). This will allow us to shrink the size of src (and installed modules). Update the rtw88 man
rtw88/rtw89: remove local firmware.
Remove firmware from src/ in favor of the ports/packages and fwget(8). This will allow us to shrink the size of src (and installed modules). Update the rtw88 man page to reflect the change.
MFC after: 20 days X-MFC: will see about 14/13
show more ...
|
#
fa9896e0 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: two-line nroff pattern
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
|
#
b95fa420 |
| 23-Apr-2023 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
man4: fix some mandoc lint for iwlwifi.4 and rtw88.4
Address warnings (but one) from mandoc -T lint for these man pages.
Sponsored by: The FreeBSD Foundation MFC after: 3 days
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
13e9d624 |
| 08-Aug-2022 |
Andres Ramirez <rrandresf@hotmail.com> |
rtw88: correct a typo in man page
s/mmeory/memory/
MFC after: 1 week
|
#
17732dd8 |
| 01-Jul-2022 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
Revert "rtw88: split driver up into a core and pci part"
After some discussion, for now, simply revert the change to split the driver up into if_rtw88_core.ko and if_rtw88_pci.ko as we do not have a
Revert "rtw88: split driver up into a core and pci part"
After some discussion, for now, simply revert the change to split the driver up into if_rtw88_core.ko and if_rtw88_pci.ko as we do not have an if_rtw88.ko anymore. We do have code trying to auto-load modules, e.g. ifconfig, based on if_xxx.ko.
We could, based on Makefile magic or further code, generate a if_rtw88.ko module with proper dependencies and keep this but for simplicity stay with the one slightly larger module for now. Should code appear to do this "properly" we can revisit this once USB support has landed.
Slightly update the module Makefile to keep the separation of files between core and pci bits visible and maintainable for the future.
This reverts commit 0f7b9777f8f39fbc230b3e1de2f844d9f839adea.
show more ...
|
#
0f7b9777 |
| 12-Jun-2022 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88: split driver up into a core and pci part
Split the driver up into two modules (if_rtw88_pci.ko and rtw88_core.ko). This is in preparation for the hopefully eventually upcoming USB support usi
rtw88: split driver up into a core and pci part
Split the driver up into two modules (if_rtw88_pci.ko and rtw88_core.ko). This is in preparation for the hopefully eventually upcoming USB support using the same driver core.
Note: this changes the module name to load to if_rtw88_pci.ko instead of if_rtw88.ko. If using devmatch(8) everything should stay the same as the driver name (used for net.wlan.devices) stays rtw88. If using kld_list in rc.conf or loader.conf you will need to adjust the name. Update man page for this.
MFC after: 3 days
show more ...
|
Revision tags: release/13.1.0 |
|
#
0881eb96 |
| 05-May-2022 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88: update man page for loader tunable for >4GB of main memory
Mention the loader tunable from 6a50157090f2d0c5ab8c570d9cf2e2e3535dbdbf that needs to be set for system with more than 4GB of physi
rtw88: update man page for loader tunable for >4GB of main memory
Mention the loader tunable from 6a50157090f2d0c5ab8c570d9cf2e2e3535dbdbf that needs to be set for system with more than 4GB of physical memory.
Sponsored by: The FreeBSD Foundation MFC after: 3 days
show more ...
|
#
20eeed68 |
| 31-Mar-2022 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
rtw88: add man pages and hook up to build
Add man pages for rtw88 and rtw88fw. Install a copy of the firmware license file and hook up the driver and firmware modules to the build.
MFC after: 2 we
rtw88: add man pages and hook up to build
Add man pages for rtw88 and rtw88fw. Install a copy of the firmware license file and hook up the driver and firmware modules to the build.
MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Relnotes: yes
show more ...
|