diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-06-13 17:33:10 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-06-24 20:24:34 +0200 |
commit | b904b59ce592c89dfb4675a8c06757afed6738a0 (patch) | |
tree | 8645a9b3f5d2609c552c7d25017843821812de78 /gnu/local.mk | |
parent | af0307a099ecfe6364da69415933d56dba33e055 (diff) | |
download | guix-b904b59ce592c89dfb4675a8c06757afed6738a0.tar.gz |
image: Move hurd image definition to a dedicated file.
This moves hurd-disk-image to a dedicated file. It also defines a default operating-system so that the image can be built standalone. * gnu/system/images/hurd.scm: New file, * gnu/local.mk (GNU_SYSTEM_MODULES): add it, * gnu/system/image.scm (root-offset, root-label): Export it, (hurd-disk-image): remove it as this is now defined in the new, Hurd dedicated file above, (find-image): adapt to avoid loop dependency.
Diffstat (limited to 'gnu/local.mk')
-rw-r--r-- | gnu/local.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index cf2be076af..a321575799 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -632,6 +632,8 @@ GNU_SYSTEM_MODULES = \ %D%/system/uuid.scm \ %D%/system/vm.scm \ \ + %D%/system/images/hurd.scm \ + \ %D%/machine.scm \ %D%/machine/digital-ocean.scm \ %D%/machine/ssh.scm \ |