images: Add pine64-barebones-raw-image.
* gnu/system/images/pine64.scm (pine64-barebones-raw-image): New variable. * gnu/ci.scm (%guix-system-images): Add it.
This commit is contained in:
parent
c1cc0c4865
commit
8a4f1eef98
@ -56,6 +56,7 @@
|
||||
#:use-module (gnu system vm)
|
||||
#:use-module (gnu system install)
|
||||
#:use-module (gnu system images hurd)
|
||||
#:use-module (gnu system images pine64)
|
||||
#:use-module (gnu tests)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26)
|
||||
@ -203,7 +204,8 @@ SYSTEM."
|
||||
'("x86_64-linux" "i686-linux"))
|
||||
|
||||
(define %guix-system-images
|
||||
(list hurd-barebones-qcow2-image))
|
||||
(list hurd-barebones-qcow2-image
|
||||
pine64-barebones-raw-image))
|
||||
|
||||
(define (image-jobs store system)
|
||||
"Return a list of jobs that build images for SYSTEM."
|
||||
|
@ -28,7 +28,8 @@
|
||||
#:use-module (gnu system image)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:export (pine64-barebones-os
|
||||
pine64-image-type))
|
||||
pine64-image-type
|
||||
pine64-barebones-raw-image))
|
||||
|
||||
(define pine64-barebones-os
|
||||
(operating-system
|
||||
@ -57,3 +58,9 @@
|
||||
(image-type
|
||||
(name 'pine64-raw)
|
||||
(constructor (cut image-with-os arm64-disk-image <>))))
|
||||
|
||||
(define pine64-barebones-raw-image
|
||||
(image
|
||||
(inherit
|
||||
(os->image pine64-barebones-os #:type pine64-image-type))
|
||||
(name 'pine64-barebones-raw-image)))
|
||||
|
Loading…
Reference in New Issue
Block a user