mirror of
https://github.com/openwrt/packages.git
synced 2025-08-09 20:21:45 +00:00
Add "option tcp_ip '0.0.0.0'" to config. Changelog: 62688e4 tcpsocket: add option to bind to specific ip be63ed4 ubus: actually deny association when no probe entry is found 6361df6 datastorage: fix debug message regarding client kick condition af593cc ci: fix and improve ci Signed-off-by: Nick Hainke <vincent@systemli.org>
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
#
|
|
# This software is licensed under the Public Domain.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=dawn
|
|
PKG_SOURCE_DATE:=2025-03-03
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/berlin-open-wireless-lab/DAWN.git
|
|
PKG_SOURCE_VERSION:=f8cdae3f2972fe810c164add880aeb6be99493f0
|
|
PKG_MIRROR_HASH:=92c2cd9d532490e7196fe0fd2527d1259d6a9079733333a09caa9c688e617f3c
|
|
|
|
PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_FLAGS:=no-lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/dawn
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Wireless
|
|
TITLE:=Decentralized wifi controller
|
|
URL:=https://github.com/berlin-open-wireless-lab/DAWN.git
|
|
DEPENDS:=$(DRV_DEPENDS) +libubus +libubox +libblobmsg-json +libuci +libgcrypt +libiwinfo +umdns
|
|
endef
|
|
|
|
define Package/dawn/description
|
|
This package implements a decentralized wireless daemon.
|
|
endef
|
|
|
|
define Package/dawn/conffiles
|
|
/etc/config/dawn
|
|
endef
|
|
|
|
define Package/dawn/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dawn $(1)/usr/sbin/dawn
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/dawn.init $(1)/etc/init.d/dawn
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/dawn.config $(1)/etc/config/dawn
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,dawn))
|