xbmc-rpi: update to xbmc-rpi-c691108

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-05-04 01:59:06 +02:00
parent 851bebf4c3
commit 7fffbb325e
19 changed files with 2 additions and 29 deletions

View File

@ -19,7 +19,7 @@
################################################################################ ################################################################################
PKG_NAME="xbmc-rpi-theme-Confluence" PKG_NAME="xbmc-rpi-theme-Confluence"
PKG_VERSION="2fa3034" PKG_VERSION="c691108"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"

View File

@ -19,7 +19,7 @@
################################################################################ ################################################################################
PKG_NAME="xbmc-rpi" PKG_NAME="xbmc-rpi"
PKG_VERSION="2fa3034" PKG_VERSION="c691108"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"

View File

@ -1,27 +0,0 @@
From f025c39679b438cb91a0ef0f205736ff92fddeac Mon Sep 17 00:00:00 2001
From: Vic Lee <llyzs@163.com>
Date: Thu, 10 Feb 2011 09:36:15 +0800
Subject: [PATCH 5/5] UDisk: device must be remount in DeviceChanged event
Signed-off-by: Vic Lee <llyzs@163.com>
---
xbmc/linux/UDisksProvider.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/xbmc/storage/linux/UDisksProvider.cpp b/xbmc/storage/linux/UDisksProvider.cpp
index 8e9b378..e24502a 100644
--- a/xbmc/storage/linux/UDisksProvider.cpp
+++ b/xbmc/storage/linux/UDisksProvider.cpp
@@ -368,6 +368,8 @@ void CUDisksProvider::DeviceChanged(const char *object, IStorageEventsCallback *
{
bool mounted = device->m_isMounted;
device->Update();
+ if (g_advancedSettings.m_handleMounting)
+ device->Mount();
if (!mounted && device->m_isMounted && callback)
callback->OnStorageAdded(device->m_Label, device->m_MountPath);
else if (mounted && !device->m_isMounted && callback)
--
1.7.2.3