From 59dc4782d632119e901ae6bac841ecf2bb82689f Mon Sep 17 00:00:00 2001 From: cyrus Date: Thu, 5 Dec 2013 12:17:09 +0000 Subject: [PATCH] odhcpd/6c: Add config menu for prefix class ext. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38996 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/ipv6/odhcp6c/Makefile | 11 +++++++++++ package/network/services/odhcpd/Makefile | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile index 845dc579e9..bd794dc864 100644 --- a/package/network/ipv6/odhcp6c/Makefile +++ b/package/network/ipv6/odhcp6c/Makefile @@ -21,6 +21,10 @@ PKG_MAINTAINER:=Steven Barth include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/cmake.mk +ifneq ($(CONFIG_PACKAGE_odhcp6c_ext_prefix_class),0) + CMAKE_OPTIONS += -DEXT_PREFIX_CLASS=$(CONFIG_PACKAGE_odhcp6c_ext_prefix_class) +endif + define Package/odhcp6c SECTION:=net CATEGORY:=Network @@ -28,6 +32,13 @@ define Package/odhcp6c DEPENDS:=+kmod-ipv6 endef +define Package/odhcp6c/config + config PACKAGE_odhcp6c_ext_prefix_class + int "Prefix Class Extension ID (0 = disabled)" + depends on PACKAGE_odhcp6c + default 0 +endef + define Package/odhcp6c/install $(INSTALL_DIR) $(1)/usr/sbin/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/odhcp6c $(1)/usr/sbin/ diff --git a/package/network/services/odhcpd/Makefile b/package/network/services/odhcpd/Makefile index e660600fee..c4f76cbd62 100644 --- a/package/network/services/odhcpd/Makefile +++ b/package/network/services/odhcpd/Makefile @@ -22,6 +22,10 @@ PKG_MAINTAINER:=Steven Barth include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/cmake.mk +ifneq ($(CONFIG_PACKAGE_odhcpd_ext_prefix_class),0) + CMAKE_OPTIONS += -DEXT_PREFIX_CLASS=$(CONFIG_PACKAGE_odhcpd_ext_prefix_class) +endif + define Package/odhcpd SECTION:=net CATEGORY:=Network @@ -29,6 +33,13 @@ define Package/odhcpd DEPENDS:=+libubox +libuci +libubus endef +define Package/odhcpd/config + config PACKAGE_odhcpd_ext_prefix_class + int "Prefix Class Extension ID (0 = disabled)" + depends on PACKAGE_odhcpd + default 0 +endef + define Package/odhcpd/description odhcpd is a daemon for serving and relaying IP management protocols to configure clients and downstream routers. It tries to follow the RFC 6204 -- 2.11.0