diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-04-17 17:53:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-04-18 01:24:06 +0200 |
commit | 060d62a740fc1932a3be505534feff099b59ac9f (patch) | |
tree | 1b085f9a0f2c7581365f2ce79fe4fa24657d1d16 /gnu.scm | |
parent | fac34dfe2a576907bf9f612d8ed8f4e9dee826be (diff) | |
download | patches-060d62a740fc1932a3be505534feff099b59ac9f.tar patches-060d62a740fc1932a3be505534feff099b59ac9f.tar.gz |
system: Add (gnu system mapped-devices).
* gnu/system/file-systems.scm (<mapped-device>, <mapped-device-type>):
Move to...
* gnu/system/mapped-devices.scm: ... here. New file.
* gnu/system.scm, gnu/services/base.scm,
gnu/system/linux-initrd.scm: Use it.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu.scm (%public-modules): Add it.
Diffstat (limited to 'gnu.scm')
-rw-r--r-- | gnu.scm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io> ;;; ;;; This file is part of GNU Guix. @@ -32,6 +32,7 @@ (begin (define %public-modules '((gnu system) + (gnu system mapped-devices) (gnu system file-systems) (gnu system grub) ; 'grub-configuration' (gnu system pam) |