Difference between revisions of "Debian on ~2012 Asus EeePC 1025C"

From HeepyWiki
Jump to navigation Jump to search
(Created page with "<pre> Video. needs the gma500 video driver module in the kernel. this exists in kernel 3.3.0+. Compile a kernel with gma500 enabled and boot into that. X then just works. v...")
 
Line 1: Line 1:
<pre>
+
==Video. ==
Video.  
 
 
needs the gma500 video driver module in the kernel. this exists in kernel  
 
needs the gma500 video driver module in the kernel. this exists in kernel  
 
3.3.0+. Compile a kernel with gma500 enabled and boot into that. X then just
 
3.3.0+. Compile a kernel with gma500 enabled and boot into that. X then just
 
works.  
 
works.  
voodoo: add kernel commandline param "console=tty1"
+
voodoo: add kernel commandline param <pre>console=tty1</pre>
  
screen brightness
+
==screen brightness==
update grub to add the kernel commandline params: "acpi_osi=Linux"
+
update grub to add the kernel commandline params: <pre>acpi_osi=Linux</pre>
  
Suspend/resume
+
==Suspend/resume==
 
The video device needs to be POSTed after resume from suspend and then have
 
The video device needs to be POSTed after resume from suspend and then have
 
its saved VBE state restored. create a file called /etc/pm/config.d/gma500
 
its saved VBE state restored. create a file called /etc/pm/config.d/gma500
 
containing:
 
containing:
 +
<pre>
 
ADD_PARAMETERS='--quirk-vbe-post --quirk-vbestate-restore'
 
ADD_PARAMETERS='--quirk-vbe-post --quirk-vbestate-restore'
 +
</pre>
 
This makes pm-suspend do those things so that video comes back correctly.
 
This makes pm-suspend do those things so that video comes back correctly.
</pre>
 

Revision as of 20:49, 16 October 2013

Video.

needs the gma500 video driver module in the kernel. this exists in kernel 3.3.0+. Compile a kernel with gma500 enabled and boot into that. X then just works.

voodoo: add kernel commandline param

console=tty1

screen brightness

update grub to add the kernel commandline params:

acpi_osi=Linux

Suspend/resume

The video device needs to be POSTed after resume from suspend and then have its saved VBE state restored. create a file called /etc/pm/config.d/gma500 containing:

ADD_PARAMETERS='--quirk-vbe-post --quirk-vbestate-restore'

This makes pm-suspend do those things so that video comes back correctly.