mirror of
https://git.yoctoproject.org/poky
synced 2026-03-30 08:02:22 +02:00
Fix the kernel Makefile for use with Make 3.82 by splitting mixed implicit and normal rules into separate rules. Signed-off-by: Joshua Lock <josh@linux.intel.com>
28 lines
895 B
Diff
28 lines
895 B
Diff
Currently default header is linux-libc-header, which leads the dismatch
|
|
with wrs kernel.
|
|
|
|
The different headers for same file cause trouble between kerenl module and
|
|
user level binary. E.g. segfault in v86d due to different
|
|
CONNECTOR_MAX_MSG_SIZE in connector.h from the one used by uvesafb.
|
|
|
|
This fix is work around to sync with wrs kernel headers, and should be removed
|
|
after switching to linux-libc-headers-wrs.
|
|
|
|
[BUGID #279] fixed by this.
|
|
|
|
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
|
|
|
|
Index: linux-2.6.34/include/linux/connector.h
|
|
===================================================================
|
|
--- linux-2.6.34.orig/include/linux/connector.h
|
|
+++ linux-2.6.34/include/linux/connector.h
|
|
@@ -48,7 +48,7 @@
|
|
/*
|
|
* Maximum connector's message size.
|
|
*/
|
|
-#define CONNECTOR_MAX_MSG_SIZE 16384
|
|
+#define CONNECTOR_MAX_MSG_SIZE 65536
|
|
|
|
/*
|
|
* idx and val are unique identifiers which
|