gnu: Include (guix build syscalls) module in initrd/VM derivations.

This bug was introduced in commit 85c3127.

Thanks to Christopher Webber for reporting it.

* gnu/syste/linux-initrd.scm (base-initrd): Include (guix build syscalls)
  module in derivation.
* gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise.
master
David Thompson 2015-07-10 09:47:07 -04:00
parent e8627cd995
commit 1e49bcf981
2 changed files with 2 additions and 0 deletions

View File

@ -239,6 +239,7 @@ loaded at boot time in the order in which they appear."
#:volatile-root? '#$volatile-root?))
#:name "base-initrd"
#:modules '((guix build utils)
(guix build syscalls)
(gnu build linux-boot)
(gnu build linux-modules)
(gnu build file-systems)

View File

@ -102,6 +102,7 @@
(gnu build file-systems)
(guix elf)
(guix build utils)
(guix build syscalls)
(guix build store-copy)))
(guile-for-build
(%guile-for-build))