diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-05-09 20:54:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-05-09 20:54:41 +0000 |
commit | c9f05e78203374b3830cfd836c4af4425efb997e (patch) | |
tree | a560aae828fe2035be57f0c5a22eedb82f5f1cbb /package/base-files/files/etc | |
parent | 16840c5f6a573e970c5964f5e3d5ee1274bfb7a6 (diff) | |
download | upstream-c9f05e78203374b3830cfd836c4af4425efb997e.tar.gz upstream-c9f05e78203374b3830cfd836c4af4425efb997e.tar.bz2 upstream-c9f05e78203374b3830cfd836c4af4425efb997e.zip |
fix networking on broadcom and possibly other targets as well (#1658)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7149 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc')
-rwxr-xr-x | package/base-files/files/etc/init.d/boot | 11 | ||||
-rwxr-xr-x | package/base-files/files/etc/init.d/config | 9 |
2 files changed, 9 insertions, 11 deletions
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index d5a42e2d7e..e586704a28 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -11,11 +11,17 @@ system_config() { echo "${hostname:-OpenWrt}" > /proc/sys/kernel/hostname } +apply_uci_config() {( + include /lib/config + uci_apply_defaults +)} + start() { [ -f /proc/mounts ] || /sbin/mount_root [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc vconfig set_name_type DEV_PLUS_VID_NO_PAD - + + apply_uci_config config_load system config_foreach system_config system @@ -27,11 +33,12 @@ start() { ln -s /tmp/resolv.conf.auto /tmp/resolv.conf [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe + /sbin/hotplug2 --persistent --max-children 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 - /sbin/hotplug2 --persistent --max-children 1 & # create /dev/root if it doesn't exist [ -e /dev/root ] || { diff --git a/package/base-files/files/etc/init.d/config b/package/base-files/files/etc/init.d/config deleted file mode 100755 index 2a14975035..0000000000 --- a/package/base-files/files/etc/init.d/config +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org - -START=15 - -start() { - include /lib/config - uci_apply_defaults -} |