1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[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
This commit is contained in:
jow
2009-08-10 23:48:10 +00:00
parent af934b189e
commit 11a916c4df
3 changed files with 7 additions and 10 deletions

View File

@@ -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;;