aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-11-17 10:47:02 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-11-17 10:47:02 +0000
commit789848d327e094f216770d258611ed75122aba6f (patch)
treeea8602b28a30649c1e4b76b03db7fb8bd20dd902 /package/base-files
parent8a0ac9897f892dfa54e2ef76d5745a255613737a (diff)
downloadupstream-789848d327e094f216770d258611ed75122aba6f.tar.gz
upstream-789848d327e094f216770d258611ed75122aba6f.tar.bz2
upstream-789848d327e094f216770d258611ed75122aba6f.zip
Prevent "SIOCSIFHWADDR: Device or resource busy" when trying to change mac address
SVN-Revision: 13258
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index 9e7cff99a3..9b4320507d 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -232,6 +232,7 @@ setup_interface() {
config_get mtu "$config" mtu
config_get macaddr "$config" macaddr
grep "$iface:" /proc/net/dev > /dev/null && \
+ $DEBUG ifconfig "$iface" down && \
$DEBUG ifconfig "$iface" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} up
set_interface_ifname "$config" "$iface"