From: luka Date: Fri, 12 Apr 2013 14:37:28 +0000 (+0000) Subject: [packages] strongswan: add eap-radius plugin X-Git-Url: http://git.archive.openwrt.org/?p=packages.git;a=commitdiff_plain;h=85491ffb3739426e5439873a711a07ea89c391ad [packages] strongswan: add eap-radius plugin Signed-off-by: Luka Logar git-svn-id: svn://svn.openwrt.org/openwrt/packages@36318 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/strongswan/Makefile b/net/strongswan/Makefile index d1da035ea..eb71cfc6d 100644 --- a/net/strongswan/Makefile +++ b/net/strongswan/Makefile @@ -36,6 +36,7 @@ PKG_MOD_AVAILABLE:= \ eap-identity \ eap-md5 \ eap-mschapv2 \ + eap-radius \ farp \ fips-prf \ gcm \ @@ -150,6 +151,7 @@ $(call Package/strongswan/Default) +strongswan-mod-eap-identity \ +strongswan-mod-eap-md5 \ +strongswan-mod-eap-mschapv2 \ + +strongswan-mod-eap-radius \ +strongswan-mod-farp \ +strongswan-mod-fips-prf \ +strongswan-mod-gcm \ @@ -391,6 +393,12 @@ define Plugin/duplicheck/install $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-duplicheck.so $(1)/usr/lib/ipsec/plugins/ endef +define Plugin/eap-radius/install + $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins + $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/libradius.so.* $(1)/usr/lib/ipsec/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-eap-radius.so $(1)/usr/lib/ipsec/plugins/ +endef + define Plugin/attr-sql/install $(INSTALL_DIR) $(1)/usr/lib/ipsec $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/pool $(1)/usr/lib/ipsec/ @@ -452,6 +460,7 @@ $(eval $(call BuildPlugin,duplicheck,advanced duplicate checking,)) $(eval $(call BuildPlugin,eap-identity,EAP identity helper,)) $(eval $(call BuildPlugin,eap-md5,EAP MD5 (CHAP) EAP auth,)) $(eval $(call BuildPlugin,eap-mschapv2,EAP MS-CHAPv2 EAP auth,)) +$(eval $(call BuildPlugin,eap-radius,EAP RADIUS auth,)) $(eval $(call BuildPlugin,farp,fake arp respsonses,)) $(eval $(call BuildPlugin,fips-prf,FIPS PRF crypto,+strongswan-mod-sha1)) $(eval $(call BuildPlugin,gcm,GCM AEAD wrapper crypto,))