projects
/
openwrt
/
staging
/
jow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc8ed5e
)
network: prevent unnecessary interface down/up cycles if no mac address change is...
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 1 Jun 2009 18:09:05 +0000
(18:09 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 1 Jun 2009 18:09:05 +0000
(18:09 +0000)
SVN-Revision: 16269
package/base-files/files/lib/network/config.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/lib/network/config.sh
b/package/base-files/files/lib/network/config.sh
index 808463df52ca0ab628e1b5a3459c07a78093c71f..cefd559567256375028d9ac356bad73a49680dfd 100755
(executable)
--- a/
package/base-files/files/lib/network/config.sh
+++ b/
package/base-files/files/lib/network/config.sh
@@
-246,9
+246,10
@@
setup_interface() {
# Interface settings
config_get mtu "$config" mtu
config_get macaddr "$config" macaddr
- grep "$iface:" /proc/net/dev > /dev/null &&
\
- $DEBUG ifconfig "$iface" down && \
+ grep "$iface:" /proc/net/dev > /dev/null &&
{
+ [ -n "$macaddr" ] && $DEBUG ifconfig "$iface" down
$DEBUG ifconfig "$iface" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} up
+ }
set_interface_ifname "$config" "$iface"
pidfile="/var/run/$iface.pid"