mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-13 16:31:09 +00:00
38 lines
901 B
Makefile
38 lines
901 B
Makefile
|
#
|
||
|
# Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
|
||
|
# Copyright (C) 2018 Chris Schimp <silverchris@gmail.com>
|
||
|
# Copyright (C) 2019 Robert Marko <robimarko@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:=rbextract
|
||
|
PKG_RELEASE:=1
|
||
|
CMAKE_INSTALL:=1
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
include $(INCLUDE_DIR)/cmake.mk
|
||
|
|
||
|
define Package/rbextract
|
||
|
SECTION:=utils
|
||
|
CATEGORY:=Utilities
|
||
|
SUBMENU:=Boot Loaders
|
||
|
TITLE:=RouterBOOT ART Extractor
|
||
|
DEPENDS:=@TARGET_ath79 +liblzo
|
||
|
endef
|
||
|
|
||
|
define Package/rbextract/description
|
||
|
This utility is for extracting the WLAN radio calibration data from Mikrotik
|
||
|
Routerboards.
|
||
|
endef
|
||
|
|
||
|
define Package/rbextract/install
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rbextract $(1)/usr/sbin/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,rbextract))
|