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:
Florian Eckert 2019-06-26 12:42:25 +02:00
parent 86fd703bae
commit 204bc5b9ab

View file

@ -4,7 +4,7 @@
local map, section, net = ...
local device, apn, pincode, username, password
local auth, ipv6
local auth, ipv6, delay
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.default = ipv6.disabled
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)"