From: Jonas Köppeler Date: Wed, 18 Feb 2026 12:08:04 +0000 (+0100) Subject: luci-app-sqm: add use_mq config option X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=8154ad756957153e14df64e9439a5f1fb81f65c5;p=openwrt-luci.git luci-app-sqm: add use_mq config option Adds mq config option for luci-app-sqm. This controls the use_mq config option of the sqm scripts. Signed-off-by: Jonas Köppeler --- diff --git a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js index 6acb25fa7a..2ebf8ece44 100644 --- a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -133,6 +133,10 @@ return view.extend({ o = s.taboption("tab_qdisc", form.Flag, "qdisc_advanced", _("Advanced Configuration"), _("Advanced options will only be used as long as this box is checked.")); o.default = false; + o = s.taboption("tab_qdisc", form.Flag, "use_mq", _("Enable multi-queue config"), _("Enable multi-queue qdisc on supported hardware. If .qos script does not support mq this option is ignored.")); + o.default = false; + o.depends("qdisc_advanced", "1"); + o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP (ingress)"), _("Squash DSCP markings on inbound packets")); o.value("1", "SQUASH"); o.value("0", "DO NOT SQUASH");