diff options
author | Steven Barth <steven@midlink.org> | 2013-05-23 10:13:58 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-05-23 10:13:58 +0000 |
commit | 9a55fd9e8487d3e473ff2432886d76531e64cb59 (patch) | |
tree | d5650aedc588f1f4a44673fff86fc2f8ecd45b77 | |
parent | dc7b9db9af8b4aeabde71f4cdd56bc6d653dd339 (diff) |
Fix IPv6 package dependencies
-rw-r--r-- | contrib/package/luci/Makefile | 2 | ||||
-rw-r--r-- | protocols/ipv6/luasrc/model/network/proto_dhcpv6.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 86ffce769..25425446b 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -196,7 +196,7 @@ endef $(eval $(call protocol,core,Support for static/dhcp/none)) $(eval $(call protocol,ppp,Support for PPP/PPPoE/PPPoA/PPtP)) -$(eval $(call protocol,ipv6,Support for DHCPv6/6in4/6to4/6rd,+PACKAGE_luci-proto-ipv6:6in4 +PACKAGE_luci-proto-ipv6:6to4 +PACKAGE_luci-proto-ipv6:6rd +PACKAGE_luci-proto-ipv6:odhcp6c)) +$(eval $(call protocol,ipv6,Support for DHCPv6/6in4/6to4/6rd/DS-Lite)) $(eval $(call protocol,3g,Support for 3G,+PACKAGE_luci-proto-3g:comgt)) $(eval $(call protocol,relay,Support for relayd pseudo bridges,+PACKAGE_luci-proto-relay:relayd)) diff --git a/protocols/ipv6/luasrc/model/network/proto_dhcpv6.lua b/protocols/ipv6/luasrc/model/network/proto_dhcpv6.lua index e5e54d593..59463d18a 100644 --- a/protocols/ipv6/luasrc/model/network/proto_dhcpv6.lua +++ b/protocols/ipv6/luasrc/model/network/proto_dhcpv6.lua @@ -28,5 +28,5 @@ function proto.is_installed(self) end function proto.opkg_package(self) - return "ipv6-support" + return "odhcp6c" end |