Before this comit, the networks in /etc/config/network looked like this:
config interface 'mesh_radio0'
option proto 'gluon_mesh'
After this patch, the networks look like this:
config interface 'mesh_radio0'
option proto 'gluon_mesh'
option ifname 'mesh0'
Especially, this fixes a regression bug, that the "wifi" section in the
respondd request type "neighbours" was empty:
~# gluon-neighbour-info -d ::1 -r neighbours | ffh_pretty_json
{
"wifi": [
],
...
}
After this commit, the section (correctly) looks like this:
root@UFU-FWH-A272-Tresckowstr-GemR-vorne:~# gluon-neighbour-info -d ::1 -r neighbours | ffh_pretty_json
{
"wifi": {
"ca:38:7e:42:5f:21": {
"neighbours": {
"fe:9f:4d:01:ea:e1": {
"noise": -102,
"inactive": 50,
"signal": -84
},
"fe:df:b9:84:37:51": {
"noise": -102,
"inactive": 20,
"signal": -73
}
}
}
},
...
}