mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
2b6772c82c
224d497dd94f srec2bin: drop unused "dum" variable 6777b2d51961 uimage_sgehdr: use "char" type for header struct strings 81db3025aac5 uimage_sgehdr: drop unused "ltmp" variable bd7fcc74b43e pc1crypt: make decrypt/encrypt functions take void * as argument 6ac44974185a linksys: add magic header generation tool for e8350 v1 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
42 lines
1.0 KiB
Makefile
42 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-06-20
|
|
PKG_SOURCE_VERSION:=6ac44974185a3e7dc7848e97b964339948e817a7
|
|
PKG_MIRROR_HASH:=ee5b29f45593750a6806cfa7cad3fd766b321b44107a6b481b890efe82a7dbf5
|
|
|
|
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))
|