[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26339: [PATCH v2 03/12] scripts: system: Rename --no-grub option to
From: |
Mathieu Othacehe |
Subject: |
bug#26339: [PATCH v2 03/12] scripts: system: Rename --no-grub option to --no-bootloader. |
Date: |
Mon, 17 Apr 2017 11:01:39 +0200 |
* guix/scripts/system.scm (%options, show-help): Adjust accordingly.
Keep "--no-grub" for compatibility reasons, but do not mention it in the help.
---
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 3ec100032..c2212ed14 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -761,7 +761,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 (_ "
@@ -800,7 +800,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" "no-grub") #f #f
(lambda (opt name arg result)
(alist-cons 'install-bootloader? #f result)))
(option '("full-boot") #f #f
--
2.12.2
- bug#26339: problem with commit abae042, (continued)
bug#26339: [PATCH 01/18] system: Pass <bootloader-parameter> to grub., David Craven, 2017/04/03
bug#26339: [PATCH 01/18] system: Pass <bootloader-parameter> to grub., Danny Milosavljevic, 2017/04/15
bug#26339: [PATCH 01/18] system: Pass <bootloader-parameter> to grub., Danny Milosavljevic, 2017/04/15
bug#26339: [PATCH 01/18] system: Pass <bootloader-parameter> to grub., Danny Milosavljevic, 2017/04/15
bug#26339: [PATCH v2 00/12] Support for non grub bootloaders., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 01/12] system: Pass <bootloader-parameter> to grub., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 03/12] scripts: system: Rename --no-grub option to --no-bootloader.,
Mathieu Othacehe <=
- bug#26339: [PATCH v2 05/12] system: Add bootloader type., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 04/12] bootloader: Add install procedures and use them., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 02/12] system: Add extlinux support., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 07/12] bootloader: Add device and type to bootloader-configuration record., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 06/12] bootloader: Stop using grub module., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 09/12] scripts: system: Adapt "reconfigure" to new bootloader API., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 08/12] scripts: system: Remove unused variables., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 11/12] scripts: system: Adapt "switch-generation" to new bootloader API., Mathieu Othacehe, 2017/04/17
- bug#26339: [PATCH v2 12/12] scripts: system: Display bootloader device and type in "list-generations"., Mathieu Othacehe, 2017/04/17