Files
Arch-R/projects/Generic/filesystem/usr/share/bootloader/canupdate.sh
SupervisedThinking 7d1fd86cbc project/Generic: updated / added devices
- cleaned up options
- added gbm, wayland & x11 devices
- Generic-legacy replaced by x11 (+symlink)
- kept Generic (=gbm) for easier transition
- updated canupdate.sh to allow updates
2021-11-28 22:25:24 +01:00

10 lines
316 B
Bash

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
# Allow upgrades between different Generic builds
if [ "$1" = "Virtual.x86_64" -o "$1" = "Generic.x86_64" -o "$1" = "gbm.x86_64" -o "$1" = "wayland.x86_64" -o "$1" = "x11.x86_64" ]; then
exit 0
else
exit 1
fi