[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/8] scripts: system: Rename --no-grub option to --no-bootloader.
From: |
David Craven |
Subject: |
[PATCH 4/8] scripts: system: Rename --no-grub option to --no-bootloader. |
Date: |
Tue, 14 Feb 2017 16:28:30 +0100 |
* 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 fb32d08a5..04274919e 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -733,7 +733,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 (_ "
@@ -768,7 +768,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-grub? #f result)))
(option '("full-boot") #f #f
--
2.11.1
- [PATCH 0/8] WIP: Better support for non-grub bootloaders., David Craven, 2017/02/14
- [PATCH 2/8] system: Pass <bootloader-parameter> to grub., David Craven, 2017/02/14
- [PATCH 6/8] vm: Improve readability of run-vm.sh generation., David Craven, 2017/02/14
- [PATCH 4/8] scripts: system: Rename --no-grub option to --no-bootloader.,
David Craven <=
- [PATCH 2/8] system: Pass <boot-parameters> to grub., David Craven, 2017/02/14
- [PATCH 1/8] file-systems: Add FAT32 support., David Craven, 2017/02/14
- [PATCH 5/8] vm: Remove hard coded kernel file name., David Craven, 2017/02/14
- [PATCH 7/8] vm: Fix full-boot? option., David Craven, 2017/02/14
- [PATCH 8/8] bootloader: Add install procedures and use them., David Craven, 2017/02/14
- [PATCH 3/8] system: Add extlinux support., David Craven, 2017/02/14