diff options
author | Robert Bragg <bob@openedhand.com> | 2008-09-22 13:33:19 +0000 |
---|---|---|
committer | Robert Bragg <bob@openedhand.com> | 2008-09-22 13:33:19 +0000 |
commit | 3de4627417e62595ce4349cb3a13c9180f8e6bfd (patch) | |
tree | 37c5f48d49ce9702fb164ca4fe47433f59cd838a /meta/conf/machine | |
parent | 9b6a24b65d840d8b207a9dfdc69e61b0c5c9ef07 (diff) | |
download | poky-3de4627417e62595ce4349cb3a13c9180f8e6bfd.tar.gz |
Adds recipes to support building X servers based on the xfree86 DDX instead
of kdrive and building mesa. It's a big commit and it's still rather rough
around the edges, but there is a desire to get this in early so people can
review the work and help polish the changes.
Some of the notable bits:
• DRI support in mesa and the X server. (configured in machine conf via
MACHINE_DRI_MODULES variable)
• XCB backend for xlib
• A fairly lite X server build with lots of legacy modules disabled.
I'm sure there is plenty of other fairly low hanging fruit if we want to
put more effort into reducing the size of the xserver build. Currently the
server build comes in @ ~2.3MB vs a kdrive fbdev server build @ ~1MB. E.g
xaa could be made conditional to save ~320K. Of course the kdrive server
doesn't include glx stuff, which is a pretty big chunk.
Also thanks to hrw, since I nabbed a some patches from him for this, and RP,
for various bits of Poky style advice.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5205 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/machine')
-rw-r--r-- | meta/conf/machine/eee901.conf | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/meta/conf/machine/eee901.conf b/meta/conf/machine/eee901.conf index d5e0e29306..0fe7e06ce6 100644 --- a/meta/conf/machine/eee901.conf +++ b/meta/conf/machine/eee901.conf | |||
@@ -1,3 +1,8 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: Asus EEE 901 PC | ||
3 | |||
4 | #@DESCRIPTION: Machine configuration for the Asus EEE 901 PC | ||
5 | |||
1 | TARGET_ARCH = "i586" | 6 | TARGET_ARCH = "i586" |
2 | PACKAGE_EXTRA_ARCHS = "x86" | 7 | PACKAGE_EXTRA_ARCHS = "x86" |
3 | 8 | ||
@@ -8,6 +13,14 @@ MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 wifi" | |||
8 | KERNEL_IMAGETYPE = "bzImage" | 13 | KERNEL_IMAGETYPE = "bzImage" |
9 | 14 | ||
10 | PREFERRED_PROVIDER_virtual/kernel = "linux-moblin2" | 15 | PREFERRED_PROVIDER_virtual/kernel = "linux-moblin2" |
16 | PREFERRED_PROVIDER_virtual/libx11 = "libx11-trim" | ||
17 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xf86-dri-lite" | ||
18 | XSERVER = "xserver-xf86-dri-lite \ | ||
19 | xf86-input-mouse \ | ||
20 | xf86-input-keyboard \ | ||
21 | xf86-input-synaptics \ | ||
22 | xf86-video-intel" | ||
23 | MACHINE_DRI_MODULES = "i915" | ||
11 | 24 | ||
12 | MACHINE_EXTRA_RDEPENDS = "rt2860" | 25 | MACHINE_EXTRA_RDEPENDS = "rt2860" |
13 | 26 | ||
@@ -15,9 +28,6 @@ MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" | |||
15 | 28 | ||
16 | GUI_MACHINE_CLASS = "bigscreen" | 29 | GUI_MACHINE_CLASS = "bigscreen" |
17 | 30 | ||
18 | PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive" | ||
19 | XSERVER="xserver-kdrive-fbdev" | ||
20 | |||
21 | IMAGE_ROOTFS_SIZE_ext3 = "250000" | 31 | IMAGE_ROOTFS_SIZE_ext3 = "250000" |
22 | 32 | ||
23 | IMAGE_FSTYPES += "ext3 jffs2 cpio.gz" | 33 | IMAGE_FSTYPES += "ext3 jffs2 cpio.gz" |