From mboxrd@z Thu Jan 1 00:00:00 1970 From: sirgazil Subject: Re: Passing acpi_osi="Linux" to bootloader current-system entry Date: Sat, 08 Feb 2020 08:02:31 -0500 Message-ID: <17024e4fda4.11bb3a09b78747.3654505557480924426@zoho.com> References: <20200125115654.g27hrbfl2watngox@wzguix> <87blqrk13b.fsf@nckx> <877e1fk0qn.fsf@nckx> <20200127154216.3gaal5vesaiardx2@wzguix> <20200208085206.occundpczcyw7gdo@wzguix> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:42317) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0Pkx-0000Az-Cf for help-guix@gnu.org; Sat, 08 Feb 2020 08:02:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0Pkw-0000Kv-37 for help-guix@gnu.org; Sat, 08 Feb 2020 08:02:43 -0500 Received: from sender4-pp-o91.zoho.com ([136.143.188.91]:25123) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j0Pkv-0000Im-PP for help-guix@gnu.org; Sat, 08 Feb 2020 08:02:42 -0500 In-Reply-To: <20200208085206.occundpczcyw7gdo@wzguix> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: =?UTF-8?Q?=22Wiktor_=C5=BBelazny=22?= Cc: help-guix ---- On Sat, 08 Feb 2020 03:52:06 -0500 Wiktor =C5=BBelazny wrote ---- > On Mon, Jan 27, 2020 at 04:44:18PM +0100, Wiktor =C5=BBelazny wrote: >=20 > > although I=E2=80=99ve got now > > > > (operating-system > > ;; stuff > > > > (kernel-arguments (list "acpi_osi=3D\"Linux\"")) > > > > ;; more stuff > > ) > > > > , my mute button is still not working (nothing gets captured by xev). > > The "quiet" behaviour dissapeared, so the configuration is affected. The value of the kernel-arguments field defaults to (list "quiet") if no va= lue is provided. When you provide a value, the default is not used. So you = should add "quiet" to your list: (list "quiet" "acpi_osi=3DLinux")