mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
ar71xx: add mc-mac1200r to do_load_ath10k_board_bin()
This patch adds the mc-mac1200r target to do_load_ath10k_board_bin() in target/linux/ar71xx/base-files/lib/preinit/81_load_ath10k_board_bin to load the ath10k radio MAC address from the EEPROM in MERCURY MAC1200R devices Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44375 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9b7ced4b3c
commit
7ab21cefc3
@ -23,6 +23,17 @@ do_load_ath10k_board_bin() {
|
||||
dd if=/dev/mtdblock4 \
|
||||
bs=1 skip=20492 count=2104 >> /tmp/ath10k-board.bin
|
||||
;;
|
||||
mc-mac1200r)
|
||||
local mac
|
||||
mac=$(macaddr_add $(cat /sys/class/net/eth1/address) -1)
|
||||
|
||||
dd if=/dev/mtdblock4 \
|
||||
bs=1 skip=20480 count=6 \
|
||||
of=/tmp/ath10k-board.bin
|
||||
macaddr_2bin $mac >> /tmp/ath10k-board.bin
|
||||
dd if=/dev/mtdblock4 \
|
||||
bs=1 skip=20492 count=2104 >> /tmp/ath10k-board.bin
|
||||
;;
|
||||
r6100)
|
||||
local mac
|
||||
mac=$(macaddr_add $(cat /sys/class/net/eth1/address) +2)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user