mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 07:46:48 +00:00
odhcp6c: Add option to override interface identifier in RA-client
SVN-Revision: 36959
This commit is contained in:
parent
28535aad38
commit
5219d38da2
@ -8,14 +8,14 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=odhcp6c
|
PKG_NAME:=odhcp6c
|
||||||
PKG_VERSION:=2013-06-13
|
PKG_VERSION:=2013-06-18
|
||||||
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||||
PKG_SOURCE_URL:=git://github.com/sbyx/odhcp6c.git
|
PKG_SOURCE_URL:=git://github.com/sbyx/odhcp6c.git
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_VERSION:=83114b179091cb080f09cf4142ee1c9949ea4e30
|
PKG_SOURCE_VERSION:=eaf3a11cad8a5dd389d5f52cc76e424e0242074b
|
||||||
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
@ -18,8 +18,8 @@ proto_dhcpv6_setup() {
|
|||||||
local config="$1"
|
local config="$1"
|
||||||
local iface="$2"
|
local iface="$2"
|
||||||
|
|
||||||
local reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix iface_dslite
|
local reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix iface_dslite ifaceid
|
||||||
json_get_vars reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix iface_dslite
|
json_get_vars reqaddress reqprefix clientid reqopts noslaaconly norelease ip6prefix iface_dslite ifaceid
|
||||||
|
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
@ -35,6 +35,8 @@ proto_dhcpv6_setup() {
|
|||||||
|
|
||||||
[ "$norelease" = "1" ] && append opts "-k"
|
[ "$norelease" = "1" ] && append opts "-k"
|
||||||
|
|
||||||
|
[ -n "$ifaceid" ] && append opts "-i$ifaceid"
|
||||||
|
|
||||||
for opt in $reqopts; do
|
for opt in $reqopts; do
|
||||||
append opts "-r$opt"
|
append opts "-r$opt"
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user