v4l2loopback: fix build in kernel 3.18
This commit is contained in:
parent
5c52382448
commit
024a28e5e8
2 changed files with 33 additions and 0 deletions
|
@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
|
|||
sed -i '/depmod/d' Makefile
|
||||
export PATH=${kmod}/sbin:$PATH
|
||||
'';
|
||||
|
||||
patches = [ ./kernel-3.18-fix.patch ];
|
||||
|
||||
buildInputs = [ kmod ];
|
||||
|
||||
|
|
31
pkgs/os-specific/linux/v4l2loopback/kernel-3.18-fix.patch
Normal file
31
pkgs/os-specific/linux/v4l2loopback/kernel-3.18-fix.patch
Normal file
|
@ -0,0 +1,31 @@
|
|||
From 21195cd6d1ff767a271359dfa7d201078f766611 Mon Sep 17 00:00:00 2001
|
||||
From: tatokis <tasos@tasossah.com>
|
||||
Date: Mon, 24 Nov 2014 16:28:33 +0200
|
||||
Subject: [PATCH] Updated v4l2loopback.c to compile on >= 3.18 kernel
|
||||
|
||||
---
|
||||
v4l2loopback.c | 9 +++++++--
|
||||
1 file changed, 7 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/v4l2loopback.c b/v4l2loopback.c
|
||||
index bb228bb..67f6ed4 100644
|
||||
--- a/v4l2loopback.c
|
||||
+++ b/v4l2loopback.c
|
||||
@@ -498,10 +498,15 @@ static ssize_t attr_store_maxopeners(struct device *cd,
|
||||
{
|
||||
struct v4l2_loopback_device *dev = NULL;
|
||||
unsigned long curr = 0;
|
||||
-
|
||||
+
|
||||
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0)
|
||||
+ if (kstrtoul(buf, 0, &curr))
|
||||
+ return -EINVAL;
|
||||
+ #else
|
||||
if (strict_strtoul(buf, 0, &curr))
|
||||
return -EINVAL;
|
||||
-
|
||||
+ #endif
|
||||
+
|
||||
dev = v4l2loopback_cd2dev(cd);
|
||||
|
||||
if (dev->max_openers == curr)
|
Loading…
Reference in a new issue