diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-05-26 13:05:22 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-05-26 13:06:37 +0200 |
commit | 1dd7b87f101ce99b37be5c769904c1aa2f6a0615 (patch) | |
tree | 7bd7236a0a3ed3966e3cc498e796f59c73ceea47 /gnu/image.scm | |
parent | 20f524a44b1a9728045be1198ff795697557796c (diff) | |
download | guix-1dd7b87f101ce99b37be5c769904c1aa2f6a0615.tar.gz |
image: Set offset default to zero.
* gnu/image.scm (<partition>)[offset]: Set to zero by default. * gnu/system/image.scm (system-disk-image): Adapt accordingly.
Diffstat (limited to 'gnu/image.scm')
-rw-r--r-- | gnu/image.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/image.scm b/gnu/image.scm index 3a02692950..b434ed50e3 100644 --- a/gnu/image.scm +++ b/gnu/image.scm @@ -48,7 +48,7 @@ partition? (device partition-device (default #f)) (size partition-size) - (offset partition-offset (default #f)) + (offset partition-offset (default 0)) (file-system partition-file-system (default "ext4")) (label partition-label (default #f)) (uuid partition-uuid (default #f)) |