mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
system: image: Support MBR vfat partitions.
* gnu/system/image.scm (system-disk-image): Support them. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
db3193f55b
commit
76139eb253
1 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2020, 2021 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2022 Pavel Shlyak <p.shlyak@pantherx.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -305,10 +306,18 @@ (define (format->image-type format)
|
|||
(define (partition->dos-type partition)
|
||||
;; Return the MBR partition type corresponding to the given PARTITION.
|
||||
;; See: https://en.wikipedia.org/wiki/Partition_type.
|
||||
(let ((flags (partition-flags partition)))
|
||||
(let ((flags (partition-flags partition))
|
||||
(file-system (partition-file-system partition)))
|
||||
(cond
|
||||
((member 'esp flags) "0xEF")
|
||||
(else "0x83"))))
|
||||
((string-prefix? "ext" file-system) "0x83")
|
||||
((string=? file-system "vfat") "0x0E")
|
||||
(else
|
||||
(raise (condition
|
||||
(&message
|
||||
(message
|
||||
(format #f (G_ "unsupported partition type: ~a")
|
||||
file-system)))))))))
|
||||
|
||||
(define (partition->gpt-type partition)
|
||||
;; Return the genimage GPT partition type code corresponding to PARTITION.
|
||||
|
|
Loading…
Reference in a new issue