After upgrading from FreeBSD 14.3-RELEASE to FreeBSD 15.0-RC3, my WiFi connection stopped working. I understand that there were major changes with respect to WiFi, and that the
My configuration in /etc/rc.conf looked like this:
So here's what I did. I manually unloaded both kernel modules, then loaded
Unfortunately, this does not survice a reboot, although I modified /etc/rc.conf (
iwm firmware has been replaced by iwlwifi.My configuration in /etc/rc.conf looked like this:
Code:
wlans_iwm0="wlan0"
ifconfig_wlan0="WPA DHCP"
ifconfig_wlan0_ipv6="inet6 accept_rtadv"
So here's what I did. I manually unloaded both kernel modules, then loaded
iwlwifi only. Afterwards, I was able to create the interface:
Code:
# kldunload if_iwlwifi
# kldunload if_iwm
# kldload if_iwlwifi
# ifconfig wlan0 create wlandev iwlwifi0
[...]
Unfortunately, this does not survice a reboot, although I modified /etc/rc.conf (
wlans_iwlwifi0="wlan0") and added if_iwm_load="NO" to /boot/loader.conf. How can I disable iwm permanently and make sure the network card is attached to the new driver?