mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Add (guix build bournish) and use it in the initrd.
* guix/build/bournish.scm: New file. * Makefile.am (MODULES): Add it. * gnu/system/linux-initrd.scm (base-initrd): Add (guix build bournish) and use it.
This commit is contained in:
parent
423eef362b
commit
f2e4805b7e
3 changed files with 176 additions and 1 deletions
|
@ -227,6 +227,7 @@ loaded at boot time in the order in which they appear."
|
|||
#~(begin
|
||||
(use-modules (gnu build linux-boot)
|
||||
(guix build utils)
|
||||
(guix build bournish) ;add the 'bournish' meta-command
|
||||
(srfi srfi-26))
|
||||
|
||||
(with-output-to-port (%make-void-port "w")
|
||||
|
@ -242,7 +243,8 @@ loaded at boot time in the order in which they appear."
|
|||
#:qemu-guest-networking? #$qemu-networking?
|
||||
#:volatile-root? '#$volatile-root?))
|
||||
#:name "base-initrd"
|
||||
#:modules '((guix build utils)
|
||||
#:modules '((guix build bournish)
|
||||
(guix build utils)
|
||||
(guix build syscalls)
|
||||
(gnu build linux-boot)
|
||||
(gnu build linux-modules)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue