Intel Video Linux: Difference between revisions
Jump to navigation
Jump to search
| Line 40: | Line 40: | ||
and then add an entry in the FILES section of /etc/mkinitcpio.conf pointing to your configuration file, like so: | and then add an entry in the FILES section of /etc/mkinitcpio.conf pointing to your configuration file, like so: | ||
FILES="/etc/modprobe.d/uvesafb.conf" | FILES="/etc/modprobe.d/uvesafb.conf" | ||
I kept the default | |||
==Notes== | ==Notes== | ||
Revision as of 08:06, 7 July 2014
v86d
X
cd /etc/X11/xorg.conf.d/ nano 20-intel.conf
Section "Device" Identifier "Intel Graphics" Driver "intel" Option "NoAccel" "True" EndSection
Framebuffer Fix Intel GMA and IBM T61
pacman -Sv v86d edit /etc/default/grub commenting the GRUB_GFXPAYLOAD_LINUX=keep
Take quite out too (sucks)
grub-mkconfig -o /boot/grub/grub.cfg nano /etc/mkinitcpio.conf
Add v86d and i915
MODULES="i915" HOOKS="base udev v86d autodetect modconf block filesystems keyboard fsck"
mkinitcpio -p linux
Reboot the system (unmount if rescue too)
Optimize Resolution
cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes nano /usr/lib/modprobe.d/uvesafb.conf
# cp /usr/lib/modprobe.d/uvesafb.conf /etc/modprobe.d/uvesafb.conf
and then add an entry in the FILES section of /etc/mkinitcpio.conf pointing to your configuration file, like so:
FILES="/etc/modprobe.d/uvesafb.conf"
I kept the default
Notes
- https://wiki.archlinux.org/index.php/uvesafb
- Rescue install (make sure to mount boot): https://bbs.archlinux.org/viewtopic.php?id=76246
- i915 module: https://wiki.archlinux.org/index.php/Intel_Graphics
Other
took quiet out of /etc/grub/default too