mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: Add support for D-Link EBR-2310 Rev. C
Add support for the EBR-2310, which is almost identical to the DIR-615 rev E4, without the wifi. Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>owl
parent
3b90ed8c18
commit
6cce9557a0
|
@ -246,7 +246,8 @@ dhp-1565-a1)
|
||||||
;;
|
;;
|
||||||
dir-600-a1|\
|
dir-600-a1|\
|
||||||
dir-615-e1|\
|
dir-615-e1|\
|
||||||
dir-615-e4)
|
dir-615-e4|\
|
||||||
|
ebr-2310-c1)
|
||||||
ucidef_set_led_netdev "wan" "WAN" "d-link:green:wan" "eth1"
|
ucidef_set_led_netdev "wan" "WAN" "d-link:green:wan" "eth1"
|
||||||
ucidef_set_led_switch "lan1" "LAN1" "d-link:green:lan1" "switch0" "0x02"
|
ucidef_set_led_switch "lan1" "LAN1" "d-link:green:lan1" "switch0" "0x02"
|
||||||
ucidef_set_led_switch "lan2" "LAN2" "d-link:green:lan2" "switch0" "0x04"
|
ucidef_set_led_switch "lan2" "LAN2" "d-link:green:lan2" "switch0" "0x04"
|
||||||
|
|
|
@ -310,6 +310,11 @@ ar71xx_setup_interfaces()
|
||||||
"0u@eth0" "2:lan" "3:lan" "4:lan"
|
"0u@eth0" "2:lan" "3:lan" "4:lan"
|
||||||
ucidef_add_switch_attr "switch0" "enable" "false"
|
ucidef_add_switch_attr "switch0" "enable" "false"
|
||||||
;;
|
;;
|
||||||
|
ebr-2310-c1)
|
||||||
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth1"
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"0@eth0" "1:lan:1" "2:lan:2" "3:lan:3" "4:lan:4"
|
||||||
|
;;
|
||||||
el-m150)
|
el-m150)
|
||||||
ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
|
|
|
@ -58,6 +58,7 @@ dir-600-a1|\
|
||||||
dir-615-c1|\
|
dir-615-c1|\
|
||||||
dir-615-e1|\
|
dir-615-e1|\
|
||||||
dir-615-e4|\
|
dir-615-e4|\
|
||||||
|
ebr-2310-c1|\
|
||||||
ja76pf|\
|
ja76pf|\
|
||||||
rb-750|\
|
rb-750|\
|
||||||
rb-751|\
|
rb-751|\
|
||||||
|
|
|
@ -613,6 +613,9 @@ ar71xx_board_detect() {
|
||||||
*EAP7660D)
|
*EAP7660D)
|
||||||
name="eap7660d"
|
name="eap7660d"
|
||||||
;;
|
;;
|
||||||
|
*"EBR-2310 rev. C1")
|
||||||
|
name="ebr-2310-c1"
|
||||||
|
;;
|
||||||
*EL-M150)
|
*EL-M150)
|
||||||
name="el-m150"
|
name="el-m150"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -233,6 +233,7 @@ platform_check_image() {
|
||||||
dlan-pro-500-wp|\
|
dlan-pro-500-wp|\
|
||||||
dr531|\
|
dr531|\
|
||||||
dragino2|\
|
dragino2|\
|
||||||
|
ebr-2310-c1|\
|
||||||
epg5000|\
|
epg5000|\
|
||||||
esr1750|\
|
esr1750|\
|
||||||
esr900|\
|
esr900|\
|
||||||
|
|
|
@ -141,6 +141,9 @@ static void __init dir_600_a1_setup(void)
|
||||||
MIPS_MACHINE(ATH79_MACH_DIR_600_A1, "DIR-600-A1", "D-Link DIR-600 rev. A1",
|
MIPS_MACHINE(ATH79_MACH_DIR_600_A1, "DIR-600-A1", "D-Link DIR-600 rev. A1",
|
||||||
dir_600_a1_setup);
|
dir_600_a1_setup);
|
||||||
|
|
||||||
|
MIPS_MACHINE(ATH79_MACH_EBR_2310_C1, "EBR-2310-C1", "D-Link EBR-2310 rev. C1",
|
||||||
|
dir_600_a1_setup);
|
||||||
|
|
||||||
static void __init dir_615_e1_setup(void)
|
static void __init dir_615_e1_setup(void)
|
||||||
{
|
{
|
||||||
dir_600_a1_setup();
|
dir_600_a1_setup();
|
||||||
|
|
|
@ -90,6 +90,7 @@ enum ath79_mach_type {
|
||||||
ATH79_MACH_EAP120, /* TP-LINK EAP120 */
|
ATH79_MACH_EAP120, /* TP-LINK EAP120 */
|
||||||
ATH79_MACH_EAP300V2, /* EnGenius EAP300 v2 */
|
ATH79_MACH_EAP300V2, /* EnGenius EAP300 v2 */
|
||||||
ATH79_MACH_EAP7660D, /* Senao EAP7660D */
|
ATH79_MACH_EAP7660D, /* Senao EAP7660D */
|
||||||
|
ATH79_MACH_EBR_2310_C1, /* D-link EBR-2310 rev. C1 */
|
||||||
ATH79_MACH_EL_M150, /* EasyLink EL-M150 */
|
ATH79_MACH_EL_M150, /* EasyLink EL-M150 */
|
||||||
ATH79_MACH_EL_MINI, /* EasyLink EL-MINI */
|
ATH79_MACH_EL_MINI, /* EasyLink EL-MINI */
|
||||||
ATH79_MACH_EPG5000, /* EnGenius EPG5000 */
|
ATH79_MACH_EPG5000, /* EnGenius EPG5000 */
|
||||||
|
|
|
@ -232,6 +232,11 @@ define LegacyDevice/FR54RTR
|
||||||
endef
|
endef
|
||||||
LEGACY_DEVICES += FR54RTR
|
LEGACY_DEVICES += FR54RTR
|
||||||
|
|
||||||
|
define LegacyDevice/EBR2310C1
|
||||||
|
DEVICE_TITLE := D-Link EBR-2310 rev. C1
|
||||||
|
endef
|
||||||
|
LEGACY_DEVICES += EBR2310C1
|
||||||
|
|
||||||
define LegacyDevice/DIR615E1
|
define LegacyDevice/DIR615E1
|
||||||
DEVICE_TITLE := D-Link DIR-615 rev. E1
|
DEVICE_TITLE := D-Link DIR-615 rev. E1
|
||||||
endef
|
endef
|
||||||
|
|
|
@ -925,6 +925,7 @@ $(eval $(call SingleProfile,CameoAP91,64kraw,DIR600A1,dir-600-a1,DIR-600-A1,ttyS
|
||||||
$(eval $(call SingleProfile,CameoAP91,64kraw,DIR601A1,dir-601-a1,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-02"))
|
$(eval $(call SingleProfile,CameoAP91,64kraw,DIR601A1,dir-601-a1,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-02"))
|
||||||
$(eval $(call SingleProfile,CameoAP91,64kraw,FR54RTR,fr-54rtr,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-01"))
|
$(eval $(call SingleProfile,CameoAP91,64kraw,FR54RTR,fr-54rtr,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-01"))
|
||||||
|
|
||||||
|
$(eval $(call SingleProfile,CameoAP99,64kraw,EBR2310C1,ebr-2310-c1,EBR-2310-C1,ttyS0,115200,"AP91-AR7240-RT-090223-03"))
|
||||||
$(eval $(call SingleProfile,CameoAP99,64kraw,DIR615E1,dir-615-e1,DIR-615-E1,ttyS0,115200,"AP93-AR7240-RT-081028-00"))
|
$(eval $(call SingleProfile,CameoAP99,64kraw,DIR615E1,dir-615-e1,DIR-615-E1,ttyS0,115200,"AP93-AR7240-RT-081028-00"))
|
||||||
$(eval $(call SingleProfile,CameoAP99,64kraw,DIR615E4,dir-615-e4,DIR-615-E4,ttyS0,115200,"AP99-AR7240-RT-091105-05"))
|
$(eval $(call SingleProfile,CameoAP99,64kraw,DIR615E4,dir-615-e4,DIR-615-E4,ttyS0,115200,"AP99-AR7240-RT-091105-05"))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue