diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2016-10-26 14:41:26 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2016-10-26 14:41:26 +0900 |
commit | ae66df2b8b764df7bf2b3b6d3895358012791feb (patch) | |
tree | e0d3bcaad442c16c8cc5039aa5dbfec8972d6049 /scripts | |
parent | 146a2390cf6dad358f861c656e76b145c8ea373b (diff) | |
download | vyos-build-ae66df2b8b764df7bf2b3b6d3895358012791feb.tar.gz vyos-build-ae66df2b8b764df7bf2b3b6d3895358012791feb.zip |
Initial Hyper-V image
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-hyperv-image | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/scripts/build-hyperv-image b/scripts/build-hyperv-image new file mode 100755 index 00000000..40c0c828 --- /dev/null +++ b/scripts/build-hyperv-image @@ -0,0 +1,32 @@ +#!/bin/sh +# +# Copyright (C) 2016 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# File: build-hyperv-image +# Purpose: +# Build VyOS image for Hyper-V. + +export PACKER_BUILD_DIR=packer_build + +DST_DIR=${PACKER_BUILD_DIR}/hyperv +mkdir -p ${DST_DIR} + +# Convert raw image to VHD +source_image=${PACKER_BUILD_DIR}/qemu/vyos_qemu_image.img +vhd=${DST_DIR}/vyos_hyperv_image.vhd +qemu-img convert -f raw ${source_image} -O vpc ${vhd} +if [ "$?" = "0" ]; then + echo "Hyper-V image successfully created to ./${vhd}" +fi |