From: Roger Pueyo Centelles Date: Thu, 29 Apr 2021 09:38:16 +0000 (+0200) Subject: ath79: mikrotik: swap RB922UAGS-5HPaCD eth0/1 MACs X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d57e4803940b97c06cbb8c659dd6de907cdd90ec;p=openwrt%2Fstaging%2Fynezz.git ath79: mikrotik: swap RB922UAGS-5HPaCD eth0/1 MACs Since support for SFP on the MikroTik RouterBOARD 922UAGS-5HPacD was added by 4387fe00cb, the MAC addresses for eth0 (Ethernet) and eth1 (SFP) were swapped. This patch fixes the 02_network script to assign MAC addresses correctly, so they match the label and the vendor's OS. Tested on a RouterBOARD 922UAGS-5HPacD board. Signed-off-by: Roger Pueyo Centelles (cherry picked from commit 14a95b36b1ecd038fffc279878c5a4c51043d709) --- diff --git a/target/linux/ath79/mikrotik/base-files/etc/board.d/02_network b/target/linux/ath79/mikrotik/base-files/etc/board.d/02_network index c407da6dcd..54e7bb20cf 100755 --- a/target/linux/ath79/mikrotik/base-files/etc/board.d/02_network +++ b/target/linux/ath79/mikrotik/base-files/etc/board.d/02_network @@ -45,6 +45,11 @@ ath79_setup_macs() label_mac="$mac_base" lan_mac="$mac_base" ;; + mikrotik,routerboard-922uags-5hpacd) + label_mac="$mac_base" + lan_mac="$mac_base" + wan_mac=$(macaddr_add $mac_base 1) + ;; *) label_mac="$mac_base" wan_mac="$mac_base"