mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
OC2,WH,WP2: Allow updates between aarch64 and arm
This commit is contained in:
parent
f417959228
commit
1faef644ea
7
projects/Odroid_C2/filesystem/usr/share/bootloader/canupdate.sh
Executable file
7
projects/Odroid_C2/filesystem/usr/share/bootloader/canupdate.sh
Executable 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
|
7
projects/WeTek_Hub/filesystem/usr/share/bootloader/canupdate.sh
Executable file
7
projects/WeTek_Hub/filesystem/usr/share/bootloader/canupdate.sh
Executable 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
|
7
projects/WeTek_Play_2/filesystem/usr/share/bootloader/canupdate.sh
Executable file
7
projects/WeTek_Play_2/filesystem/usr/share/bootloader/canupdate.sh
Executable 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
|
Loading…
x
Reference in New Issue
Block a user