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 | 8195bd4906483e36a9441a11570c8b92fbdb235b (patch) | |
tree | d711c875b3d4bbc0c4b6548209e75fdeaabb98b7 /package | |
parent | 342f4def9ab66099b0b44b5767258f291c37004e (diff) | |
download | upstream-8195bd4906483e36a9441a11570c8b92fbdb235b.tar.gz upstream-8195bd4906483e36a9441a11570c8b92fbdb235b.tar.bz2 upstream-8195bd4906483e36a9441a11570c8b92fbdb235b.zip |
Prevent "SIOCSIFHWADDR: Device or resource busy" when trying to change mac address
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13258 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-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" |