From owner-svn-src-head@FreeBSD.ORG Tue Nov 4 20:22:47 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1C581065670 for ; Tue, 4 Nov 2008 20:22:47 +0000 (UTC) (envelope-from rbgarga@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id B4CD08FC0C for ; Tue, 4 Nov 2008 20:22:47 +0000 (UTC) (envelope-from rbgarga@gmail.com) Received: by wa-out-1112.google.com with SMTP id m34so594918wag.27 for ; Tue, 04 Nov 2008 12:22:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=6DrpTNqMftovznazipiptglk4Fn4MW2VI9CVqVtiOik=; b=bdw55O7j7J06obd/s+gcqjkGTtvrcsWSXpdaVbBTfUcQ2DxB8marUl+aF6z1jMfRau MRBgpOZFhkSM7LUbBvfg5/TaQLhVlZ6RicOs2sODeffGQ+Ug6ZP5h62Aruft38gwfNhj UwKoTwoMiUpMBfj7kPOPIIF3nHFGCzdFoV1Oc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=HvqjEmzKyRvN6PM3Rg+5I9QZseISyheGeKlV8nVEKGaGkhSFhaxyfJdSBk8xaguidj KFMMF9LlSCq//yiEu/RSsRvU2fkETF33iSA9lJCChGdBAT2xa2MkhTs6V5GCs+6E1XaI QC7BUf0hYwpTtYteM4KXrELJPbuecOy7/uH5A= Received: by 10.114.133.1 with SMTP id g1mr1180051wad.149.1225828561139; Tue, 04 Nov 2008 11:56:01 -0800 (PST) Received: by 10.114.161.8 with HTTP; Tue, 4 Nov 2008 11:56:01 -0800 (PST) Message-ID: <747dc8f30811041156qe2b710ape595c5671bc0ddf5@mail.gmail.com> Date: Tue, 4 Nov 2008 17:56:01 -0200 From: "Renato Botelho" To: "Rui Paulo" In-Reply-To: <200811041152.mA4BqoPb095612@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200811041152.mA4BqoPb095612@svn.freebsd.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r184625 - in head: etc sys/dev/acpi_support X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Nov 2008 20:22:48 -0000 On Tue, Nov 4, 2008 at 9:52 AM, Rui Paulo wrote: > Author: rpaulo > Date: Tue Nov 4 11:52:50 2008 > New Revision: 184625 > URL: http://svn.freebsd.org/changeset/base/184625 > > Log: > Add support for Asus A8Sr notebooks. > > PR: 128553 > Submitted by: Eygene Ryabinkin > Reviewed by: philip > MFC after: 2 months > > Modified: > head/etc/devd.conf > head/sys/dev/acpi_support/acpi_asus.c > > Modified: head/etc/devd.conf > ============================================================================== > --- head/etc/devd.conf Tue Nov 4 11:31:09 2008 (r184624) > +++ head/etc/devd.conf Tue Nov 4 11:52:50 2008 (r184625) > @@ -255,6 +255,28 @@ notify 10 { > action "/etc/rc.resume acpi $notify"; > }; > > +# The next blocks enable volume hotkeys that can be found on the Asus laptops > +notify 0 { > + match "system" "ACPI"; > + match "subsystem" "ASUS"; > + match "notify" "0x32"; > + action "mixer 0"; > +}; > + > +notify 0 { > + match "system" "ACPI"; > + match "subsystem"i "ASUS"; devd.conf part is broken, you forgot a wrong "i" there -- Renato Botelho