diff options
author | Marko Ratkaj <marko.ratkaj@sartura.hr> | 2017-04-06 20:13:31 +0200 |
---|---|---|
committer | Luka Perkov <luka.perkov@sartura.hr> | 2017-05-14 00:34:03 +0200 |
commit | ee1cee2cac67108194f1496c29fead90afff1763 (patch) | |
tree | 016b1247a7d94c46d2580bd19883fda0de2b1b36 /target/linux/mvebu/base-files | |
parent | f564fcc6bfb7bae4ca7768f8b30f5348fb472d97 (diff) | |
download | upstream-ee1cee2cac67108194f1496c29fead90afff1763.tar.gz upstream-ee1cee2cac67108194f1496c29fead90afff1763.tar.bz2 upstream-ee1cee2cac67108194f1496c29fead90afff1763.zip |
mvebu: add ClearFog Base support
Add support for SolidRun ClearFog Base board.
The base model is a smaller version of ClearFog Pro without
the DSA switch, replacing it with a second copper gigabit
port, and only one PCIe socket.
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
Diffstat (limited to 'target/linux/mvebu/base-files')
-rwxr-xr-x | target/linux/mvebu/base-files/etc/board.d/02_network | 3 | ||||
-rwxr-xr-x | target/linux/mvebu/base-files/lib/mvebu.sh | 3 | ||||
-rwxr-xr-x | target/linux/mvebu/base-files/lib/upgrade/platform.sh | 3 |
3 files changed, 9 insertions, 0 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 68231e004a..aea6224891 100755 --- a/target/linux/mvebu/base-files/etc/board.d/02_network +++ b/target/linux/mvebu/base-files/etc/board.d/02_network @@ -33,6 +33,9 @@ armada-388-clearfog-pro) ucidef_add_switch "switch0" \ "0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth0" "6:lan:6" ;; +armada-388-clearfog-base) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; *) ucidef_set_interface_lan "eth0" ;; diff --git a/target/linux/mvebu/base-files/lib/mvebu.sh b/target/linux/mvebu/base-files/lib/mvebu.sh index 0fcc82d034..ecf3d44848 100755 --- a/target/linux/mvebu/base-files/lib/mvebu.sh +++ b/target/linux/mvebu/base-files/lib/mvebu.sh @@ -56,6 +56,9 @@ mvebu_board_detect() { *"SolidRun Clearfog Pro A1") name="armada-388-clearfog-pro" ;; + *"SolidRun Clearfog Base A1") + name="armada-388-clearfog-base" + ;; esac [ -z "$name" ] && name="unknown" diff --git a/target/linux/mvebu/base-files/lib/upgrade/platform.sh b/target/linux/mvebu/base-files/lib/upgrade/platform.sh index 6db25448d6..12e5bdcf7c 100755 --- a/target/linux/mvebu/base-files/lib/upgrade/platform.sh +++ b/target/linux/mvebu/base-files/lib/upgrade/platform.sh @@ -22,6 +22,9 @@ platform_do_upgrade() { armada-388-clearfog-pro) platform_do_upgrade_clearfog "$ARGV" ;; + armada-388-clearfog-base) + platform_do_upgrade_clearfog "$ARGV" + ;; *) default_do_upgrade "$ARGV" ;; |