diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2023-02-24 18:31:26 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-09-30 19:16:37 +0000 |
| commit | fb77d8e546e1894300843600409c48596644b3b6 (patch) | |
| tree | 4d14fceab1bae1a70c5c9293a4e17d53579b6d40 | |
| parent | f45608124286a7e0616d1d23b9506709f10c12fc (diff) | |
release: Use standard Azure disk image extension
Azure images are Microsoft VHD files which use the .vhd extension.
We use the mkimg format arg "vhdf" to specify the fixed vhd format, but
the extension should remain .vhd.
Reviewed by: lwhsu, whu
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D38761
| -rw-r--r-- | release/Makefile.azure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/Makefile.azure b/release/Makefile.azure index 577221ee3899..09dcde6af636 100644 --- a/release/Makefile.azure +++ b/release/Makefile.azure @@ -39,7 +39,7 @@ azure-check-depends: .endif .for _FS in ${AZURE_FSLIST} -AZURE_IMG_${_FS}= ${.OBJDIR}/azure.${_FS}.vhdf +AZURE_IMG_${_FS}= ${.OBJDIR}/azure.${_FS}.vhd AZURE_TARGET_${_FS}= ${OSRELEASE}-${_FS}${SNAPSHOT_DATE} azure-do-upload-${_FS}: |
