diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:14:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 15:29:45 +0100 |
commit | 29d6678fd546377459ef75cf54abeef5b969b5cf (patch) | |
tree | 8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-kernel/linux/linux-wrs | |
parent | da49de6885ee1bc424e70bc02f21f6ab920efb55 (diff) | |
download | openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.bz2 openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.xz openembedded-core-29d6678fd546377459ef75cf54abeef5b969b5cf.zip |
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things
and is generally overwhelming. This commit splits it into several
logical sections roughly based on function, recipes.txt gives more
information about the classifications used.
The opportunity is also used to switch from "packages" to "recipes"
as used in OpenEmbedded as the term "packages" can be confusing to
people and has many different meanings.
Not all recipes have been classified yet, this is just a first pass
at separating things out. Some packages are moved to meta-extras as
they're no longer actively used or maintained.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-wrs')
-rw-r--r-- | meta/recipes-kernel/linux/linux-wrs/connect-size.patch | 35 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-wrs/qemux86-64.cfg | 10 |
2 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-wrs/connect-size.patch b/meta/recipes-kernel/linux/linux-wrs/connect-size.patch new file mode 100644 index 000000000..a78629c85 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-wrs/connect-size.patch @@ -0,0 +1,35 @@ +Increase the connector message size to avoid message to long errors from +uvesafb as per the below dmesg fragment: + +uvesafb: Bochs/Plex86 Developers, Bochs/Plex86 VBE Adapter, $Id$, OEM: Bochs/Plex86 VBE(C) 2003 http://savannah.nongnu.org/projects/vgabios/, VBE v2.0 +uvesafb: no monitor limits have been set, default refresh rate will be used +uvesafb: scrolling: redraw +uvesafb: framebuffer at 0xe0000000, mapped to 0xffffc90000080000, using 8192k, total 8192k +fb0: VESA VGA frame buffer device +uvesafb: message too long (57808), can't execute task +uvesafb: VBE get state call failed (eax=0x4f04, err=-7) +udev: starting version 158 +EXT3-fs (hda): using internal journal +uvesafb: message too long (57808), can't execute task +uvesafb: VBE get state call failed (eax=0x4f04, err=-7) +uvesafb: message too long (57808), can't execute task +uvesafb: VBE get state call failed (eax=0x4f04, err=-7) +uvesafb: message too long (57808), can't execute task +uvesafb: VBE get state call failed (eax=0x4f04, err=-7) + +JL 13/0/10 + +Index: linux/include/linux/connector.h +=================================================================== +--- linux.orig/include/linux/connector.h 2010-08-13 13:16:28.000000000 +0100 ++++ linux/include/linux/connector.h 2010-08-13 13:18:29.507791929 +0100 +@@ -48,7 +48,8 @@ + /* + * Maximum connector's message size. + */ +-#define CONNECTOR_MAX_MSG_SIZE 16384 ++//#define CONNECTOR_MAX_MSG_SIZE 16384 ++#define CONNECTOR_MAX_MSG_SIZE 65536 + + /* + * idx and val are unique identifiers which diff --git a/meta/recipes-kernel/linux/linux-wrs/qemux86-64.cfg b/meta/recipes-kernel/linux/linux-wrs/qemux86-64.cfg new file mode 100644 index 000000000..df3fbe32d --- /dev/null +++ b/meta/recipes-kernel/linux/linux-wrs/qemux86-64.cfg @@ -0,0 +1,10 @@ +CONFIG_AGP=y +CONFIG_DRM=y +CONFIG_FB=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_CONNECTOR=y +CONFIG_FB_UVESA=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_WACOM=y +CONFIG_INPUT_EVDEV=y +CONFIG_E1000=y |