mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
python: update upstream-status for patches binutils: update upstream-status for patches gcc 4.5.1 4.6.0: update upstream-status for patches autoconf: update upstream-status for patches automake: update upstream-status for patches bison: update upstream-status for patches distcc: update upstream-status of patches fstests: update upstream-status for patches gdb: update upstream-status of patches intltool: update upstream-status of patches libtool: update upstream status of patches linux-libc-headers: update upstream-status for patches make: update upstream-status for patches perl: update upstream-status for patches python-pycurl: update upstream-status for patches python-pygobject: update upstream status for patches python-pyrex: update upstream-status for patches quilt: update upstream-status of patches tcl: update upstream-status for patches gnu-config: update upstream-status for patches gmp: update upstream-status for patches (From OE-Core rev: a62fa9b213b09bf48c48499d2e3c66a9ee306deb) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
1019 B
Diff
30 lines
1019 B
Diff
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
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 2010-09-30 14:15:25.000000000 +0800
|
|
+++ linux-2.6.34/include/linux/connector.h 2010-09-30 14:15:43.000000000 +0800
|
|
@@ -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
|