HardwareSupportComponentsVideoCardsPoulsboAlternatives

Differences between revisions 5 and 6
Revision 5 as of 2010-11-19 06:03:41
Size: 2205
Editor: r74-192-193-22
Comment:
Revision 6 as of 2010-12-05 10:26:07
Size: 2296
Editor: 93-40-176-203
Comment:
Deletions are marked like this. Additions are marked like this.
Line 77: Line 77:
Intel's official driver for the Poulsbo platform is [[http://edc.intel.com/Software/Downloads/EMGD|EMGD]]. As of November 2010, the latest version requires Xorg server version 1.8.0. This Xorg server version is not available in any repositories, including xorg-crack pushers. However, it can be built from source. Intel's official driver for the Poulsbo platform is [[http://edc.intel.com/Software/Downloads/EMGD|EMGD]]. As of November 2010, the latest version requires Xorg server version 1.8.0.

Installation script for Lucid,Maverick and Natty:
{{{
w
get dl-web.dropbox.com/u/1338581/emgd/install.sh && sudo sh ./install.sh
}}}

EMGD driver repositor
y:
{{{
https://launchpad.net/~lucazade/+archive/em
gd
}}}

You can choose from alternatives to the PSB drivers, all having different advantages and disadvantages over the others. These drivers are: fbdev, iegd and emgd. Iegd and emgd are not covered yet.

These settings have been tested on Lucid and Maverick. This will very likely work on older versions of Ubuntu. It does not give you the performance you get with the Poulsbo driver, but the good news is you get the right resolution and can still use sleep and hibernation.

Getting 1366x768 resolution

Create file /etc/grub.d/01_915resolution with lines

echo insmod 915resolution
echo 915resolution 58 1366 768 32

and execute:

chmod +x /etc/grub.d/01_915resolution

In file /etc/default/grub, assign value 1366x768x32 to variables GRUB_GFXMODE and GRUB_GFXPAYLOAD_LINUX:

GRUB_GFXMODE=1366x768x32
GRUB_GFXPAYLOAD_LINUX=1366x768x32

Execute:

sudo update-grub

reboot, now you have 1366x768 resolution.

Alternative drivers to PSB

fbdev driver

For slightly better performance, install the fbdev X driver.

Note: first set resolution with steps mentioned above!

Install v86d package, execute:

sudo apt-get install v86d

Then add this line to /etc/modules

uvesafb vbemode=0x011b nocrtc mtrr=2

create /etc/X11/xorg.conf:

Section "Screen"
    Identifier    "Default Screen"
    DefaultDepth    24
EndSection

Section "Module"
    Load    "dri"
    Load    "GLcore"
EndSection

Section "Device"
    Identifier    "Default Device"
    Driver    "fbdev"
EndSection

If you find video playback is distorted or jumpy, open a terminal window and type gstreamer-properties. In the program window that appears, select the Video tab and, in the Plugin dropdown list beneath Default Output, select X Window System (No Xv).

EMGD driver

Intel's official driver for the Poulsbo platform is EMGD. As of November 2010, the latest version requires Xorg server version 1.8.0.

Installation script for Lucid,Maverick and Natty:

wget dl-web.dropbox.com/u/1338581/emgd/install.sh && sudo sh ./install.sh

EMGD driver repository:

https://launchpad.net/~lucazade/+archive/emgd

HardwareSupportComponentsVideoCardsPoulsboAlternatives (last edited 2011-05-05 15:47:46 by 93-40-180-167)