aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-08-10 23:48:10 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-08-10 23:48:10 +0000
commitb5700ad6856e6994dad93ab783e345eb96873cf1 (patch)
treee978385589f6cc07a5b16cbcfc32d096d1453870 /package/base-files/files/etc/hotplug.d
parentee12684c89a42937aabaac089b42fdc62122ec40 (diff)
downloadupstream-b5700ad6856e6994dad93ab783e345eb96873cf1.tar.gz
upstream-b5700ad6856e6994dad93ab783e345eb96873cf1.tar.bz2
upstream-b5700ad6856e6994dad93ab783e345eb96873cf1.zip
[package] base-files: move ipv6 module loading from setup_interface() to addif() in the hotplug call, this ensures that ipv6 is loaded before any interfaces or aliases with ip6addr option are configured (#5356)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17217 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc/hotplug.d')
-rw-r--r--package/base-files/files/etc/hotplug.d/net/10-net6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug.d/net/10-net b/package/base-files/files/etc/hotplug.d/net/10-net
index 06e5244447..f46dcd08d6 100644
--- a/package/base-files/files/etc/hotplug.d/net/10-net
+++ b/package/base-files/files/etc/hotplug.d/net/10-net
@@ -3,6 +3,12 @@
include /lib/network
addif() {
+ # Ensure that ipv6 is loaded, autoloading happens later but ipv6 might be
+ # required now for interface setup.
+ [ -d /proc/sys/net/ipv6 ] || {
+ grep -q '^ipv6' /etc/modules.d/* && insmod ipv6
+ }
+
# PPP devices are configured by pppd, no need to run setup_interface here
case "$INTERFACE" in
ppp*) return 0;;