ar71xx: add Support for RB2011UiAS-2HnD

SVN-Revision: 42317
This commit is contained in:
John Crispin 2014-08-28 06:27:45 +00:00
parent e47fbcbf1d
commit 254b2670e1
4 changed files with 34 additions and 3 deletions

View File

@ -82,7 +82,8 @@ rb-750)
rb-2011l|\
rb-2011uas|\
rb-2011uias|\
rb-2011uas-2hnd)
rb-2011uas-2hnd|\
rb-2011uias-2hnd)
ucidef_set_led_switch "eth6" "ETH6" "rb:green:eth6" "switch1" "0x20"
ucidef_set_led_switch "eth7" "ETH7" "rb:green:eth7" "switch1" "0x10"
ucidef_set_led_switch "eth8" "ETH8" "rb:green:eth8" "switch1" "0x08"

View File

@ -66,7 +66,8 @@ db120 |\
rb-2011l | \
rb-2011uas |\
rb-2011uias |\
rb-2011uas-2hnd)
rb-2011uas-2hnd|\
rb-2011uias-2hnd)
ucidef_set_interfaces_lan_wan "eth0.1 eth1" "eth0.2"
ucidef_add_switch "switch0" "1" "1"
ucidef_add_switch_vlan "switch0" "1" "0t 2 3 4 5"
@ -75,7 +76,7 @@ rb-2011uas-2hnd)
ucidef_add_switch_vlan "switch1" "1" "0 1 2 3 4 5"
case "$board" in
rb-2011uas* | rb-2011uias)
rb-2011uas* | rb-2011uias | rb-2011uias-2hnd)
ucidef_set_interface_raw "sfp" "eth0.3"
ucidef_add_switch_vlan "switch0" "3" "0t 6"
;;

View File

@ -499,6 +499,9 @@ ar71xx_board_detect() {
*"RouterBOARD 2011UAS-2HnD")
name="rb-2011uas-2hnd"
;;
*"RouterBOARD 2011UiAS-2HnD")
name="rb-2011uias-2hnd"
;;
*"RouterBOARD SXT Lite2")
name="rb-sxt2n"
;;

View File

@ -0,0 +1,26 @@
Index: linux-3.10.49/arch/mips/ath79/mach-rb2011.c
===================================================================
--- linux-3.10.49.orig/arch/mips/ath79/mach-rb2011.c
+++ linux-3.10.49/arch/mips/ath79/mach-rb2011.c
@@ -323,7 +323,7 @@ MIPS_MACHINE_NONAME(ATH79_MACH_RB_2011US
static void __init rb2011r5_setup(void)
{
- rb2011_setup(RB2011_FLAG_SFP | RB2011_FLAG_USB);
+ rb2011_setup(RB2011_FLAG_SFP | RB2011_FLAG_USB | RB2011_FLAG_WLAN);
}
MIPS_MACHINE_NONAME(ATH79_MACH_RB_2011R5, "2011r5", rb2011r5_setup);
Index: linux-3.10.49/arch/mips/ath79/machtypes.h
===================================================================
--- linux-3.10.49.orig/arch/mips/ath79/machtypes.h
+++ linux-3.10.49/arch/mips/ath79/machtypes.h
@@ -99,7 +99,7 @@ enum ath79_mach_type {
ATH79_MACH_RB_2011G, /* Mikrotik RouterBOARD 2011UAS-2HnD */
ATH79_MACH_RB_2011L, /* Mikrotik RouterBOARD 2011L */
ATH79_MACH_RB_2011US, /* Mikrotik RouterBOARD 2011UAS */
- ATH79_MACH_RB_2011R5, /* Mikrotik RouterBOARD 2011UiAS */
+ ATH79_MACH_RB_2011R5, /* Mikrotik RouterBOARD 2011UiAS(-2Hnd) */
ATH79_MACH_RB_SXTLITE2ND, /* Mikrotik RouterBOARD SXT Lite 2nD */
ATH79_MACH_RB_SXTLITE5ND, /* Mikrotik RouterBOARD SXT Lite 5nD */
ATH79_MACH_RW2458N, /* Redwave RW2458N */