diff options
author | Luka Perkov <luka@openwrt.org> | 2015-04-15 16:23:10 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2015-04-15 16:23:10 +0000 |
commit | a046ce235f5666e21aa2c7982483e670b3e0e886 (patch) | |
tree | 2a9069ccfc3abcf36fc3e772f7175d8dd683cc9b | |
parent | 147e005fcf4b5964f61b9e00785ea41c90a90768 (diff) | |
download | upstream-a046ce235f5666e21aa2c7982483e670b3e0e886.tar.gz upstream-a046ce235f5666e21aa2c7982483e670b3e0e886.tar.bz2 upstream-a046ce235f5666e21aa2c7982483e670b3e0e886.zip |
mvebu: better integrate 385-ap-db
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 45452
-rw-r--r-- | target/linux/mvebu/base-files/etc/uci-defaults/02_network | 4 | ||||
-rwxr-xr-x | target/linux/mvebu/base-files/lib/mvebu.sh | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/02_network b/target/linux/mvebu/base-files/etc/uci-defaults/02_network index 93dc515094..75b0af79f6 100644 --- a/target/linux/mvebu/base-files/etc/uci-defaults/02_network +++ b/target/linux/mvebu/base-files/etc/uci-defaults/02_network @@ -21,7 +21,9 @@ armada-xp-linksys-mamba) ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5" ucidef_add_switch_vlan "switch0" "2" "4 6" ;; - +armada-385-db-ap) + ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2" + ;; *) 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 3d50196bff..6182d7af60 100755 --- a/target/linux/mvebu/base-files/lib/mvebu.sh +++ b/target/linux/mvebu/base-files/lib/mvebu.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2013 OpenWrt.org +# Copyright (C) 2013-2015 OpenWrt.org # MVEBU_BOARD_NAME= @@ -34,6 +34,9 @@ mvebu_board_detect() { *"Linksys WRT1900AC") name="armada-xp-linksys-mamba" ;; + *"Marvell Armada 385 Access Point Development Board") + name="armada-385-db-ap" + ;; esac [ -z "$name" ] && name="unknown" |