0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-03-07 19:54:30 +00:00

17 lines
400 B
Bash
Raw Permalink Normal View History

# SPDX-License-Identifier: GPL-2.0
2018-07-16 20:45:36 +02:00
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
2017-11-01 22:57:41 +01:00
# devices have been renamed after LE9.2
if [ "${1}" = "TinkerBoard.arm" -o "${1}" = "MiQi.arm" ]; then
if [ "${2}" = "RK3288.arm" ]; then
exit 0
fi
fi
2017-11-01 22:57:41 +01:00
# Allow upgrades between arm and aarch64
if [ "${1}" = "@PROJECT@.arm" -o "${1}" = "@PROJECT@.aarch64" ]; then
2017-11-01 22:57:41 +01:00
exit 0
else
exit 1
fi