base-files: load modules early, run wifi detect afterwards and only then process...
authorFelix Fietkau <nbd@openwrt.org>
Thu, 3 Nov 2011 20:02:25 +0000 (20:02 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 3 Nov 2011 20:02:25 +0000 (20:02 +0000)
this allows uci-defaults scripts to override wifi settings

SVN-Revision: 28733

package/base-files-network/files/etc/init.d/network
package/base-files/files/etc/init.d/boot

index fc512216f8e08c7299ad55b514cc0efb0418945c..ad73e603755db373cb008163a0bd11434ed12b55 100755 (executable)
@@ -10,11 +10,6 @@ boot() {
        include /lib/network
        setup_switch
 
-       /sbin/wifi detect > /tmp/wireless.tmp
-       [ -s /tmp/wireless.tmp ] && {
-               cat /tmp/wireless.tmp >> /etc/config/wireless
-       }
-       rm -f /tmp/wireless.tmp
        grep -qs config /etc/config/wireless && {
                /sbin/wifi up
        }
index 346d60d04b92a3a71ce0200afcf17ebcd440b616..7f6b26791bb191ca4f11765b069f26edb38621ef 100755 (executable)
@@ -52,10 +52,6 @@ start() {
        [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc
        [ -f /proc/net/vlan/config ] && vconfig set_name_type DEV_PLUS_VID_NO_PAD
 
-       apply_uci_config
-       config_load system
-       config_foreach system_config system
-       
        mkdir -p /var/run
        mkdir -p /var/log
        mkdir -p /var/lock
@@ -69,6 +65,18 @@ start() {
        grep -q debugfs /proc/filesystems && mount -t debugfs debugfs /sys/kernel/debug
        [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
 
+       load_modules /etc/modules.d/*
+
+       /sbin/wifi detect > /tmp/wireless.tmp
+       [ -s /tmp/wireless.tmp ] && {
+               cat /tmp/wireless.tmp >> /etc/config/wireless
+       }
+       rm -f /tmp/wireless.tmp
+
+       apply_uci_config
+       config_load system
+       config_foreach system_config system
+
        killall -q hotplug2
        [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
                        --set-worker /lib/hotplug2/worker_fork.so \
@@ -86,8 +94,6 @@ start() {
                [ -n "$rootdev" ] && ln -s "$rootdev" /dev/root
        }
 
-       load_modules /etc/modules.d/*
-
        # another round of USB coldplugging to kick devices into operation which lacked drivers before
        for dev in /sys/bus/usb/devices/*/uevent; do
                [ -e "$dev" ] && echo -n add > "$dev"