mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-12 09:54:53 +00:00
81c5a5c4b3
So it's possible to install or remove it as needed.
Tested-by: Lucian Cristian <lucian.cristian@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit 9b4de712ca
)
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ubox
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ubox.git
|
|
PKG_SOURCE_DATE:=2019-04-07
|
|
PKG_SOURCE_VERSION:=5130fa4d9c5d15d643506f906927b209d7690a83
|
|
PKG_MIRROR_HASH:=58b19e4b4e4ba7cdaf7359222dc8e53781a7804d3349dc5a5f08eb72e6a47deb
|
|
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
|
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lrt)
|
|
|
|
define Package/ubox
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+libubox +ubusd +ubus +libubus +libuci +USE_GLIBC:librt
|
|
TITLE:=OpenWrt system helper toolbox
|
|
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 +USE_GLIBC:librt
|
|
TITLE:=OpenWrt system log implementation
|
|
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
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{kmodloader,validate_data} $(1)/sbin/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libvalidate.so $(1)/lib
|
|
|
|
$(LN) kmodloader $(1)/sbin/rmmod
|
|
$(LN) kmodloader $(1)/sbin/insmod
|
|
$(LN) kmodloader $(1)/sbin/lsmod
|
|
$(LN) kmodloader $(1)/sbin/modinfo
|
|
$(LN) kmodloader $(1)/sbin/modprobe
|
|
endef
|
|
|
|
define Package/logd/install
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{logd,logread} $(1)/sbin/
|
|
$(INSTALL_BIN) ./files/log.init $(1)/etc/init.d/log
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ubox))
|
|
$(eval $(call BuildPackage,getrandom))
|
|
$(eval $(call BuildPackage,logd))
|