Merge pull request #2262 from CvH/9.0-vdr-addon

vdr-addon update
This commit is contained in:
Christian Hewitt 2017-11-26 06:28:55 +04:00 committed by GitHub
commit 975668cd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 38 additions and 7 deletions

View File

@ -0,0 +1,27 @@
From 7d51cc457823156d446d06c6ae40f850958fa735 Mon Sep 17 00:00:00 2001
From: Mariusz Bialonczyk <manio@skyboo.net>
Date: Sat, 25 Nov 2017 18:57:08 +0100
Subject: [PATCH] Fix compilation for kernels >= 4.14
Closes #122
---
CA.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/CA.h b/CA.h
index 7130be6..019cd1c 100644
--- a/CA.h
+++ b/CA.h
@@ -9,4 +9,12 @@ typedef struct ca_descr_aes {
unsigned char cw[16];
} ca_descr_aes_t;
+#ifndef CA_SET_PID /* removed in kernel 4.14 */
+typedef struct ca_pid {
+ unsigned int pid;
+ int index; /* -1 == disable */
+} ca_pid_t;
+#define CA_SET_PID _IOW('o', 135, struct ca_pid)
#endif
+
+#endif // __CA_H

View File

@ -17,8 +17,8 @@
################################################################################
PKG_NAME="vdr-plugin-satip"
PKG_VERSION="ee88aad"
PKG_SHA256="340fa7366b63ec6760f41c204a993df336e2f571c2ff6b8cb5517ceccbc0e249"
PKG_VERSION="28cc3ca"
PKG_SHA256="aa72e457472e81280b20c2e596b1993607254c86d4f8c5611fdd1d524400e32e"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"

View File

@ -17,16 +17,16 @@
################################################################################
PKG_NAME="vdr-plugin-vnsiserver"
PKG_VERSION="615a077"
PKG_SHA256="7a3fcacd4113d5352a14b7172260da32d1c0621de9e4eb6d3eb0cb64be968154"
PKG_VERSION="63d8151"
PKG_SHA256="acc297c0cc9cd117c6de0b9f1fe0d9c02cd4e8e1abb66da4de34747460ec51e0"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://github.com/FernetMenta/vdr-plugin-vnsiserver"
PKG_URL="https://github.com/FernetMenta/vdr-plugin-vnsiserver/archive/$PKG_VERSION.tar.gz"
PKG_DEPENDS_TARGET="toolchain vdr"
PKG_SECTION="multimedia"
PKG_SHORTDESC="TV"
PKG_LONGDESC="TV"
PKG_SHORTDESC="VDR plugin to handle Kodi clients."
PKG_LONGDESC="VDR plugin to handle Kodi clients."
make_target() {
VDR_DIR=$(get_build_dir vdr)

View File

@ -1,3 +1,7 @@
106
- update Sat>IP plugin to 28cc3ca
- update VNSI to 63d8151
105
- fix for some scrambled channels
- update dvbapi to d7c7587

View File

@ -19,7 +19,7 @@
PKG_NAME="vdr-addon"
PKG_VERSION="2.2"
PKG_REV="105"
PKG_REV="106"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://libreelec.tv"