Difference between revisions of "Installation instructions for the ThinkPad R60e"

From ThinkWiki
Jump to: navigation, search
(Distro specific Instructions)
(Distro specific Instructions)
Line 40: Line 40:
 
* {{Install|SuSE| 10.1|R60e}}
 
* {{Install|SuSE| 10.1|R60e}}
 
* {{Install|Ubuntu| 6.06.1|R60e}}
 
* {{Install|Ubuntu| 6.06.1|R60e}}
* {{Install|Debian|Etch|R60e}}
+
* {{Install|Debian| Etch|R60e}}

Revision as of 00:03, 15 April 2007

Specific installation notes for the ThinkPad R60e.

General Notes

Brightness Controls

For Ubuntu 7.04 and Debian Etch, the brightness controls are slightly broken (switching to max or min brightness only). The following patch to /usr/share/hal/fdi/policy/10osvendor/10-laptop-panel-mgmt-policy.fdi seems to fix this:

 <device>
   <match key="info.category" string="laptop_panel">
     <match key="/org/freedesktop/Hal/devices/computer:smbios.system.manufacturer" string="LENOVO">
       <match key="/org/freedesktop/Hal/devices/computer:smbios.system.version" string="ThinkPad R60e">
         <merge key="laptop_panel.brightness_in_hardware" type="bool">true</merge>
       </match>
     </match>
   </match>
 </device>

Suspend

To make suspend work under Debian Etch (both to RAM and to disk), I deinstalled uswsusp (which is too old -- R60e support was added in Feb 2007) and used the following script for /usr/sbin/s2ram:

#! /bin/sh
(
/etc/init.d/networking stop
rmmod tg3
echo mem > /sys/power/state
modprobe tg3
/etc/init.d/networking start
) >/dev/null 2>&1

exit 0

Suspend to disk works without further modifications without uswsusp.

Distro specific Instructions