diff options
author | Sebastian Schaper <openwrt@sebastianschaper.net> | 2022-05-27 17:22:52 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-05-29 00:01:52 +0200 |
commit | b42511c00783febe495de587a8ff3fff24b6ea48 (patch) | |
tree | e9662f9d1a0be6a6039b4d452800f21deef5fabe /target/linux/ath79 | |
parent | 0ed3446bfc41bc55521f6450edb4e327c21274de (diff) | |
download | upstream-b42511c00783febe495de587a8ff3fff24b6ea48.tar.gz upstream-b42511c00783febe495de587a8ff3fff24b6ea48.tar.bz2 upstream-b42511c00783febe495de587a8ff3fff24b6ea48.zip |
ath79: fix label MAC address for D-Link DIR-825B1
The label MAC address for DIR-825 Rev. B1 is the WAN address located
at 0xffb4 in `caldata`, which equals LAN MAC at 0xffa0 incremented by 1.
Signed-off-by: Sebastian Schaper <openwrt@sebastianschaper.net>
(cherry picked from commit 4bed263af7a13cb4b9401f7ae04f788cfcc234f7)
Diffstat (limited to 'target/linux/ath79')
-rw-r--r-- | target/linux/ath79/generic/base-files/etc/board.d/02_network | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/ath79/generic/base-files/etc/board.d/02_network b/target/linux/ath79/generic/base-files/etc/board.d/02_network index 2300480695..258b081442 100644 --- a/target/linux/ath79/generic/base-files/etc/board.d/02_network +++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network @@ -596,6 +596,7 @@ ath79_setup_macs() dlink,dir-825-b1) lan_mac=$(mtd_get_mac_text "caldata" 0xffa0) wan_mac=$(mtd_get_mac_text "caldata" 0xffb4) + label_mac=$wan_mac ;; dlink,dir-505) lan_mac=$(mtd_get_mac_text "mac" 0x4) |