From owner-freebsd-acpi@FreeBSD.ORG Sat Jan 21 20:33:17 2006 Return-Path: X-Original-To: freebsd-acpi@freebsd.org Delivered-To: freebsd-acpi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E002516A41F for ; Sat, 21 Jan 2006 20:33:17 +0000 (GMT) (envelope-from nate@root.org) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A5C43D46 for ; Sat, 21 Jan 2006 20:33:14 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.240] (ppp-71-139-110-185.dsl.snfc21.pacbell.net [71.139.110.185]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id k0LKX4VK017817 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 21 Jan 2006 12:33:05 -0800 Message-ID: <43D29A95.7070809@root.org> Date: Sat, 21 Jan 2006 12:33:25 -0800 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Manfred Lotz References: <20060120200410.a05870c1.manfred.lotz@arcor.de> <43D13F8A.8000802@root.org> <20060121105719.2eb0c2f9.manfred.lotz@arcor.de> In-Reply-To: <20060121105719.2eb0c2f9.manfred.lotz@arcor.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-acpi@freebsd.org Subject: Re: suspend/resume event X-BeenThere: freebsd-acpi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: ACPI and power management development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2006 20:33:18 -0000 Manfred Lotz wrote: > On Fri, 20 Jan 2006 11:52:42 -0800 > Nate Lawson 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? Nothing offhand. Try running devd manually with the -d flag so it won't go into the background and it will print the events on console. Then close/open the lid. -- Nate