base-files: fix udhcpc address acquisition on network restart (patch by Scott Dudley)
SVN-Revision: 19530
This commit is contained in:
parent
988a987fea
commit
520ea8e5f9
2 changed files with 3 additions and 2 deletions
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=base-files
|
PKG_NAME:=base-files
|
||||||
PKG_RELEASE:=37
|
PKG_RELEASE:=38
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,8 @@ setup_interface () {
|
||||||
config_get old_subnet "$ifc" netmask
|
config_get old_subnet "$ifc" netmask
|
||||||
}
|
}
|
||||||
|
|
||||||
[ "$ip" != "$old_ip" ] \
|
[ "$1" = "ifup" ] \
|
||||||
|
|| [ "$ip" != "$old_ip" ] \
|
||||||
|| [ "${broadcast:-+}" != "$old_broadcast" ] \
|
|| [ "${broadcast:-+}" != "$old_broadcast" ] \
|
||||||
|| [ "${subnet:-255.255.255.0}" != "$old_subnet" ] && {
|
|| [ "${subnet:-255.255.255.0}" != "$old_subnet" ] && {
|
||||||
echo "udhcpc: ifconfig $interface $ip netmask ${subnet:-255.255.255.0} broadcast ${broadcast:-+}"
|
echo "udhcpc: ifconfig $interface $ip netmask ${subnet:-255.255.255.0} broadcast ${broadcast:-+}"
|
||||||
|
|
Loading…
Reference in a new issue