diff options
author | John Crispin <blogic@openwrt.org> | 2014-06-02 13:21:02 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-06-02 13:21:02 +0000 |
commit | a625de6b427674f22a74ca4390ef9ab363272498 (patch) | |
tree | e37d2fd268cf3603b7a5fcde73732d390d0d73cb /target/linux/ar71xx/base-files/lib | |
parent | 886f70b365d1f35b248c4a96573e6957db604b93 (diff) | |
download | upstream-a625de6b427674f22a74ca4390ef9ab363272498.tar.gz upstream-a625de6b427674f22a74ca4390ef9ab363272498.tar.bz2 upstream-a625de6b427674f22a74ca4390ef9ab363272498.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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40956 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 | ||||
-rw-r--r-- | target/linux/ar71xx/base-files/lib/upgrade/openmesh.sh | 1 |
2 files changed, 4 insertions, 0 deletions
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" |