2012-11-29 20:14:28 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010-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:=ipv6-support
|
2013-01-23 08:15:09 +00:00
|
|
|
PKG_VERSION:=2013-01-23
|
2012-11-29 20:14:28 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ipv6-support
|
|
|
|
SECTION:=ipv6
|
|
|
|
CATEGORY:=IPv6
|
2013-01-15 13:08:19 +00:00
|
|
|
DEPENDS:=+kmod-ipv6 +6relayd +odhcp6c +ip6tables
|
2012-11-29 20:14:28 +00:00
|
|
|
TITLE:=Basic IPv6-support for Customer Edge Routers
|
|
|
|
MAINTAINER:=Steven Barth <steven@midlink.org>
|
|
|
|
PKGARCH:=all
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ipv6-support/description
|
|
|
|
This package provides basic IPv6 support including Router Discovery,
|
|
|
|
DHCPv6 (client & server), prefix delegation and distribution.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ipv6-support/install
|
2012-12-28 12:02:22 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
2013-01-18 12:52:51 +00:00
|
|
|
$(INSTALL_BIN) ./files/network-enable-ipv6.defaults $(1)/etc/uci-defaults/10_network-enable-ipv6
|
2012-11-29 20:14:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ipv6-support))
|