Merge pull request #2070 from Raybuntu/6432canupdate

OC2,WH,WP2: Allow updates between aarch64 and arm
This commit is contained in:
Christian Hewitt 2017-10-12 10:52:50 +04:00 committed by GitHub
commit d1e3975ba6
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# Allow upgrades between aarch64 and arm
PROJECT="Odroid_C2"
if [ "$1" = "${PROJECT}.aarch64" ] || [ "$1" = "${PROJECT}.arm" ]; then
exit 0
else
exit 1
fi

View File

@ -0,0 +1,7 @@
# Allow upgrades between aarch64 and arm
PROJECT="WeTek_Hub"
if [ "$1" = "${PROJECT}.aarch64" ] || [ "$1" = "${PROJECT}.arm" ]; then
exit 0
else
exit 1
fi

View File

@ -0,0 +1,7 @@
# Allow upgrades between aarch64 and arm
PROJECT="WeTek_Play_2"
if [ "$1" = "${PROJECT}.aarch64" ] || [ "$1" = "${PROJECT}.arm" ]; then
exit 0
else
exit 1
fi