diff options
author | Josua Mayer <josua.mayer@jm0.eu> | 2019-12-26 15:25:04 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-12-31 02:30:08 +0100 |
commit | 12795ec9f16ba79cdde052f2e20f4a1bddc6235d (patch) | |
tree | 107945a9dab803c40a8cad1758cc3acaf57eed9c /target/linux/mvebu | |
parent | 5e5e92b7c3e751affa067a365f1787cd8e5ffb10 (diff) | |
download | upstream-12795ec9f16ba79cdde052f2e20f4a1bddc6235d.tar.gz upstream-12795ec9f16ba79cdde052f2e20f4a1bddc6235d.tar.bz2 upstream-12795ec9f16ba79cdde052f2e20f4a1bddc6235d.zip |
mvebu: split interface configuration for clearfog pro and base
Handle both variants separately. This removes the need for calling
swconfig to detect the switch, and simplifies future changes.
Signed-off-by: Josua Mayer <josua.mayer@jm0.eu>
Diffstat (limited to 'target/linux/mvebu')
-rwxr-xr-x | target/linux/mvebu/base-files/etc/board.d/02_network | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/target/linux/mvebu/base-files/etc/board.d/02_network b/target/linux/mvebu/base-files/etc/board.d/02_network index 69c63e3791..283a856258 100755 --- a/target/linux/mvebu/base-files/etc/board.d/02_network +++ b/target/linux/mvebu/base-files/etc/board.d/02_network @@ -52,17 +52,21 @@ marvell,axp-gp) methode,udpu) ucidef_set_interfaces_lan_wan "eth1" "eth0" ;; -solidrun,clearfog*a1) +solidrun,clearfog-a1|solidrun,clearfog-pro-a1) # eth0 is standalone ethernet - # eth1 is switch (-pro) or standalone ethernet (-base) + # eth1 is switch # eth2 is SFP ucidef_set_interfaces_lan_wan "eth1" "eth0 eth2" - # if switch exists (clearfog-pro) # switch port 5 is connected to eth1 - swconfig list 2>&1 | grep -q switch0 && \ - ucidef_add_switch "switch0" \ - "0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth1" "6:lan:6" + ucidef_add_switch "switch0" \ + "0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth1" "6:lan:6" + ;; +solidrun,clearfog-base-a1) + # eth0 is standalone ethernet + # eth1 is standalone ethernet + # eth2 is SFP + ucidef_set_interfaces_lan_wan "eth1" "eth0 eth2" ;; *) ucidef_set_interface_lan "eth0" |