You are not logged in.
Hi there guys!
I seem to have a problem when closing my lid. After opening it again i get a blank screen, except for the mouse which i cant move. I cant get to any other tty either.
i get no messages in /var/log/messages.log, but i do when using suspend button.
Dec 17 23:06:38 arch logger: Sleep pressed SLPB
Dec 17 23:06:39 arch logger: Sleep pressed SLPB
Dec 17 23:06:41 arch logger: Sleep pressed SLPB
here is my handler.sh. It is the default one for now because i am just testing the different functions.
#!/bin/sh
# Default acpi script that takes an entry for all actions
# NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to
# modify it to not use /sys
minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
set $*
case "$1" in
button/power)
#echo "PowerButton pressed!">/dev/tty5
case "$2" in
PWRF) logger "PowerButton pressed: $2" ;;
*) logger "ACPI action undefined: $2" ;;
esac
;;
button/sleep)
case "$2" in
SLPB) logger "Sleep pressed $2" ;;
*) logger "ACPI action undefined: $2" ;;
esac
;;
ac_adapter)
case "$2" in
AC)
case "$4" in
00000000)
echo -n $minspeed >$setspeed
#/etc/laptop-mode/laptop-mode start
;;
00000001)
echo -n $maxspeed >$setspeed
#/etc/laptop-mode/laptop-mode stop
;;
esac
;;
*) logger "ACPI action undefined: $2" ;;
esac
;;
battery)
case "$2" in
BAT0)
case "$4" in
00000000) #echo "offline" >/dev/tty5
;;
00000001) #echo "online" >/dev/tty5
;;
esac
;;
CPU0)
;;
*) logger "ACPI action undefined: $2" ;;
esac
;;
button/lid)
logger "Lid changed: $2"
;;
*)
logger "ACPI group/action undefined: $1 / $2"
;;
esacDoes any one know why this is happening? If you need any more info just ask.
Thanks guys
Offline
sorry to bump, but noone replied.
Noone has any idea?
Offline