core: hacks for wifi no adhoc

This commit is contained in:
Maciej Krüger 2021-12-12 10:20:21 +01:00 committed by Alexander List
parent d259b0c8d4
commit 6348376e3a

View File

@ -127,6 +127,19 @@ local function configure_mesh(config, radio, index, suffix, disabled)
return
end
-- TODO: source from site
user_adjustable_channel = true
channel = 5
mode = "adhoc"
local id = config.id
if user_adjustable_channel then
id = string.format(template, channel)
end
-- mode mesh, adhoc
if mode == "mesh" then
uci:section('network', 'interface', name, {
proto = 'gluon_mesh',
})
@ -135,7 +148,7 @@ local function configure_mesh(config, radio, index, suffix, disabled)
device = radio_name,
network = name,
mode = 'mesh',
mesh_id = config.id,
mesh_id = id,
mesh_fwding = false,
macaddr = macaddr,
mcast_rate = config.mcast_rate,
@ -144,6 +157,21 @@ local function configure_mesh(config, radio, index, suffix, disabled)
macfilter = macfilter,
maclist = maclist,
})
elseif mode == "adhoc" then
uci:section('wireless', 'wifi-iface', name, {
device = radio_name,
network = name,
mode = 'adhoc',
ssid = id,
encryption = 'none',
macaddr = macaddr,
mcast_rate = config.mcast_rate,
ifname = suffix and 'mesh' .. suffix,
disabled = disabled,
macfilter = macfilter,
maclist = maclist,
})
end
end
local function fixup_wan(radio, index)