suspend/resume event

Manfred Lotz manfred.lotz at arcor.de
Sat Jan 21 01:57:21 PST 2006


On Fri, 20 Jan 2006 11:52:42 -0800
Nate Lawson <nate at root.org> wrote:

> Manfred Lotz wrote:
> > Hi there,
> > With my Samsung X20 1730 suspend /resume works fine when doing
> > acpiconf -s 3. I added /etc/rc.d/moused restart in /etc/rc.resume
> > and the touchpad mouse gets awake after resuming. That's great.
> > 
> > However when closing the lid (I set hw.acpi.lid_switch_state=S3) and
> > then pressing the power button although suspend/resume works
> > fine the mouse won't get restarted. This means /etc/rc.resume and
> > presumably /etc/rc.suspend won't get called in this case.
> > 
> > Same happen when pressing Fn-ESC the key for suspend.
> > 
> > How can I make sure /etc/rc.suspend as well as /etc/rc.resuem gets
> > called in the "non-acpiconf" cases?
> 
> That's an implementation problem.  I think the right approach is to
> add a resume notification to devd.  That should be easy to do and I
> may look into it this weekend if no one submits a patch first.
> 

Thanks. From what you said and after googling I tried the following:

I set:
sysctl hw.acpi.lid_switch_state=NONE

and added the following section at the end of /etc/devd.conf

notify 10 {
     match "system"          "ACPI";                   
     match "subsystem"       "Lid";                     
    action            "/etc/rc.lid  $notify"; 
};

created /etc/rc.lid:

<------ snip ---------->
#! /bin/sh
LOGGER="/usr/bin/logger -t lid_switch -p user.notice"

$LOGGER $1
<------ snip ---------->

made it executable
and restarted  devd via /etc/rc.d/devd restart


However after closing and then opening the lid nothing had happened.

Any idea what I did wrong?


-- 
Manfred


More information about the freebsd-acpi mailing list