From: Jo-Philipp Wich Date: Mon, 17 Nov 2008 10:47:02 +0000 (+0000) Subject: Prevent "SIOCSIFHWADDR: Device or resource busy" when trying to change mac address X-Git-Tag: reboot~25244 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=789848d327e094f216770d258611ed75122aba6f;p=oweals%2Fopenwrt.git Prevent "SIOCSIFHWADDR: Device or resource busy" when trying to change mac address SVN-Revision: 13258 --- 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"