aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.4
Commit message (Expand)AuthorAgeFilesLines
...
* portability fixFelix Fietkau2006-11-281-1/+1
* upgrade to linux 2.4.33.4Felix Fietkau2006-11-245-94/+0
* deny non-root access to /dev/mtd*roFelix Fietkau2006-11-231-0/+11
* remove outdated README fileFelix Fietkau2006-11-181-98/+0
* add mini_foFelix Fietkau2006-11-171-0/+7772
* fix the backport of ipt_string by adding the linux 2.6 textsearch code in a w...Felix Fietkau2006-11-141-117/+750
* remove obsolete patchFelix Fietkau2006-11-041-11/+0
* add a fix for tun/tap related crashes (backported by Carlos Sobrinho)Felix Fietkau2006-10-311-0/+102
* fix a timeout on amd flash chips (patch from #874)Felix Fietkau2006-10-221-0/+39
* add another parallel build fixFelix Fietkau2006-10-181-0/+21
* move sched_use_tsc patch to generic-2.4Felix Fietkau2006-10-171-0/+84
* finally move buildroot-ng to trunkFelix Fietkau2016-03-2058-0/+115700
bel */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
@@ -738,6 +738,53 @@ static struct board_info __initdata boar
 
 	.has_uart0			= 1,
 };
+
+static struct board_info __initdata board_rta770bw = {
+	.name				= "RTA770BW",
+	.expected_cpu_id		= 0x6345,
+
+	.has_uart0			= 1,
+
+	.has_enet0			= 1,
+
+	.enet0 = {
+		.force_speed_100	= 1,
+		.force_duplex_full	= 1,
+	},
+
+	.leds = {
+		{
+			.name		= "RTA770BW:green:usb",
+			.gpio		= 7,
+			.active_low	= 1,
+		},
+		{
+			.name		= "RTA770BW:green:adsl",
+			.gpio		= 8,
+		},
+		{
+			.name		= "RTA770BW:green:diag",
+			.gpio		= 10,
+			.active_low	= 1,
+		},
+		{
+			.name		= "RTA770BW:green:wlan",
+			.gpio		= 11,
+			.active_low	= 1,
+		},
+	},
+
+	.buttons = {
+		{
+			.desc		= "reset",
+			.gpio		= 13,
+			.type		= EV_KEY,
+			.code		= KEY_RESTART,
+			.active_low	= 1,
+			.debounce_interval = BCM963XX_KEYS_DEBOUNCE_INTERVAL,
+		},
+	},
+};
 #endif
 
 /*
@@ -3263,6 +3310,7 @@ static const struct board_info __initdat
 #endif
 #ifdef CONFIG_BCM63XX_CPU_6345
 	&board_96345gw2,
+	&board_rta770bw,
 #endif
 #ifdef CONFIG_BCM63XX_CPU_6348
 	&board_96348r,