rename wlan services for devices with > 1 radio

let's standardise on having 2.4GHz radio be "wlan", and
5GHz as "wlan5"
This commit is contained in:
Daniel Barlow 2023-10-07 22:23:44 +01:00
parent caf8e85061
commit a896c4e31c
2 changed files with 7 additions and 5 deletions

View file

@ -123,11 +123,11 @@
in {
lan = link.build { ifname = "eth0"; };
wan = link.build { ifname = "eth1"; };
wlan_24 = link.build {
wlan = link.build {
ifname = "wlan0";
dependencies = [ mac80211 ];
};
wlan_5 = link.build {
wlan5 = link.build {
ifname = "wlan1";
dependencies = [ mac80211 ath10k_cal_data ];
};