mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 20:38:57 +02:00
[package] base-files: revert dhcp state information on ifdown and restore pre-r19530 behaviour in udhcp default.script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19597 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d5df4c3d39
commit
ef34750d84
@ -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:=38
|
PKG_RELEASE:=39
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
|
|
||||||
|
@ -327,6 +327,11 @@ setup_interface() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stop_interface_dhcp() {
|
||||||
|
local config="$1"
|
||||||
|
uci -P /var/state revert "network.$config"
|
||||||
|
}
|
||||||
|
|
||||||
unbridge() {
|
unbridge() {
|
||||||
local dev="$1"
|
local dev="$1"
|
||||||
local brdev
|
local brdev
|
||||||
|
@ -31,8 +31,7 @@ setup_interface () {
|
|||||||
config_get old_subnet "$ifc" netmask
|
config_get old_subnet "$ifc" netmask
|
||||||
}
|
}
|
||||||
|
|
||||||
[ "$1" = "ifup" ] \
|
[ "$ip" != "$old_ip" ] \
|
||||||
|| [ "$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 New Issue
Block a user