2013-02-16 03:25:59 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-03-21 21:55:20 +01:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017 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>
|
2017-03-09 19:39:23 +01:00
|
|
|
|
;;; Copyright © 2017 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)
|
|
|
|
|
#:use-module (guix monads)
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 13:34:52 +01:00
|
|
|
|
#:use-module (guix store)
|
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)
|
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)
|
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)
|
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
|
2017-03-09 19:39:23 +01:00
|
|
|
|
raw-initrd
|
2017-03-21 21:55:20 +01:00
|
|
|
|
file-system-packages
|
2014-06-30 20:56:45 +02: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)))
|
2014-07-17 17:49:34 +02:00
|
|
|
|
"Return a derivation that builds 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'.
|
|
|
|
|
|
2014-09-08 23:46:48 +02:00
|
|
|
|
(mlet %store-monad ((init (gexp->script "init" exp
|
|
|
|
|
#:guile guile)))
|
2014-04-27 23:06:15 +02:00
|
|
|
|
(define builder
|
2016-09-04 23:42:50 +02:00
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
'((gnu build linux-initrd)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (gnu build linux-initrd))
|
2014-04-14 23:59:08 +02:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(build-initrd (string-append #$output "/initrd")
|
|
|
|
|
#:guile #$guile
|
|
|
|
|
#:init #$init
|
|
|
|
|
;; Copy everything INIT refers to into the initrd.
|
|
|
|
|
#:references-graphs '("closure")
|
|
|
|
|
#:gzip (string-append #$gzip "/bin/gzip")))))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(gexp->derivation name builder
|
|
|
|
|
#:references-graphs `(("closure" ,init)))))
|
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
|
|
|
|
|
'((guix build utils)
|
|
|
|
|
(gnu build linux-modules)))
|
2016-07-03 23:11:40 +02:00
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (ice-9 match) (ice-9 regex)
|
|
|
|
|
(srfi srfi-1)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(gnu build linux-modules))
|
2014-09-04 22:50:10 +02:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(define (string->regexp str)
|
|
|
|
|
;; Return a regexp that matches STR exactly.
|
|
|
|
|
(string-append "^" (regexp-quote str) "$"))
|
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 (lookup module)
|
|
|
|
|
(let ((name (ensure-dot-ko module)))
|
|
|
|
|
(match (find-files module-dir (string->regexp name))
|
|
|
|
|
((file)
|
|
|
|
|
file)
|
|
|
|
|
(()
|
|
|
|
|
(error "module not found" name module-dir))
|
|
|
|
|
((_ ...)
|
|
|
|
|
(error "several modules by that name"
|
|
|
|
|
name module-dir)))))
|
2014-11-28 00:01:29 +01:00
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(define modules
|
|
|
|
|
(let ((modules (map lookup '#$modules)))
|
|
|
|
|
(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
|
|
|
|
|
2016-07-03 23:11:40 +02:00
|
|
|
|
(gexp->derivation "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 '())
|
|
|
|
|
(helper-packages '())
|
|
|
|
|
qemu-networking?
|
|
|
|
|
volatile-root?)
|
|
|
|
|
"Return a monadic derivation that builds a raw initrd, with kernel
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
When QEMU-NETWORKING? is true, set up networking with the standard QEMU
|
|
|
|
|
parameters.
|
|
|
|
|
When VOLATILE-ROOT? is true, the root file system is writable but any changes
|
|
|
|
|
to it are lost."
|
|
|
|
|
(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))
|
|
|
|
|
|
|
|
|
|
(mlet %store-monad ((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)
|
|
|
|
|
(gnu build file-systems)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (gnu build linux-boot)
|
|
|
|
|
(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)))
|
|
|
|
|
|
|
|
|
|
(boot-system #:mounts '#$(map file-system->spec file-systems)
|
|
|
|
|
#:pre-mount (lambda ()
|
|
|
|
|
(and #$@device-mapping-commands))
|
|
|
|
|
#:linux-modules '#$linux-modules
|
|
|
|
|
#:linux-module-directory '#$kodir
|
|
|
|
|
#:qemu-guest-networking? #$qemu-networking?
|
|
|
|
|
#:volatile-root? '#$volatile-root?)))
|
|
|
|
|
#:name "raw-initrd")))
|
|
|
|
|
|
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)
|
|
|
|
|
'())
|
|
|
|
|
,@(if volatile-root?
|
|
|
|
|
(list unionfs-fuse/static)
|
|
|
|
|
'())))
|
|
|
|
|
|
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)
|
2014-09-22 11:06:42 +02:00
|
|
|
|
(mapped-devices '())
|
2014-06-30 20:52:38 +02:00
|
|
|
|
qemu-networking?
|
2014-06-30 06:49:38 +02:00
|
|
|
|
volatile-root?
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(virtio? #t)
|
2014-09-18 23:05:22 +02:00
|
|
|
|
(extra-modules '()))
|
2015-04-05 22:47:16 +02:00
|
|
|
|
"Return a monadic derivation that builds a generic initrd, with kernel
|
|
|
|
|
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
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
QEMU-NETWORKING? and VOLATILE-ROOT? behaves as in raw-initrd.
|
|
|
|
|
|
|
|
|
|
When VIRTIO? is true, load additional modules so the initrd can
|
2015-04-05 23:13:58 +02:00
|
|
|
|
be used as a QEMU guest with the root file system on a para-virtualized block
|
|
|
|
|
device.
|
2014-05-23 22:35:08 +02:00
|
|
|
|
|
2014-07-13 23:43:00 +02:00
|
|
|
|
The initrd is automatically populated with all the kernel modules necessary
|
|
|
|
|
for FILE-SYSTEMS and for the given options. However, additional kernel
|
|
|
|
|
modules can be listed in EXTRA-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."
|
2014-06-30 06:49:38 +02:00
|
|
|
|
(define virtio-modules
|
|
|
|
|
;; Modules for Linux para-virtualized devices, for use in QEMU guests.
|
2014-12-08 23:06:57 +01:00
|
|
|
|
'("virtio_pci" "virtio_balloon" "virtio_blk" "virtio_net"
|
|
|
|
|
"virtio_console"))
|
2014-06-30 06:49:38 +02:00
|
|
|
|
|
2014-01-29 21:57:56 +01:00
|
|
|
|
(define cifs-modules
|
|
|
|
|
;; Modules needed to mount CIFS file systems.
|
2014-11-28 00:06:54 +01:00
|
|
|
|
'("md4" "ecb" "cifs"))
|
2013-08-29 00:04:04 +02:00
|
|
|
|
|
2014-01-31 12:21:10 +01:00
|
|
|
|
(define virtio-9p-modules
|
|
|
|
|
;; Modules for the 9p paravirtualized file system.
|
2014-11-28 00:06:54 +01:00
|
|
|
|
'("9p" "9pnet_virtio"))
|
2014-01-31 12:21:10 +01:00
|
|
|
|
|
2014-05-03 00:26:07 +02:00
|
|
|
|
(define (file-system-type-predicate type)
|
|
|
|
|
(lambda (fs)
|
|
|
|
|
(string=? (file-system-type fs) type)))
|
|
|
|
|
|
2014-01-29 21:57:56 +01:00
|
|
|
|
(define linux-modules
|
|
|
|
|
;; Modules added to the initrd and loaded from the initrd.
|
2015-01-27 21:24:32 +01:00
|
|
|
|
`("ahci" ;for SATA controllers
|
|
|
|
|
"usb-storage" "uas" ;for the installation image etc.
|
2016-01-23 00:29:40 +01:00
|
|
|
|
"usbhid" "hid-generic" "hid-apple" ;keyboards during early boot
|
2016-01-23 02:53:04 +01:00
|
|
|
|
"dm-crypt" "xts" "serpent_generic" "wp512" ;for encrypted root partitions
|
2016-06-16 09:50:32 +02:00
|
|
|
|
"nvme" ;for new SSD NVMe devices
|
2015-08-28 00:37:30 +02:00
|
|
|
|
,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system))
|
|
|
|
|
'("pata_acpi" "pata_atiixp" ;for ATA controllers
|
|
|
|
|
"isci") ;for SAS controllers like Intel C602
|
|
|
|
|
'())
|
2014-07-18 17:03:02 +02:00
|
|
|
|
,@(if (or virtio? qemu-networking?)
|
2014-06-30 06:49:38 +02:00
|
|
|
|
virtio-modules
|
|
|
|
|
'())
|
2014-05-03 00:26:07 +02:00
|
|
|
|
,@(if (find (file-system-type-predicate "cifs") file-systems)
|
2014-01-31 12:21:10 +01:00
|
|
|
|
cifs-modules
|
|
|
|
|
'())
|
2014-05-03 00:26:07 +02:00
|
|
|
|
,@(if (find (file-system-type-predicate "9p") file-systems)
|
2014-01-31 12:21:10 +01:00
|
|
|
|
virtio-9p-modules
|
2014-04-14 23:59:08 +02:00
|
|
|
|
'())
|
2016-11-03 10:58:34 +01:00
|
|
|
|
,@(if (find (file-system-type-predicate "vfat") file-systems)
|
|
|
|
|
'("nls_iso8859-1")
|
|
|
|
|
'())
|
2016-11-30 19:30:12 +01:00
|
|
|
|
,@(if (find (file-system-type-predicate "btrfs") file-systems)
|
|
|
|
|
'("btrfs")
|
|
|
|
|
'())
|
2014-04-14 23:59:08 +02:00
|
|
|
|
,@(if volatile-root?
|
2014-11-28 00:06:54 +01:00
|
|
|
|
'("fuse")
|
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
|
2017-03-18 10:38:51 +01:00
|
|
|
|
(file-system-packages file-systems #:volatile-root? volatile-root?))
|
2014-05-04 00:30:39 +02:00
|
|
|
|
|
2017-03-09 19:39:23 +01:00
|
|
|
|
(raw-initrd file-systems
|
|
|
|
|
#:linux linux
|
|
|
|
|
#:linux-modules linux-modules
|
|
|
|
|
#:mapped-devices mapped-devices
|
|
|
|
|
#:helper-packages helper-packages
|
|
|
|
|
#:qemu-networking? qemu-networking?
|
|
|
|
|
#:volatile-root? volatile-root?))
|
2013-02-16 03:25:59 +01:00
|
|
|
|
|
|
|
|
|
;;; linux-initrd.scm ends here
|