mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
e659298a84
0cfd104 zytrx: add ZyXEL LTE7490-M904 3d09357 asusuimage: new tool for creating TRX-images compatible with AsusWRT f35781f asusuimage: fix compile error with old GCC release 26c7f05 nec-usbatermfw: add tool for NEC "USB ATERM" format ed9c97f tplink-safeloader: bump EAP610-V3 compat_level 5192cf9 mktplinkfw2: Add 16Mmtk layout ca444f1 tplink-safeloader: add support for cpe710-v2 88fbd52 bcmclm: support printing channels Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=firmware-utils
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/firmware-utils.git
|
|
PKG_SOURCE_DATE:=2024-10-16
|
|
PKG_SOURCE_VERSION:=88fbd52666e3b3f83ebab40f95b84f265824a729
|
|
PKG_MIRROR_HASH:=4809421286257a91b2f29e79b7bbd0852a72c6e82169b340036cca5703881232
|
|
|
|
PKG_FLAGS:=nonshared
|
|
PKG_BUILD_DEPENDS:=openssl zlib
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/default
|
|
SECTION:=utils
|
|
CATEGORY:=Base system
|
|
TITLE:=Firmware utility $(1)
|
|
DEPENDS:=$(2)
|
|
endef
|
|
|
|
Package/oseama = $(call Package/default,oseama,@TARGET_bcm53xx)
|
|
|
|
define Package/oseama/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/oseama $(1)/usr/bin/
|
|
endef
|
|
|
|
Package/otrx = $(call Package/default,otrx,@(TARGET_bcm47xx||TARGET_bcm53xx))
|
|
|
|
define Package/otrx/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/otrx $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,oseama))
|
|
$(eval $(call BuildPackage,otrx))
|