diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-08-07 18:39:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 18:39:26 +0300 |
commit | 102199fcbffe80c3b9fef38270f1f69bf3d7c65a (patch) | |
tree | 98ff3698432f5319af4978c13e3f454b5e4f262a | |
parent | 71fd98c44a53894727970bc14f9d4f43adc67351 (diff) | |
parent | a50c56d4749aa8f4c0673614b221254765c29613 (diff) |
Merge pull request #1287 from TDT-GmbH/dsl_auto_xfer_mode
luci-mod-admin-full: add 'auto' xfer_mode to dsl configuration
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua index 385e1141e..22f7c5f70 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua @@ -38,6 +38,7 @@ if fs.access("/etc/init.d/dsl_control") then tone:value("bv", translate("B43 + B43C + V43")) xfer_mode = dsl:option(ListValue, "xfer_mode", translate("Encapsulation mode")) + xfer_mode:value("", translate("auto")) xfer_mode:value("atm", translate("ATM (Asynchronous Transfer Mode)")) xfer_mode:value("ptm", translate("PTM/EFM (Packet Transfer Mode)")) |