From dba57ca63672d603f97c32386549d59659e01b12 Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Tue, 23 Mar 2021 00:17:45 +0000 Subject: [PATCH] init: stop checking for OPENELEC_ARCH This stops LE's update checker from accepting OE images as system updates. The checker may be disabled if someone wants to do this. Signed-off-by: Ian Leonard --- packages/sysutils/busybox/scripts/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index b999230c94..050ad1387d 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -263,7 +263,7 @@ mount_sysroot() { get_project_arch() { if [ -f ${1}/etc/os-release ]; then . ${1}/etc/os-release - echo "${OPENELEC_ARCH:-${LIBREELEC_ARCH}}" + echo "${LIBREELEC_ARCH}" fi }