ramips: add a workaround to fix failsafe on RT5350
[openwrt/openwrt.git] / target / linux / ramips / base-files / lib / preinit / 07_set_preinit_iface_ramips
index edc5a12e34df91c19ff0a661f91bc5b519ff1e96..ab87421bb9eb9dc3bb0104205f176b621b42052b 100644 (file)
@@ -6,19 +6,29 @@
 . /lib/ramips.sh
 
 ramips_set_preinit_iface() {
-       local board=$(ramips_board_name)
+       RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
+       if [ -n "${RT3X5X}" ]; then
+               swconfig dev rt305x set reset 1
+       fi
 
-       case "$board" in
-       mpr-a2)
-               #TODO
-               # Ralink ethernet driver cannot re-open ethernet if it is opened during preinit and then closed.
-               # Looks like Ralink ethernet driver has a problem.
-               # Temporary solution is not to open ethernet during preinit.
-               return 0
-               ;;
-       esac
-
-       ifname=eth0
+       if echo $RT3X5X | grep -q RT5350; then
+               # This is a dirty hack to get by while the switch
+               # problem is investigated. When VLAN is disabled, ICMP
+               # pings work as expected, but TCP connections time
+               # out, so telnetting in failsafe is impossible. The
+               # likely reason is TCP checksumming hardware getting
+               # disabled:
+               # https://www.mail-archive.com/openwrt-devel@lists.openwrt.org/msg19870.html
+               swconfig dev rt305x set enable_vlan 1
+               swconfig dev rt305x vlan 1 set ports "0 6"
+               swconfig dev rt305x port 6 set untag 0
+               swconfig dev rt305x set apply 1
+               vconfig add eth0 1
+               ifconfig eth0 up
+               ifname=eth0.1
+       else
+               ifname=eth0
+       fi
 }
 
 boot_hook_add preinit_main ramips_set_preinit_iface