aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-10-22 13:20:49 +0300
committerEfraim Flashner <efraim@flashner.co.il>2023-10-22 13:20:49 +0300
commita72d97dc5009ba281e88db199ab83897517ae72c (patch)
treedf79998e81d1b21f282cf5ab35930b783b82a227 /gnu/installer.scm
parentd965141e71ceee1aa9af3d15a2217e047189e873 (diff)
downloadguix-a72d97dc5009ba281e88db199ab83897517ae72c.tar.gz
guix-a72d97dc5009ba281e88db199ab83897517ae72c.zip
gnu: Add rust-rmp-serde-1.
* gnu/packages/crates-io.scm (rust-rmp-serde-1): New variable. (rust-rmp-serde-0.15): Inherit from rust-rmp-serde-1.
Diffstat (limited to 'gnu/installer.scm')
0 files changed, 0 insertions, 0 deletions
tition 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