diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-29 13:04:00 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-29 16:50:02 +0100 |
commit | 735c6dd7faec036adbfa44d927c823ffa9ea1243 (patch) | |
tree | b960e8551312f75e7a3018dac579c8fde44c76e6 /gnu-system.am | |
parent | 413d5351aa3dd3e122f807cb944405c156d254e3 (diff) | |
download | guix-735c6dd7faec036adbfa44d927c823ffa9ea1243.tar guix-735c6dd7faec036adbfa44d927c823ffa9ea1243.tar.gz |
gnu: Lower initrd makers from packages to monadic procedures.
* gnu/packages/linux-initrd.scm: Remove.
* gnu/system/linux-initrd.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/system.scm (<operating-system>): Change default 'initrd' value
to (gnu-system-initrd).
(operating-system-derivation): Bind 'operating-system-initrd'. Pass
'menu-entry' an initrd file name instead of a package.
* gnu/system/grub.scm (grub-configuration-file): Expect 'initrd' to be
file name.
Diffstat (limited to 'gnu-system.am')
-rw-r--r-- | gnu-system.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu-system.am b/gnu-system.am index 473346c6ee..1f7327e865 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -128,7 +128,6 @@ GNU_SYSTEM_MODULES = \ gnu/packages/libunwind.scm \ gnu/packages/lightning.scm \ gnu/packages/linux.scm \ - gnu/packages/linux-initrd.scm \ gnu/packages/lout.scm \ gnu/packages/lsh.scm \ gnu/packages/lsof.scm \ @@ -221,6 +220,7 @@ GNU_SYSTEM_MODULES = \ gnu/system/dmd.scm \ gnu/system/grub.scm \ gnu/system/linux.scm \ + gnu/system/linux-initrd.scm \ gnu/system/shadow.scm \ gnu/system/vm.scm |