You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
741 B
Makefile

1 year ago
#
11 months ago
#-- PrivateRouter
1 year ago
#
11 months ago
#--Add +wpad-mesh-openssl or wpa package for build
1 year ago
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-easymesh
PKG_VERSION:=2.8.14
PKG_RELEASE:=$(AUTORELEASE)
PKG_MAINTAINER:=Jason Hawks <jason@torguard.net>
1 year ago
LUCI_TITLE:=LuCI Support for easymesh
11 months ago
LUCI_DEPENDS:= +kmod-cfg80211 +batctl-default +kmod-batman-adv +dawn +bash
define Package/luci-app-easymesh/postinst
#!/bin/sh
if [ ! -f /etc/config/easymesh ]; then
echo "Creating /etc/config/easymesh"
cat <<EOF > /etc/config/easymesh
config easymesh 'config'
option enabled '0'
EOF
reload_config
else
echo "/etc/config/easymesh exists, skipping creation"
fi
endef
1 year ago
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature