system: Remove "beta" from GRUB menu entries.
* gnu/system.scm (kernel->boot-label): Remove "(beta)".
This commit is contained in:
parent
7cd38788e6
commit
4ce3a32680
1 changed files with 2 additions and 4 deletions
|
@ -911,13 +911,11 @@ listed in OS. The C library expects to find it under
|
||||||
(cond ((package? kernel)
|
(cond ((package? kernel)
|
||||||
(string-append "GNU with "
|
(string-append "GNU with "
|
||||||
(string-titlecase (package-name kernel)) " "
|
(string-titlecase (package-name kernel)) " "
|
||||||
(package-version kernel)
|
(package-version kernel)))
|
||||||
" (beta)"))
|
|
||||||
((inferior-package? kernel)
|
((inferior-package? kernel)
|
||||||
(string-append "GNU with "
|
(string-append "GNU with "
|
||||||
(string-titlecase (inferior-package-name kernel)) " "
|
(string-titlecase (inferior-package-name kernel)) " "
|
||||||
(inferior-package-version kernel)
|
(inferior-package-version kernel)))
|
||||||
" (beta)"))
|
|
||||||
(else "GNU")))
|
(else "GNU")))
|
||||||
|
|
||||||
(define (store-file-system file-systems)
|
(define (store-file-system file-systems)
|
||||||
|
|
Reference in a new issue