7bf79a2 ubus: set scan duration to roam scan interval b4eb49e policy: only select nodes with better signal when roaming 5d5a0be ubus: don't request measurement from unsupported STAs abc6fe0 local-node: update STA RRM capabilites 5ec713b node: determine roamability when selecting neighbors d0cd65b node: save created time for node a5c21ae ubus: prioritize neighbor reports on bss transition 532a48d local-node: prioritize neighbor candidates 4862080 node: keep track of roam-sources and roam-destinations 6a20591 sta-info: add last_connected field Signed-off-by: David Bauer <mail@david-bauer.net>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=usteer
|
|
PKG_SOURCE_DATE:=2021-11-25
|
|
PKG_SOURCE_VERSION:=7bf79a237c4eaf68fa9211fbf1d1c083fa749c91
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://git.openwrt.org/project/usteer.git
|
|
PKG_MIRROR_HASH:=f965f085088c49531a39b9bb51e25cc275851511a4c8204442c0a12ef68162bf
|
|
|
|
PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
|
|
PKG_BUILD_DEPENDS:=libpcap
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/usteer
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json +libnl-tiny
|
|
TITLE:=OpenWrt AP roaming assist daemon
|
|
endef
|
|
|
|
define Package/usteer/conffiles
|
|
/etc/config/usteer
|
|
endef
|
|
|
|
define Package/usteer/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d $(1)/etc/config
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/openwrt/usteer/files/etc/config/usteer $(1)/etc/config/usteer
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openwrt/usteer/files/etc/init.d/usteer $(1)/etc/init.d/usteer
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/usteerd $(1)/sbin/usteerd
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,usteer))
|