Page MenuHomeFreeBSD

release: Build UFS and ZFS VM images
ClosedPublic

Authored by cperciva on Aug 7 2023, 2:21 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 23, 7:48 PM
Unknown Object (File)
Thu, May 23, 7:44 PM
Unknown Object (File)
Sun, May 5, 6:10 PM
Unknown Object (File)
Apr 26 2024, 6:19 PM
Unknown Object (File)
Apr 25 2024, 9:56 PM
Unknown Object (File)
Apr 14 2024, 5:32 PM
Unknown Object (File)
Apr 8 2024, 2:03 PM
Unknown Object (File)
Mar 13 2024, 1:29 AM

Details

Summary

A new option 'VMFSLIST' controls the list of filesystems for which VM
images will be built; the default is to build both UFS and ZFS.

The vm-install target installs these as ${OSRELEASE}-${FS}.${FORMAT},
e.g. FreeBSD-14.0-CURRENT-amd64-zfs.vmdk. For backwards compatibility,
the ${VMFS} image is linked to the previously used ${OSRELEASE}.${FORMAT}
name.

Cloudware building will be updated in a later commit.

Sponsored by: https://www.patreon.com/cperciva

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

emaste added inline comments.
release/Makefile.vm
11–12

Should we just get rid of VMFS (perhaps after a short period)? Or is the intent that we'll want to continue offering an image name that does not specify the fs type (and could perhaps switch from UFS to ZFS in the future)?

release/Makefile.vm
11–12

Yes, in the long term we should probably get rid of VMFS. I was leaving it there for backwards-compatibility purposes in case people have scripts which grab e.g. FreeBSD-14.0-CURRENT-amd64.vhd from ftp-master. It's also used as a default filesystem for the ec2ami target (for people who want to build a single AMI) but that could change to an EC2_FS_DEFAULT option or something like that.

This diff should update release.7.

release/Makefile.vm
11–12

VMFS is only present in main, so I don't know that there's that much of a backward compatibility concern?

Alternately, just extend the meaning of VMFS, so that setting VMFS=zfs will do what it did before, and VMFS=ufs zfs now does what you want VMFSLIST=ufs zfs to do. Though, that becomes a bit confusing if you only embed the FS name when multiple filesystems are specified. So on second thought, the separate VMFSLIST variable seems better.

181
.if defined(WITH_COMPRESSED_VMIMAGES) && !empty(WITH_COMPRESSED_VMIMAGES)
COMPSUFF=.xz
.endif

.for FORMAT in ${VMFORMATS}
    ln -f ${DESTDIR}/vmimages/${OSRELEASE}-${VMFS}.${FORMAT}{COMPSUFF} ${DESTDIR}/vmimages/${OSRELEASE}.${FORMAT}${COMPSUFF}
.endfor

just to avoid some of this duplication.

gjb added a subscriber: gjb.

Note, parts of release/Makefile.mirrors will need to change as well, notably in 'vm-stage-images'. I will take a look at this during the week. Though, I think your compatibility symlinks resolves the immediate thing regarding the 'ftp-stage' target I am thinking of.

This revision is now accepted and ready to land.Aug 9 2023, 4:00 PM
This revision now requires review to proceed.Aug 9 2023, 8:31 PM
This revision is now accepted and ready to land.Aug 9 2023, 8:35 PM

Note, parts of release/Makefile.mirrors will need to change as well, notably in 'vm-stage-images'. I will take a look at this during the week. Though, I think your compatibility symlinks resolves the immediate thing regarding the 'ftp-stage' target I am thinking of.

Note: Hard links, not symlinks. Yes, I wasn't sure what to do with Makefile.mirrors but I hoped that the compatibility links would result in things continuing to work (with the single UFS image) for now.

release/Makefile.vm
181

@markj Are you ok with me leaving this as it is for now? In the long term we're going to be getting rid of the compatibility links anyway.

emaste added inline comments.
release/Makefile.vm
175–181

can we just move this inside the existing . if defined(WITH_COMPRESSED_VMIMAGES) && !empty(WITH_COMPRESSED_VMIMAGES) block?

release/Makefile.vm
181

I'm ok with leaving it as it is.

I don't quite understand Ed's suggestion: we have a loop for both the compressed and uncompressed cases.

Fix missing filesystem loop around xz command.

This revision now requires review to proceed.Aug 9 2023, 9:10 PM
release/Makefile.vm
175–181

Not really; the ln -f for compressed images could be merged but we would still need an "else for FORMAT in $VMFORMATS" so I think it would be even more confusing.

The if/for logic could be deduplicated a bit here, but not completely.

This revision is now accepted and ready to land.Aug 9 2023, 10:00 PM

Note, parts of release/Makefile.mirrors will need to change as well, notably in 'vm-stage-images'. I will take a look at this during the week. Though, I think your compatibility symlinks resolves the immediate thing regarding the 'ftp-stage' target I am thinking of.

Note: Hard links, not symlinks. Yes, I wasn't sure what to do with Makefile.mirrors but I hoped that the compatibility links would result in things continuing to work (with the single UFS image) for now.

Right. Thank you for the correction. That is indeed what I meant.

This revision was automatically updated to reflect the committed changes.