mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: Shorten the default label for GRUB entries.
* gnu/system.scm (kernel->grub-label): Shorten entry labels.
This commit is contained in:
parent
906b1b0986
commit
42de960878
1 changed files with 2 additions and 2 deletions
|
@ -658,10 +658,10 @@ (define make-initrd
|
||||||
|
|
||||||
(define (kernel->grub-label kernel)
|
(define (kernel->grub-label kernel)
|
||||||
"Return a label for the GRUB menu entry that boots KERNEL."
|
"Return a label for the GRUB menu entry that boots KERNEL."
|
||||||
(string-append "GNU system with "
|
(string-append "GNU with "
|
||||||
(string-titlecase (package-name kernel)) " "
|
(string-titlecase (package-name kernel)) " "
|
||||||
(package-version kernel)
|
(package-version kernel)
|
||||||
" (technology preview)"))
|
" (alpha)"))
|
||||||
|
|
||||||
(define* (operating-system-grub.cfg os #:optional (old-entries '()))
|
(define* (operating-system-grub.cfg os #:optional (old-entries '()))
|
||||||
"Return the GRUB configuration file for OS. Use OLD-ENTRIES to populate the
|
"Return the GRUB configuration file for OS. Use OLD-ENTRIES to populate the
|
||||||
|
|
Loading…
Reference in a new issue