aboutsummaryrefslogtreecommitdiff
path: root/build-aux/cuirass
diff options
context:
space:
mode:
authorzimoun <zimon.toutoune@gmail.com>2022-10-20 15:28:13 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-11-09 17:15:43 +0100
commit18fb7c0f3078216bf4fc865d86b3be76ddc68414 (patch)
treeacff1ce4c0f06a4466d8055f39d2a1403208f8a8 /build-aux/cuirass
parentab9e6597f62de7d95462656d9078f45875051423 (diff)
downloadguix-18fb7c0f3078216bf4fc865d86b3be76ddc68414.tar.gz
guix-18fb7c0f3078216bf4fc865d86b3be76ddc68414.zip
etc: teams: List teams sorted by id.
* etc/teams.scm.in (list-teams): Sort teams by id. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'build-aux/cuirass')
0 files changed, 0 insertions, 0 deletions
m-disk-image): Adapt accordingly. Mathieu Othacehe 2020-05-26image: 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. Mathieu Othacehe 2020-05-05image: Add a new API....Raw disk-images and ISO9660 images are created in a Qemu virtual machine. This is quite fragile, very slow, and almost unusable without KVM. For all these reasons, add support for host image generation. This implies the use new image generation mechanisms. - Raw disk images: images of partitions are created using tools such as mke2fs and mkdosfs depending on the partition file-system type. The partition images are then assembled into a final image using genimage. - ISO9660 images: the ISO root directory is populated within the store. GNU xorriso is then called on that directory, in the exact same way as this is done in (gnu build vm) module. Those mechanisms are built upon the new (gnu image) module. * gnu/image.scm: New file. * gnu/system/image.scm: New file. * gnu/build/image: New file. * gnu/local.mk: Add them. * gnu/system/vm.scm (system-disk-image): Rename to system-disk-image-in-vm. * gnu/ci.scm (qemu-jobs): Adapt to new API. * gnu/tests/install.scm (run-install): Ditto. * guix/scripts/system.scm (system-derivation-for-action): Ditto. Mathieu Othacehe