mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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.
This commit is contained in:
parent
c009c286a2
commit
08a7eb187f
2 changed files with 5 additions and 5 deletions
|
@ -76,7 +76,7 @@ (define hurd-initialize-root-partition
|
|||
(define hurd-disk-image
|
||||
(image-without-os
|
||||
(format 'disk-image)
|
||||
(platform hurd)
|
||||
(platform i586-gnu)
|
||||
(partitions
|
||||
(list (partition
|
||||
(size 'guess)
|
||||
|
@ -104,14 +104,14 @@ (define hurd-qcow2-image-type
|
|||
(define hurd-barebones-disk-image
|
||||
(image
|
||||
(inherit
|
||||
(os+platform->image hurd-barebones-os hurd
|
||||
(os+platform->image hurd-barebones-os i586-gnu
|
||||
#:type hurd-image-type))
|
||||
(name 'hurd-barebones-disk-image)))
|
||||
|
||||
(define hurd-barebones-qcow2-image
|
||||
(image
|
||||
(inherit
|
||||
(os+platform->image hurd-barebones-os hurd
|
||||
(os+platform->image hurd-barebones-os i586-gnu
|
||||
#:type hurd-qcow2-image-type))
|
||||
(name 'hurd-barebones.qcow2)))
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ (define-module (guix platforms x86)
|
|||
x86_64-linux
|
||||
i686-mingw
|
||||
x86_64-mingw
|
||||
hurd))
|
||||
i586-gnu))
|
||||
|
||||
(define i686-linux
|
||||
(platform
|
||||
|
@ -51,7 +51,7 @@ (define x86_64-mingw
|
|||
(system #f)
|
||||
(glibc-dynamic-linker #f)))
|
||||
|
||||
(define hurd
|
||||
(define i586-gnu
|
||||
(platform
|
||||
(target "i586-pc-gnu")
|
||||
(system "i586-gnu")
|
||||
|
|
Loading…
Reference in a new issue