From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 2/2] scripts: system: Rename --no-grub option to --no-bootloader. Date: Tue, 10 Jan 2017 19:42:43 +0100 Message-ID: <20170110184243.6100-2-david@craven.ch> References: <20170110184243.6100-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cR1O3-0005Ce-L8 for guix-devel@gnu.org; Tue, 10 Jan 2017 13:43:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cR1Nz-0001kn-PU for guix-devel@gnu.org; Tue, 10 Jan 2017 13:43:11 -0500 Received: from so254-10.mailgun.net ([198.61.254.10]:33711) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cR1Nz-0001kU-Lb for guix-devel@gnu.org; Tue, 10 Jan 2017 13:43:07 -0500 In-Reply-To: <20170110184243.6100-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * guix/scripts/system.scm (%options, show-help): Adjust accordingly. --- guix/scripts/system.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 274325ab3..bb9e478d6 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -739,7 +739,7 @@ Some ACTIONS support additional ARGS.\n")) (display (_ " --image-size=SIZE for 'vm-image', produce an image of SIZE")) (display (_ " - --no-grub for 'init', do not install GRUB")) + --no-bootloader for 'init', do not install a bootloader")) (display (_ " --share=SPEC for 'vm', share host file system according to SPEC")) (display (_ " @@ -774,7 +774,7 @@ Some ACTIONS support additional ARGS.\n")) (lambda (opt name arg result) (alist-cons 'image-size (size->number arg) result))) - (option '("no-grub") #f #f + (option '("no-bootloader") #f #f (lambda (opt name arg result) (alist-cons 'install-bootloader? #f result))) (option '("full-boot") #f #f -- 2.11.0