This patch integrates AICCU with netifd. Care was taken not to restart aiccu without a reason as it triggers alert on SixXS infrastructure. Example usage: config interface 'wan6' option 'proto' 'aiccu' option 'username' 'HANDLE-SIXXS/TID' option 'password' 'Password' option 'ip6prefix' '2001:db8:aabb::/48' #Delegated subnet option 'ip6addr' '2001:db8:aaaa:aaa::2/64' #Optional option 'verbose' 'true' Tested with current trunk on TL-WR703N. Signed-off-by: Ondrej Caletka <ondrej@caletka.cz>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=aiccu
|
|
PKG_VERSION:=20070115
|
|
PKG_RELEASE:=11
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.sixxs.net/archive/sixxs/aiccu/unix
|
|
PKG_MD5SUM:=c9bcc83644ed788e22a7c3f3d4021350
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/aiccu
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread +ip +kmod-sit +kmod-tun
|
|
TITLE:=SixXS Automatic IPv6 Connectivity Client Utility
|
|
URL:=http://www.sixxs.net/tools/aiccu/
|
|
MAINTAINER:=Ondrej Caletka <ondrej@caletka.cz>
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(SED) "s,strip,/bin/true," $(PKG_BUILD_DIR)/unix-console/Makefile
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" OS_NAME="Linux" OS_VERSION="$(LINUX_VERSION)" \
|
|
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
|
EXTRA_LDFLAGS="$(TARGET_LDFLAGS) -pthread" \
|
|
DEBUG=0
|
|
endef
|
|
|
|
define Package/aiccu/conffiles
|
|
/etc/config/aiccu
|
|
endef
|
|
|
|
define Package/aiccu/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/lib/netifd/proto
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/unix-console/$(PKG_NAME) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/aiccu.sh $(1)/lib/netifd/proto/aiccu.sh
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,aiccu))
|