diff options
| author | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-05-20 16:09:53 +0200 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-05-26 09:57:06 +0200 |
| commit | 1b4fa7851b39f087a6433e8b5e22c479ca1da289 (patch) | |
| tree | bdc6d4e96df8a0d7598f023f8dbf2eb32ffb1479 /gnu/image.scm | |
| parent | edb0366c16fee4767a1d007b6c38f11080910b50 (diff) | |
image: Add partition offset support.
* gnu/image.scm (partition-offset): New procedure,
(<partition>)[offset]: new field.
* gnu/system/image.scm (system-disk-image): Apply the partition offset.
Diffstat (limited to 'gnu/image.scm')
| -rw-r--r-- | gnu/image.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/image.scm b/gnu/image.scm index b05fc69dc57..3a026929505 100644 --- a/gnu/image.scm +++ b/gnu/image.scm | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | partition? | 22 | partition? |
| 23 | partition-device | 23 | partition-device |
| 24 | partition-size | 24 | partition-size |
| 25 | partition-offset | ||
| 25 | partition-file-system | 26 | partition-file-system |
| 26 | partition-label | 27 | partition-label |
| 27 | partition-uuid | 28 | partition-uuid |
| @@ -47,6 +48,7 @@ | |||
| 47 | partition? | 48 | partition? |
| 48 | (device partition-device (default #f)) | 49 | (device partition-device (default #f)) |
| 49 | (size partition-size) | 50 | (size partition-size) |
| 51 | (offset partition-offset (default #f)) | ||
| 50 | (file-system partition-file-system (default "ext4")) | 52 | (file-system partition-file-system (default "ext4")) |
| 51 | (label partition-label (default #f)) | 53 | (label partition-label (default #f)) |
| 52 | (uuid partition-uuid (default #f)) | 54 | (uuid partition-uuid (default #f)) |
