diff --git a/Makefile b/Makefile index 9394995..fdc148c 100755 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for easymesh LUCI_DEPENDS:= +kmod-cfg80211 +batctl-default +kmod-batman-adv +dawn +bash -PKG_VERSION:=2.8.9 +PKG_VERSION:=2.8.10 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luasrc/model/cbi/easymesh.lua b/luasrc/model/cbi/easymesh.lua index 005e7f8..9ac67e5 100755 --- a/luasrc/model/cbi/easymesh.lua +++ b/luasrc/model/cbi/easymesh.lua @@ -73,8 +73,8 @@ o.default = 0 o = s:taboption("setup", ListValue, "role", translate("Mesh Mode"), translate('

Choose the role this device will play in your mesh network. There are two options available:

1. Server: If you select this option, this device will act as the Mesh Gateway Server. The server manages the routing of data in the network and handles connections to the internet. It is the central point of your mesh network.

2. Node: The device functions as a Mesh Node if this option is selected. Nodes connect to the Mesh Gateway Server and other nodes to extend the range of the network. Nodes can also route traffic between each other to increase network efficiency.

Remember to set up the Mesh Gateway Server first before setting up the nodes.

')) o:value("server", translate("Server")) o:value("off", translate("Node")) +o:value("client", translate("Client")) o.default = "server" ---o:value("client", translate("Client (advanced)")) apRadio = s:taboption("setup", MultiValue, "apRadio", translate("Mesh Radio(s)"), translate('

Select one or multiple radio interfaces to be used for the mesh network. Each selected radio interface will be configured to participate in the mesh network, extending its range and improving its resilience. By using multiple radios, your mesh network can balance the network load and handle a larger number of connected devices.

Ensure the radios you select support mesh networking

')) @@ -100,6 +100,11 @@ o:depends("encryption", 1) o.password = true o.datatype = "minlength(8)" +btnReapply = s:taboption("setup", Button, "_btn_reapply", translate("Reapply EasyMesh Settings"), translate('

Use this button to apply/reapply EasyMesh configuration after you Save & Apply.

')) +function btnReapply.write() + io.popen("/easymesh/easymesh.sh &") +end + enable_kvr = s:taboption("advanced", Flag, "kvr", translate("K/V/R"), translate('

Leave these settings as default unless you know what you\'re doing

')) enable_kvr.default = 1 @@ -127,7 +132,7 @@ o:value("node7", "node7") o:value("node8", "node8") o:value("node9", "node9") o.datatype = "string" -o:depends("role", "off") +o:depends({role="off",role="client"}) -- IP Mode (DHCP or Static) ipmode = s:taboption("apmode", ListValue, "ipmode", translate("IP Mode"), translate("Choose if the node uses DHCP or a Static IP")) @@ -166,13 +171,4 @@ function btnAPMode.write() end btnAPMode:depends("role", "off") -m.on_before_apply = function(self) - local enabled = m:formvalue("cbid.easymesh.config.enabled") - if enabled and enabled == "1" then - luci.sys.call("/easymesh/easymesh.sh enable &") - else - luci.sys.call("/easymesh/easymesh.sh disable &") - end -end - return m \ No newline at end of file diff --git a/root/easymesh/easymesh.sh b/root/easymesh/easymesh.sh index d4bca59..14b4234 100755 --- a/root/easymesh/easymesh.sh +++ b/root/easymesh/easymesh.sh @@ -492,19 +492,18 @@ disable_easymesh() { uci del easymesh.config.running } -if [ "$1" = "enable" ]; then - enable_easymesh - exit 0 -elif [ "$1" = "disable" ]; then - disable_easymesh - exit 0 -elif [ "$1" = "dumbap" ]; then +if [ "$1" = "dumbap" ]; then set_apmode exit 0 elif [ "$1" = "undumb" ]; then disable_apmode exit 0 +# If no params passed, we disable or enable easymesh based on config else - echo "Invalid argument. Please use 'start', 'stop' or 'dumbap'" - exit 1 + # Check if easymesh is enabled + if [ "$(uci -q get easymesh.config.enabled)" = 1 ]; then + enable_easymesh + else + disable_easymesh + fi fi