aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-03-09 18:05:48 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-03-09 18:05:48 +0000
commit060132c3b8101bbcf05f243e5a39a22551b19c0f (patch)
tree00add1b5d78dcd1f2dcb2bb59ea465cc76f160c9 /target/linux
parentf950ef6dcac72e8b3d083b31851cb5a8b30c9934 (diff)
downloadmaster-187ad058-060132c3b8101bbcf05f243e5a39a22551b19c0f.tar.gz
master-187ad058-060132c3b8101bbcf05f243e5a39a22551b19c0f.tar.bz2
master-187ad058-060132c3b8101bbcf05f243e5a39a22551b19c0f.zip
ar71xx: override lan port names on the RB750
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20096 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/ar71xx/base-files/etc/defconfig/rb-750/network2
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c9
2 files changed, 9 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/etc/defconfig/rb-750/network b/target/linux/ar71xx/base-files/etc/defconfig/rb-750/network
index 2108d3ae8e..113d9f3eea 100644
--- a/target/linux/ar71xx/base-files/etc/defconfig/rb-750/network
+++ b/target/linux/ar71xx/base-files/etc/defconfig/rb-750/network
@@ -9,7 +9,7 @@ config interface eth
option proto none
config interface lan
- option ifname 'lan1 lan2 lan3 lan4'
+ option ifname 'port2 port3 port4 port5'
option type bridge
option proto static
option ipaddr 192.168.1.1
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c
index a39101d631..3972f57ac7 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-rb750.c
@@ -55,6 +55,13 @@ static struct platform_device rb750_leds_device = {
}
};
+static const char *rb750_port_names[AP91_ETH_NUM_PORT_NAMES] __initdata = {
+ "port5",
+ "port4",
+ "port3",
+ "port2",
+};
+
static struct platform_device rb750_nand_device = {
.name = "rb750-nand",
.id = -1,
@@ -117,7 +124,7 @@ static void __init rb750_setup(void)
AR724X_GPIO_FUNC_ETH_SWITCH_LED3_EN |
AR724X_GPIO_FUNC_ETH_SWITCH_LED4_EN);
- ap91_eth_init(NULL, NULL);
+ ap91_eth_init(NULL, rb750_port_names);
platform_device_register(&rb750_leds_device);
platform_device_register(&rb750_nand_device);
}