diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-17 10:47:02 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-17 10:47:02 +0000 |
commit | 789848d327e094f216770d258611ed75122aba6f (patch) | |
tree | ea8602b28a30649c1e4b76b03db7fb8bd20dd902 | |
parent | 8a0ac9897f892dfa54e2ef76d5745a255613737a (diff) | |
download | upstream-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
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 1 |
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" |