mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
e56be31 udevmand: fix segmentation fault during iface flushing Fixes: WIFI-14752 Signed-off-by: John Crispin <john@phrozen.org>
39 lines
953 B
Makefile
39 lines
953 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=udevmand
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/blogic/udevmand.git
|
|
PKG_MIRROR_HASH:=6f6a5536656a64e1f38f03747ef06ab03b28ef797adc72a901eb7dbc6e45e496
|
|
PKG_SOURCE_DATE:=20250704
|
|
PKG_SOURCE_VERSION:=e56be31d7c341467cc26714dac5c6b450a612808
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/udevmand
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
DEPENDS:=+libubus +libblobmsg-json +ubusd +libjson-c +libnl-tiny +libuci
|
|
TITLE:=Network devman mapping daemon
|
|
endef
|
|
|
|
TARGET_CFLAGS += \
|
|
-I$(STAGING_DIR)/usr/include \
|
|
-I$(STAGING_DIR)/usr/include/libnl-tiny
|
|
|
|
define Package/udevmand/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) ./files/* $(1)/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/udevmand $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,udevmand))
|