OC2,WH,WP2: Allow updates between aarch64 and arm

This commit is contained in:
Radostan Riedel 2017-10-06 09:20:55 +02:00
parent f417959228
commit 1faef644ea
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