mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-04 02:01:35 +00:00
1adc6db036
Commit 5c20a4fec923c3 ("ubox: turn logd into a separate package") changed the PKG_SOURCE_DATE which is also included in the tar file. This change resulted in a new tar with a different hash, but the sha256 hash was not updated. Fix the sha256 hash value in this commit to match what would be created from git and what is already on the mirror. Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>
60 lines
1.7 KiB
Makefile
60 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ubox
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/ubox.git
|
|
PKG_SOURCE_DATE:=2017-01-15
|
|
PKG_SOURCE_VERSION:=5649c028c426060616e2bd4e7ea83271cd333d21
|
|
PKG_MIRROR_HASH:=28e5580d481a415697fbca46c160177bab6dc47a04ba7ddb73537827632b2dd6
|
|
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/logd
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json +USE_GLIBC:librt
|
|
TITLE:=OpenWrt system log implementation
|
|
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_BIN) $(PKG_INSTALL_DIR)/usr/bin/getrandom $(1)/usr/bin/
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libvalidate.so $(1)/lib
|
|
|
|
$(LN) ../../sbin/kmodloader $(1)/usr/sbin/rmmod
|
|
$(LN) ../../sbin/kmodloader $(1)/usr/sbin/insmod
|
|
$(LN) ../../sbin/kmodloader $(1)/usr/sbin/lsmod
|
|
$(LN) ../../sbin/kmodloader $(1)/usr/sbin/modinfo
|
|
$(LN) ../../sbin/kmodloader $(1)/usr/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,logd))
|