diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-09-16 14:23:01 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-09-16 14:23:01 +0000 |
commit | b75288df95f64cb85530541d23365f9f270ef758 (patch) | |
tree | 60b933ab03a37be182c24259461c69811242c768 /package | |
parent | 2f921cb48d47a3aeb7e33773b6b0de0a71b36947 (diff) | |
download | upstream-b75288df95f64cb85530541d23365f9f270ef758.tar.gz upstream-b75288df95f64cb85530541d23365f9f270ef758.tar.bz2 upstream-b75288df95f64cb85530541d23365f9f270ef758.zip |
swconfig: clear ip address on the switch interface, this prevents duplicate assignments of 192.168.1.1 on the DIR-300 at least
SVN-Revision: 17597
Diffstat (limited to 'package')
-rw-r--r-- | package/swconfig/Makefile | 2 | ||||
-rw-r--r-- | package/swconfig/files/switch.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/swconfig/Makefile b/package/swconfig/Makefile index a3844c5f63..bec94a1ca0 100644 --- a/package/swconfig/Makefile +++ b/package/swconfig/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=swconfig -PKG_RELEASE:=2 +PKG_RELEASE:=3 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk diff --git a/package/swconfig/files/switch.sh b/package/swconfig/files/switch.sh index d752b1383d..7078b2e823 100644 --- a/package/swconfig/files/switch.sh +++ b/package/swconfig/files/switch.sh @@ -2,6 +2,7 @@ # Copyright (C) 2009 OpenWrt.org setup_switch_dev() { + ifconfig "$1" 0.0.0.0 swconfig dev "$1" load network } |