summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2018-05-14 16:44:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-21 12:52:53 +0000
commitb4d44736da7dba540f661174f7362a554e8b0789 (patch)
treee2169aceb422504e159e25d10ad9abb68f51e52c /meta
parent390422db14fe6506b20b135defdfc49e60905b41 (diff)
downloadpoky-b4d44736da7dba540f661174f7362a554e8b0789.tar.gz
busybox: udhcpc: fix IPv6 support when using udhcpc
The udhcpc script calls ip addr flush .. which flushes addresses of any address family, including IPv6. However, busybox udhcpc is IPv4 only and should not influence IPv6 addressing. Hence use ip addr flush with family constrait. The script particularly broke IPv6 SLAAC: Typically when udhcpc calls the script the kernel already assigned the IPv6 link-local address. The flush removes the link-local IPv6 address again and prohibits proper IPv6 operation such as SLAAC since neighbor discovery protocol relies on IPv6 link-local addressing. (From OE-Core rev: b77541dbb2f442e51842f9d24c8745a6df2d1478) Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/busybox/files/simple.script2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/files/simple.script b/meta/recipes-core/busybox/files/simple.script
index 6ed0293525..8b5eb53633 100644
--- a/meta/recipes-core/busybox/files/simple.script
+++ b/meta/recipes-core/busybox/files/simple.script
@@ -28,7 +28,7 @@ case "$1" in
28 fi 28 fi
29 if ! root_is_nfs ; then 29 if ! root_is_nfs ; then
30 if [ $have_bin_ip -eq 1 ]; then 30 if [ $have_bin_ip -eq 1 ]; then
31 /SBIN_DIR/ip addr flush dev $interface 31 /SBIN_DIR/ip -4 addr flush dev $interface
32 /SBIN_DIR/ip link set dev $interface up 32 /SBIN_DIR/ip link set dev $interface up
33 else 33 else
34 /SBIN_DIR/ifconfig $interface 0.0.0.0 34 /SBIN_DIR/ifconfig $interface 0.0.0.0