Hello guys and thank you for the cool system! Arch user here, trying out something new.
ThinkPad T470s, fresh install of FreeBSD 15-RELEASE.
Installation went smooth, did some initial setup with no issues.
Then I tried get the WiFi working and now I'm stuck in reboot loop.
Wifi module is Intel 8260.
I was following the handbook chapter 7, on network setup.
In the output of
I saw that my wifi card identifier was prefixed with
I figured I need to load the iwm driver - it was installed, just not loaded, it seemed.
From reading
And somehow I thought I'm smarter than documentation, and added only these 2 lines.
You know, why would I list all these model numbers if I know mine and just take the closest approximation, right
?
Then rebooted. Upon reboot, the system greets me with panic:
Then I quickly learn about this amazing thing called loader prompt, dig through the forum and see someone with similar issue, and people recommending him/her to
First of all - verifying contents of loader.conf:
Then, looking at all the iwm-related values from
From this point, I carefully
And, well, it didn't help. There's still a panic. Maybe there are more values that iwm adds to loader config that I'm not aware of?
Also: I still got my live usb. Can't I just boot from it and edit broken loader.conf from there? Didn't see anyone mentioning that, maybe for a good reason.
ThinkPad T470s, fresh install of FreeBSD 15-RELEASE.
Installation went smooth, did some initial setup with no issues.
Then I tried get the WiFi working and now I'm stuck in reboot loop.
Wifi module is Intel 8260.
I was following the handbook chapter 7, on network setup.
In the output of
pciconf -l | grep -A1 -B3 network I saw that my wifi card identifier was prefixed with
none@ instead of a driver name.I figured I need to load the iwm driver - it was installed, just not loaded, it seemed.
From reading
man iwm I saw that I need to add few lines in loader.conf:
Code:
if_iwm_load="YES"
iwm3160fw_load="YES"
iwm3168fw_load="YES"
iwm7260fw_load="YES"
iwm7265fw_load="YES"
iwm7265Dfw_load="YES"
iwm8000Cfw_load="YES"
iwm8265fw_load="YES"
iwm9000fw_load="YES"
iwm9260fw_load="YES"
And somehow I thought I'm smarter than documentation, and added only these 2 lines.
Code:
if_iwm_load="YES"
iwm8265fw_load="YES"
Then rebooted. Upon reboot, the system greets me with panic:
Then I quickly learn about this amazing thing called loader prompt, dig through the forum and see someone with similar issue, and people recommending him/her to
show loader options and unset broken values. So, here's couple more "screenshots". First of all - verifying contents of loader.conf:
Then, looking at all the iwm-related values from
showFrom this point, I carefully
unset every iwm-related value, including if_iwm_load (oh man, typing everything by hand!), triple-check everything with show, then hit boot.And, well, it didn't help. There's still a panic. Maybe there are more values that iwm adds to loader config that I'm not aware of?
Also: I still got my live usb. Can't I just boot from it and edit broken loader.conf from there? Didn't see anyone mentioning that, maybe for a good reason.