luci-proto-qmi: add missing delay option
The proto handler qmi does support the delay option for modem initialization. Add that missing option to the advanced tab to configure that with LuCI. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
86fd703bae
commit
204bc5b9ab
1 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
local map, section, net = ...
|
local map, section, net = ...
|
||||||
|
|
||||||
local device, apn, pincode, username, password
|
local device, apn, pincode, username, password
|
||||||
local auth, ipv6
|
local auth, ipv6, delay
|
||||||
|
|
||||||
|
|
||||||
device = section:taboption("general", Value, "device", translate("Modem device"))
|
device = section:taboption("general", Value, "device", translate("Modem device"))
|
||||||
|
@ -43,3 +43,9 @@ if luci.model.network:has_ipv6() then
|
||||||
ipv6 = section:taboption("advanced", Flag, "ipv6", translate("Enable IPv6 negotiation"))
|
ipv6 = section:taboption("advanced", Flag, "ipv6", translate("Enable IPv6 negotiation"))
|
||||||
ipv6.default = ipv6.disabled
|
ipv6.default = ipv6.disabled
|
||||||
end
|
end
|
||||||
|
|
||||||
|
delay = section:taboption("advanced", Value, "delay",
|
||||||
|
translate("Modem init timeout"),
|
||||||
|
translate("Maximum amount of seconds to wait for the modem to become ready"))
|
||||||
|
delay.placeholder = "10"
|
||||||
|
delay.datatype = "min(1)"
|
||||||
|
|
Loading…
Reference in a new issue