summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/system/images/hurd.scm6
-rw-r--r--guix/platforms/x86.scm4
2 files changed, 5 insertions, 5 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
diff --git a/guix/platforms/x86.scm b/guix/platforms/x86.scm
index 5338049d6fd..6f547dd770f 100644
--- a/guix/platforms/x86.scm
+++ b/guix/platforms/x86.scm
@@ -23,7 +23,7 @@
23 x86_64-linux 23 x86_64-linux
24 i686-mingw 24 i686-mingw
25 x86_64-mingw 25 x86_64-mingw
26 hurd)) 26 i586-gnu))
27 27
28(define i686-linux 28(define i686-linux
29 (platform 29 (platform
@@ -51,7 +51,7 @@
51 (system #f) 51 (system #f)
52 (glibc-dynamic-linker #f))) 52 (glibc-dynamic-linker #f)))
53 53
54(define hurd 54(define i586-gnu
55 (platform 55 (platform
56 (target "i586-pc-gnu") 56 (target "i586-pc-gnu")
57 (system "i586-gnu") 57 (system "i586-gnu")