package/busybox: update udhcpc.script for stateful DHCPv6
udhcpc6 will call the default script with the stateful address set in the "ipv6" variable. Set "ip" to this address if present, using the /128 prefix used by stateful DHCPv6 so the existing renew/bound logic can be used like in DHCPv4. Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
8b44338ec5
commit
3346048ac5
@ -8,6 +8,8 @@ RESOLV_CONF="/etc/resolv.conf"
|
||||
[ -e $RESOLV_CONF ] || touch $RESOLV_CONF
|
||||
[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
|
||||
[ -n "$subnet" ] && NETMASK="netmask $subnet"
|
||||
# Handle stateful DHCPv6 like DHCPv4
|
||||
[ -n "$ipv6" ] && ip="$ipv6/128"
|
||||
|
||||
case "$1" in
|
||||
deconfig)
|
||||
|
Loading…
Reference in New Issue
Block a user