add wrt-radauth package (thanks to Florian Fainelli)
SVN-Revision: 2180
This commit is contained in:
parent
c6274d3fa3
commit
d78910fbec
5 changed files with 54 additions and 0 deletions
|
@ -132,6 +132,7 @@ source "package/wificonf/Config.in"
|
|||
source "package/wifidog/Config.in"
|
||||
source "package/wiviz/Config.in"
|
||||
source "package/wondershaper/Config.in"
|
||||
source "package/wrt-radauth/Config.in"
|
||||
|
||||
comment "Libraries"
|
||||
source "package/cgilib/Config.in"
|
||||
|
|
|
@ -200,6 +200,7 @@ package-$(BR2_PACKAGE_WOL) += wol
|
|||
package-$(BR2_PACKAGE_WONDERSHAPER) += wondershaper
|
||||
package-$(BR2_PACKAGE_WPA_SUPPLICANT) += wpa_supplicant
|
||||
package-$(BR2_PACKAGE_WPUT) += wput
|
||||
package-$(BR2_PACKAGE_WRT_RADAUTH) += wrt-radauth
|
||||
package-$(BR2_PACKAGE_XINETD) += xinetd
|
||||
package-$(BR2_PACKAGE_ZLIB) += zlib
|
||||
|
||||
|
|
10
openwrt/package/wrt-radauth/Config.in
Normal file
10
openwrt/package/wrt-radauth/Config.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
config BR2_PACKAGE_WRT_RADAUTH
|
||||
tristate "wrt-radauth - a RADIUS MAC authenticator for Broadcom based access points"
|
||||
default m if CONFIG_DEVEL
|
||||
help
|
||||
This software watches the stations associating to a broadcom based
|
||||
AccessPoint (e.g. Linksys WRT54G) and sends an authentication request
|
||||
to the radius-server specified in nvram.
|
||||
|
||||
http://www.zerfleddert.de/wrt54g/
|
||||
|
36
openwrt/package/wrt-radauth/Makefile
Normal file
36
openwrt/package/wrt-radauth/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=wrt-radauth
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=f941e3139175dc6b87f6c89ba8848a07
|
||||
|
||||
PKG_SOURCE_URL:=http://www.zerfleddert.de/wrt54g/
|
||||
PKG_SOURCE:=$(PKG_NAME).tar.gz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
BR2_PACKAGE_WRT_RADAUTH:=m
|
||||
|
||||
$(eval $(call PKG_template,WRT_RADAUTH,wrt-radauth,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC="$(TARGET_CC)" \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||
clean all
|
||||
touch $@
|
||||
|
||||
$(IPKG_WRT_RADAUTH):
|
||||
install -d -m0755 $(IDIR_WRT_RADAUTH)/usr/sbin
|
||||
install -m0755 $(PKG_BUILD_DIR)/radius-client $(IDIR_WRT_RADAUTH)/usr/sbin/
|
||||
install -m0755 $(PKG_BUILD_DIR)/wrt-radauth $(IDIR_WRT_RADAUTH)/usr/sbin/
|
||||
$(RSTRIP) $(IDIR_WRT_RADAUTH)
|
||||
$(IPKG_BUILD) $(IDIR_WRT_RADAUTH) $(PACKAGE_DIR)
|
6
openwrt/package/wrt-radauth/ipkg/wrt-radauth.control
Normal file
6
openwrt/package/wrt-radauth/ipkg/wrt-radauth.control
Normal file
|
@ -0,0 +1,6 @@
|
|||
Package: wrt-radauth
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, Florian Fainelli <florian@alphacore.net>
|
||||
Source: buildroot internal
|
||||
Description: A RADIUS MAC authenticator for Broadcom based access points.
|
Loading…
Reference in a new issue