ramips: fix MikroTik 750Gr3 LAN ports names

They are labeled as LAN2..LAN5 instead of LAN1..LAN4

Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
master
DENG Qingfang 2020-03-20 00:26:08 +08:00 committed by Chuanhong Guo
parent 53b66248f4
commit c24d6111f4
2 changed files with 7 additions and 4 deletions

View File

@ -145,22 +145,22 @@
port@1 { port@1 {
status = "okay"; status = "okay";
label = "lan1"; label = "lan2";
}; };
port@2 { port@2 {
status = "okay"; status = "okay";
label = "lan2"; label = "lan3";
}; };
port@3 { port@3 {
status = "okay"; status = "okay";
label = "lan3"; label = "lan4";
}; };
port@4 { port@4 {
status = "okay"; status = "okay";
label = "lan4"; label = "lan5";
}; };
}; };
}; };

View File

@ -39,6 +39,9 @@ ramips_setup_interfaces()
ubnt,unifi-nanohd) ubnt,unifi-nanohd)
ucidef_set_interface_lan "lan" ucidef_set_interface_lan "lan"
;; ;;
mikrotik,rb750gr3)
ucidef_set_interfaces_lan_wan "lan2 lan3 lan4 lan5" "wan"
;;
ubiquiti,edgerouterx|\ ubiquiti,edgerouterx|\
ubiquiti,edgerouterx-sfp) ubiquiti,edgerouterx-sfp)
ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth4" ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth4"