877e2dc iwinfo: fix get_bandwidth_iwinfo
9ce01ec datastorage: fix multi-SSID
9187665 treewide: improve maintaince
6bf9b6d memory: Tighten up some memory handling to help spot errors
4df0c98 treewide: improve logging
Signed-off-by: Nick Hainke <vincent@systemli.org>
(cherry picked from commit 7cb73ae3b9
)
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# This software is licensed under the Public Domain.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=dawn
|
|
PKG_SOURCE_DATE:=2022-01-17
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/berlin-open-wireless-lab/DAWN.git
|
|
PKG_SOURCE_VERSION:=7a72674063dd34bd21f39c7be8aadb867db67658
|
|
PKG_MIRROR_HASH:=4fbca0139c8c3fc08bf430887c9f0835d6b4645cc316b96f2d58c2d8ceb89f24
|
|
|
|
PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/dawn
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
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))
|