gluon/package/gluon-core
lemoer f753680e76 gluon-core: fix missing ifname for mesh_radio networks in uci
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
	        }
	      }
	    }
	  },
	  ...
	}
2022-08-07 11:54:47 +02:00
..
files gluon-core: add post-setup.d .keep (#2525) 2022-05-20 18:59:37 +02:00
luasrc gluon-core: fix missing ifname for mesh_radio networks in uci 2022-08-07 11:54:47 +02:00
src gluon-core: reimplement gluon.site module in C 2018-01-18 16:29:00 +01:00
check_site.lua gluon-core: initialize interfaces role configuration 2022-02-22 18:52:15 +01:00
Makefile gluon-core: remove obsolete config file 2022-01-23 14:44:07 +01:00