Specifications: * SoC: Qualcomm Atheros AR9344 (560 MHz) * RAM: 64MB * Storage: 8 MB * Wireless: 2.4GHz N based built into SoC 2x2 * Ethernet: 2x 100/10 Mbps, integrated into SoC, 24V POE IN Installation: Flash factory image through stock firmware WEB UI or through TFTP: To get to TFTP recovery just hold reset button while powering on for around 4-5 seconds and release. Rename factory image to recovery.bin Stock TFTP server IP:192.168.0.100 Stock device TFTP address:192.168.0.254 Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
64 lines
2.1 KiB
Bash
Executable file
64 lines
2.1 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2018 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
adtran,bsap1800-v2|\
|
|
adtran,bsap1840)
|
|
ucidef_add_gpio_switch "wifi1_ext_a" "5GHz External Antenna A" "489" "1"
|
|
ucidef_add_gpio_switch "wifi1_int_a" "5GHz Internal Antenna A" "493"
|
|
ucidef_add_gpio_switch "wifi1_ext_b" "5GHz External Antenna B" "494" "1"
|
|
ucidef_add_gpio_switch "wifi1_int_b" "5GHz Internal Antenna B" "495"
|
|
ucidef_add_gpio_switch "wifi1_ext_c" "5GHz External Antenna C" "496" "1"
|
|
ucidef_add_gpio_switch "wifi1_int_c" "5GHz Internal Antenna C" "497"
|
|
ucidef_add_gpio_switch "wifi0_ext_a" "2.4GHz External Antenna A" "505" "1"
|
|
ucidef_add_gpio_switch "wifi0_int_a" "2.4GHz Internal Antenna A" "506"
|
|
ucidef_add_gpio_switch "wifi0_ext_b" "2.4GHz External Antenna B" "507" "1"
|
|
ucidef_add_gpio_switch "wifi0_int_b" "2.4GHz Internal Antenna B" "508"
|
|
ucidef_add_gpio_switch "wifi0_ext_c" "2.4GHz External Antenna C" "509" "1"
|
|
ucidef_add_gpio_switch "wifi0_int_c" "2.4GHz Internal Antenna C" "510"
|
|
;;
|
|
comfast,cf-e5)
|
|
ucidef_add_gpio_switch "lte_power" "LTE Power" "14" "1"
|
|
ucidef_add_gpio_switch "lte_wakeup" "LTE Wakeup" "11" "1"
|
|
ucidef_add_gpio_switch "lte_poweroff" "LTE Poweroff" "1" "1"
|
|
ucidef_add_gpio_switch "lte_reset" "LTE Reset" "12" "1"
|
|
;;
|
|
dlink,dir-825-c1|\
|
|
dlink,dir-835-a1)
|
|
ucidef_add_gpio_switch "wan_led_auto" "WAN LED Auto" "20" "0"
|
|
;;
|
|
librerouter,librerouter-v1)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "1" "0"
|
|
;;
|
|
tplink,archer-c25-v1)
|
|
ucidef_add_gpio_switch "led_control" "LED control" "21" "0"
|
|
ucidef_add_gpio_switch "led_reset" "LED reset" "19" "1"
|
|
;;
|
|
tplink,cpe210-v1)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "20"
|
|
;;
|
|
ubnt,nanostation-ac)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "3"
|
|
;;
|
|
ubnt,acb-isp)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "11"
|
|
;;
|
|
zbtlink,zbt-wd323)
|
|
ucidef_add_gpio_switch "io0" "IO#0" "0"
|
|
ucidef_add_gpio_switch "io1" "IO#1" "1"
|
|
ucidef_add_gpio_switch "io2" "IO#2" "2"
|
|
ucidef_add_gpio_switch "io14" "IO#14" "14"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|