pkg/fw: add Intel Wi-Fi 6E AX211 firmware for ASUS-NUC14SRK#5651
Merged
eriknordmark merged 1 commit intolf-edge:masterfrom Mar 4, 2026
Merged
pkg/fw: add Intel Wi-Fi 6E AX211 firmware for ASUS-NUC14SRK#5651eriknordmark merged 1 commit intolf-edge:masterfrom
eriknordmark merged 1 commit intolf-edge:masterfrom
Conversation
The iwlwifi driver on ASUS-NUC14SRK (Meteor Lake PCH CNVi WiFi) needs iwlwifi-ma-b0-gf4-a0 firmware files (versions 77-89). These files are already present in linux-firmware-20240811 but were not being copied into the final image. Add COPY for iwlwifi-ma-b0-gf4-a0* which includes: - iwlwifi-ma-b0-gf4-a0-83.ucode - iwlwifi-ma-b0-gf4-a0-86.ucode - iwlwifi-ma-b0-gf4-a0-89.ucode - iwlwifi-ma-b0-gf4-a0.pnvm Signed-off-by: Mikhail Malyshev <mike.malyshev@gmail.com>
5087203 to
93c1fe3
Compare
Contributor
|
@rucoder how much these files will increase the final rootfs? |
Contributor
Author
rene
approved these changes
Mar 4, 2026
Contributor
Author
|
@rene @eriknordmark let's postpone merging until I get test results back from the field |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #5651 +/- ##
==========================================
+ Coverage 19.52% 29.49% +9.96%
==========================================
Files 19 18 -1
Lines 3021 2417 -604
==========================================
+ Hits 590 713 +123
+ Misses 2310 1552 -758
- Partials 121 152 +31 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The iwlwifi driver on ASUS-NUC14SRK (Intel Meteor Lake PCH CNVi WiFi)
requires
iwlwifi-ma-b0-gf4-a0firmware files (versions 77 through 89).These files are already present in
linux-firmware-20240811but were notbeing copied into the final image by the
compactor-commonstage.The driver detects the card as "Intel(R) Wi-Fi 6E AX211 160MHz" and
iterates through firmware versions 89 down to 77, all failing with
error -2 (ENOENT) because none of them exist in the firmware partition.
This change adds a COPY line for
iwlwifi-ma-b0-gf4-a0*which pulls in:iwlwifi-ma-b0-gf4-a0-83.ucode— 1.7 MBiwlwifi-ma-b0-gf4-a0-86.ucode— 1.6 MBiwlwifi-ma-b0-gf4-a0-89.ucode— 1.6 MBiwlwifi-ma-b0-gf4-a0.pnvm— 28 KBRootfs size impact: ~4.9 MB uncompressed, ~1.6 MB on squashfs (xz estimate).
No update to the linux-firmware package version was needed.
How to test and validate this PR
dmesg | grep iwlwifishows successful firmware load instead of "no suitable firmware found"ip linkshould show wlan0 or similar)Changelog notes
Added missing Intel Wi-Fi 6E AX211 (iwlwifi-ma-b0-gf4-a0) firmware to
the firmware partition, enabling WiFi on ASUS-NUC14SRK and similar
Meteor Lake devices.
PR Backports
Checklist
I've provided a proper description
I've added the proper documentation
I've tested my PR on amd64 device
I've tested my PR on arm64 device
I've written the test verification instructions
I've set the proper labels to this PR
I've checked the boxes above, or I've provided a good reason why I didn't
check them.