summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-06-02 13:21:02 +0000
committerJohn Crispin <john@openwrt.org>2014-06-02 13:21:02 +0000
commitc788102ebc0b8bf9590011fe5de291fb876c2974 (patch)
tree41ef79e9cc82e0d7c9282bc993abd3c82be9a26d /target
parentef5f37a08dfc405b2e9281f8482d32645d8a4760 (diff)
downloadmaster-31e0f0ae-c788102ebc0b8bf9590011fe5de291fb876c2974.tar.gz
master-31e0f0ae-c788102ebc0b8bf9590011fe5de291fb876c2974.tar.bz2
master-31e0f0ae-c788102ebc0b8bf9590011fe5de291fb876c2974.zip
ar71xx: add user-space support for OpenMesh OM2Pv2
Signed-off-by: Marek Lindner <marek@open-mesh.com> [sven@open-mesh.com: Rebased] Signed-off-by: Sven Eckelmann <sven@open-mesh.com> SVN-Revision: 40956
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/diag.sh1
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/uci-defaults/01_leds1
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/ar71xx.sh3
-rw-r--r--target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh1
4 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh
index 7647039515..616c8cc98f 100755
--- a/target/linux/ar71xx/base-files/etc/diag.sh
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
@@ -98,6 +98,7 @@ get_status_led() {
status_led="nbg6716:white:power"
;;
om2p | \
+ om2pv2 | \
om2p-hs | \
om2p-lc)
status_led="om2p:blue:power"
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
index db60cee9dd..aac13c4e8e 100755
--- a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
+++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
@@ -151,6 +151,7 @@ nbg6716)
;;
om2p | \
+om2pv2 | \
om2p-hs | \
om2p-lc)
ucidef_set_led_netdev "port1" "port1" "om2p:blue:wan" "eth0"
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
index 02c46f9b94..fa114139a5 100755
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
@@ -358,6 +358,9 @@ ar71xx_board_detect() {
*OM2P)
name="om2p"
;;
+ *OM2Pv2)
+ name="om2pv2"
+ ;;
*"OM2P HS")
name="om2p-hs"
;;
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh b/target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh
index fb8ef191f7..9eac5ef27d 100644
--- a/target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh
+++ b/target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh
@@ -59,6 +59,7 @@ platform_check_image_openmesh()
case "$img_board_target" in
OM2P)
[ "$board" = "om2p" ] && break
+ [ "$board" = "om2pv2" ] && break
[ "$board" = "om2p-lc" ] && break
[ "$board" = "om2p-hs" ] && break
echo "Invalid image board target ($img_board_target) for this platform: $board. Use the correct image for this platform"