mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
4cb0677600
cc34fb7b922f logd: add support for subscribing to the log object c08709cceb55 logd: add udebug support Signed-off-by: Felix Fietkau <nbd@nbd.name>
76 lines
2.0 KiB
Makefile
76 lines
2.0 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ubox
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ubox.git
|
|
PKG_SOURCE_DATE:=2023-11-30
|
|
PKG_SOURCE_VERSION:=c08709cceb554cba02c935d1442f6a042fe6b2a8
|
|
PKG_MIRROR_HASH:=719ae701546df7c5972352d778a980cbc9f48623dda86443398698837124818b
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/ubox
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+libubox +ubusd +ubus +libubus +libuci
|
|
TITLE:=OpenWrt system helper toolbox
|
|
ALTERNATIVES:=\
|
|
100:/sbin/rmmod:/sbin/kmodloader \
|
|
100:/sbin/insmod:/sbin/kmodloader \
|
|
100:/sbin/lsmod:/sbin/kmodloader \
|
|
100:/sbin/modinfo:/sbin/kmodloader \
|
|
100:/sbin/modprobe:/sbin/kmodloader
|
|
endef
|
|
|
|
define Package/ubox/conffiles
|
|
/etc/modules.conf
|
|
endef
|
|
|
|
define Package/getrandom
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
TITLE:=OpenWrt getrandom system helper
|
|
endef
|
|
|
|
define Package/logd
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json +libudebug
|
|
TITLE:=OpenWrt system log implementation
|
|
USERID:=logd=514:logd=514
|
|
endef
|
|
|
|
define Package/getrandom/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/getrandom $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/ubox/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/usr/sbin $(1)/lib $(1)/usr/bin $(1)/etc
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{kmodloader,validate_data} $(1)/sbin/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libvalidate.so $(1)/lib
|
|
$(INSTALL_DATA) ./files/modules.conf $(1)/etc/modules.conf
|
|
endef
|
|
|
|
define Package/logd/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d/ $(1)/usr/share/acl.d
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{logd,logread} $(1)/sbin/
|
|
$(INSTALL_BIN) ./files/log.init $(1)/etc/init.d/log
|
|
$(INSTALL_DATA) ./files/logd.json $(1)/usr/share/acl.d
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ubox))
|
|
$(eval $(call BuildPackage,getrandom))
|
|
$(eval $(call BuildPackage,logd))
|