mirror of
https://github.com/openwrt/luci.git
synced 2025-12-26 13:26:20 +04:00
Merge pull request #1989 from hanipouspilot/ncm
luci-proto-ncm: suggest both tty and wdm devices
This commit is contained in:
@@ -19,16 +19,13 @@ local ipv6, delay, defaultroute, metric, peerdns, dns
|
||||
device = section:taboption("general", Value, "device", translate("Modem device"))
|
||||
device.rmempty = false
|
||||
|
||||
local device_suggestions = nixio.fs.glob("/dev/cdc-wdm*")
|
||||
or nixio.fs.glob("/dev/ttyUSB*")
|
||||
|
||||
if device_suggestions then
|
||||
local node
|
||||
for node in device_suggestions do
|
||||
device:value(node)
|
||||
end
|
||||
local dev
|
||||
for dev in nixio.fs.glob("/dev/ttyUSB*") do
|
||||
device:value(dev)
|
||||
end
|
||||
for dev in nixio.fs.glob("/dev/cdc-wdm*") do
|
||||
device:value(dev)
|
||||
end
|
||||
|
||||
|
||||
mode = section:taboption("general", Value, "mode", translate("Service Type"))
|
||||
mode:value("", translate("Modem default"))
|
||||
|
||||
Reference in New Issue
Block a user