diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-01-20 10:56:08 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-02-17 10:57:02 +0100 |
commit | 6e8cdf1d26092cb9654e179b04730fff7c15c94f (patch) | |
tree | d8f60c192176abd8f564e389ede6b955ccf80965 /gnu/system/images/pine64.scm | |
parent | 4cce7610eb992fcf168be7cb05ec2b1b2020171e (diff) | |
download | guix-6e8cdf1d26092cb9654e179b04730fff7c15c94f.tar guix-6e8cdf1d26092cb9654e179b04730fff7c15c94f.tar.gz |
scripts: system: Accept <image> records as input.
* guix/scripts/system.scm (system-derivation-for-action): Replace "os"
argument by "image". Remove "image-size", "image-type", "label" and
"volatile-root?" arguments.
(perform-action): Ditto.
(process-action): Construct the <image> record and pass it to "perform-action"
procedure.
* tests/guix-system.sh: Adapt accordingly.
* gnu/system/images/hurd.scm: Return the default image.
* gnu/system/images/novena.scm: Ditto.
* gnu/system/images/pine64.scm: Ditto.
* gnu/system/images/pinebook-pro.scm Ditto.
Diffstat (limited to 'gnu/system/images/pine64.scm')
-rw-r--r-- | gnu/system/images/pine64.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/images/pine64.scm b/gnu/system/images/pine64.scm index 63b31399a5..613acd5cfd 100644 --- a/gnu/system/images/pine64.scm +++ b/gnu/system/images/pine64.scm @@ -64,3 +64,6 @@ (inherit (os->image pine64-barebones-os #:type pine64-image-type)) (name 'pine64-barebones-raw-image))) + +;; Return the default image. +pine64-barebones-raw-image |