From 1733b4f7dab640b9e6ac2df2dbe4e8c9e704fd12 Mon Sep 17 00:00:00 2001 From: Polynomialdivision Date: Fri, 10 Apr 2020 10:38:27 +0200 Subject: [PATCH 1/2] luci-app-dawn: fix typos Signed-off-by: Nick Hainke --- .../luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua b/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua index ab0c170f9c..b965451b03 100644 --- a/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua +++ b/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua @@ -11,7 +11,7 @@ s:option(Value, "chan_util", "Channel Utilization") s:option(Value, "max_chan_util", "Above Maximum Channel Utilization") s = m:section(TypedSection, "metric", "Threshold", "Thresholds"); s.anonymous = true; -s:option(Value, "bandwith_threshold", "Bandwidth Threshold") +s:option(Value, "bandwidth_threshold", "Bandwidth Threshold") s:option(Value, "rssi_val", "RSSI Threshold") s:option(Value, "low_rssi_val", "Low RSSI Threshold") s:option(Value, "chan_util_val", "Channel Utilization Threshold") From 0ea4115a3a9d08f07d9a222eb0fccc2ea07cf6e8 Mon Sep 17 00:00:00 2001 From: Polynomialdivision Date: Fri, 10 Apr 2020 10:39:49 +0200 Subject: [PATCH 2/2] luci-app-dawn: add dependencies Missing: - luci-compat - luci-lib-json Fixes #3836 Signed-off-by: Nick Hainke --- applications/luci-app-dawn/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-dawn/Makefile b/applications/luci-app-dawn/Makefile index 330dddbf6c..1b2b598cc8 100644 --- a/applications/luci-app-dawn/Makefile +++ b/applications/luci-app-dawn/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI support for DAWN -LUCI_DEPENDS:=+dawn +LUCI_DEPENDS:=+dawn +luci-compat +luci-lib-json LUCI_PKGARCH:=all include ../../luci.mk