local has_learn = nil
local has_vlan4k = nil
local has_ptpvid = nil
+ local has_jumbo3 = nil
local min_vid = 0
local max_vid = 16
local num_vlans = 16
elseif line:match(": enable_vlan4k") then
enable_vlan4k = true
+ elseif line:match(": max_length") then
+ has_jumbo3 = "max_length"
end
end
x.default = x.enabled
end
+ if has_jumbo3 then
+ x = s:option(Flag, has_jumbo3, translate("Enable Jumbo Frame passthrough"))
+ x.enabled = "3"
+ x.rmempty = true
+ end
+
if has_reset then
x = s:option(Flag, has_reset, translate("Reset switch during setup"))
x.default = x.enabled