mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
scripts: system: Rename --no-grub option to --no-bootloader.
* guix/scripts/system.scm (%options, show-help): Adjust accordingly. Keep "--no-grub" for compatibility reasons, but do not mention it in the help. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
e5f0563d5d
commit
a9eadc06ac
1 changed files with 2 additions and 2 deletions
|
@ -765,7 +765,7 @@ Some ACTIONS support additional ARGS.\n"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
--image-size=SIZE for 'vm-image', produce an image of SIZE"))
|
--image-size=SIZE for 'vm-image', produce an image of SIZE"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
--no-grub for 'init', do not install GRUB"))
|
--no-bootloader for 'init', do not install a bootloader"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
--share=SPEC for 'vm', share host file system according to SPEC"))
|
--share=SPEC for 'vm', share host file system according to SPEC"))
|
||||||
(display (_ "
|
(display (_ "
|
||||||
|
@ -804,7 +804,7 @@ Some ACTIONS support additional ARGS.\n"))
|
||||||
(lambda (opt name arg result)
|
(lambda (opt name arg result)
|
||||||
(alist-cons 'image-size (size->number arg)
|
(alist-cons 'image-size (size->number arg)
|
||||||
result)))
|
result)))
|
||||||
(option '("no-grub") #f #f
|
(option '("no-bootloader" "no-grub") #f #f
|
||||||
(lambda (opt name arg result)
|
(lambda (opt name arg result)
|
||||||
(alist-cons 'install-bootloader? #f result)))
|
(alist-cons 'install-bootloader? #f result)))
|
||||||
(option '("full-boot") #f #f
|
(option '("full-boot") #f #f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue