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> SVN-Revision: 44375
This commit is contained in:
parent
69c160d867
commit
a2fcaa77fc
1 changed files with 11 additions and 0 deletions
|
@ -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…
Reference in a new issue