tonyk Can I get the output of the following?
ls -ahl /sbin | grep mod
/lib/ld-linux-x86-64.so.2 --list /bin/kmod
Then, I'd like to try LZMA compression with that kernel module instead of Zstandard since Arch Linux is using that and it doesn't seem like they have the same issue. Please run the following and reboot:
cd /lib/modules/6.0.9-222.current/kernel/drivers/net/wireless/
sudo rm wl.ko.zst
sudo xz wl.ko
This will delete the wl.ko
uncompressed kernel module and replace it with wl.ko.xz
. At this point you should have wl.ko.xz
in this directory, but no wl.ko
or wl.ko.zst
. See if this works after a reboot. If it doesn't then you can do the following to get back to the non-compressed kernel module:
cd /lib/modules/6.0.9-222.current/kernel/drivers/net/wireless/
sudo xz -d wl.ko.xz
Note that we've pushed a new kernel update, so if you've already done an update replace 6.0.9-222.current
with 6.0.10-224.current
in the above steps.