mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
c81b2e94c7
Old MikroTik devices have the RLE-encoded radio calibration data directly stored in the art (hard_config) partition, without LZO compression nor any preceding ERD magic bytes. This commit adds a fallback for these devices. Tested on the ath79 target with a MikroTik SXT 5nD r2 (SXT Lite5), only locally --not yet merged upstream--. Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
39 lines
968 B
Makefile
39 lines
968 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>
|
|
# Copyright (C) 2019 Roger Pueyo Centelles <roger.pueyo@guifi.net>
|
|
#
|
|
# 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:=3
|
|
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))
|