diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-12-05 12:17:09 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-12-05 12:17:09 +0000 |
commit | 4bdd40c08ba4dd8ca9597cab29dbbb60c3de6f04 (patch) | |
tree | 9b320bafa8ca464761d6240a9df427fa02d6eec8 /package/network/ipv6/odhcp6c | |
parent | 95065c08b0d9e6a8631e40d442ee2f60e480218a (diff) | |
download | upstream-4bdd40c08ba4dd8ca9597cab29dbbb60c3de6f04.tar.gz upstream-4bdd40c08ba4dd8ca9597cab29dbbb60c3de6f04.tar.bz2 upstream-4bdd40c08ba4dd8ca9597cab29dbbb60c3de6f04.zip |
odhcpd/6c: Add config menu for prefix class ext.
SVN-Revision: 38996
Diffstat (limited to 'package/network/ipv6/odhcp6c')
-rw-r--r-- | package/network/ipv6/odhcp6c/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
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 <steven@midlink.org> 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/ |