aboutsummaryrefslogtreecommitdiff
path: root/po/packages/sr.po
blob: 6c700a7b56759aadada1d2370bd5c8bb25c8508c (about) (plain)
blob size (1164KB) exceeds display size limit (100KB).
ons, %default-options, show-docker-format-options, show-docker-format-options/detailed, process-action): Handle '--max-layers' option. * gnu/system/image.scm (system-docker-image): Same. * gnu/image.scm (<image>)[max-layers]: New record field. Change-Id: I2726655aefd6688b976057fd5a38e9972ebfc292 2022-09-24system: image: Add wsl2 support.Alex Griffin * gnu/image.scm (<image>)[format]: Add wsl2 support. * gnu/system/image.scm (wsl2-image, wsl2-image-type): New variables. (image->root-file-system): Add wsl2 image support. (system-image): Ditto. 2022-09-24system: image: Add tarball support.Alex Griffin * gnu/image.scm (<image>)[fields]: Add tarball to the supported formats. * gnu/system/image.scm (tarball-image, tarball-image-type): New variables. (system-tarball-image): New procedure. (image->root-file-system): Add tarball image support. (system-image): Ditto. * doc/guix.texi ("System Images"): Document it. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> 2022-09-24image: Make the operating-system field mandatory.Mathieu Othacehe Make the operating-system field mandatory as creating an image without it makes no sense. Introduce a new macro, image-without-os for the specific cases where the image is only created to be inherited from afterwards. * gnu/image.scm (<image>)[operating-system]: Make it mandatory. * gnu/system/image.scm (image-without-os): New macro. (efi-disk-image, efi32-disk-image, iso9660-image, docker-image, raw-with-offset-disk-image): Use it. * gnu/system/images/hurd.scm (hurd-disk-image): Ditto. 2022-09-07image: Use #true and #false.Mathieu Othacehe * gnu/image.scm: Use #true and #false instead of #t and #f respectively. No functional change. 2022-09-07image: Use a default size partition value.Mathieu Othacehe * gnu/image.scm (<partition>)[size]: Default to 'guess like the image record. 2022-08-31image: Add comments.Mathieu Othacehe * gnu/image.scm: Add some comments across the whole module. 2022-08-30image: Remove an unused field.Mathieu Othacehe * gnu/image.scm (<partition>)[device]: Remove it. 2022-08-30image: Perform more sanitizing.Mathieu Othacehe * gnu/image.scm (validate-size, validate-partition-offset, validate-partition-flags): New macros. (<partition>)[size, offset, flags]: Sanitize those fields using the above procedures respectively. 2022-07-01image: Add sanitizers for 'format' and 'partition-table-type'.Ludovic Courtès This allows common mistakes to be diagnosed early. * gnu/image.scm (define-set-sanitizer): New macro. (validate-image-format, validate-partition-table-type): New sanitizers. (<image>)[format, partition-table-type]: Add 'sanitize' property. 2022-07-01image: Add default value for partition initializer.Ludovic Courtès Previously, the default value would lead to a wrong-type-to-apply crash. * gnu/system/image.scm (system-disk-image)[image-builder]: When 'partition-initializer' returns #f, fall back to INITIALIZE-ROOT-PARTITION. * gnu/tests/base.scm (run-root-unmount-test)[test-image]: Remove 'initializer' field of partition. * gnu/image.scm (<partition>)[initializer]: Add comment.