Uvesafb

From Funtoo
Jump to navigation Jump to search

How to : Framebuffer: Userspace VESA VGA graphics support

Uvesafb is an improved framebuffer driver for Linux systems with some enhancements compared to vesa. Uvesafb can allow you to get a full-resolution console, even if you have installed a graphics driver that does not support full-resolution consoles, such as ati-drivers or NVidia-drivers.

Kernel configuration

Before we emerge the required packages for uvesafb functionality, we have to configure the kernel properly:

Device Drivers --->
    <*> Connector - unified userspace <-> kernelspace linker  --->

    Graphics support --->
        Frame buffer devices --->
        [*] Support for frame buffer devices  --->
            [*] Enable firmware EDID
            <*> Userspace VESA VGA graphics support
   Note

Build the kernel make from the kernel sources directory (/usr/src/linux, but do not install the kernel and modules (make install modules_install). You can choose uvesafb as a module, unlike vesa.

Install required packages

Emerge No results. Klibc has to be compiled against a kernel that includes uvesafb support. This only has to be done once:

root # emerge klibc

After klibc has been installed, the userspace helper, No results, can be installed. Uvesafb will not work without v86d:

root # emerge v86d

Back to kernel configuration

Reconfigure the kernel to include /usr/share/v86d/initramfs as an initramfs source file:

General Setup--->
    [*] Initial RAM filesystem and RAM disk (initramfs/initrd) support
    (/usr/share/v86d/initramfs)    Initramfs source file(s)

After building in /usr/share/v86d/initramfs as an initramfs file in the kernel, rebuild your kernel sources (make) and install the newly compiled kernel and its modules (make install modules_install).

Bootloader configuration

If you compiled uvesafb into the kernel (not as a module), you can configure its behavior by editing the params += line in /etc/boot.conf. Below, some of the more common arguments used with uvesafb are explained:

  • video=uvesafb:<screen y-res>x<screen x-res>-<color depth>: Tells the kernel that you want to use the uvesafb driver for console output. Also specifies that you will be using uvesafb at a set screen resolution, and color depth. Set the first part to the size of your screen (in pixels) and the second part to the color depth of your screen (most monitors now have a depth of 32). For example, if I had a 1920x1080 screen and a color depth of 32, I would add the following: video=uvesafb:1920x1080-32
  • mtrr:x: X represents the number 0 or 3. This option allows you to set up the memory type range registers for uvesafb. Setting x=0 disables mtrr and setting x=3 enables mtrr. x=3 is the default setting for this switch. mtrr:3 is recommended.
  • ywrap: Add support for display panning. Recommended.
   Tip

For more information regarding these arguments, check out http://www.mjmwired.net/kernel/Documentation/fb/uvesafb.txt

Now that you have a basic understanding of a few of the different arguments, you can configure your /etc/boot.conf to allow booting with the uvesafb framebuffer:

   /etc/boot.conf
boot {
        generate grub
        default "Funtoo Linux: uvesafb" 
        timeout 3 
}
  "Funtoo Linux: uvesafb" { 
        kernel bzImage[-v]
        params += video=uvesafb:1920x1080-32,mtrr:3,ywrap
}
   Note

Realize that the configuration in the above file will not work on every computer. You must change the resolution (and possibly other switches) to best suite your needs.

After you have finished editing your /etc/boot.conf, run the following:

root # boot-update

Finally, reboot your computer so that you can test out uvesafb:

root # reboot