2013-02-16 03:25:59 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-03-20 12:19:14 +01:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2016-01-23 00:29:40 +01:00
|
|
|
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
2016-06-16 09:50:32 +02:00
|
|
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
2019-03-06 11:28:53 +01:00
|
|
|
|
;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
2013-02-16 03:25:59 +01:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2014-01-29 13:04:00 +01:00
|
|
|
|
(define-module (gnu system linux-initrd)
|
2014-04-27 23:06:15 +02:00
|
|
|
|
#:use-module (guix gexp)
|
2013-02-16 03:25:59 +01:00
|
|
|
|
#:use-module (guix utils)
|
2014-01-29 21:57:56 +01:00
|
|
|
|
#:use-module ((guix store)
|
|
|
|
|
#:select (%store-prefix))
|
2014-04-14 23:59:08 +02:00
|
|
|
|
#:use-module ((guix derivations)
|
|
|
|
|
#:select (derivation->output-path))
|
2016-09-04 23:42:50 +02:00
|
|
|
|
#:use-module (guix modules)
|
2013-02-16 03:25:59 +01:00
|
|
|
|
#:use-module (gnu packages compression)
|
2016-11-03 10:58:34 +01:00
|
|
|
|
#:use-module (gnu packages disk)
|
2013-02-16 03:25:59 +01:00
|
|
|
|
#:use-module (gnu packages linux)
|
2013-08-28 23:59:14 +02:00
|
|
|
|
#:use-module (gnu packages guile)
|
2019-03-20 12:19:14 +01:00
|
|
|
|
#:use-module ((gnu packages xorg)
|
|
|
|
|
#:select (console-setup xkeyboard-config))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
#:use-module ((gnu packages make-bootstrap)
|
|
|
|
|
#:select (%guile-static-stripped))
|
2014-05-20 21:59:08 +02:00
|
|
|
|
#:use-module (gnu system file-systems)
|
2016-04-17 17:53:20 +02:00
|
|
|
|
#:use-module (gnu system mapped-devices)
|
2019-03-20 12:19:14 +01:00
|
|
|
|
#:use-module (gnu system keyboard)
|
2014-04-14 23:59:08 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
2014-01-31 12:01:23 +01:00
|
|
|
|
#:use-module (ice-9 regex)
|
2018-02-27 11:16:37 +01:00
|
|
|
|
#:use-module (ice-9 vlist)
|
2014-05-03 00:26:07 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2014-09-08 23:46:48 +02:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2014-01-29 13:04:00 +01:00
|
|
|
|
#:export (expression->initrd
|
2018-02-27 11:42:09 +01:00
|
|
|
|
%base-initrd-modules
|
2017-03-09 19:39:23 +01:00
|
|
|
|
raw-initrd
|
2017-03-21 21:55:20 +01:00
|
|
|
|
file-system-packages
|
2018-03-15 23:41:31 +01:00
|
|
|
|
base-initrd))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Tools to build initial RAM disks (initrd's) for Linux-Libre, and in
|
|
|
|
|
;;; particular initrd's that run Guile.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define* (expression->initrd exp
|
|
|
|
|
#:key
|
|
|
|
|
(guile %guile-static-stripped)
|
|
|
|
|
(gzip gzip)
|
|
|
|
|
(name "guile-initrd")
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(system (%current-system)))
|
2018-11-15 18:39:18 +01:00
|
|
|
|
"Return as a file-like object a Linux initrd (a gzipped cpio archive)
|
2014-09-08 23:27:40 +02:00
|
|
|
|
containing GUILE and that evaluates EXP, a G-expression, upon booting. All
|
2016-07-03 23:11:40 +02:00
|
|
|
|
the derivations referenced by EXP are automatically copied to the initrd."
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
|
|
|
|
;; General Linux overview in `Documentation/early-userspace/README' and
|
|
|
|
|
;; `Documentation/filesystems/ramfs-rootfs-initramfs.txt'.
|
|
|
|
|
|
2017-07-04 22:05:21 +02:00
|
|
|
|
(define init
|
|
|
|
|
(program-file "init" exp #:guile guile))
|
|
|
|
|
|
|
|
|
|
(define builder
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
'((gnu build linux-initrd)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (gnu build linux-initrd))
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
2017-10-08 10:52:24 +02:00
|
|
|
|
|
|
|
|
|
;; The guile used in the initrd must be present in the store, so
|
|
|
|
|
;; that module loading works once the root is switched.
|
|
|
|
|
;;
|
|
|
|
|
;; To ensure that is the case, add an explicit reference to the
|
|
|
|
|
;; guile package used in the initrd to the output.
|
|
|
|
|
;;
|
|
|
|
|
;; This fixes guix-patches bug #28399, "Fix mysql activation, and
|
|
|
|
|
;; add a basic test".
|
|
|
|
|
(call-with-output-file (string-append #$ output "/references")
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(simple-format port "~A\n" #$guile)))
|
|
|
|
|
|
2018-11-21 16:19:09 +01:00
|
|
|
|
(build-initrd (string-append #$output "/initrd.cpio.gz")
|
2017-07-04 22:05:21 +02:00
|
|
|
|
#:guile #$guile
|
|
|
|
|
#:init #$init
|
|
|
|
|
;; Copy everything INIT refers to into the initrd.
|
|
|
|
|
#:references-graphs '("closure")
|
|
|
|
|
#:gzip (string-append #$gzip "/bin/gzip")))))
|
|
|
|
|
|
2018-11-21 16:19:09 +01:00
|
|
|
|
(file-append (computed-file name builder
|
|
|
|
|
#:options
|
|
|
|
|
`(#:references-graphs (("closure" ,init))))
|
|
|
|
|
"/initrd.cpio.gz"))
|
2014-01-29 13:04:00 +01:00
|
|
|
|
|
2014-09-04 22:50:10 +02:00
|
|
|
|
(define (flat-linux-module-directory linux modules)
|
|
|
|
|
"Return a flat directory containing the Linux kernel modules listed in
|
|
|
|
|
MODULES and taken from LINUX."
|
|
|
|
|
(define build-exp
|
2016-09-04 23:42:50 +02:00
|
|
|
|
(with-imported-modules (source-module-closure
|
2018-07-29 18:31:42 +02:00
|
|
|
|
'((gnu build linux-modules)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
#~(begin
|
2018-07-29 18:31:42 +02:00
|
|
|
|
(use-modules (gnu build linux-modules)
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(srfi srfi-1)
|
2018-07-29 18:31:42 +02:00
|
|
|
|
(srfi srfi-26))
|
2014-09-04 22:50:10 +02:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(define module-dir
|
|
|
|
|
(string-append #$linux "/lib/modules"))
|
2014-09-04 22:50:10 +02:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(define modules
|
2018-07-29 18:31:42 +02:00
|
|
|
|
(let* ((lookup (cut find-module-file module-dir <>))
|
|
|
|
|
(modules (map lookup '#$modules)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(append modules
|
|
|
|
|
(recursive-module-dependencies modules
|
|
|
|
|
#:lookup-module lookup))))
|
2014-11-28 00:01:29 +01:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(for-each (lambda (module)
|
|
|
|
|
(format #t "copying '~a'...~%" module)
|
|
|
|
|
(copy-file module
|
|
|
|
|
(string-append #$output "/"
|
|
|
|
|
(basename module))))
|
|
|
|
|
(delete-duplicates modules)))))
|
2014-09-04 22:50:10 +02:00
|
|
|
|
|
2017-07-04 22:05:21 +02:00
|
|
|
|
(computed-file "linux-modules" build-exp))
|
2014-09-04 22:50:10 +02:00
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(define* (raw-initrd file-systems
|
|
|
|
|
#:key
|
|
|
|
|
(linux linux-libre)
|
|
|
|
|
(linux-modules '())
|
|
|
|
|
(mapped-devices '())
|
2019-03-20 12:19:14 +01:00
|
|
|
|
(keyboard-layout #f)
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(helper-packages '())
|
|
|
|
|
qemu-networking?
|
2018-01-08 23:10:21 +01:00
|
|
|
|
volatile-root?
|
|
|
|
|
(on-error 'debug))
|
2018-11-15 18:39:18 +01:00
|
|
|
|
"Return as a file-like object a raw initrd, with kernel
|
2017-03-09 19:39:23 +01:00
|
|
|
|
modules taken from LINUX. FILE-SYSTEMS is a list of file-systems to be
|
|
|
|
|
mounted by the initrd, possibly in addition to the root file system specified
|
|
|
|
|
on the kernel command line via '--root'. LINUX-MODULES is a list of kernel
|
|
|
|
|
modules to be loaded at boot time. MAPPED-DEVICES is a list of device
|
|
|
|
|
mappings to realize before FILE-SYSTEMS are mounted.
|
|
|
|
|
HELPER-PACKAGES is a list of packages to be copied in the initrd. It may include
|
|
|
|
|
e2fsck/static or other packages needed by the initrd to check root partition.
|
|
|
|
|
|
2019-03-20 12:19:14 +01:00
|
|
|
|
When true, KEYBOARD-LAYOUT is a <keyboard-layout> record denoting the desired
|
|
|
|
|
console keyboard layout. This is done before MAPPED-DEVICES are set up and
|
|
|
|
|
before FILE-SYSTEMS are mounted such that, should the user need to enter a
|
|
|
|
|
passphrase or use the REPL, this happens using the intended keyboard layout.
|
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
When QEMU-NETWORKING? is true, set up networking with the standard QEMU
|
|
|
|
|
parameters.
|
2018-01-08 23:10:21 +01:00
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
When VOLATILE-ROOT? is true, the root file system is writable but any changes
|
2018-01-08 23:10:21 +01:00
|
|
|
|
to it are lost.
|
|
|
|
|
|
|
|
|
|
ON-ERROR is passed to 'call-with-error-handling'; it determines what happens
|
|
|
|
|
upon error."
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(define device-mapping-commands
|
|
|
|
|
;; List of gexps to open the mapped devices.
|
|
|
|
|
(map (lambda (md)
|
|
|
|
|
(let* ((source (mapped-device-source md))
|
|
|
|
|
(target (mapped-device-target md))
|
|
|
|
|
(type (mapped-device-type md))
|
|
|
|
|
(open (mapped-device-kind-open type)))
|
|
|
|
|
(open source target)))
|
|
|
|
|
mapped-devices))
|
|
|
|
|
|
2017-07-04 22:05:21 +02:00
|
|
|
|
(define kodir
|
|
|
|
|
(flat-linux-module-directory linux linux-modules))
|
|
|
|
|
|
|
|
|
|
(expression->initrd
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
'((gnu build linux-boot)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build bournish)
|
2017-10-03 23:25:38 +02:00
|
|
|
|
(gnu system file-systems)
|
2017-07-04 22:05:21 +02:00
|
|
|
|
(gnu build file-systems)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (gnu build linux-boot)
|
2017-10-03 23:25:38 +02:00
|
|
|
|
(gnu system file-systems)
|
2017-07-04 22:05:21 +02:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build bournish) ;add the 'bournish' meta-command
|
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
|
|
|
|
|
;; FIXME: The following modules are for
|
|
|
|
|
;; LUKS-DEVICE-MAPPING. We should instead propagate
|
|
|
|
|
;; this info via gexps.
|
|
|
|
|
((gnu build file-systems)
|
|
|
|
|
#:select (find-partition-by-luks-uuid))
|
|
|
|
|
(rnrs bytevectors))
|
|
|
|
|
|
|
|
|
|
(with-output-to-port (%make-void-port "w")
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin" "sbin")
|
|
|
|
|
'#$helper-packages)))
|
|
|
|
|
|
2017-10-03 23:25:38 +02:00
|
|
|
|
(boot-system #:mounts
|
|
|
|
|
(map spec->file-system
|
|
|
|
|
'#$(map file-system->spec file-systems))
|
2017-07-04 22:05:21 +02:00
|
|
|
|
#:pre-mount (lambda ()
|
|
|
|
|
(and #$@device-mapping-commands))
|
|
|
|
|
#:linux-modules '#$linux-modules
|
|
|
|
|
#:linux-module-directory '#$kodir
|
2019-03-20 12:19:14 +01:00
|
|
|
|
#:keymap-file #+(and=> keyboard-layout
|
|
|
|
|
keyboard-layout->console-keymap)
|
2017-07-04 22:05:21 +02:00
|
|
|
|
#:qemu-guest-networking? #$qemu-networking?
|
2018-01-08 23:10:21 +01:00
|
|
|
|
#:volatile-root? '#$volatile-root?
|
|
|
|
|
#:on-error '#$on-error)))
|
2017-07-04 22:05:21 +02:00
|
|
|
|
#:name "raw-initrd"))
|
2017-03-09 19:39:23 +01:00
|
|
|
|
|
2017-03-21 21:55:20 +01:00
|
|
|
|
(define* (file-system-packages file-systems #:key (volatile-root? #f))
|
|
|
|
|
"Return the list of statically-linked, stripped packages to check
|
|
|
|
|
FILE-SYSTEMS."
|
|
|
|
|
`(,@(if (find (lambda (fs)
|
|
|
|
|
(string-prefix? "ext" (file-system-type fs)))
|
|
|
|
|
file-systems)
|
|
|
|
|
(list e2fsck/static)
|
|
|
|
|
'())
|
|
|
|
|
,@(if (find (lambda (fs)
|
|
|
|
|
(string-suffix? "fat" (file-system-type fs)))
|
|
|
|
|
file-systems)
|
|
|
|
|
(list fatfsck/static)
|
|
|
|
|
'())
|
|
|
|
|
,@(if (find (file-system-type-predicate "btrfs") file-systems)
|
|
|
|
|
(list btrfs-progs/static)
|
|
|
|
|
'())))
|
|
|
|
|
|
2018-02-27 11:16:37 +01:00
|
|
|
|
(define-syntax vhash ;TODO: factorize
|
|
|
|
|
(syntax-rules (=>)
|
|
|
|
|
"Build a vhash with the given key/value mappings."
|
|
|
|
|
((_)
|
|
|
|
|
vlist-null)
|
|
|
|
|
((_ (key others ... => value) rest ...)
|
|
|
|
|
(vhash-cons key value
|
|
|
|
|
(vhash (others ... => value) rest ...)))
|
|
|
|
|
((_ (=> value) rest ...)
|
|
|
|
|
(vhash rest ...))))
|
|
|
|
|
|
|
|
|
|
(define-syntax lookup-procedure
|
|
|
|
|
(syntax-rules (else)
|
|
|
|
|
"Return a procedure that lookups keys in the given dictionary."
|
|
|
|
|
((_ mapping ... (else default))
|
|
|
|
|
(let ((table (vhash mapping ...)))
|
|
|
|
|
(lambda (key)
|
|
|
|
|
(match (vhash-assoc key table)
|
2018-03-03 00:04:17 +01:00
|
|
|
|
(#f default)
|
|
|
|
|
((key . value) value)))))))
|
2018-02-27 11:16:37 +01:00
|
|
|
|
|
|
|
|
|
(define file-system-type-modules
|
|
|
|
|
;; Given a file system type, return the list of modules it needs.
|
|
|
|
|
(lookup-procedure ("cifs" => '("md4" "ecb" "cifs"))
|
|
|
|
|
("9p" => '("9p" "9pnet_virtio"))
|
|
|
|
|
("btrfs" => '("btrfs"))
|
|
|
|
|
("iso9660" => '("isofs"))
|
|
|
|
|
(else '())))
|
|
|
|
|
|
|
|
|
|
(define (file-system-modules file-systems)
|
|
|
|
|
"Return the list of Linux modules needed to mount FILE-SYSTEMS."
|
|
|
|
|
(append-map (compose file-system-type-modules file-system-type)
|
|
|
|
|
file-systems))
|
|
|
|
|
|
2019-03-06 11:28:53 +01:00
|
|
|
|
(define* (default-initrd-modules
|
|
|
|
|
#:optional
|
|
|
|
|
(system (or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
2018-02-27 11:42:09 +01:00
|
|
|
|
"Return the list of modules included in the initrd by default."
|
2018-03-03 09:33:34 +01:00
|
|
|
|
(define virtio-modules
|
|
|
|
|
;; Modules for Linux para-virtualized devices, for use in QEMU guests.
|
|
|
|
|
'("virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net"
|
2018-05-23 10:13:19 +02:00
|
|
|
|
"virtio_console" "virtio-rng"))
|
2018-03-03 09:33:34 +01:00
|
|
|
|
|
2018-02-27 11:42:09 +01:00
|
|
|
|
`("ahci" ;for SATA controllers
|
|
|
|
|
"usb-storage" "uas" ;for the installation image etc.
|
|
|
|
|
"usbhid" "hid-generic" "hid-apple" ;keyboards during early boot
|
|
|
|
|
"dm-crypt" "xts" "serpent_generic" "wp512" ;for encrypted root partitions
|
|
|
|
|
"nls_iso8859-1" ;for `mkfs.fat`, et.al
|
|
|
|
|
,@(if (string-match "^(x86_64|i[3-6]86)-" system)
|
|
|
|
|
'("pata_acpi" "pata_atiixp" ;for ATA controllers
|
|
|
|
|
"isci") ;for SAS controllers like Intel C602
|
2018-03-03 09:33:34 +01:00
|
|
|
|
'())
|
|
|
|
|
|
|
|
|
|
,@virtio-modules))
|
2018-02-27 11:42:09 +01:00
|
|
|
|
|
|
|
|
|
(define-syntax %base-initrd-modules
|
|
|
|
|
;; This more closely matches our naming convention.
|
|
|
|
|
(identifier-syntax (default-initrd-modules)))
|
|
|
|
|
|
2014-06-30 20:56:45 +02:00
|
|
|
|
(define* (base-initrd file-systems
|
2014-05-03 00:26:07 +02:00
|
|
|
|
#:key
|
2015-04-05 22:47:16 +02:00
|
|
|
|
(linux linux-libre)
|
2018-02-27 11:42:09 +01:00
|
|
|
|
(linux-modules '())
|
2014-09-22 11:06:42 +02:00
|
|
|
|
(mapped-devices '())
|
2019-03-20 12:19:14 +01:00
|
|
|
|
(keyboard-layout #f)
|
2014-06-30 20:52:38 +02:00
|
|
|
|
qemu-networking?
|
2014-06-30 06:49:38 +02:00
|
|
|
|
volatile-root?
|
2018-02-27 11:42:09 +01:00
|
|
|
|
(extra-modules '()) ;deprecated
|
2018-01-08 23:10:21 +01:00
|
|
|
|
(on-error 'debug))
|
2018-11-15 18:39:18 +01:00
|
|
|
|
"Return as a file-like object a generic initrd, with kernel
|
2015-04-05 22:47:16 +02:00
|
|
|
|
modules taken from LINUX. FILE-SYSTEMS is a list of file-systems to be
|
|
|
|
|
mounted by the initrd, possibly in addition to the root file system specified
|
|
|
|
|
on the kernel command line via '--root'. MAPPED-DEVICES is a list of device
|
|
|
|
|
mappings to realize before FILE-SYSTEMS are mounted.
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
2019-03-20 12:19:14 +01:00
|
|
|
|
When true, KEYBOARD-LAYOUT is a <keyboard-layout> record denoting the desired
|
|
|
|
|
console keyboard layout. This is done before MAPPED-DEVICES are set up and
|
|
|
|
|
before FILE-SYSTEMS are mounted such that, should the user need to enter a
|
|
|
|
|
passphrase or use the REPL, this happens using the intended keyboard layout.
|
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
QEMU-NETWORKING? and VOLATILE-ROOT? behaves as in raw-initrd.
|
|
|
|
|
|
2014-07-13 23:43:00 +02:00
|
|
|
|
The initrd is automatically populated with all the kernel modules necessary
|
2018-03-03 09:33:34 +01:00
|
|
|
|
for FILE-SYSTEMS and for the given options. Additional kernel
|
|
|
|
|
modules can be listed in LINUX-MODULES. They will be added to the initrd, and
|
2014-09-18 23:05:22 +02:00
|
|
|
|
loaded at boot time in the order in which they appear."
|
2018-02-27 11:42:09 +01:00
|
|
|
|
(define linux-modules*
|
2014-01-29 21:57:56 +01:00
|
|
|
|
;; Modules added to the initrd and loaded from the initrd.
|
2018-02-27 11:42:09 +01:00
|
|
|
|
`(,@linux-modules
|
2018-02-27 11:16:37 +01:00
|
|
|
|
,@(file-system-modules file-systems)
|
2014-04-14 23:59:08 +02:00
|
|
|
|
,@(if volatile-root?
|
2017-10-25 18:13:15 +02:00
|
|
|
|
'("overlay")
|
2014-07-13 23:43:00 +02:00
|
|
|
|
'())
|
|
|
|
|
,@extra-modules))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
2014-05-04 00:30:39 +02:00
|
|
|
|
(define helper-packages
|
2019-03-20 12:19:14 +01:00
|
|
|
|
(append (file-system-packages file-systems
|
|
|
|
|
#:volatile-root? volatile-root?)
|
|
|
|
|
(if keyboard-layout
|
|
|
|
|
(list loadkeys-static)
|
|
|
|
|
'())))
|
2014-05-04 00:30:39 +02:00
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(raw-initrd file-systems
|
|
|
|
|
#:linux linux
|
2018-02-27 11:42:09 +01:00
|
|
|
|
#:linux-modules linux-modules*
|
2017-03-09 19:39:23 +01:00
|
|
|
|
#:mapped-devices mapped-devices
|
|
|
|
|
#:helper-packages helper-packages
|
2019-03-20 12:19:14 +01:00
|
|
|
|
#:keyboard-layout keyboard-layout
|
2017-03-09 19:39:23 +01:00
|
|
|
|
#:qemu-networking? qemu-networking?
|
2018-01-08 23:10:21 +01:00
|
|
|
|
#:volatile-root? volatile-root?
|
|
|
|
|
#:on-error on-error))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
|
|
|
|
;;; linux-initrd.scm ends here
|