Skip to content
Snippets Groups Projects
Commit 5501cf6e authored by Felix Fietkau's avatar Felix Fietkau
Browse files

hostapd: automatically add wds sta interfaces of an ap to the right bridge

SVN-Revision: 18365
parent 36eccaad
No related branches found
No related tags found
No related merge requests found
......@@ -109,6 +109,8 @@ define Build/Compile
endef
define Package/InstallTemplate
$(INSTALL_DIR) $(1)/etc/hotplug.d/net
$(INSTALL_DATA) ./files/hostapd.hotplug $(1)/etc/hotplug.d/net/
$(INSTALL_DIR) $(1)/lib/wifi
$(INSTALL_DATA) ./files/hostapd.sh $(1)/lib/wifi/hostapd.sh
$(INSTALL_DIR) $(1)/usr/sbin
......
if [ "$ACTION" = "add" -o "$ACTION" = "register" ]; then
case "$INTERFACE" in
wlan*.sta*)
local BASEIF="${INTERFACE%%\.*}"
include /lib/network
scan_interfaces
local CONFIG="$(find_config "$BASEIF")"
[ -n "$CONFIG" ] && setup_interface "$INTERFACE" "$CONFIG"
;;
esac
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment