summaryrefslogtreecommitdiff
path: root/gnu/system/images
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-09-24 14:46:47 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-09-24 14:49:07 +0200
commit08a7eb187f09aeefbb03b8b28b0d67aab33d4a06 (patch)
treee3d1b52521db6eeb845c4600f1f9bbce975e1274 /gnu/system/images
parentc009c286a23f48b56731c3e7bc4875a9e88857c4 (diff)
platforms: x86: Rename Hurd hurd to i586-gnu.
* guix/platforms/x86.scm (hurd): Rename it to ... (i586-gnu): ... this variable. * gnu/system/images/hurd.scm (hurd-disk-image, hurd-barebones-disk-image, hurd-barebones-qcow2-image): Adapt those.
Diffstat (limited to 'gnu/system/images')
-rw-r--r--gnu/system/images/hurd.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system/images/hurd.scm b/gnu/system/images/hurd.scm
index 2c64117c087..9b618f7dc6e 100644
--- a/gnu/system/images/hurd.scm
+++ b/gnu/system/images/hurd.scm
@@ -76,7 +76,7 @@
76(define hurd-disk-image 76(define hurd-disk-image
77 (image-without-os 77 (image-without-os
78 (format 'disk-image) 78 (format 'disk-image)
79 (platform hurd) 79 (platform i586-gnu)
80 (partitions 80 (partitions
81 (list (partition 81 (list (partition
82 (size 'guess) 82 (size 'guess)
@@ -104,14 +104,14 @@
104(define hurd-barebones-disk-image 104(define hurd-barebones-disk-image
105 (image 105 (image
106 (inherit 106 (inherit
107 (os+platform->image hurd-barebones-os hurd 107 (os+platform->image hurd-barebones-os i586-gnu
108 #:type hurd-image-type)) 108 #:type hurd-image-type))
109 (name 'hurd-barebones-disk-image))) 109 (name 'hurd-barebones-disk-image)))
110 110
111(define hurd-barebones-qcow2-image 111(define hurd-barebones-qcow2-image
112 (image 112 (image
113 (inherit 113 (inherit
114 (os+platform->image hurd-barebones-os hurd 114 (os+platform->image hurd-barebones-os i586-gnu
115 #:type hurd-qcow2-image-type)) 115 #:type hurd-qcow2-image-type))
116 (name 'hurd-barebones.qcow2))) 116 (name 'hurd-barebones.qcow2)))
117 117