7c4d79aa1c
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2015 Rafał Miłecki <zajec5@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=otrx
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/firmware-utils.git
|
|
PKG_SOURCE_DATE:=2021-07-30
|
|
PKG_SOURCE_VERSION:=a5c65fa1192e174e9e895637aaf93945959aa029
|
|
PKG_MIRROR_HASH:=8ef94e74f50b21fd226dd5311962f8bdbd3aa55da11026b2cf2a4b35556350af
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/otrx
|
|
SECTION:=utils
|
|
CATEGORY:=Base system
|
|
TITLE:=Utility for opening (analyzing) TRX firmware images
|
|
MAINTAINER:=Rafał Miłecki <zajec5@gmail.com>
|
|
DEPENDS:=@(TARGET_bcm47xx||TARGET_bcm53xx)
|
|
endef
|
|
|
|
define Package/otrx/description
|
|
This package contains an utility that allows validating TRX images.
|
|
endef
|
|
|
|
TARGET_CFLAGS += -Wall
|
|
|
|
define Build/Compile
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
|
|
-o $(PKG_BUILD_DIR)/otrx \
|
|
$(PKG_BUILD_DIR)/src/otrx.c
|
|
endef
|
|
|
|
define Package/otrx/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/otrx $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,otrx))
|