system: image: Remove "image-root" when building raw disk-images.
authorMathieu Othacehe <othacehe@gnu.org>
Mon, 22 Jun 2020 15:40:10 +0000 (17:40 +0200)
committerMathieu Othacehe <othacehe@gnu.org>
Mon, 22 Jun 2020 15:49:19 +0000 (17:49 +0200)
commit7f75a7ec08975eb6d6e01db61bd6b91f447f655e
tree49bc72e041adcc440be172358a23968ad1d19633
parentcf14e67963147d5ecccb820203e601080f856f74
system: image: Remove "image-root" when building raw disk-images.

The "image-root" derivation output is used as a temporary directory that is
passed to mke2fs and mkdosfs later on. By merging the creation of this
directory and the production of partition images, we can get rid of the
derivation.

As mke2fs and mkdosfs are not able to override file permissions, call those
commands with fakeroot. This way, all the image files will be owned by root,
even if image generation is done in an unprivilegded context.

* gnu/system/image.scm (system-disk-image): Merge "image-root" and
"iso9660-image" derivations so that we spare an extra derivation. Also add
"fakeroot" and its runtime dependencies to the inputs.
* gnu/build/image.scm (make-ext-image, make-vfat-image): Make sure that mke2fs
and mkdosfs are respectively called by fakeroot.
gnu/build/image.scm
gnu/system/image.scm