mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: %guile-3.0-static-stripped: Rename to %guile-static-stripped.
* gnu/packages/make-bootstrap.scm (%guile-3.0-static-stripped): Rename to %guile-static-stripped. (%guile-bootstrap-tarball): Adjust accordingly. * gnu/system/linux-initrd.scm (expression->initrd): Use %guile-static-stripped as default guile. * doc/guix.texi (initial RAM disk)[expression->initrd]: Adjust documentation accordingly.
This commit is contained in:
parent
e48cff0965
commit
49e2e75ced
3 changed files with 6 additions and 6 deletions
|
@ -32775,7 +32775,7 @@ program. That gives a lot of flexibility. The
|
|||
program to run in that initrd.
|
||||
|
||||
@deffn {Scheme Procedure} expression->initrd @var{exp} @
|
||||
[#:guile %guile-3.0-static-stripped] [#:name "guile-initrd"]
|
||||
[#:guile %guile-static-stripped] [#:name "guile-initrd"]
|
||||
Return as a file-like object a Linux initrd (a gzipped cpio archive)
|
||||
containing @var{guile} and that evaluates @var{exp}, a G-expression,
|
||||
upon booting. All the derivations referenced by @var{exp} are
|
||||
|
|
|
@ -55,7 +55,7 @@ (define-module (gnu packages make-bootstrap)
|
|||
%mes-bootstrap-tarball
|
||||
%bootstrap-tarballs
|
||||
|
||||
%guile-3.0-static-stripped))
|
||||
%guile-static-stripped))
|
||||
|
||||
;;; Commentary:
|
||||
;;;
|
||||
|
@ -798,7 +798,7 @@ (define* (make-guile-static-stripped static-guile)
|
|||
(outputs '("out"))
|
||||
(synopsis "Minimal statically-linked and relocatable Guile")))
|
||||
|
||||
(define %guile-3.0-static-stripped
|
||||
(define %guile-static-stripped
|
||||
;; A stripped static Guile 3.0 binary, for use in initrds
|
||||
;; and during bootstrap.
|
||||
(make-guile-static-stripped
|
||||
|
@ -863,7 +863,7 @@ (define %gcc-bootstrap-tarball
|
|||
|
||||
(define %guile-bootstrap-tarball
|
||||
;; A tarball with the statically-linked, relocatable Guile.
|
||||
(tarball-package %guile-3.0-static-stripped))
|
||||
(tarball-package %guile-static-stripped))
|
||||
|
||||
(define %mescc-tools-bootstrap-tarball
|
||||
;; A tarball with statically-linked MesCC binary seed.
|
||||
|
|
|
@ -36,7 +36,7 @@ (define-module (gnu system linux-initrd)
|
|||
#:use-module ((gnu packages xorg)
|
||||
#:select (console-setup xkeyboard-config))
|
||||
#:use-module ((gnu packages make-bootstrap)
|
||||
#:select (%guile-3.0-static-stripped))
|
||||
#:select (%guile-static-stripped))
|
||||
#:use-module (gnu system file-systems)
|
||||
#:use-module (gnu system mapped-devices)
|
||||
#:use-module (gnu system keyboard)
|
||||
|
@ -62,7 +62,7 @@ (define-module (gnu system linux-initrd)
|
|||
|
||||
(define* (expression->initrd exp
|
||||
#:key
|
||||
(guile %guile-3.0-static-stripped)
|
||||
(guile %guile-static-stripped)
|
||||
(gzip gzip)
|
||||
(name "guile-initrd")
|
||||
(system (%current-system)))
|
||||
|
|
Loading…
Reference in a new issue