mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
image: Raise an error when an image lacks a bootable partition.
* gnu/system/image.scm (find-root-partition): Raise an error when 'find' returns #f.
This commit is contained in:
parent
ed19bc87e4
commit
05a759ab36
1 changed files with 3 additions and 1 deletions
|
@ -275,7 +275,9 @@ (define (root-partition? partition)
|
|||
|
||||
(define (find-root-partition image)
|
||||
"Return the root partition of the given IMAGE."
|
||||
(srfi-1:find root-partition? (image-partitions image)))
|
||||
(or (srfi-1:find root-partition? (image-partitions image))
|
||||
(raise (formatted-message
|
||||
(G_ "image lacks a partition with the 'boot' flag")))))
|
||||
|
||||
(define (root-partition-index image)
|
||||
"Return the index of the root partition of the given IMAGE."
|
||||
|
|
Loading…
Reference in a new issue