1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-07-16 22:38:04 +00:00

extras: move things to extras

Move non-essential, outdated, best-effort pieces, as well, as those requiring
extra non-standard dependencies besides oe-core.

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Denys Dmytriyenko
2012-06-11 20:44:56 -04:00
parent a1e2573369
commit 88867c1d96
594 changed files with 0 additions and 0 deletions
@@ -0,0 +1,22 @@
From: Koen Kooi <k-kooi@ti.com>
Subject: linuxutils: fix build with 2.6.37rcX
---
--- /tmp/sdmak.c 2010-12-05 18:43:55.000000000 +0100
+++ linuxutils_2_25_05_11/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c 2010-12-05 18:48:31.000000000 +0100
@@ -208,9 +208,12 @@
}
up_read(&current->mm->mmap_sem);
-
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
+ sema_init(&(channels[channel].mutex),1);
+#else
init_MUTEX_LOCKED(&(channels[channel].mutex));
- channels[channel].owner = filp;
+#endif
+ channels[channel].owner = filp;
if (copy_to_user(argp, &channel, sizeof(channel))) {
return -EFAULT;