Uvesafb: Difference between revisions

From Alpine Linux
(Created page with "Step-by-step instructions: * install packet v86d apk add v86d * create file /etc/mkinitfs/files.d/v86d with next content: sbin/v86d * edit /etc/mkinitfs/mkinitfs.conf and ad...")
 
m (Updated Gentoo links)
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Step-by-step instructions:
[https://wiki.gentoo.org/wiki/Uvesafb uvesafb] is a generic framebuffer driver.
 
== Step-by-step instructions ==


* install packet v86d
* install packet v86d
   apk add v86d
   {{cmd|apk add v86d}}
* create file /etc/mkinitfs/files.d/v86d with next content:
* create file /etc/mkinitfs/features.d/v86d.files with next content:
   sbin/v86d
   {{cat|/etc/mkinitfs/features.d/v86d.files|sbin/v86d}}
* edit /etc/mkinitfs/mkinitfs.conf and add 'kms' and 'v86d' to features list
* edit /etc/mkinitfs/mkinitfs.conf and add 'kms' and 'v86d' to features list
* copy /etc/modprobe.d/uvesafb to /etc/modprobe.d/uvesafb.conf and point needed resolution
* copy /etc/modprobe.d/uvesafb to /etc/modprobe.d/uvesafb.conf and point needed resolution
* regenerate initrd:
* regenerate initrd:
   mkinitrd -o /boot/initramfs-3.3.7-grsec
   {{cmd|mkinitfs -o /boot/initramfs-grsec}}
* edit /etc/update-extlinux.conf and add module uvesafb to modules list
* edit /etc/update-extlinux.conf and add module uvesafb to modules list
* regenerate boot loader config
* regenerate boot loader config
   update-extlinux
   {{cmd|update-extlinux}}
 
== Links ==
* [https://wiki.gentoo.org/wiki/Uvesafb Uvesafb homepage]
* [https://wiki.archlinux.org/index.php/Uvesafb Arch Wiki]
* [https://wiki.gentoo.org/wiki/Framebuffer Gentoo wiki - Framebuffer]
 
[[Category:Drivers]]

Revision as of 23:33, 18 September 2017

uvesafb is a generic framebuffer driver.

Step-by-step instructions

  • install packet v86d

apk add v86d

  • create file /etc/mkinitfs/features.d/v86d.files with next content:

Contents of /etc/mkinitfs/features.d/v86d.files

sbin/v86d
  • edit /etc/mkinitfs/mkinitfs.conf and add 'kms' and 'v86d' to features list
  • copy /etc/modprobe.d/uvesafb to /etc/modprobe.d/uvesafb.conf and point needed resolution
  • regenerate initrd:

mkinitfs -o /boot/initramfs-grsec

  • edit /etc/update-extlinux.conf and add module uvesafb to modules list
  • regenerate boot loader config

update-extlinux

Links