diff options
author | Sven Eckelmann <sven@narfation.org> | 2022-10-24 18:55:44 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-11-12 18:15:55 +0100 |
commit | c6bef1b83a75d2f69a4d8904882800405df1a7b8 (patch) | |
tree | 2fcd39cc2a3ddc96df416161a0daa05ce07c05bf /target/linux/ipq40xx/base-files | |
parent | 66a3c32b47a9c9da155fd04045d7262b005a1de3 (diff) | |
download | upstream-c6bef1b83a75d2f69a4d8904882800405df1a7b8.tar.gz upstream-c6bef1b83a75d2f69a4d8904882800405df1a7b8.tar.bz2 upstream-c6bef1b83a75d2f69a4d8904882800405df1a7b8.zip |
ipq40xx: Convert openmesh,a62 to DSA
* ethernet1:
- physical port label "Ethernet 1"
- can be used to power the device
- its mac address is printed on the device label
* ethernet2:
- physical port label "Ethernet 2"
Both ports are not marked by there role (because the vendor firmware
automatically detects roles) but the "Ethernet 1" port was used in the past
for "WAN" functionality in OpenWrt.
Reviewed-by: Robert Marko <robimarko@gmail.com>
Tested-by: Michaƫl BILCOT <michael.bilcot@gmail.com>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'target/linux/ipq40xx/base-files')
-rw-r--r-- | target/linux/ipq40xx/base-files/etc/board.d/02_network | 6 | ||||
-rw-r--r-- | target/linux/ipq40xx/base-files/lib/preinit/05_set_iface_mac_ipq40xx.sh | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/target/linux/ipq40xx/base-files/etc/board.d/02_network b/target/linux/ipq40xx/base-files/etc/board.d/02_network index 6c6d04a923..b98c85decf 100644 --- a/target/linux/ipq40xx/base-files/etc/board.d/02_network +++ b/target/linux/ipq40xx/base-files/etc/board.d/02_network @@ -73,7 +73,8 @@ ipq40xx_setup_interfaces() netgear,srs60) ucidef_set_interfaces_lan_wan "lan1 lan2 lan3" "wan" ;; - openmesh,a42) + openmesh,a42|\ + openmesh,a62) ucidef_set_interfaces_lan_wan "ethernet2" "ethernet1" ;; zte,mf286d) @@ -162,7 +163,8 @@ ipq40xx_setup_macs() pakedge,wr-1) wan_mac=$(macaddr_add $(get_mac_label) 1) ;; - openmesh,a42) + openmesh,a42|\ + openmesh,a62) label_mac="$(mtd_get_mac_binary "0:ART" 0x0)" ;; esac diff --git a/target/linux/ipq40xx/base-files/lib/preinit/05_set_iface_mac_ipq40xx.sh b/target/linux/ipq40xx/base-files/lib/preinit/05_set_iface_mac_ipq40xx.sh index 4ae4103131..0d19c6bae0 100644 --- a/target/linux/ipq40xx/base-files/lib/preinit/05_set_iface_mac_ipq40xx.sh +++ b/target/linux/ipq40xx/base-files/lib/preinit/05_set_iface_mac_ipq40xx.sh @@ -29,7 +29,8 @@ preinit_set_mac_address() { ip link set dev lan1 address $(macaddr_add "$base_mac" 1) ip link set dev eth0 address $(macaddr_setbit "$base_mac" 7) ;; - openmesh,a42) + openmesh,a42|\ + openmesh,a62) ip link set dev ethernet1 address $(mtd_get_mac_binary "0:ART" 0x0) ip link set dev ethernet2 address $(mtd_get_mac_binary "0:ART" 0x6) ;; |