From: Jo-Philipp Wich Date: Tue, 6 Apr 2010 22:46:15 +0000 (+0000) Subject: [atheros] fix failsafe ip deconfig on AR23xx devices without ADM or Marvell switch X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=0bd6e83db3d7e07e73b4e13ba581f90ccb9fd913 [atheros] fix failsafe ip deconfig on AR23xx devices without ADM or Marvell switch SVN-Revision: 20733 --- diff --git a/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros b/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros index 9807365c2a..434103e172 100644 --- a/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros +++ b/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros @@ -29,5 +29,7 @@ preinit_ip_deconfig() { -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then vconfig rem eth0.1 2>/dev/null ifconfig $pi_ifname down + elif [ -n "$pi_ifname" ]; then + ifconfig $pi_ifname 0.0.0.0 fi }