base-files: remove old coldplugging hacks that are no longer necessary since the...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 13 Mar 2012 09:18:30 +0000 (09:18 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 13 Mar 2012 09:18:30 +0000 (09:18 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30916 3c298f89-4303-0410-b956-a3cf2f4a3e73

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

index c798df3..948a09e 100755 (executable)
@@ -87,21 +87,11 @@ start() {
                        --set-coldplug-cmd /sbin/udevtrigger \
                        --max-children 1 >/dev/null 2>&1 &
 
-       # the coldplugging of network interfaces needs to happen later, so we do it manually here
-       for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do
-               /usr/bin/env -i ACTION=add INTERFACE="$iface" /sbin/hotplug-call net
-       done
-
        # create /dev/root if it doesn't exist
        [ -e /dev/root -o -h /dev/root ] || {
                rootdev=$(awk 'BEGIN { RS=" "; FS="="; } $1 == "root" { print $2 }' < /proc/cmdline)
                [ -n "$rootdev" ] && ln -s "$rootdev" /dev/root
        }
-
-       # 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"
-       done
 }
 
 stop() {
This page took 0.037545 seconds and 4 git commands to generate.