diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-06-14 17:41:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-06-14 17:41:27 +0000 |
commit | 8ec34cb6d30403a2d6f4f85d12fe62758dfb06ec (patch) | |
tree | 938afcf7d93e067f4cfba77664afb1cbc206ce2c /target/linux/ar71xx/base-files/lib | |
parent | cdb2823565598c9a6b8213055f7ebf3b9a3a89ac (diff) | |
download | upstream-8ec34cb6d30403a2d6f4f85d12fe62758dfb06ec.tar.gz upstream-8ec34cb6d30403a2d6f4f85d12fe62758dfb06ec.tar.bz2 upstream-8ec34cb6d30403a2d6f4f85d12fe62758dfb06ec.zip |
ar71xx: fix mac offset in firmware file
In new firmware-4.bin (for ath10k) mac offset is 0x114 (276), not 0x118 (280).
This also closes #19751, bug introduced in #45624
Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45958 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rw-r--r-- | target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k b/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k index 88ca1e97e7..4511162ac4 100644 --- a/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k +++ b/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k @@ -29,7 +29,7 @@ do_patch_ath10k_firmware() { cp $firmware_file /tmp/ath10k-firmware.bin macaddr_2bin $mac | dd of=/tmp/ath10k-firmware.bin \ - conv=notrunc bs=1 seek=280 count=6 + conv=notrunc bs=1 seek=276 count=6 ;; esac |