1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-20 23:58:27 +02:00

base-files: properly handle wifi ifaces with no network attached, useful for unmanaged interfaces like used for batman or monitoring

SVN-Revision: 28860
This commit is contained in:
Jo-Philipp Wich 2011-11-08 14:42:58 +00:00
parent ec20b84048
commit a73fffe857
2 changed files with 6 additions and 4 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
PKG_RELEASE:=88
PKG_RELEASE:=89
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host

View File

@ -129,9 +129,11 @@ start_net() {(
local vifmac="$3"
[ -f "/var/run/$iface.pid" ] && kill "$(cat /var/run/${iface}.pid)" 2>/dev/null
include /lib/network
scan_interfaces
setup_interface "$iface" "$config" "" "$vifmac"
[ -z "$config" ] || {
include /lib/network
scan_interfaces
setup_interface "$iface" "$config" "" "$vifmac"
}
)}
set_wifi_up() {