diff options
author | Thibaut VARÈNE <hacks@slashdirt.org> | 2020-04-19 11:42:45 +0200 |
---|---|---|
committer | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2020-05-08 15:17:17 +0200 |
commit | 1e24af5638f1c7263c10157afd7b25b9bf601c0c (patch) | |
tree | 4df7b3dd2a77e6ae15aeb9e5b0f3371372dd9099 /target/linux/ath79/mikrotik/base-files/lib | |
parent | 301bc3290df394bd39373ffc081818b56092b05f (diff) | |
download | upstream-1e24af5638f1c7263c10157afd7b25b9bf601c0c.tar.gz upstream-1e24af5638f1c7263c10157afd7b25b9bf601c0c.tar.bz2 upstream-1e24af5638f1c7263c10157afd7b25b9bf601c0c.zip |
ath79/mikrotik: use standard caldata functions
With the implementation of a sysfs interface to access WLAN data, this
target no longer needs a special wrapper to extract caldata.
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
Diffstat (limited to 'target/linux/ath79/mikrotik/base-files/lib')
-rw-r--r-- | target/linux/ath79/mikrotik/base-files/lib/functions/mikrotik-caldata.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/ath79/mikrotik/base-files/lib/functions/mikrotik-caldata.sh b/target/linux/ath79/mikrotik/base-files/lib/functions/mikrotik-caldata.sh deleted file mode 100644 index 71a1bf02f3..0000000000 --- a/target/linux/ath79/mikrotik/base-files/lib/functions/mikrotik-caldata.sh +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright (C) 2019 Robert Marko <robimarko@gmail.com> -# Copyright (C) 2019 Roger Pueyo Centelles <roger.pueyo@guifi.net> -# -# Helper function to extract MAC addresses and calibration data for MikroTik -# - -mikrotik_caldata_extract() { - local part=$1 - local offset=$(($2)) - local count=$(($3)) - local mtd - local erdfile="/tmp/erd.bin" - local fwfile="/lib/firmware/${FIRMWARE}" - - [ -e $fwfile ] && exit 0 - - mtd=$(find_mtd_chardev $part) - [ -n "$mtd" ] || caldata_die "no mtd device found for partition $part" - - rbextract -e $mtd $erdfile - - dd if=$erdfile of=$fwfile iflag=skip_bytes bs=$count skip=$offset count=1 2>/dev/null || \ - caldata_die "failed to extract calibration data from $mtd" - - rm -f $erdfile -} |