This patch brings the --enable-chilliproxy option for coova-chilli into the configuration menu.
Patch path is feeds/packages/net/coova-chilli Signed-off-by: Matthias Lohr <[email protected]> --- Index: Config.in =================================================================== --- Config.in (Revision 0) +++ Config.in (Revision 0) @@ -0,0 +1,8 @@ +menu "Configuration" + depends on PACKAGE_coova-chilli + + config COOVA_CHILLI_WITHPROXY + bool "Enable chilli proxy" + default n + +endmenu Index: Makefile =================================================================== --- Makefile (Revision 28252) +++ Makefile (Arbeitskopie) @@ -27,8 +27,13 @@ DEPENDS:=+kmod-tun +librt TITLE:=Wireless LAN HotSpot controller (Coova Chilli Version) URL:=http://www.coova.org/CoovaChilli + MENU:=1 endef +define Package/coova-chilli/config + source "$(SOURCE)/Config.in" +endef + define Package/coova-chilli/description CoovaChilli is an open source access controller for wireless LAN access points and is based on ChilliSpot. It is used for authenticating @@ -43,6 +48,16 @@ /etc/chilli.conf endef +ADD_CONFIG_PARAMS:= +ifeq ($(CONFIG_COOVA_CHILLI_WITHPROXY),y) + ADD_CONFIG_PARAMS += --enable-chilliproxy +endif + +# COOVA_CHILLI_WITHPROXY +define Build/Configure + $(call Build/Configure/Default,$(ADD_CONFIG_PARAMS)) +endef + define Package/coova-chilli/install $(INSTALL_DIR) $(1)/etc $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/chilli.conf $(1)/etc/
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
