crystalhd: update to crystalhd-3.8.0, build driver too

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-06 01:31:34 +02:00
parent 7bf077fca6
commit 90c5846789
3 changed files with 50 additions and 1 deletions

View File

@ -3,6 +3,15 @@
. config/options $1
$SCRIPTS/build toolchain
$SCRIPTS/build linux
cd $PKG_BUILD/driver/linux
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--with-kernel-path=$(kernel_path) \
make V=1
cd $PKG_BUILD/linux_lib/libcrystalhd

View File

@ -0,0 +1,40 @@
diff -Naur crystalhd-3.8.0/driver/linux/crystalhd_flea_ddr.c crystalhd-3.8.0.patch/driver/linux/crystalhd_flea_ddr.c
--- crystalhd-3.8.0/driver/linux/crystalhd_flea_ddr.c 2010-10-06 00:07:16.000000000 +0200
+++ crystalhd-3.8.0.patch/driver/linux/crystalhd_flea_ddr.c 2010-10-06 01:04:11.844215460 +0200
@@ -24,6 +24,7 @@
* along with this driver. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
+#include <linux/delay.h>
#include "crystalhd_hw.h"
#include "crystalhd_flea_ddr.h"
diff -Naur crystalhd-3.8.0/driver/linux/crystalhd_lnx.c crystalhd-3.8.0.patch/driver/linux/crystalhd_lnx.c
--- crystalhd-3.8.0/driver/linux/crystalhd_lnx.c 2010-10-06 00:07:16.000000000 +0200
+++ crystalhd-3.8.0.patch/driver/linux/crystalhd_lnx.c 2010-10-06 01:04:31.543484731 +0200
@@ -279,8 +279,13 @@
}
/* API interfaces */
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35)
static int chd_dec_ioctl(struct inode *in, struct file *fd,
unsigned int cmd, unsigned long ua)
+#else
+static long irctl_ioctl(struct file *file,
+ unsigned int cmd, unsigned long ua)
+#endif
{
struct crystalhd_adp *adp = chd_get_adp();
crystalhd_cmd_proc cproc;
@@ -365,7 +370,11 @@
static const struct file_operations chd_dec_fops = {
.owner = THIS_MODULE,
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 35)
.ioctl = chd_dec_ioctl,
+#else
+ .unlocked_ioctl = chd_dec_ioctl,
+#endif
.open = chd_dec_open,
.release = chd_dec_close,
};

View File

@ -1 +1 @@
http://sources.openelec.tv/svn/crystalhd-137.tar.bz2
http://sources.openelec.tv/svn/crystalhd-3.8.0.tar.bz2