diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2014-06-07 15:41:41 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2014-06-07 15:41:41 +0000 |
commit | 9dc5fb9103b1837fab38b58d3a6a8c49c9789207 (patch) | |
tree | 2ece0ab8cd26a1d2f3ba368e37bb18f37dbde135 /target | |
parent | dec0d7f025c104f85fafe8c5f47dcb52df17b5b9 (diff) | |
download | upstream-9dc5fb9103b1837fab38b58d3a6a8c49c9789207.tar.gz upstream-9dc5fb9103b1837fab38b58d3a6a8c49c9789207.tar.bz2 upstream-9dc5fb9103b1837fab38b58d3a6a8c49c9789207.zip |
bcm47xx: use eth0 for switch name
This fixes some strange problems with tg3. I assume that the Ethernet
driver was not brought up if the switch was named switch0.
This was reported and tested by ernesto (Faulp3lz).
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 41042
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/brcm47xx/base-files/etc/init.d/netconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/brcm47xx/base-files/etc/init.d/netconfig b/target/linux/brcm47xx/base-files/etc/init.d/netconfig index 915288124c..ced2a42e70 100755 --- a/target/linux/brcm47xx/base-files/etc/init.d/netconfig +++ b/target/linux/brcm47xx/base-files/etc/init.d/netconfig @@ -224,14 +224,14 @@ start() { eval "$network_defs" [ -n "$vlan1ports" -o -n "$vlan2ports" ] && { - local cfg=`ucidef_add_switch "switch0" 1 1` + local cfg=`ucidef_add_switch "eth0" 1 1` [ -n "$cfg" ] && uci rename network.$cfg=eth0 [ -n "$vlan1ports" ] && { - cfg=`ucidef_add_switch_vlan "switch0" 1 "$vlan1ports"` + cfg=`ucidef_add_switch_vlan "eth0" 1 "$vlan1ports"` [ -n "$cfg" ] && uci rename network.$cfg=eth0_1 } [ -n "$vlan2ports" ] && { - cfg=`ucidef_add_switch_vlan "switch0" 2 "$vlan2ports"` + cfg=`ucidef_add_switch_vlan "eth0" 2 "$vlan2ports"` [ -n "$cfg" ] && uci rename network.$cfg=eth0_2 } } |