Hardware: SoC: MT7621 DRAM: 256MB DDR3 Flash: 16MB SPI-NOR WiFi: 2.4GHz: MT7603 @ PCIe0 WiFi: 5.8GHz: MT7612 @ PCIe1 Modem: Sierra Wireless MC74xx Interfaces: GBE RJ45 x5 mPCIe x2 UART x1 I2C x1 JTAG x1 UIM x1 LEDs x6 Flash instructions: Flash from within the factory bootloader, firmware web interface or CLI using sysupgrade -F -n Signed-off-by: Nicholas Smith <mips171@icloud.com>
46 lines
1.3 KiB
Bash
Executable file
46 lines
1.3 KiB
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"
|
|
;;
|
|
head-weblink,hdrm200)
|
|
ucidef_add_gpio_switch "sim_switch" "SIM slot switch" "0"
|
|
ucidef_add_gpio_switch "io1" "I/O 1" "1"
|
|
ucidef_add_gpio_switch "io2" "I/O 2" "2"
|
|
ucidef_add_gpio_switch "io3" "I/O 3" "11"
|
|
ucidef_add_gpio_switch "io4" "I/O 4" "14"
|
|
ucidef_add_gpio_switch "power_mpcie" "mPCIe power" "21" "1"
|
|
;;
|
|
mikrotik,rb750gr3)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "17"
|
|
;;
|
|
telco-electronics,x1)
|
|
ucidef_add_gpio_switch "modem_reset" "Modem Reset" "16"
|
|
;;
|
|
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"
|
|
;;
|
|
zbtlink,zbt-we826-e)
|
|
ucidef_add_gpio_switch "sim_switch" "SIM slot switch" "13"
|
|
ucidef_add_gpio_switch "power_mpcie" "mPCIe power" "14" "1"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|