From b14e606570b682831974e301a9cfe59e8ce0307a Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Sat, 2 Dec 2023 17:06:54 +0100 Subject: [PATCH] extensions: image-output-vhd renamed to image-output-vhd-azure - only Azure wants the static, 1024-aligned original VHD images (and doesnt support VHDX?) - new VHDX output format (for generic Hyper-V on Windows 10/11/2019/etc) --- extensions/{image-output-vhd.sh => image-output-vhd-azure.sh} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename extensions/{image-output-vhd.sh => image-output-vhd-azure.sh} (95%) diff --git a/extensions/image-output-vhd.sh b/extensions/image-output-vhd-azure.sh similarity index 95% rename from extensions/image-output-vhd.sh rename to extensions/image-output-vhd-azure.sh index a030a7b35f8c..f8288484d44a 100644 --- a/extensions/image-output-vhd.sh +++ b/extensions/image-output-vhd-azure.sh @@ -2,7 +2,7 @@ # Copyright (c) 2023 Ricardo Pardini # This file is a part of the Armbian Build Framework https://github.com/armbian/build/ -# This outputs image in VHD format, for use with Hyper-V and Microsoft Azure. +# This outputs image in VHD format, for use with and Microsoft Azure. # The important part is making sure the input raw file is a multiple of 1024*1024 bytes, as per Microsoft's instructions. # Otherwise importing the VHD would fail. # This extension is incompatible with the qcow2 equivalent.