The DIR-510L Wireless Router are based on the MT7620A SoC. Specification: -MediaTek MT7620A (580 Mhz) -128 MB of RAM -16 MB of FLASH -802.11bgn radio -1x 10/100 Mbps Ethernet -2x internal, non-detachable antennas -UART (J3) header on PCB (57600 8n1) -1x bi-color LED (GPIO-controlled), 2x button -JBOOT bootloader Known issues: -Ethernet port is used as LAN -No communication with charger IC. (uart bitbang needed) Installation: Apply factory image via d-link http web-gui. How to revert to OEM firmware: 1.) Push the reset button and turn on the power. Wait until LED start blinking (~10sec.) 2.) Upload original factory image via JBOOT http (IP: 192.168.123.254) 3.) If http doesn't work, it can be done with curl command: curl -F FN=@XXXXX.bin http://192.168.123.254/upg where XXXXX.bin is name of firmware file. Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com> [fixed whitespace issue in 10-rt2x00-eeprom] Signed-off-by: Petr Štetiar <ynezz@true.cz>
31 lines
800 B
Bash
Executable file
31 lines
800 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
dlink,dir-510l)
|
|
ucidef_add_gpio_switch "usb_enable1" "USB 1A enable" "12" "0"
|
|
ucidef_add_gpio_switch "usb_enable05" "USB 0.5A enable" "13" "1"
|
|
;;
|
|
mikrotik,rb750gr3)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "17"
|
|
;;
|
|
ubnt-erx)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "0"
|
|
;;
|
|
ubnt-erx-sfp)
|
|
ucidef_add_gpio_switch "poe_power_port0" "PoE Power Port0" "496"
|
|
ucidef_add_gpio_switch "poe_power_port1" "PoE Power Port1" "497"
|
|
ucidef_add_gpio_switch "poe_power_port2" "PoE Power Port2" "498"
|
|
ucidef_add_gpio_switch "poe_power_port3" "PoE Power Port3" "499"
|
|
ucidef_add_gpio_switch "poe_power_port4" "PoE Power Port4" "500"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|