mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
Merge pull request #3679 from MilhouseVH/le92_backports3
backports: various backports for libreelec-9.2
This commit is contained in:
commit
9a21fc75d9
@ -4,8 +4,8 @@
|
|||||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="libdrm"
|
PKG_NAME="libdrm"
|
||||||
PKG_VERSION="2.4.98"
|
PKG_VERSION="2.4.99"
|
||||||
PKG_SHA256="8be0edccaca3abde8b6bb1431b46354c7fab46e9b91cc6946ba65b51f56f1894"
|
PKG_SHA256="4dbf539c7ed25dbb2055090b77ab87508fc46be39a9379d15fed4b5517e1da5e"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://dri.freedesktop.org"
|
PKG_SITE="http://dri.freedesktop.org"
|
||||||
PKG_URL="http://dri.freedesktop.org/libdrm/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="http://dri.freedesktop.org/libdrm/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="mesa"
|
PKG_NAME="mesa"
|
||||||
PKG_VERSION="19.1.1"
|
PKG_VERSION="19.1.2"
|
||||||
PKG_SHA256="25793eef8b132732273176015b53d2842a905960e1841c6aca292c6930100edf"
|
PKG_SHA256="08d424da157cd8d00c38584a193aab96873be43d617d1cd78b5b8d33cbcb4ef8"
|
||||||
PKG_LICENSE="OSS"
|
PKG_LICENSE="OSS"
|
||||||
PKG_SITE="http://www.mesa3d.org/"
|
PKG_SITE="http://www.mesa3d.org/"
|
||||||
PKG_URL="https://github.com/mesa3d/mesa/archive/mesa-$PKG_VERSION.tar.gz"
|
PKG_URL="https://github.com/mesa3d/mesa/archive/mesa-$PKG_VERSION.tar.gz"
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="libva"
|
PKG_NAME="libva"
|
||||||
PKG_VERSION="2.4.1"
|
PKG_VERSION="2.5.0"
|
||||||
PKG_SHA256="68ca8d071dcb84ac82e3c6d7f02a55937d9f690fcb215853f4aa1de8d459812f"
|
PKG_SHA256="9b6264dade6b6d3edb59c6c4f3c9217d1d5a195635fc07da875d565f58624418"
|
||||||
PKG_ARCH="x86_64"
|
PKG_ARCH="x86_64"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="https://01.org/linuxmedia"
|
PKG_SITE="https://01.org/linuxmedia"
|
||||||
|
@ -409,21 +409,17 @@ load_splash() {
|
|||||||
if [ -z "$SPLASHIMAGE" ]; then
|
if [ -z "$SPLASHIMAGE" ]; then
|
||||||
vres="$(fbset 2>/dev/null | awk '/geometry/ { print $3 }')"
|
vres="$(fbset 2>/dev/null | awk '/geometry/ { print $3 }')"
|
||||||
|
|
||||||
if [ -f /flash/oemsplash.png -o -f /flash/oemsplash-1080.png ]; then
|
for s in /flash/oemsplash-${vres}.png \
|
||||||
if [ -n "$vres" -a -f /flash/oemsplash-$vres.png ]; then
|
/flash/oemsplash-1080.png \
|
||||||
SPLASHIMAGE="/flash/oemsplash-$vres.png"
|
/flash/oemsplash.png \
|
||||||
elif [ -f /flash/oemsplash-1080.png ]; then
|
/splash/splash-${vres}.png \
|
||||||
SPLASHIMAGE="/flash/oemsplash-1080.png"
|
/splash/splash-1080.png \
|
||||||
else
|
; do
|
||||||
SPLASHIMAGE="/flash/oemsplash.png"
|
if [ -f "${s}" ]; then
|
||||||
|
SPLASHIMAGE="${s}"
|
||||||
|
break
|
||||||
fi
|
fi
|
||||||
else
|
done
|
||||||
if [ -n "$vres" -a -f /splash/splash-$vres.png ]; then
|
|
||||||
SPLASHIMAGE="/splash/splash-$vres.png"
|
|
||||||
else
|
|
||||||
SPLASHIMAGE="/splash/splash-1080.png"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$SPLASHIMAGE" -a -f "$SPLASHIMAGE" ]; then
|
if [ -n "$SPLASHIMAGE" -a -f "$SPLASHIMAGE" ]; then
|
||||||
|
@ -6,8 +6,8 @@ PKG_NAME="xf86-video-nvidia"
|
|||||||
# Remember to run "python packages/x11/driver/xf86-video-nvidia/scripts/make_nvidia_udev.py" and commit changes to
|
# Remember to run "python packages/x11/driver/xf86-video-nvidia/scripts/make_nvidia_udev.py" and commit changes to
|
||||||
# "packages/x11/driver/xf86-video-nvidia/udev.d/96-nvidia.rules" whenever bumping version.
|
# "packages/x11/driver/xf86-video-nvidia/udev.d/96-nvidia.rules" whenever bumping version.
|
||||||
# Host may require installation of python-lxml and python-requests packages.
|
# Host may require installation of python-lxml and python-requests packages.
|
||||||
PKG_VERSION="430.26"
|
PKG_VERSION="430.34"
|
||||||
PKG_SHA256="a7dfb1bdd7591f42bbe501b8a9a80349415bdb51723db3cd11b08ce2e2d4679c"
|
PKG_SHA256="248ed9d3dee62eba86d0e0c7737218666aae204a0c0bb9c557b114db75edc523"
|
||||||
PKG_ARCH="x86_64"
|
PKG_ARCH="x86_64"
|
||||||
PKG_LICENSE="nonfree"
|
PKG_LICENSE="nonfree"
|
||||||
PKG_SITE="http://www.nvidia.com/"
|
PKG_SITE="http://www.nvidia.com/"
|
||||||
|
@ -232,6 +232,7 @@ ATTRS{device}=="0x1e04", GOTO="configure_nvidia"
|
|||||||
ATTRS{device}=="0x1e07", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1e07", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1e30", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1e30", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1e82", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1e82", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1e84", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1e87", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1e87", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1e90", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1e90", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1eb0", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1eb0", GOTO="configure_nvidia"
|
||||||
@ -239,13 +240,18 @@ ATTRS{device}=="0x1eb1", GOTO="configure_nvidia"
|
|||||||
ATTRS{device}=="0x1eb5", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1eb5", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1eb6", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1eb6", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1eb8", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1eb8", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1ec2", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1ec7", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1ed0", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1ed0", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f02", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f02", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1f06", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f07", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f07", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f08", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f08", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f10", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f10", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f11", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f11", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f36", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f36", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1f42", GOTO="configure_nvidia"
|
||||||
|
ATTRS{device}=="0x1f47", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f50", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f50", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f51", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f51", GOTO="configure_nvidia"
|
||||||
ATTRS{device}=="0x1f82", GOTO="configure_nvidia"
|
ATTRS{device}=="0x1f82", GOTO="configure_nvidia"
|
||||||
|
@ -702,7 +702,7 @@ help() {
|
|||||||
Usage: $(basename $0) -d|--download <path> [-t|--target <path>] [-l|--libreelec <path>]
|
Usage: $(basename $0) -d|--download <path> [-t|--target <path>] [-l|--libreelec <path>]
|
||||||
[-m|--mirror] [-s|--source] [-a|-all] [-p|--package <package_name> [-r|--revision <revision>]]
|
[-m|--mirror] [-s|--source] [-a|-all] [-p|--package <package_name> [-r|--revision <revision>]]
|
||||||
[--git] [-n|--notnewer] [--check-main | --check-addons] [--check-ver | --check-rev]
|
[--git] [-n|--notnewer] [--check-main | --check-addons] [--check-ver | --check-rev]
|
||||||
[--noprogress] [-T #|--threads #] [-U|--gituser] [-P|--gitpass] [--dry-run]
|
[--no-progress] [-T #|--threads #] [-U|--gituser] [-P|--gitpass] [--dry-run]
|
||||||
[--path-filter path] [--verify-checksum] [-v|--verbose] [-h|--help]
|
[--path-filter path] [--verify-checksum] [-v|--verbose] [-h|--help]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
@ -720,8 +720,8 @@ Options:
|
|||||||
--check-addons: Check newer for add-on packages, ignore main packages
|
--check-addons: Check newer for add-on packages, ignore main packages
|
||||||
--check-ver: Check newer for version-based packages, ignore rev-based/github packages
|
--check-ver: Check newer for version-based packages, ignore rev-based/github packages
|
||||||
--check-rev: Check newer for rev-based/github packages, ignore version-based packages
|
--check-rev: Check newer for rev-based/github packages, ignore version-based packages
|
||||||
--noprogress: Do not show progress indicator
|
--no-progress: Do not show progress indicator
|
||||||
-T, --threads: Number of worker threads, default is 32
|
-T, --threads: Number of download worker threads, default is 16
|
||||||
-U, --gituser: Git username (or source from ~/.git.conf) - avoids API limits
|
-U, --gituser: Git username (or source from ~/.git.conf) - avoids API limits
|
||||||
-P, --gitpass: Git password (or source from ~/.git.conf) - avoids API limits
|
-P, --gitpass: Git password (or source from ~/.git.conf) - avoids API limits
|
||||||
--dry-run: Don't actually download anything (will still git clone/pull if configured)
|
--dry-run: Don't actually download anything (will still git clone/pull if configured)
|
||||||
@ -754,7 +754,7 @@ generate_work() {
|
|||||||
local workfile_o
|
local workfile_o
|
||||||
local tcount=0
|
local tcount=0
|
||||||
|
|
||||||
[ ${PROGRESS} == yes ] && echo -en "Acquiring packages...\r" >&2
|
[ ${PROGRESS} = yes ] && echo -en "Acquiring packages...\r" >&2
|
||||||
|
|
||||||
packages="$(get_packages "${package_name}" "${path_filter}")"
|
packages="$(get_packages "${package_name}" "${path_filter}")"
|
||||||
pcount="$(echo "${packages}" | wc -l)"
|
pcount="$(echo "${packages}" | wc -l)"
|
||||||
@ -770,7 +770,7 @@ generate_work() {
|
|||||||
|
|
||||||
rm -f ${WORKFILES_I}.* ${WORKFILES_O}.*
|
rm -f ${WORKFILES_I}.* ${WORKFILES_O}.*
|
||||||
|
|
||||||
# Split packages across workers
|
# Distribute packages across workers
|
||||||
tcount=0
|
tcount=0
|
||||||
for package_name in ${packages}; do
|
for package_name in ${packages}; do
|
||||||
tcount=$((tcount + 1))
|
tcount=$((tcount + 1))
|
||||||
@ -778,21 +778,17 @@ generate_work() {
|
|||||||
echo "$package_name" >>$(printf "%s.%02d" "${WORKFILES_I}" ${tcount})
|
echo "$package_name" >>$(printf "%s.%02d" "${WORKFILES_I}" ${tcount})
|
||||||
done
|
done
|
||||||
|
|
||||||
# Generate workload using multiple threads
|
# Generate workload using multiple "threads" (cores, hopefully...)
|
||||||
init_progress
|
init_progress
|
||||||
|
|
||||||
(
|
tcount=0
|
||||||
cd $LIBREELEC_DIR
|
|
||||||
source config/options ""
|
|
||||||
|
|
||||||
tcount=0
|
while [ : ]; do
|
||||||
while [ : ]; do
|
tcount=$((tcount + 1))
|
||||||
tcount=$((tcount + 1))
|
[ ${tcount} -gt ${WORKER_MAX} ] && break
|
||||||
[ ${tcount} -gt ${WORKER_MAX} ] && break
|
generate_work_worker ${pcount} ${tcount} ${revision} &
|
||||||
generate_work_worker ${pcount} ${tcount} ${revision} &
|
done
|
||||||
done
|
wait
|
||||||
wait
|
|
||||||
)
|
|
||||||
|
|
||||||
end_progress
|
end_progress
|
||||||
|
|
||||||
@ -823,7 +819,6 @@ generate_work_worker() {
|
|||||||
local package_name var comma PKG_URL PKG_SOURCE_NAME PKG_VERSION PKG_IS_ADDON
|
local package_name var comma PKG_URL PKG_SOURCE_NAME PKG_VERSION PKG_IS_ADDON
|
||||||
|
|
||||||
[ -f "${workfile_i}" ] || return 0
|
[ -f "${workfile_i}" ] || return 0
|
||||||
|
|
||||||
(
|
(
|
||||||
# Override exit function so that packages calling exit don't terminate this sub-shell
|
# Override exit function so that packages calling exit don't terminate this sub-shell
|
||||||
exit() {
|
exit() {
|
||||||
@ -832,10 +827,12 @@ generate_work_worker() {
|
|||||||
|
|
||||||
cd $LIBREELEC_DIR
|
cd $LIBREELEC_DIR
|
||||||
|
|
||||||
while read -r package_name; do
|
source config/options ""
|
||||||
[ ${PROGRESS} == yes ] && progress ${pcount}
|
|
||||||
|
|
||||||
source config/options ${package_name} &>/dev/null || true
|
while read -r package_name; do
|
||||||
|
[ ${PROGRESS} = yes ] && progress ${pcount}
|
||||||
|
|
||||||
|
source_package ${package_name} &>/dev/null || true
|
||||||
[ -z "${PKG_DIR}" ] && continue
|
[ -z "${PKG_DIR}" ] && continue
|
||||||
|
|
||||||
if [ -n "${revision}" ]; then
|
if [ -n "${revision}" ]; then
|
||||||
@ -881,24 +878,31 @@ get_package_path() {
|
|||||||
|
|
||||||
get_packages() {
|
get_packages() {
|
||||||
local package_name="$1" path_filter="$2"
|
local package_name="$1" path_filter="$2"
|
||||||
|
local anchor="@?+?@"
|
||||||
|
|
||||||
export -f get_package_path
|
(
|
||||||
|
cd $LIBREELEC_DIR
|
||||||
|
|
||||||
cd $LIBREELEC_DIR
|
# Generate package caches...
|
||||||
|
source config/options ""
|
||||||
|
|
||||||
if [ -n "${path_filter}" ]; then
|
cache_data="${BUILD}/.cache_package_global ${BUILD}/.cache_package_local"
|
||||||
if [ -n "${package_name}" ]; then
|
|
||||||
basename $(dirname $(find ${path_filter} -path "*/${package_name}/*" -name package.mk 2>/dev/null) 2>/dev/null | head -1) 2>/dev/null
|
if [ -n "${path_filter}" ]; then
|
||||||
|
if [ -n "${package_name}" ]; then
|
||||||
|
grep -F "/${path_filter}/" ${cache_data} | grep -F "/${package_name}${anchor}"
|
||||||
|
else
|
||||||
|
grep -F "/${path_filter}/" ${cache_data}
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
find ${path_filter} -name package.mk -exec bash -c get_package_path "{}" \; 2>/dev/null | cut -d' ' -f1 | sort -u
|
if [ -n "${package_name}" ]; then
|
||||||
|
grep -F "/${package_name}${anchor}" ${cache_data}
|
||||||
|
else
|
||||||
|
cat ${cache_data}
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
) | sed "s#${anchor}\$##g;s#/# #g" | awk '{print $NF}' | sort -u
|
||||||
if [ -n "${package_name}" ]; then
|
|
||||||
basename $(dirname $(find packages projects/${PROJECT} -path "*/${package_name}/*" -name package.mk 2>/dev/null) 2>/dev/null | head -1) 2>/dev/null
|
|
||||||
else
|
|
||||||
find packages projects/${PROJECT} -name package.mk -exec bash -c get_package_path "{}" \; 2>/dev/null | cut -d' ' -f1 | sort -u
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -910,7 +914,7 @@ progress() {
|
|||||||
local count
|
local count
|
||||||
(
|
(
|
||||||
flock -x 9
|
flock -x 9
|
||||||
count=$(($(cat ${LOCKFILE}) + 1))
|
count=$(($(< ${LOCKFILE}) + 1))
|
||||||
echo "${count}" >${LOCKFILE}
|
echo "${count}" >${LOCKFILE}
|
||||||
printf "Generating workload... %3d%% (%d of %d)\r" $((count * 100 / $1)) ${count} $1 >&2
|
printf "Generating workload... %3d%% (%d of %d)\r" $((count * 100 / $1)) ${count} $1 >&2
|
||||||
) 9< "${LOCKFILE}"
|
) 9< "${LOCKFILE}"
|
||||||
@ -999,7 +1003,7 @@ while [ : ]; do
|
|||||||
-v|--verbose)
|
-v|--verbose)
|
||||||
VERBOSE=$((VERBOSE + 1))
|
VERBOSE=$((VERBOSE + 1))
|
||||||
;;
|
;;
|
||||||
--noprogress)
|
--no-progress)
|
||||||
PROGRESS=no
|
PROGRESS=no
|
||||||
;;
|
;;
|
||||||
--path-filter)
|
--path-filter)
|
||||||
@ -1023,7 +1027,7 @@ done
|
|||||||
|
|
||||||
[ -n "${PACKAGE}" -a ${VERBOSE} -eq 0 ] && VERBOSE=1
|
[ -n "${PACKAGE}" -a ${VERBOSE} -eq 0 ] && VERBOSE=1
|
||||||
|
|
||||||
if [ ${DOGIT} == yes ]; then
|
if [ ${DOGIT} = yes ]; then
|
||||||
(
|
(
|
||||||
if [ -d ${LIBREELEC_DIR}/.git ]; then
|
if [ -d ${LIBREELEC_DIR}/.git ]; then
|
||||||
cd ${LIBREELEC_DIR}
|
cd ${LIBREELEC_DIR}
|
||||||
@ -1043,14 +1047,14 @@ DISTRO_SOURCE="$(get_libreelec_option DISTRO_SRC)"
|
|||||||
DISTRO_MIRROR="$(get_libreelec_option DISTRO_MIRROR)"
|
DISTRO_MIRROR="$(get_libreelec_option DISTRO_MIRROR)"
|
||||||
LIBREELEC_VER="$(get_libreelec_option LIBREELEC_VERSION)"
|
LIBREELEC_VER="$(get_libreelec_option LIBREELEC_VERSION)"
|
||||||
|
|
||||||
if [ ${IS_MIRROR} == no ]; then
|
if [ ${IS_MIRROR} = no ]; then
|
||||||
TARGET_DIR="$(get_abs_path "${TARGET_DIR}/${LIBREELEC_VER}")"
|
TARGET_DIR="$(get_abs_path "${TARGET_DIR}/${LIBREELEC_VER}")"
|
||||||
else
|
else
|
||||||
TARGET_DIR="$(get_abs_path "${TARGET_DIR}/mirror")"
|
TARGET_DIR="$(get_abs_path "${TARGET_DIR}/mirror")"
|
||||||
fi
|
fi
|
||||||
check_exists TARGET_DIR || exit
|
check_exists TARGET_DIR || exit
|
||||||
|
|
||||||
if [ ${IS_MIRROR} == no ]; then
|
if [ ${IS_MIRROR} = no ]; then
|
||||||
DOWNLOAD_DIR="$(get_abs_path "${DOWNLOAD_DIR}/${LIBREELEC_VER}")"
|
DOWNLOAD_DIR="$(get_abs_path "${DOWNLOAD_DIR}/${LIBREELEC_VER}")"
|
||||||
else
|
else
|
||||||
DOWNLOAD_DIR="$(get_abs_path "${DOWNLOAD_DIR}/mirror")"
|
DOWNLOAD_DIR="$(get_abs_path "${DOWNLOAD_DIR}/mirror")"
|
||||||
@ -1063,7 +1067,7 @@ if [ -n "${REVISION}" -a -z "${PACKAGE}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo
|
echo
|
||||||
if [ ${IS_MIRROR} == yes ]; then
|
if [ ${IS_MIRROR} = yes ]; then
|
||||||
echo "Synchronising LibreELEC.tv (branch: $(get_libreelec_branch), version: ${LIBREELEC_VER}) with MIRROR server ${TARGET_DIR}"
|
echo "Synchronising LibreELEC.tv (branch: $(get_libreelec_branch), version: ${LIBREELEC_VER}) with MIRROR server ${TARGET_DIR}"
|
||||||
else
|
else
|
||||||
echo "Synchronising LibreELEC.tv (branch: $(get_libreelec_branch), version: ${LIBREELEC_VER}) with SOURCE server ${TARGET_DIR}"
|
echo "Synchronising LibreELEC.tv (branch: $(get_libreelec_branch), version: ${LIBREELEC_VER}) with SOURCE server ${TARGET_DIR}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user