From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37388) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eW03X-0001tN-3P for guix-patches@gnu.org; Mon, 01 Jan 2018 08:23:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eW03S-0005gl-5N for guix-patches@gnu.org; Mon, 01 Jan 2018 08:23:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50638) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eW03S-0005gX-2C for guix-patches@gnu.org; Mon, 01 Jan 2018 08:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eW03R-00073I-Ps for guix-patches@gnu.org; Mon, 01 Jan 2018 08:23:01 -0500 Subject: [bug#29932] [PATCH 0/2] Clean up operating-system-kernel-arguments. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eW02f-0001hN-ER for guix-patches@gnu.org; Mon, 01 Jan 2018 08:22:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eW02a-0004rU-HR for guix-patches@gnu.org; Mon, 01 Jan 2018 08:22:13 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:39300) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eW02a-0004mI-AM for guix-patches@gnu.org; Mon, 01 Jan 2018 08:22:08 -0500 From: Danny Milosavljevic Date: Mon, 1 Jan 2018 14:22:00 +0100 Message-Id: <20180101132200.26157-1-dannym@scratchpost.org> 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: 29932@debbugs.gnu.org Previously, the accessor for the field "kernel-arguments" in the structure was called "operating-system-user-kernel-arguments". The procedure "operating-system-kernel-arguments" made sure to add arguments that made the system boot from a given device. After some reflection I think I was mistaken in that. It's nicer if the accessor is called "operating-system-kernel-argmuents" and if the users just use "bootable-kernel-arguments" on their own in order to amend them. That's what this patch does. Danny Milosavljevic (2): system: Inline operating-system-kernel-arguments. system: Rename operating-system-user-kernel-arguments to operating-system-kernel-arguments. gnu/system.scm | 19 ++++++++----------- gnu/system/vm.scm | 4 +++- 2 files changed, 11 insertions(+), 12 deletions(-)