Merge pull request #8114 from jernejsk/aw_canupdt

[LE12] Allwinner: Add canupdate.sh script
This commit is contained in:
Matthias Reichl 2023-09-05 19:36:03 +02:00 committed by GitHub
commit da9aa7b9a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,11 @@
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2023-present Team LibreELEC (https://libreelec.tv)
# Allow upgrades between arm and aarch64
if [ "${1}" = "@PROJECT@.arm" -o "${1}" = "@PROJECT@.aarch64" ]; then
exit 0
else
exit 1
fi