|
You can try this to lock the onboard wifi to wlan0:
1. Change the value for Predictable Network Names (so you will get wlan0, wlan1, eth0, eth1, etc):
- nano /boot/armbianEnv.txt
Copy code
and add:
2. Assign the Network name to the device driver:
- nano /etc/udev/rules.d/72-wlan-geo-dependent.rules
Copy code
and add:
- ACTION=="add", SUBSYSTEM=="net", DRIVERS=="xradio_wlan", NAME="wlan0"
Copy code
If that does not work, you can try:
- nano /etc/udev/rules.d/70-persistent-net.rules
Copy code
and add:
- ACTION=="add", SUBSYSTEM=="net", DRIVERS=="xradio_wlan", NAME="wlan0"
Copy code
Reboot. The Pi Zero onboard wifi should now consistently appear as wlan0.
--Chris
|
|