aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-05-10 16:57:41 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-05-10 19:27:08 +0200
commit4d673ba743c7496e4b90298037688f03f0251e65 (patch)
tree4fc4057aaa67ae04f59255adc79cd2d5ab6a0897 /README
parent26e2610673cfc3a50d5ec7dceb6ba25db8c94b07 (diff)
downloadguix-4d673ba743c7496e4b90298037688f03f0251e65.tar.gz
guix-4d673ba743c7496e4b90298037688f03f0251e65.zip
gnu: Add python-types-requests.
* gnu/packages/python-xyz.scm (python-types-requests): New variable.
Diffstat (limited to 'README')
0 files changed, 0 insertions, 0 deletions
nd 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 2020-05-05build: install: Do not set store GID....There's no need to set the store GID as is will be done by the guix-daemon, with the following snippet: if (chown(chrootStoreDir.c_str(), 0, buildUser.getGID()) == -1) throw SysError(format("cannot change ownership of ‘%1%’") % chrootStoreDir); * gnu/build/install.scm (directives): Do not set store GID. Mathieu Othacehe 2020-05-05build: install: Ignore chown exceptions....Changing ownership may require root permissions. As image can now be generated without root permissions (no VM involved), ignore those exceptions. * gnu/build/install.scm (evaluate-populate-directive): Ignore chown exceptions. Mathieu Othacehe 2020-04-11install: 'populate-root-file-system' can be passed extra directives....* gnu/build/install.scm (evaluate-populate-directive): Handle 'file' directives. (populate-root-file-system): Add #:extras parameter and honor it. Ludovic Courtès