Comment 27 for bug 451282

Revision history for this message
Harm van Bakel (hvbakel) wrote :

@pauls: that's a great find and I can confirm that syncing "brightness" to "actual_brightness" at boot time fixes the problem. I just had to make a small modification to the script for it to work on karmic:

brt=`cat /sys/devices/virtual/backlight/acpi_video0/brightness`
abrt=`cat /sys/devices/virtual/backlight/acpi_video0/actual_brightness`
if [ "$brt" != "$abrt" ]; then
echo $abrt > /sys/devices/virtual/backlight/acpi_video0/brightness
fi