From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59002) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7oXl-0004l3-Km for guix-patches@gnu.org; Mon, 08 May 2017 15:42:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7oXi-000617-G3 for guix-patches@gnu.org; Mon, 08 May 2017 15:42:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57506) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7oXi-000613-CJ for guix-patches@gnu.org; Mon, 08 May 2017 15:42:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7oXi-0002yk-66 for guix-patches@gnu.org; Mon, 08 May 2017 15:42:02 -0400 Subject: bug#26839: [PATCH] system: Export 'read-boot-parameters'. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7oWo-0004gz-IG for guix-patches@gnu.org; Mon, 08 May 2017 15:41:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7oWl-0005p0-76 for guix-patches@gnu.org; Mon, 08 May 2017 15:41:06 -0400 Received: from mail-wr0-x244.google.com ([2a00:1450:400c:c0c::244]:35958) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7oWk-0005oc-V2 for guix-patches@gnu.org; Mon, 08 May 2017 15:41:03 -0400 Received: by mail-wr0-x244.google.com with SMTP id v42so10112981wrc.3 for ; Mon, 08 May 2017 12:41:02 -0700 (PDT) Received: from leviafan ([217.107.194.134]) by smtp.gmail.com with ESMTPSA id o72sm2322825lff.47.2017.05.08.12.41.00 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 08 May 2017 12:41:00 -0700 (PDT) From: Alex Kost Date: Mon, 08 May 2017 22:40:59 +0300 Message-ID: <877f1rm910.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26839@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, commit 9530e73b496fefe65dcb936825b6beda79f7fdf2 removed an export line for 'read-boot-parameters'. That procedure was used by Emacs-Guix code, and now "M-x guix-system-generations" fails, so do you mind if 'read-boot-parameters' will be exported again? --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-system-Export-read-boot-parameters.patch >From 88051a2615352fd775badf0b79a7418424ff24c0 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Mon, 8 May 2017 22:03:37 +0300 Subject: [PATCH] system: Export 'read-boot-parameters'. This partially reverts commit 9530e73b496fefe65dcb936825b6beda79f7fdf2. * gnu/system.scm: Export 'read-boot-parameters' for backward compatibility. --- gnu/system.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/system.scm b/gnu/system.scm index baba0b5..3627813 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -108,6 +108,7 @@ boot-parameters-kernel boot-parameters-kernel-arguments boot-parameters-initrd + read-boot-parameters read-boot-parameters-file local-host-aliases -- 2.10.2 --=-=-=--