kodi: update to githash 0a52609

log:
- 8c25e11a02...0a52609c11
This commit is contained in:
Rudi Heitbaum 2024-02-10 07:15:58 +00:00
parent 870bd15735
commit 1afc388965
2 changed files with 2 additions and 27 deletions

View File

@ -3,8 +3,8 @@
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="kodi"
PKG_VERSION="8c25e11a024d48e7505188a8b45695eadf6c79b4"
PKG_SHA256="9c1baebcb7d7560e17efeeaed1974bec03183fd17aad82bea8bbd4763df8d667"
PKG_VERSION="0a52609c11800e5ba71e7ec81dd5131123223968"
PKG_SHA256="1e2060cde34fb19359267ded0648ca1b6d874e20151729faad93808604a24ebe"
PKG_LICENSE="GPL"
PKG_SITE="http://www.kodi.tv"
PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz"

View File

@ -1,25 +0,0 @@
From c33acc2c10c84db48fc61c4455c4f8631bd62d47 Mon Sep 17 00:00:00 2001
From: Peter Tuschy <sky42+git@mailbox.org>
Date: Sun, 4 Feb 2024 15:40:16 +0100
Subject: [PATCH] [posix] PosixMountProvider excludes +efivarfs +systemd-1
On LibreELEC with busybox df System Information -> Storage
shows more mounts then a coreutils df.
I excluded efivarfs and autofs (systemd-1) mounts.
---
xbmc/platform/posix/PosixMountProvider.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xbmc/platform/posix/PosixMountProvider.cpp b/xbmc/platform/posix/PosixMountProvider.cpp
index d139be1827ef9..e0b679d7930a3 100644
--- a/xbmc/platform/posix/PosixMountProvider.cpp
+++ b/xbmc/platform/posix/PosixMountProvider.cpp
@@ -94,7 +94,7 @@ std::vector<std::string> CPosixMountProvider::GetDiskUsage()
FILE* pipe = popen("df -h", "r");
#endif
- static const char* excludes[] = {"rootfs","devtmpfs","tmpfs","none","/dev/loop", "udev", NULL};
+ static const char* excludes[] = {"rootfs","devtmpfs","tmpfs","none","efivarfs","systemd-1","/dev/loop", "udev", NULL};
if (pipe)
{