system/cdfs: Fixed build on newer userspace.
This commit is contained in:
parent
8df6d037e5
commit
91955a0b93
|
@ -0,0 +1,11 @@
|
|||
diff -Nur cdfs-2.6.27.orig//root.c cdfs-2.6.27/root.c
|
||||
--- cdfs-2.6.27.orig//root.c 2009-12-21 07:38:31.000000000 -0600
|
||||
+++ cdfs-2.6.27/root.c 2010-05-22 21:31:38.834543323 -0500
|
||||
@@ -25,6 +25,7 @@
|
||||
#include "cdfs.h"
|
||||
|
||||
#include <linux/module.h>
|
||||
+#include <linux/sched.h>
|
||||
|
||||
|
||||
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*
|
|
@ -1,12 +0,0 @@
|
|||
diff -Nur a/cddata.c b/cddata.c
|
||||
--- a/cddata.c 2008-12-08 07:21:37.000000000 -0600
|
||||
+++ b/cddata.c 2009-02-18 17:34:17.679224488 -0600
|
||||
@@ -82,7 +82,7 @@
|
||||
.mmap = generic_file_mmap
|
||||
#else
|
||||
.mmap = generic_file_readonly_mmap,
|
||||
- .sendfile = generic_file_sendfile
|
||||
+ .splice_read = generic_file_splice_read
|
||||
#endif
|
||||
};
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
PRGNAM=cdfs
|
||||
VERSION=2.6.27
|
||||
ARCH=$(uname -m)
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-3}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
KERNEL=${KERNEL:-"$(uname -r)"}
|
||||
|
@ -50,10 +50,8 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# Thanks to "MrWeatherbee" from the Arch forums for the nudge on this :)
|
||||
# http://bbs.archlinux.org/viewtopic.php?id=38894
|
||||
# sendfile() is obsolete - use splice()
|
||||
patch -p1 < $CWD/cdfs-splice_not_sendfile.patch
|
||||
# Include linux/sched.h in root.c
|
||||
patch -p1 < $CWD/cdfs-include_sched_h.diff
|
||||
|
||||
make KDIR=/lib/modules/${KERNEL}/build
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ PRGNAM="cdfs"
|
|||
VERSION="2.6.27"
|
||||
HOMEPAGE="http://users.elis.ugent.be/~mronsse/cdfs/"
|
||||
DOWNLOAD="http://users.elis.ugent.be/~mronsse/cdfs/download/cdfs-2.6.27.tar.bz2"
|
||||
MD5SUM="84366b903d6beb6ddca5ab457bb8ec33"
|
||||
MD5SUM="ac64c014a90e3c488394832ea29605b3"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Robby Workman"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
chroot . /sbin/depmod -a @KERNEL@
|
||||
chroot . /sbin/depmod -ae @KERNEL@
|
||||
|
||||
|
|
Loading…
Reference in New Issue