aboutsummaryrefslogtreecommitdiff
path: root/d3.v3.js
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2019-10-22 15:48:48 +0300
committerEfraim Flashner <efraim@flashner.co.il>2019-10-22 15:48:48 +0300
commit0201e34cef3cc908e40f54818c8228fa8e786676 (patch)
tree34f63e920cf4e05fb52a4c1c02d4390cd151f61b /d3.v3.js
parent6fc9c6f7d96f44fa72ef64ebbd40a6f27a63a1e1 (diff)
downloadguix-0201e34cef3cc908e40f54818c8228fa8e786676.tar.gz
guix-0201e34cef3cc908e40f54818c8228fa8e786676.zip
gnu: libtommath: Update to 1.2.0.
* gnu/packages/multiprecision.scm (libtommath): Update to 1.2.0. [arguments]: Update custom 'prepare-build for new version. Update custom 'check phase to use test-target keyword. (libtommath@1.1): New variable. (libtommath@1.0)[inherit]: Inherit from libtommath@1.1.
Diffstat (limited to 'd3.v3.js')
0 files changed, 0 insertions, 0 deletions
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