docker-build: ship Intel WiFi firmware by chip codename (AX201/AX210/etc)
The existing glob was iwlwifi-ax201*.ucode which NEVER matches anything
in linux-firmware — upstream ships AX201 firmware as the internal chip
codename, not the retail name:
AX201 (Jasper Lake) → iwlwifi-QuZ-a0-hr-b0-77.ucode
AX201 (TGL/CML) → iwlwifi-Qu-{b0,c0}-hr-b0-*.ucode
AX210 (Typhoon Peak)→ iwlwifi-ty-a0-gf-a0-*.ucode
AX211 (SnowOak) → iwlwifi-so-a0-gf-a0-*.ucode
So every build shipped since this directory structure has had empty
AX201 support — confirmed by extracting proud-pipit-branch initramfs
and seeing no QuZ/Qu/ty/so .ucode files. That's why HP Chromebook 14 G7
(AX201 on JSL) kept reporting "no wifi hardware" even though iwlwifi
was built-in: driver loaded, saw the device, then failed firmware load
silently so mac80211 never registered an interface.
Map the retail names to the internal glob patterns and keep the retail
globs too (harmless double-coverage).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>