summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-01-26 02:15:32 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-01-26 02:15:32 +0000
commita71096dd1bdcc34a21601874176653f22ac0d65c (patch)
treea59369b8910ff299890c72c379e2154ba13c9d64
parentc3dc4ee20f2a3e58203249281c13105f9aa65b1a (diff)
brcm-2.4/brcm47xx: fix typos and indenting in the preinit interface script (thx, cshore)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19339 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/brcm-2.4/base-files/lib/preinit/15_set_preinit_interface_brcm16
1 files changed, 8 insertions, 8 deletions
diff --git a/target/linux/brcm-2.4/base-files/lib/preinit/15_set_preinit_interface_brcm b/target/linux/brcm-2.4/base-files/lib/preinit/15_set_preinit_interface_brcm
index 5e8dc9f11..0f6c19263 100644
--- a/target/linux/brcm-2.4/base-files/lib/preinit/15_set_preinit_interface_brcm
+++ b/target/linux/brcm-2.4/base-files/lib/preinit/15_set_preinit_interface_brcm
@@ -1,11 +1,11 @@
-. /etc/functions.sh
+#!/bin/sh
port_net_echo() {
- [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null ] {
- if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true"] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
- netmsg $pi_broadcast "$1"
- }
- }
+ [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null && {
+ if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
+ netmsg $pi_broadcast "$1"
+ }
+ }
}
preinit_ip_deconfig() {
@@ -13,8 +13,8 @@ preinit_ip_deconfig() {
ifconfig $ifname 0.0.0.0 down
else
grep "$pi_ifname" /proc/net/dev >/dev/null && {
- ifconfig $pi_ifname 0.0.0.0 down
- }
+ ifconfig $pi_ifname 0.0.0.0 down
+ }
fi
}